From 7b8715207fd0825a60163ee8142e80c546058823 Mon Sep 17 00:00:00 2001 From: vincentysc Date: Wed, 9 Aug 2023 15:51:56 +0800 Subject: [PATCH 01/16] add ethermint support --- packages/amino/src/encoding.spec.ts | 66 ++++++++++- packages/amino/src/encoding.ts | 31 ++++- packages/amino/src/index.ts | 5 +- packages/amino/src/pubkeys.ts | 16 ++- packages/proto-signing/src/pubkey.ts | 35 ++++-- packages/stargate/src/accounts.ts | 9 +- .../stargate/src/signingstargateclient.ts | 106 +++++------------- 7 files changed, 173 insertions(+), 95 deletions(-) diff --git a/packages/amino/src/encoding.spec.ts b/packages/amino/src/encoding.spec.ts index 0a056e9826..dfc96d5d4f 100644 --- a/packages/amino/src/encoding.spec.ts +++ b/packages/amino/src/encoding.spec.ts @@ -7,6 +7,7 @@ import { encodeAminoPubkey, encodeBech32Pubkey, encodeEd25519Pubkey, + encodeEthSecp256k1Pubkey, encodeSecp256k1Pubkey, } from "./encoding"; import { Pubkey } from "./pubkeys"; @@ -58,6 +59,25 @@ describe("encoding", () => { }); }); + describe("encodeEthSecp256k1Pubkey", () => { + it("encodes a compressed pubkey", () => { + const pubkey = fromBase64("Ay+1uNze+glFQM+T05EfzL8fQ1Y/wqO8K7q6tUM3BGin"); + expect(encodeEthSecp256k1Pubkey(pubkey)).toEqual({ + type: "tendermint/PubKeyEthSecp256k1", + value: "Ay+1uNze+glFQM+T05EfzL8fQ1Y/wqO8K7q6tUM3BGin", + }); + }); + + it("throws for uncompressed public keys", () => { + const pubkey = fromBase64( + "BE8EGB7ro1ORuFhjOnZcSgwYlpe0DSFjVNUIkNNQxwKQE7WHpoHoNswYeoFkuYpYSKK4mzFzMV/dB0DVAy4lnNU=", + ); + expect(() => encodeEthSecp256k1Pubkey(pubkey)).toThrowError( + /public key must be compressed ethsecp256k1/i, + ); + }); + }); + describe("decodeAminoPubkey", () => { it("works for secp256k1", () => { const amino = fromBech32( @@ -69,6 +89,18 @@ describe("encoding", () => { }); }); + // @todo: find a way to bypass the identical prefix for secp256k1 and ethsecp256k1 + // in @amino/encoding:decodeAminoPubkey + // it("works for ethsecp256k1", () => { + // const amino = fromBech32( + // "evmospub1addwnpepqvhmtwxummaqj32qe7fa8yglejl37s6k8lp280pth2at2sehq352w6wm5v0", + // ).data; + // expect(decodeAminoPubkey(amino)).toEqual({ + // type: "tendermint/PubKeyEthSecp256k1", + // value: "Ay+1uNze+glFQM+T05EfzL8fQ1Y/wqO8K7q6tUM3BGin", + // }); + // }); + it("works for ed25519", () => { // Encoded from `corald tendermint show-validator` // Decoded from http://localhost:26657/validators @@ -143,6 +175,17 @@ describe("encoding", () => { }); }); + // @todo: find a way to bypass the identical prefix for secp256k1 and ethsecp256k1 + // in @amino/encoding:decodeAminoPubkey + // it("works for ethsecp256k1", () => { + // expect( + // decodeBech32Pubkey("evmospub1addwnpepqvhmtwxummaqj32qe7fa8yglejl37s6k8lp280pth2at2sehq352w6wm5v0"), + // ).toEqual({ + // type: "tendermint/PubKeyEthSecp256k1", + // value: "Ay+1uNze+glFQM+T05EfzL8fQ1Y/wqO8K7q6tUM3BGin", + // }); + // }); + it("works for enigma pubkey", () => { expect( decodeBech32Pubkey("enigmapub1addwnpepqw5k9p439nw0zpg2aundx4umwx4nw233z5prpjqjv5anl5grmnchzp2xwvv"), @@ -183,6 +226,17 @@ describe("encoding", () => { expect(encodeAminoPubkey(pubkey)).toEqual(expected); }); + it("works for ethsecp256k1", () => { + const pubkey: Pubkey = { + type: "tendermint/PubKeyEthSecp256k1", + value: "Ay+1uNze+glFQM+T05EfzL8fQ1Y/wqO8K7q6tUM3BGin", + }; + const expected = fromBech32( + "evmospub1addwnpepqvhmtwxummaqj32qe7fa8yglejl37s6k8lp280pth2at2sehq352w6wm5v0", + ).data; + expect(encodeAminoPubkey(pubkey)).toEqual(expected); + }); + it("works for ed25519", () => { // Decoded from http://localhost:26657/validators // Encoded from `corald tendermint show-validator` @@ -208,6 +262,16 @@ describe("encoding", () => { ); }); + it("works for ethsecp256k1", () => { + const pubkey: Pubkey = { + type: "tendermint/PubKeyEthSecp256k1", + value: "Ay+1uNze+glFQM+T05EfzL8fQ1Y/wqO8K7q6tUM3BGin", + }; + expect(encodeBech32Pubkey(pubkey, "evmospub")).toEqual( + "evmospub1addwnpepqvhmtwxummaqj32qe7fa8yglejl37s6k8lp280pth2at2sehq352w6wm5v0", + ); + }); + it("works for ed25519", () => { // Decoded from http://localhost:26657/validators // Encoded from `corald tendermint show-validator` @@ -234,4 +298,4 @@ describe("encoding", () => { expect(encodeAminoPubkey(testgroup4)).toEqual(expected4); }); }); -}); +}); \ No newline at end of file diff --git a/packages/amino/src/encoding.ts b/packages/amino/src/encoding.ts index 0b069bcaea..942d69a319 100644 --- a/packages/amino/src/encoding.ts +++ b/packages/amino/src/encoding.ts @@ -4,7 +4,9 @@ import { arrayContentStartsWith } from "@cosmjs/utils"; import { Ed25519Pubkey, + EthSecp256k1Pubkey, isEd25519Pubkey, + isEthSecp256k1Pubkey, isMultisigThresholdPubkey, isSecp256k1Pubkey, MultisigThresholdPubkey, @@ -27,6 +29,20 @@ export function encodeSecp256k1Pubkey(pubkey: Uint8Array): Secp256k1Pubkey { }; } +/** + * Takes an EthSecp256k1 public key as raw bytes and returns the Amino JSON + * representation of it (the type/value wrapper object). + */ +export function encodeEthSecp256k1Pubkey(pubkey: Uint8Array): EthSecp256k1Pubkey { + if (pubkey.length !== 33 || (pubkey[0] !== 0x02 && pubkey[0] !== 0x03)) { + throw new Error("Public key must be compressed ethsecp256k1, i.e. 33 bytes starting with 0x02 or 0x03"); + } + return { + type: pubkeyType.ethsecp256k1, + value: toBase64(pubkey), + }; +} + /** * Takes an Edd25519 public key as raw bytes and returns the Amino JSON * representation of it (the type/value wrapper object). @@ -45,6 +61,7 @@ export function encodeEd25519Pubkey(pubkey: Uint8Array): Ed25519Pubkey { // Prefixes listed here: https://github.com/tendermint/tendermint/blob/d419fffe18531317c28c29a292ad7d253f6cafdf/docs/spec/blockchain/encoding.md#public-key-cryptography // Last bytes is varint-encoded length prefix const pubkeyAminoPrefixSecp256k1 = fromHex("eb5ae987" + "21" /* fixed length */); +const pubkeyAminoPrefixEthSecp256k1 = fromHex("eb5ae987" + "21" /* fixed length */); const pubkeyAminoPrefixEd25519 = fromHex("1624de64" + "20" /* fixed length */); const pubkeyAminoPrefixSr25519 = fromHex("0dfb1005" + "20" /* fixed length */); /** See https://github.com/tendermint/tendermint/commit/38b401657e4ad7a7eeb3c30a3cbf512037df3740 */ @@ -52,6 +69,7 @@ const pubkeyAminoPrefixMultisigThreshold = fromHex("22c1f7e2" /* variable length /** * Decodes a pubkey in the Amino binary format to a type/value object. + * @todo: find a clean way to distinct Secp256k1 and EthSecp256k1 (has the same prefix) */ export function decodeAminoPubkey(data: Uint8Array): Pubkey { if (arrayContentStartsWith(data, pubkeyAminoPrefixSecp256k1)) { @@ -63,6 +81,15 @@ export function decodeAminoPubkey(data: Uint8Array): Pubkey { type: pubkeyType.secp256k1, value: toBase64(rest), }; + } else if (arrayContentStartsWith(data, pubkeyAminoPrefixEthSecp256k1)) { + const rest = data.slice(pubkeyAminoPrefixEthSecp256k1.length); + if (rest.length !== 33) { + throw new Error("Invalid rest data length. Expected 33 bytes (compressed ethsecp256k1 pubkey)."); + } + return { + type: pubkeyType.ethsecp256k1, + value: toBase64(rest), + }; } else if (arrayContentStartsWith(data, pubkeyAminoPrefixEd25519)) { const rest = data.slice(pubkeyAminoPrefixEd25519.length); if (rest.length !== 32) { @@ -207,6 +234,8 @@ export function encodeAminoPubkey(pubkey: Pubkey): Uint8Array { return new Uint8Array([...pubkeyAminoPrefixEd25519, ...fromBase64(pubkey.value)]); } else if (isSecp256k1Pubkey(pubkey)) { return new Uint8Array([...pubkeyAminoPrefixSecp256k1, ...fromBase64(pubkey.value)]); + } else if (isEthSecp256k1Pubkey(pubkey)) { + return new Uint8Array([...pubkeyAminoPrefixEthSecp256k1, ...fromBase64(pubkey.value)]); } else { throw new Error("Unsupported pubkey type"); } @@ -220,4 +249,4 @@ export function encodeAminoPubkey(pubkey: Pubkey): Uint8Array { */ export function encodeBech32Pubkey(pubkey: Pubkey, prefix: string): string { return toBech32(prefix, encodeAminoPubkey(pubkey)); -} +} \ No newline at end of file diff --git a/packages/amino/src/index.ts b/packages/amino/src/index.ts index 2edbb2db94..837c031128 100644 --- a/packages/amino/src/index.ts +++ b/packages/amino/src/index.ts @@ -11,13 +11,16 @@ export { encodeAminoPubkey, encodeBech32Pubkey, encodeEd25519Pubkey, + encodeEthSecp256k1Pubkey, encodeSecp256k1Pubkey, } from "./encoding"; export { createMultisigThresholdPubkey } from "./multisig"; export { makeCosmoshubPath } from "./paths"; export { Ed25519Pubkey, + EthSecp256k1Pubkey, isEd25519Pubkey, + isEthSecp256k1Pubkey, isMultisigThresholdPubkey, isSecp256k1Pubkey, isSinglePubkey, @@ -33,4 +36,4 @@ export { decodeSignature, encodeSecp256k1Signature, StdSignature } from "./signa export { AminoMsg, makeSignDoc, serializeSignDoc, StdFee, StdSignDoc } from "./signdoc"; export { AccountData, Algo, AminoSignResponse, OfflineAminoSigner } from "./signer"; export { isStdTx, makeStdTx, StdTx } from "./stdtx"; -export { executeKdf, KdfConfiguration } from "./wallet"; +export { executeKdf, KdfConfiguration } from "./wallet"; \ No newline at end of file diff --git a/packages/amino/src/pubkeys.ts b/packages/amino/src/pubkeys.ts index d61bfa3c39..722b0bd427 100644 --- a/packages/amino/src/pubkeys.ts +++ b/packages/amino/src/pubkeys.ts @@ -24,10 +24,20 @@ export function isSecp256k1Pubkey(pubkey: Pubkey): pubkey is Secp256k1Pubkey { return (pubkey as Secp256k1Pubkey).type === "tendermint/PubKeySecp256k1"; } +export interface EthSecp256k1Pubkey extends SinglePubkey { + readonly type: "tendermint/PubKeyEthSecp256k1"; + readonly value: string; +} + +export function isEthSecp256k1Pubkey(pubkey: Pubkey): pubkey is EthSecp256k1Pubkey { + return (pubkey as EthSecp256k1Pubkey).type === "tendermint/PubKeyEthSecp256k1"; +} + export const pubkeyType = { - /** @see https://github.com/tendermint/tendermint/blob/v0.33.0/crypto/ed25519/ed25519.go#L22 */ - secp256k1: "tendermint/PubKeySecp256k1" as const, /** @see https://github.com/tendermint/tendermint/blob/v0.33.0/crypto/secp256k1/secp256k1.go#L23 */ + secp256k1: "tendermint/PubKeySecp256k1" as const, + ethsecp256k1: "tendermint/PubKeyEthSecp256k1" as const, + /** @see https://github.com/tendermint/tendermint/blob/v0.33.0/crypto/ed25519/ed25519.go#L22 */ ed25519: "tendermint/PubKeyEd25519" as const, /** @see https://github.com/tendermint/tendermint/blob/v0.33.0/crypto/sr25519/codec.go#L12 */ sr25519: "tendermint/PubKeySr25519" as const, @@ -68,4 +78,4 @@ export interface MultisigThresholdPubkey extends Pubkey { export function isMultisigThresholdPubkey(pubkey: Pubkey): pubkey is MultisigThresholdPubkey { return (pubkey as MultisigThresholdPubkey).type === "tendermint/PubKeyMultisigThreshold"; -} +} \ No newline at end of file diff --git a/packages/proto-signing/src/pubkey.ts b/packages/proto-signing/src/pubkey.ts index 8fc935f9f2..fa73970bcd 100644 --- a/packages/proto-signing/src/pubkey.ts +++ b/packages/proto-signing/src/pubkey.ts @@ -3,6 +3,7 @@ import { encodeEd25519Pubkey, encodeSecp256k1Pubkey, isEd25519Pubkey, + isEthSecp256k1Pubkey, isMultisigThresholdPubkey, isSecp256k1Pubkey, MultisigThresholdPubkey, @@ -39,6 +40,14 @@ export function encodePubkey(pubkey: Pubkey): Any { typeUrl: "/cosmos.crypto.ed25519.PubKey", value: Uint8Array.from(CosmosCryptoEd25519Pubkey.encode(pubkeyProto).finish()), }); + } else if (isEthSecp256k1Pubkey(pubkey)) { + const pubkeyProto = CosmosCryptoSecp256k1Pubkey.fromPartial({ + key: fromBase64(pubkey.value), + }); + return Any.fromPartial({ + typeUrl: "/ethermint.crypto.v1.ethsecp256k1.PubKey", + value: Uint8Array.from(CosmosCryptoSecp256k1Pubkey.encode(pubkeyProto).finish()), + }); } else if (isMultisigThresholdPubkey(pubkey)) { const pubkeyProto = LegacyAminoPubKey.fromPartial({ threshold: Uint53.fromString(pubkey.value.threshold).toNumber(), @@ -57,30 +66,32 @@ export function encodePubkey(pubkey: Pubkey): Any { * Decodes a single pubkey (i.e. not a multisig pubkey) from `Any` into * `SinglePubkey`. * - * In most cases you probably want to use `decodePubkey`. + * In most cases you probably want to use `decodePubkey`, but `anyToSinglePubkey` + * might be preferred in CosmJS 0.29.x due to https://github.com/cosmos/cosmjs/issues/1289. */ export function anyToSinglePubkey(pubkey: Any): SinglePubkey { switch (pubkey.typeUrl) { - case "/cosmos.crypto.secp256k1.PubKey": { - const { key } = CosmosCryptoSecp256k1Pubkey.decode(pubkey.value); - return encodeSecp256k1Pubkey(key); - } case "/cosmos.crypto.ed25519.PubKey": { const { key } = CosmosCryptoEd25519Pubkey.decode(pubkey.value); return encodeEd25519Pubkey(key); } + case "/ethermint.crypto.v1.ethsecp256k1.PubKey": + case "/cosmos.crypto.secp256k1.PubKey": { + const {key} = CosmosCryptoSecp256k1Pubkey.decode(pubkey.value); + return encodeSecp256k1Pubkey(key); + } default: throw new Error(`Pubkey type_url ${pubkey.typeUrl} not recognized as single public key type`); } } -/** - * Decodes a pubkey from a protobuf `Any` into `Pubkey`. - * This supports single pubkeys such as Cosmos ed25519 and secp256k1 keys - * as well as multisig threshold pubkeys. - */ -export function decodePubkey(pubkey: Any): Pubkey { +export function decodePubkey(pubkey?: Any | null): Pubkey | null { + if (!pubkey || !pubkey.value) { + return null; + } + switch (pubkey.typeUrl) { + case "/ethermint.crypto.v1.ethsecp256k1.PubKey": case "/cosmos.crypto.secp256k1.PubKey": case "/cosmos.crypto.ed25519.PubKey": { return anyToSinglePubkey(pubkey); @@ -99,4 +110,4 @@ export function decodePubkey(pubkey: Any): Pubkey { default: throw new Error(`Pubkey type_url ${pubkey.typeUrl} not recognized`); } -} +} \ No newline at end of file diff --git a/packages/stargate/src/accounts.ts b/packages/stargate/src/accounts.ts index 77ca4f968b..4e5543c389 100644 --- a/packages/stargate/src/accounts.ts +++ b/packages/stargate/src/accounts.ts @@ -26,7 +26,7 @@ function uint64FromProto(input: number | Long): Uint64 { function accountFromBaseAccount(input: BaseAccount): Account { const { address, pubKey, accountNumber, sequence } = input; - const pubkey = pubKey ? decodePubkey(pubKey) : null; + const pubkey = decodePubkey(pubKey); return { address: address, pubkey: pubkey, @@ -59,6 +59,11 @@ export function accountFromAny(input: Any): Account { assert(baseAccount); return accountFromBaseAccount(baseAccount); } + case "/ethermint.types.v1.EthAccount": { + const baseAccount = ModuleAccount.decode(value).baseAccount; + assert(baseAccount); + return accountFromBaseAccount(baseAccount); + } // vesting @@ -86,4 +91,4 @@ export function accountFromAny(input: Any): Account { default: throw new Error(`Unsupported type: '${typeUrl}'`); } -} +} \ No newline at end of file diff --git a/packages/stargate/src/signingstargateclient.ts b/packages/stargate/src/signingstargateclient.ts index a255629c2c..a043a72098 100644 --- a/packages/stargate/src/signingstargateclient.ts +++ b/packages/stargate/src/signingstargateclient.ts @@ -1,4 +1,9 @@ -import { encodeSecp256k1Pubkey, makeSignDoc as makeSignDocAmino, StdFee } from "@cosmjs/amino"; +import { + encodeEthSecp256k1Pubkey, + encodeSecp256k1Pubkey, + makeSignDoc as makeSignDocAmino, + StdFee, +} from "@cosmjs/amino"; import { fromBase64 } from "@cosmjs/encoding"; import { Int53, Uint53 } from "@cosmjs/math"; import { @@ -12,12 +17,7 @@ import { Registry, TxBodyEncodeObject, } from "@cosmjs/proto-signing"; -import { - HttpEndpoint, - Tendermint34Client, - Tendermint37Client, - TendermintClient, -} from "@cosmjs/tendermint-rpc"; +import { HttpEndpoint, Tendermint34Client } from "@cosmjs/tendermint-rpc"; import { assert, assertDefined } from "@cosmjs/utils"; import { Coin } from "cosmjs-types/cosmos/base/v1beta1/coin"; import { MsgWithdrawDelegatorReward } from "cosmjs-types/cosmos/distribution/v1beta1/tx"; @@ -36,7 +36,6 @@ import { distributionTypes, feegrantTypes, govTypes, - groupTypes, ibcTypes, MsgDelegateEncodeObject, MsgSendEncodeObject, @@ -65,12 +64,15 @@ export const defaultRegistryTypes: ReadonlyArray<[string, GeneratedType]> = [ ...distributionTypes, ...feegrantTypes, ...govTypes, - ...groupTypes, ...stakingTypes, ...ibcTypes, ...vestingTypes, ]; +function createDefaultRegistry(): Registry { + return new Registry(defaultRegistryTypes); +} + /** * Signing information for a single signer that is not included in the transaction. * @@ -90,18 +92,19 @@ export interface PrivateSigningStargateClient { export interface SigningStargateClientOptions extends StargateClientOptions { readonly registry?: Registry; readonly aminoTypes?: AminoTypes; + readonly prefix?: string; readonly broadcastTimeoutMs?: number; readonly broadcastPollIntervalMs?: number; readonly gasPrice?: GasPrice; } -export function createDefaultAminoConverters(): AminoConverters { +function createDefaultTypes(prefix: string): AminoConverters { return { ...createAuthzAminoConverters(), ...createBankAminoConverters(), ...createDistributionAminoConverters(), ...createGovAminoConverters(), - ...createStakingAminoConverters(), + ...createStakingAminoConverters(prefix), ...createIbcAminoConverters(), ...createFeegrantAminoConverters(), ...createVestingAminoConverters(), @@ -117,41 +120,12 @@ export class SigningStargateClient extends StargateClient { private readonly aminoTypes: AminoTypes; private readonly gasPrice: GasPrice | undefined; - /** - * Creates an instance by connecting to the given Tendermint RPC endpoint. - * - * This uses auto-detection to decide between a Tendermint 0.37 and 0.34 client. - * To set the Tendermint client explicitly, use `createWithSigner`. - */ public static async connectWithSigner( endpoint: string | HttpEndpoint, signer: OfflineSigner, options: SigningStargateClientOptions = {}, ): Promise { - // Tendermint/CometBFT 0.34/0.37 auto-detection. Starting with 0.37 we seem to get reliable versions again 🎉 - // Using 0.34 as the fallback. - let tmClient: TendermintClient; - const tm37Client = await Tendermint37Client.connect(endpoint); - const version = (await tm37Client.status()).nodeInfo.version; - if (version.startsWith("0.37.")) { - tmClient = tm37Client; - } else { - tm37Client.disconnect(); - tmClient = await Tendermint34Client.connect(endpoint); - } - - return SigningStargateClient.createWithSigner(tmClient, signer, options); - } - - /** - * Creates an instance from a manually created Tendermint client. - * Use this to use `Tendermint37Client` instead of `Tendermint34Client`. - */ - public static async createWithSigner( - tmClient: TendermintClient, - signer: OfflineSigner, - options: SigningStargateClientOptions = {}, - ): Promise { + const tmClient = await Tendermint34Client.connect(endpoint); return new SigningStargateClient(tmClient, signer, options); } @@ -172,15 +146,15 @@ export class SigningStargateClient extends StargateClient { } protected constructor( - tmClient: TendermintClient | undefined, + tmClient: Tendermint34Client | undefined, signer: OfflineSigner, options: SigningStargateClientOptions, ) { super(tmClient, options); - const { - registry = new Registry(defaultRegistryTypes), - aminoTypes = new AminoTypes(createDefaultAminoConverters()), - } = options; + // TODO: do we really want to set a default here? Ideally we could get it from the signer such that users only have to set it once. + const prefix = options.prefix ?? "cosmos"; + const { registry = createDefaultRegistry(), aminoTypes = new AminoTypes(createDefaultTypes(prefix)) } = + options; this.registry = registry; this.aminoTypes = aminoTypes; this.signer = signer; @@ -328,32 +302,6 @@ export class SigningStargateClient extends StargateClient { return this.broadcastTx(txBytes, this.broadcastTimeoutMs, this.broadcastPollIntervalMs); } - /** - * This method is useful if you want to send a transaction in broadcast, - * without waiting for it to be placed inside a block, because for example - * I would like to receive the hash to later track the transaction with another tool. - * @returns Returns the hash of the transaction - */ - public async signAndBroadcastSync( - signerAddress: string, - messages: readonly EncodeObject[], - fee: StdFee | "auto" | number, - memo = "", - ): Promise { - let usedFee: StdFee; - if (fee == "auto" || typeof fee === "number") { - assertDefined(this.gasPrice, "Gas price must be set in the client options when auto gas is used."); - const gasEstimation = await this.simulate(signerAddress, messages, memo); - const multiplier = typeof fee === "number" ? fee : 1.3; - usedFee = calculateFee(Math.round(gasEstimation * multiplier), this.gasPrice); - } else { - usedFee = fee; - } - const txRaw = await this.sign(signerAddress, messages, usedFee, memo); - const txBytes = TxRaw.encode(txRaw).finish(); - return this.broadcastTxSync(txBytes); - } - /** * Gets account number and sequence from the API, creates a sign doc, * creates a single signature and assembles the signed transaction. @@ -403,7 +351,11 @@ export class SigningStargateClient extends StargateClient { if (!accountFromSigner) { throw new Error("Failed to retrieve account from signer"); } - const pubkey = encodePubkey(encodeSecp256k1Pubkey(accountFromSigner.pubkey)); + const pubkey = encodePubkey( + chainId.startsWith("evmos_9001-") + ? encodeEthSecp256k1Pubkey(accountFromSigner.pubkey) + : encodeSecp256k1Pubkey(accountFromSigner.pubkey), + ); const signMode = SignMode.SIGN_MODE_LEGACY_AMINO_JSON; const msgs = messages.map((msg) => this.aminoTypes.toAmino(msg)); const signDoc = makeSignDocAmino(msgs, fee, chainId, memo, accountNumber, sequence); @@ -448,7 +400,11 @@ export class SigningStargateClient extends StargateClient { if (!accountFromSigner) { throw new Error("Failed to retrieve account from signer"); } - const pubkey = encodePubkey(encodeSecp256k1Pubkey(accountFromSigner.pubkey)); + const pubkey = encodePubkey( + chainId.startsWith("cronostestnet_338-") + ? encodeEthSecp256k1Pubkey(accountFromSigner.pubkey) + : encodeSecp256k1Pubkey(accountFromSigner.pubkey), + ); const txBodyEncodeObject: TxBodyEncodeObject = { typeUrl: "/cosmos.tx.v1beta1.TxBody", value: { @@ -473,4 +429,4 @@ export class SigningStargateClient extends StargateClient { signatures: [fromBase64(signature.signature)], }); } -} +} \ No newline at end of file From 87d328106017c7cf6e8929d5ef91409ed73359f5 Mon Sep 17 00:00:00 2001 From: vincentysc Date: Fri, 11 Aug 2023 14:29:26 +0800 Subject: [PATCH 02/16] update pubkey --- packages/proto-signing/src/pubkey.ts | 6 +- packages/stargate/src/accounts.ts | 2 +- .../stargate/src/signingstargateclient.ts | 104 +++++++++++++----- 3 files changed, 76 insertions(+), 36 deletions(-) diff --git a/packages/proto-signing/src/pubkey.ts b/packages/proto-signing/src/pubkey.ts index fa73970bcd..ca5d3a3192 100644 --- a/packages/proto-signing/src/pubkey.ts +++ b/packages/proto-signing/src/pubkey.ts @@ -85,11 +85,7 @@ export function anyToSinglePubkey(pubkey: Any): SinglePubkey { } } -export function decodePubkey(pubkey?: Any | null): Pubkey | null { - if (!pubkey || !pubkey.value) { - return null; - } - +export function decodePubkey(pubkey: Any): Pubkey { switch (pubkey.typeUrl) { case "/ethermint.crypto.v1.ethsecp256k1.PubKey": case "/cosmos.crypto.secp256k1.PubKey": diff --git a/packages/stargate/src/accounts.ts b/packages/stargate/src/accounts.ts index 4e5543c389..24615a7f82 100644 --- a/packages/stargate/src/accounts.ts +++ b/packages/stargate/src/accounts.ts @@ -26,7 +26,7 @@ function uint64FromProto(input: number | Long): Uint64 { function accountFromBaseAccount(input: BaseAccount): Account { const { address, pubKey, accountNumber, sequence } = input; - const pubkey = decodePubkey(pubKey); + const pubkey = pubKey ? decodePubkey(pubKey) : null; return { address: address, pubkey: pubkey, diff --git a/packages/stargate/src/signingstargateclient.ts b/packages/stargate/src/signingstargateclient.ts index a043a72098..e16e20b7c7 100644 --- a/packages/stargate/src/signingstargateclient.ts +++ b/packages/stargate/src/signingstargateclient.ts @@ -1,9 +1,4 @@ -import { - encodeEthSecp256k1Pubkey, - encodeSecp256k1Pubkey, - makeSignDoc as makeSignDocAmino, - StdFee, -} from "@cosmjs/amino"; +import { encodeSecp256k1Pubkey, makeSignDoc as makeSignDocAmino, StdFee } from "@cosmjs/amino"; import { fromBase64 } from "@cosmjs/encoding"; import { Int53, Uint53 } from "@cosmjs/math"; import { @@ -17,7 +12,12 @@ import { Registry, TxBodyEncodeObject, } from "@cosmjs/proto-signing"; -import { HttpEndpoint, Tendermint34Client } from "@cosmjs/tendermint-rpc"; +import { + HttpEndpoint, + Tendermint34Client, + Tendermint37Client, + TendermintClient, +} from "@cosmjs/tendermint-rpc"; import { assert, assertDefined } from "@cosmjs/utils"; import { Coin } from "cosmjs-types/cosmos/base/v1beta1/coin"; import { MsgWithdrawDelegatorReward } from "cosmjs-types/cosmos/distribution/v1beta1/tx"; @@ -36,6 +36,7 @@ import { distributionTypes, feegrantTypes, govTypes, + groupTypes, ibcTypes, MsgDelegateEncodeObject, MsgSendEncodeObject, @@ -64,15 +65,12 @@ export const defaultRegistryTypes: ReadonlyArray<[string, GeneratedType]> = [ ...distributionTypes, ...feegrantTypes, ...govTypes, + ...groupTypes, ...stakingTypes, ...ibcTypes, ...vestingTypes, ]; -function createDefaultRegistry(): Registry { - return new Registry(defaultRegistryTypes); -} - /** * Signing information for a single signer that is not included in the transaction. * @@ -92,19 +90,18 @@ export interface PrivateSigningStargateClient { export interface SigningStargateClientOptions extends StargateClientOptions { readonly registry?: Registry; readonly aminoTypes?: AminoTypes; - readonly prefix?: string; readonly broadcastTimeoutMs?: number; readonly broadcastPollIntervalMs?: number; readonly gasPrice?: GasPrice; } -function createDefaultTypes(prefix: string): AminoConverters { +export function createDefaultAminoConverters(): AminoConverters { return { ...createAuthzAminoConverters(), ...createBankAminoConverters(), ...createDistributionAminoConverters(), ...createGovAminoConverters(), - ...createStakingAminoConverters(prefix), + ...createStakingAminoConverters(), ...createIbcAminoConverters(), ...createFeegrantAminoConverters(), ...createVestingAminoConverters(), @@ -120,12 +117,41 @@ export class SigningStargateClient extends StargateClient { private readonly aminoTypes: AminoTypes; private readonly gasPrice: GasPrice | undefined; + /** + * Creates an instance by connecting to the given Tendermint RPC endpoint. + * + * This uses auto-detection to decide between a Tendermint 0.37 and 0.34 client. + * To set the Tendermint client explicitly, use `createWithSigner`. + */ public static async connectWithSigner( endpoint: string | HttpEndpoint, signer: OfflineSigner, options: SigningStargateClientOptions = {}, ): Promise { - const tmClient = await Tendermint34Client.connect(endpoint); + // Tendermint/CometBFT 0.34/0.37 auto-detection. Starting with 0.37 we seem to get reliable versions again 🎉 + // Using 0.34 as the fallback. + let tmClient: TendermintClient; + const tm37Client = await Tendermint37Client.connect(endpoint); + const version = (await tm37Client.status()).nodeInfo.version; + if (version.startsWith("0.37.")) { + tmClient = tm37Client; + } else { + tm37Client.disconnect(); + tmClient = await Tendermint34Client.connect(endpoint); + } + + return SigningStargateClient.createWithSigner(tmClient, signer, options); + } + + /** + * Creates an instance from a manually created Tendermint client. + * Use this to use `Tendermint37Client` instead of `Tendermint34Client`. + */ + public static async createWithSigner( + tmClient: TendermintClient, + signer: OfflineSigner, + options: SigningStargateClientOptions = {}, + ): Promise { return new SigningStargateClient(tmClient, signer, options); } @@ -146,15 +172,15 @@ export class SigningStargateClient extends StargateClient { } protected constructor( - tmClient: Tendermint34Client | undefined, + tmClient: TendermintClient | undefined, signer: OfflineSigner, options: SigningStargateClientOptions, ) { super(tmClient, options); - // TODO: do we really want to set a default here? Ideally we could get it from the signer such that users only have to set it once. - const prefix = options.prefix ?? "cosmos"; - const { registry = createDefaultRegistry(), aminoTypes = new AminoTypes(createDefaultTypes(prefix)) } = - options; + const { + registry = new Registry(defaultRegistryTypes), + aminoTypes = new AminoTypes(createDefaultAminoConverters()), + } = options; this.registry = registry; this.aminoTypes = aminoTypes; this.signer = signer; @@ -302,6 +328,32 @@ export class SigningStargateClient extends StargateClient { return this.broadcastTx(txBytes, this.broadcastTimeoutMs, this.broadcastPollIntervalMs); } + /** + * This method is useful if you want to send a transaction in broadcast, + * without waiting for it to be placed inside a block, because for example + * I would like to receive the hash to later track the transaction with another tool. + * @returns Returns the hash of the transaction + */ + public async signAndBroadcastSync( + signerAddress: string, + messages: readonly EncodeObject[], + fee: StdFee | "auto" | number, + memo = "", + ): Promise { + let usedFee: StdFee; + if (fee == "auto" || typeof fee === "number") { + assertDefined(this.gasPrice, "Gas price must be set in the client options when auto gas is used."); + const gasEstimation = await this.simulate(signerAddress, messages, memo); + const multiplier = typeof fee === "number" ? fee : 1.3; + usedFee = calculateFee(Math.round(gasEstimation * multiplier), this.gasPrice); + } else { + usedFee = fee; + } + const txRaw = await this.sign(signerAddress, messages, usedFee, memo); + const txBytes = TxRaw.encode(txRaw).finish(); + return this.broadcastTxSync(txBytes); + } + /** * Gets account number and sequence from the API, creates a sign doc, * creates a single signature and assembles the signed transaction. @@ -351,11 +403,7 @@ export class SigningStargateClient extends StargateClient { if (!accountFromSigner) { throw new Error("Failed to retrieve account from signer"); } - const pubkey = encodePubkey( - chainId.startsWith("evmos_9001-") - ? encodeEthSecp256k1Pubkey(accountFromSigner.pubkey) - : encodeSecp256k1Pubkey(accountFromSigner.pubkey), - ); + const pubkey = encodePubkey(encodeSecp256k1Pubkey(accountFromSigner.pubkey)); const signMode = SignMode.SIGN_MODE_LEGACY_AMINO_JSON; const msgs = messages.map((msg) => this.aminoTypes.toAmino(msg)); const signDoc = makeSignDocAmino(msgs, fee, chainId, memo, accountNumber, sequence); @@ -400,11 +448,7 @@ export class SigningStargateClient extends StargateClient { if (!accountFromSigner) { throw new Error("Failed to retrieve account from signer"); } - const pubkey = encodePubkey( - chainId.startsWith("cronostestnet_338-") - ? encodeEthSecp256k1Pubkey(accountFromSigner.pubkey) - : encodeSecp256k1Pubkey(accountFromSigner.pubkey), - ); + const pubkey = encodePubkey(encodeSecp256k1Pubkey(accountFromSigner.pubkey)); const txBodyEncodeObject: TxBodyEncodeObject = { typeUrl: "/cosmos.tx.v1beta1.TxBody", value: { From 338fd271f3a33d88829fba9df09bdc14e2d6ab56 Mon Sep 17 00:00:00 2001 From: vincentysc Date: Fri, 11 Aug 2023 15:40:31 +0800 Subject: [PATCH 03/16] update pubkey encode --- packages/stargate/src/signingstargateclient.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/packages/stargate/src/signingstargateclient.ts b/packages/stargate/src/signingstargateclient.ts index e16e20b7c7..3106cbfbdc 100644 --- a/packages/stargate/src/signingstargateclient.ts +++ b/packages/stargate/src/signingstargateclient.ts @@ -1,4 +1,4 @@ -import { encodeSecp256k1Pubkey, makeSignDoc as makeSignDocAmino, StdFee } from "@cosmjs/amino"; +import { encodeEthSecp256k1Pubkey, encodeSecp256k1Pubkey, makeSignDoc as makeSignDocAmino, StdFee } from "@cosmjs/amino"; import { fromBase64 } from "@cosmjs/encoding"; import { Int53, Uint53 } from "@cosmjs/math"; import { @@ -403,7 +403,9 @@ export class SigningStargateClient extends StargateClient { if (!accountFromSigner) { throw new Error("Failed to retrieve account from signer"); } - const pubkey = encodePubkey(encodeSecp256k1Pubkey(accountFromSigner.pubkey)); + + + const pubkey = encodePubkey (chainId.startsWith("evmos_9001-") ? encodeEthSecp256k1Pubkey(accountFromSigner.pubkey): encodeSecp256k1Pubkey(accountFromSigner.pubkey)); const signMode = SignMode.SIGN_MODE_LEGACY_AMINO_JSON; const msgs = messages.map((msg) => this.aminoTypes.toAmino(msg)); const signDoc = makeSignDocAmino(msgs, fee, chainId, memo, accountNumber, sequence); @@ -448,7 +450,7 @@ export class SigningStargateClient extends StargateClient { if (!accountFromSigner) { throw new Error("Failed to retrieve account from signer"); } - const pubkey = encodePubkey(encodeSecp256k1Pubkey(accountFromSigner.pubkey)); + const pubkey = encodePubkey (chainId.startsWith("evmos_9001-") ? encodeEthSecp256k1Pubkey(accountFromSigner.pubkey): encodeSecp256k1Pubkey(accountFromSigner.pubkey)); const txBodyEncodeObject: TxBodyEncodeObject = { typeUrl: "/cosmos.tx.v1beta1.TxBody", value: { From 660e53dbe6ec261ce990c274e2ba047902e4eefe Mon Sep 17 00:00:00 2001 From: vincentysc Date: Tue, 15 Aug 2023 16:09:49 +0800 Subject: [PATCH 04/16] add cointype to signer accountData --- .pnp.cjs | 7506 +++++++++-------- packages/amino/src/index.ts | 2 +- packages/amino/src/signature.ts | 15 +- .../src/directsecp256k1hdwallet.spec.ts | 13 + .../src/directsecp256k1hdwallet.ts | 138 +- .../src/directsecp256k1wallet.spec.ts | 1 + .../src/directsecp256k1wallet.ts | 1 + packages/proto-signing/src/signer.ts | 1 + .../stargate/src/signingstargateclient.ts | 7 +- yarn.lock | 3947 +++++---- 10 files changed, 6189 insertions(+), 5442 deletions(-) diff --git a/.pnp.cjs b/.pnp.cjs index 503ceb7109..e6f0beff11 100755 --- a/.pnp.cjs +++ b/.pnp.cjs @@ -102,9 +102,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["cosmjs-monorepo-root", ["workspace:."]]\ ],\ "fallbackPool": [\ + [\ + "@aashutoshrathi/word-wrap",\ + "npm:1.2.6"\ + ],\ [\ "@agoric/babel-standalone",\ - "npm:7.9.5"\ + "npm:7.17.7"\ ],\ [\ "@agoric/make-hardener",\ @@ -114,97 +118,101 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "@agoric/transform-module",\ "npm:0.4.1"\ ],\ + [\ + "@ampproject/remapping",\ + "npm:2.2.1"\ + ],\ [\ "@babel/code-frame",\ - "npm:7.12.13"\ + "npm:7.22.10"\ ],\ [\ "@babel/compat-data",\ - "npm:7.14.0"\ + "npm:7.22.9"\ ],\ [\ "@babel/core",\ - "npm:7.14.3"\ + "npm:7.22.10"\ ],\ [\ "@babel/generator",\ - "npm:7.14.3"\ + "npm:7.22.10"\ ],\ [\ "@babel/helper-compilation-targets",\ - "virtual:9181aae4d97715a94d175eeb28481474469d9a92ff383295cd43eff028bd01f2bf9f49d84b8d34047ac7d6e33c4bf822a6d6790e29e06180e55c1239694939ca#npm:7.13.16"\ + "npm:7.22.10"\ ],\ [\ - "@babel/helper-function-name",\ - "npm:7.14.2"\ + "@babel/helper-environment-visitor",\ + "npm:7.22.5"\ ],\ [\ - "@babel/helper-get-function-arity",\ - "npm:7.12.13"\ + "@babel/helper-function-name",\ + "npm:7.22.5"\ ],\ [\ - "@babel/helper-member-expression-to-functions",\ - "npm:7.13.12"\ + "@babel/helper-hoist-variables",\ + "npm:7.22.5"\ ],\ [\ "@babel/helper-module-imports",\ - "npm:7.13.12"\ + "npm:7.22.5"\ ],\ [\ "@babel/helper-module-transforms",\ - "npm:7.14.2"\ - ],\ - [\ - "@babel/helper-optimise-call-expression",\ - "npm:7.12.13"\ - ],\ - [\ - "@babel/helper-replace-supers",\ - "npm:7.14.3"\ + "virtual:54c0aaa6741f1e8c05c2334af06937fdcda6330884e8efea3aca7eb7152547beb2740605170ab314f0efe7669f1faa939c930f85e897349fb50670f640c6b7f8#npm:7.22.9"\ ],\ [\ "@babel/helper-simple-access",\ - "npm:7.13.12"\ + "npm:7.22.5"\ ],\ [\ "@babel/helper-split-export-declaration",\ - "npm:7.12.13"\ + "npm:7.22.6"\ + ],\ + [\ + "@babel/helper-string-parser",\ + "npm:7.22.5"\ ],\ [\ "@babel/helper-validator-identifier",\ - "npm:7.14.0"\ + "npm:7.22.5"\ ],\ [\ "@babel/helper-validator-option",\ - "npm:7.12.17"\ + "npm:7.22.5"\ ],\ [\ "@babel/helpers",\ - "npm:7.14.0"\ + "npm:7.22.10"\ ],\ [\ "@babel/highlight",\ - "npm:7.14.0"\ + "npm:7.22.10"\ ],\ [\ "@babel/parser",\ - "npm:7.14.3"\ + "npm:7.22.10"\ ],\ [\ "@babel/runtime",\ - "npm:7.14.0"\ + "npm:7.22.10"\ ],\ [\ "@babel/template",\ - "npm:7.12.13"\ + "npm:7.22.5"\ ],\ [\ "@babel/traverse",\ - "npm:7.14.2"\ + "npm:7.22.10"\ ],\ [\ "@babel/types",\ - "npm:7.14.2"\ + "npm:7.22.10"\ + ],\ + [\ + "@colors/colors",\ + "npm:1.5.0"\ ],\ [\ "@confio/ics23",\ @@ -276,11 +284,31 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "@discoveryjs/json-ext",\ - "npm:0.5.3"\ + "npm:0.5.7"\ + ],\ + [\ + "@eslint-community/eslint-utils",\ + "virtual:cf525c1a77fe48728704ab816789becfaf0e5ec773e4a0941b98c429eae337e666f647a59b5de8fa80f47376c211385038f4850f2392c21e4ab4ddc1ac2499f3#npm:4.4.0"\ + ],\ + [\ + "@eslint-community/regexpp",\ + "npm:4.6.2"\ ],\ [\ "@eslint/eslintrc",\ - "npm:0.4.1"\ + "npm:0.4.3"\ + ],\ + [\ + "@humanwhocodes/config-array",\ + "npm:0.5.0"\ + ],\ + [\ + "@humanwhocodes/object-schema",\ + "npm:1.2.1"\ + ],\ + [\ + "@isaacs/cliui",\ + "npm:8.0.2"\ ],\ [\ "@istanbuljs/load-nyc-config",\ @@ -288,7 +316,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "@istanbuljs/nyc-config-typescript",\ - "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.1"\ + "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.2"\ ],\ [\ "@istanbuljs/schema",\ @@ -296,11 +324,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "@jridgewell/gen-mapping",\ - "npm:0.3.2"\ + "npm:0.3.3"\ ],\ [\ "@jridgewell/resolve-uri",\ - "npm:3.1.0"\ + "npm:3.1.1"\ ],\ [\ "@jridgewell/set-array",\ @@ -308,19 +336,19 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "@jridgewell/source-map",\ - "npm:0.3.2"\ + "npm:0.3.5"\ ],\ [\ "@jridgewell/sourcemap-codec",\ - "npm:1.4.14"\ + "npm:1.4.15"\ ],\ [\ "@jridgewell/trace-mapping",\ - "npm:0.3.14"\ + "npm:0.3.19"\ ],\ [\ "@koa/cors",\ - "npm:3.3.0"\ + "npm:3.4.3"\ ],\ [\ "@ledgerhq/devices",\ @@ -344,7 +372,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "@ledgerhq/hw-transport-webusb",\ - "npm:5.51.1"\ + "npm:5.53.1"\ ],\ [\ "@ledgerhq/logs",\ @@ -352,23 +380,27 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "@noble/hashes",\ - "npm:1.0.0"\ + "npm:1.3.1"\ ],\ [\ "@nodelib/fs.scandir",\ - "npm:2.1.4"\ + "npm:2.1.5"\ ],\ [\ "@nodelib/fs.stat",\ - "npm:2.0.4"\ + "npm:2.0.5"\ ],\ [\ "@nodelib/fs.walk",\ - "npm:1.2.6"\ + "npm:1.2.8"\ ],\ [\ - "@npmcli/move-file",\ - "npm:1.1.2"\ + "@npmcli/fs",\ + "npm:3.1.0"\ + ],\ + [\ + "@pkgjs/parseargs",\ + "npm:0.11.0"\ ],\ [\ "@protobufjs/aspromise",\ @@ -416,7 +448,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "@tootallnate/once",\ - "npm:1.1.2"\ + "npm:2.0.0"\ ],\ [\ "@types/accepts",\ @@ -424,11 +456,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "@types/babel-types",\ - "npm:7.0.9"\ + "npm:7.0.11"\ ],\ [\ "@types/babylon",\ - "npm:6.16.5"\ + "npm:6.16.6"\ ],\ [\ "@types/base64-js",\ @@ -436,19 +468,19 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "@types/bn.js",\ - "npm:5.1.0"\ + "npm:5.1.1"\ ],\ [\ "@types/body-parser",\ - "npm:1.19.0"\ + "npm:1.19.2"\ ],\ [\ "@types/connect",\ - "npm:3.4.34"\ + "npm:3.4.35"\ ],\ [\ "@types/content-disposition",\ - "npm:0.5.3"\ + "npm:0.5.5"\ ],\ [\ "@types/cookie",\ @@ -456,11 +488,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "@types/cookies",\ - "npm:0.7.6"\ + "npm:0.7.7"\ ],\ [\ "@types/cors",\ - "npm:2.8.12"\ + "npm:2.8.13"\ ],\ [\ "@types/diff",\ @@ -472,7 +504,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "@types/eslint",\ - "npm:7.2.10"\ + "npm:8.44.2"\ ],\ [\ "@types/eslint-plugin-prettier",\ @@ -484,31 +516,31 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "@types/estree",\ - "npm:0.0.47"\ + "npm:1.0.1"\ ],\ [\ "@types/express",\ - "npm:4.17.13"\ + "npm:4.17.17"\ ],\ [\ "@types/express-serve-static-core",\ - "npm:4.17.30"\ + "npm:4.17.35"\ ],\ [\ "@types/http-assert",\ - "npm:1.5.1"\ + "npm:1.5.3"\ ],\ [\ "@types/http-errors",\ - "npm:1.8.0"\ + "npm:2.0.1"\ ],\ [\ "@types/jasmine",\ - "npm:4.0.3"\ + "npm:4.3.5"\ ],\ [\ "@types/json-schema",\ - "npm:7.0.9"\ + "npm:7.0.12"\ ],\ [\ "@types/json5",\ @@ -516,11 +548,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "@types/karma",\ - "npm:6.3.0"\ + "npm:6.3.4"\ ],\ [\ "@types/karma-firefox-launcher",\ - "npm:2.1.0"\ + "npm:2.1.1"\ ],\ [\ "@types/karma-jasmine",\ @@ -528,7 +560,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "@types/karma-jasmine-html-reporter",\ - "npm:1.5.1"\ + "npm:1.7.0"\ ],\ [\ "@types/keygrip",\ @@ -536,11 +568,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "@types/koa",\ - "npm:2.13.4"\ + "npm:2.13.8"\ ],\ [\ "@types/koa-bodyparser",\ - "npm:4.3.7"\ + "npm:4.3.10"\ ],\ [\ "@types/koa-compose",\ @@ -548,11 +580,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "@types/koa__cors",\ - "npm:3.3.0"\ + "npm:3.3.1"\ ],\ [\ "@types/ledgerhq__hw-transport",\ - "npm:4.21.3"\ + "npm:4.21.4"\ ],\ [\ "@types/ledgerhq__hw-transport-node-hid",\ @@ -572,7 +604,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "@types/long",\ - "npm:4.0.1"\ + "npm:4.0.2"\ ],\ [\ "@types/mime",\ @@ -580,31 +612,35 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "@types/node",\ - "npm:18.15.11"\ + "npm:18.17.5"\ ],\ [\ "@types/node-hid",\ - "npm:1.3.0"\ + "npm:1.3.1"\ ],\ [\ "@types/pako",\ - "npm:1.0.1"\ + "npm:1.0.4"\ ],\ [\ "@types/qs",\ - "npm:6.9.6"\ + "npm:6.9.7"\ ],\ [\ "@types/range-parser",\ - "npm:1.2.3"\ + "npm:1.2.4"\ ],\ [\ "@types/semver",\ "npm:7.5.0"\ ],\ + [\ + "@types/send",\ + "npm:0.17.1"\ + ],\ [\ "@types/serve-static",\ - "npm:1.13.9"\ + "npm:1.15.2"\ ],\ [\ "@types/ws",\ @@ -612,115 +648,115 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "@types/yargs",\ - "npm:15.0.13"\ + "npm:15.0.15"\ ],\ [\ "@types/yargs-parser",\ - "npm:20.2.0"\ + "npm:21.0.0"\ ],\ [\ "@typescript-eslint/eslint-plugin",\ - "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"\ + "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"\ ],\ [\ "@typescript-eslint/parser",\ - "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"\ + "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"\ ],\ [\ "@typescript-eslint/scope-manager",\ - "npm:5.54.0"\ + "npm:5.62.0"\ ],\ [\ "@typescript-eslint/type-utils",\ - "virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:5.54.0"\ + "virtual:d57bbf7cb82653932ad4bacddeffa4b6821f4eb6abff5faa16997023759d2ebded0ed9e569ad0f724c028eca007397f1cb9dc80d3544e80680b0c6f1dfa61ec2#npm:5.62.0"\ ],\ [\ "@typescript-eslint/types",\ - "npm:5.54.0"\ + "npm:5.62.0"\ ],\ [\ "@typescript-eslint/typescript-estree",\ - "virtual:b72deb79e2ec592967c5308e4bf1e792d5b5ca0d14e9c1ab085f52dd2b14c18062e243ec00f9ee082ef907e2293f1a70ff799a6253f4f2f8605e8d778a51ba89#npm:5.54.0"\ + "virtual:90626d291792210425dc8a00f4b0c1448e6dcc27b44b4b647b07081bccb82e428dc5b81600d288e4bc9e9d1ca8a4eddf3a477fa5a9b669509888cd1e088c4762#npm:5.62.0"\ ],\ [\ "@typescript-eslint/utils",\ - "virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:5.54.0"\ + "virtual:d57bbf7cb82653932ad4bacddeffa4b6821f4eb6abff5faa16997023759d2ebded0ed9e569ad0f724c028eca007397f1cb9dc80d3544e80680b0c6f1dfa61ec2#npm:5.62.0"\ ],\ [\ "@typescript-eslint/visitor-keys",\ - "npm:5.54.0"\ + "npm:5.62.0"\ ],\ [\ "@webassemblyjs/ast",\ - "npm:1.11.1"\ + "npm:1.11.6"\ ],\ [\ "@webassemblyjs/floating-point-hex-parser",\ - "npm:1.11.1"\ + "npm:1.11.6"\ ],\ [\ "@webassemblyjs/helper-api-error",\ - "npm:1.11.1"\ + "npm:1.11.6"\ ],\ [\ "@webassemblyjs/helper-buffer",\ - "npm:1.11.1"\ + "npm:1.11.6"\ ],\ [\ "@webassemblyjs/helper-numbers",\ - "npm:1.11.1"\ + "npm:1.11.6"\ ],\ [\ "@webassemblyjs/helper-wasm-bytecode",\ - "npm:1.11.1"\ + "npm:1.11.6"\ ],\ [\ "@webassemblyjs/helper-wasm-section",\ - "npm:1.11.1"\ + "npm:1.11.6"\ ],\ [\ "@webassemblyjs/ieee754",\ - "npm:1.11.1"\ + "npm:1.11.6"\ ],\ [\ "@webassemblyjs/leb128",\ - "npm:1.11.1"\ + "npm:1.11.6"\ ],\ [\ "@webassemblyjs/utf8",\ - "npm:1.11.1"\ + "npm:1.11.6"\ ],\ [\ "@webassemblyjs/wasm-edit",\ - "npm:1.11.1"\ + "npm:1.11.6"\ ],\ [\ "@webassemblyjs/wasm-gen",\ - "npm:1.11.1"\ + "npm:1.11.6"\ ],\ [\ "@webassemblyjs/wasm-opt",\ - "npm:1.11.1"\ + "npm:1.11.6"\ ],\ [\ "@webassemblyjs/wasm-parser",\ - "npm:1.11.1"\ + "npm:1.11.6"\ ],\ [\ "@webassemblyjs/wast-printer",\ - "npm:1.11.1"\ + "npm:1.11.6"\ ],\ [\ "@webpack-cli/configtest",\ - "virtual:e545141db94d121e901ffbb09d6c54f53f485ecdf99f9847aaf0f186594082f8121d89d8183c7bf05b17673cbb64c358037fbd69d06a0ad71096f07b595a2385#npm:1.0.3"\ + "virtual:6ece23f624e19111012ab576f39c4a472e20eed34986fb51bd7f0fae3354bdbed57785b6a87ec3abdddea1300ef03566e7b501328d2855bdfae78bb45afd999a#npm:1.2.0"\ ],\ [\ "@webpack-cli/info",\ - "virtual:e545141db94d121e901ffbb09d6c54f53f485ecdf99f9847aaf0f186594082f8121d89d8183c7bf05b17673cbb64c358037fbd69d06a0ad71096f07b595a2385#npm:1.2.4"\ + "virtual:6ece23f624e19111012ab576f39c4a472e20eed34986fb51bd7f0fae3354bdbed57785b6a87ec3abdddea1300ef03566e7b501328d2855bdfae78bb45afd999a#npm:1.5.0"\ ],\ [\ "@webpack-cli/serve",\ - "virtual:e545141db94d121e901ffbb09d6c54f53f485ecdf99f9847aaf0f186594082f8121d89d8183c7bf05b17673cbb64c358037fbd69d06a0ad71096f07b595a2385#npm:1.4.0"\ + "virtual:6ece23f624e19111012ab576f39c4a472e20eed34986fb51bd7f0fae3354bdbed57785b6a87ec3abdddea1300ef03566e7b501328d2855bdfae78bb45afd999a#npm:1.7.0"\ ],\ [\ "@xtuc/ieee754",\ @@ -736,15 +772,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "accepts",\ - "npm:1.3.7"\ + "npm:1.3.8"\ ],\ [\ "acorn",\ - "npm:7.4.1"\ + "npm:8.10.0"\ ],\ [\ - "acorn-jsx",\ - "virtual:8d8ea5d1e3376905d0290522290f47c29213c64d936d96293d758a315829a3cf4c6a5b8ffc1cfee36c3db08f700ad3aaf0711cc5d406a7218c275de6d74effa9#npm:5.3.1"\ + "acorn-import-assertions",\ + "virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:1.9.0"\ ],\ [\ "agent-base",\ @@ -752,7 +788,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "agentkeepalive",\ - "npm:4.1.4"\ + "npm:4.5.0"\ ],\ [\ "aggregate-error",\ @@ -764,11 +800,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "ajv-keywords",\ - "virtual:8704647575acf2f5b19fccfcb0acebacd9c94259ebe9afcfaf4c053812fd896f10775930ee5a5949e20833a61503d2cd22aa259cbe69729f6a192de4bf43dc00#npm:3.5.2"\ + "virtual:f2b36937f163b579815d3163513b3330d7a31aaf0599eea66346382b8838395c613f4204e9809cc2ff6bba09c17ab0c34b37deadcb147de7e2f5e535d6ccc245#npm:3.5.2"\ ],\ [\ "ansi-colors",\ - "npm:4.1.1"\ + "npm:4.1.3"\ ],\ [\ "ansi-regex",\ @@ -776,7 +812,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "ansi-sequence-parser",\ - "npm:1.1.0"\ + "npm:1.1.1"\ ],\ [\ "ansi-styles",\ @@ -784,7 +820,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "anymatch",\ - "npm:3.1.2"\ + "npm:3.1.3"\ ],\ [\ "append-transform",\ @@ -792,7 +828,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "aproba",\ - "npm:1.2.0"\ + "npm:2.0.0"\ ],\ [\ "archy",\ @@ -800,7 +836,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "are-we-there-yet",\ - "npm:1.1.5"\ + "npm:3.0.1"\ ],\ [\ "arg",\ @@ -810,17 +846,33 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "argparse",\ "npm:1.0.10"\ ],\ + [\ + "array-buffer-byte-length",\ + "npm:1.0.0"\ + ],\ [\ "array-includes",\ - "npm:3.1.3"\ + "npm:3.1.6"\ ],\ [\ "array-union",\ "npm:2.1.0"\ ],\ + [\ + "array.prototype.findlastindex",\ + "npm:1.2.2"\ + ],\ [\ "array.prototype.flat",\ - "npm:1.2.4"\ + "npm:1.3.1"\ + ],\ + [\ + "array.prototype.flatmap",\ + "npm:1.3.1"\ + ],\ + [\ + "arraybuffer.prototype.slice",\ + "npm:1.0.1"\ ],\ [\ "ast-types",\ @@ -830,6 +882,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "astral-regex",\ "npm:2.0.0"\ ],\ + [\ + "available-typed-arrays",\ + "npm:1.0.5"\ + ],\ [\ "axios",\ "npm:0.21.4"\ @@ -868,15 +924,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "bn.js",\ - "npm:5.2.0"\ + "npm:5.2.1"\ ],\ [\ "body-parser",\ - "npm:1.19.0"\ + "npm:1.20.2"\ ],\ [\ "brace-expansion",\ - "npm:1.1.11"\ + "npm:2.0.1"\ ],\ [\ "braces",\ @@ -888,7 +944,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "browserslist",\ - "npm:4.16.6"\ + "npm:4.21.10"\ ],\ [\ "buffer",\ @@ -896,15 +952,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "buffer-from",\ - "npm:1.1.1"\ + "npm:1.1.2"\ ],\ [\ "bytes",\ - "npm:3.1.0"\ + "npm:3.1.2"\ ],\ [\ "cacache",\ - "npm:15.1.0"\ + "npm:17.1.4"\ ],\ [\ "cache-content-type",\ @@ -928,7 +984,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "caniuse-lite",\ - "npm:1.0.30001228"\ + "npm:1.0.30001520"\ ],\ [\ "chalk",\ @@ -978,9 +1034,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "color-name",\ "npm:1.1.3"\ ],\ + [\ + "color-support",\ + "npm:1.1.3"\ + ],\ [\ "colorette",\ - "npm:1.2.2"\ + "npm:2.0.20"\ ],\ [\ "colors",\ @@ -1006,25 +1066,21 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "console-control-strings",\ "npm:1.1.0"\ ],\ - [\ - "contains-path",\ - "npm:1.0.0"\ - ],\ [\ "content-disposition",\ - "npm:0.5.3"\ + "npm:0.5.4"\ ],\ [\ "content-type",\ - "npm:1.0.4"\ + "npm:1.0.5"\ ],\ [\ "convert-source-map",\ - "npm:1.7.0"\ + "npm:1.9.0"\ ],\ [\ "cookie",\ - "npm:0.4.1"\ + "npm:0.4.2"\ ],\ [\ "cookies",\ @@ -1036,7 +1092,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "core-util-is",\ - "npm:1.0.2"\ + "npm:1.0.3"\ ],\ [\ "cors",\ @@ -1056,11 +1112,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "date-format",\ - "npm:4.0.3"\ + "npm:4.0.14"\ ],\ [\ "debug",\ - "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"\ + "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"\ ],\ [\ "decamelize",\ @@ -1080,15 +1136,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "deep-is",\ - "npm:0.1.3"\ + "npm:0.1.4"\ ],\ [\ "default-require-extensions",\ - "npm:3.0.0"\ + "npm:3.0.1"\ ],\ [\ "define-properties",\ - "npm:1.1.3"\ + "npm:1.2.0"\ ],\ [\ "delegates",\ @@ -1096,11 +1152,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "depd",\ - "npm:1.1.2"\ + "npm:2.0.0"\ ],\ [\ "destroy",\ - "npm:1.0.4"\ + "npm:1.2.0"\ ],\ [\ "detect-libc",\ @@ -1126,13 +1182,17 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "dom-serialize",\ "npm:2.2.1"\ ],\ + [\ + "eastasianwidth",\ + "npm:0.2.0"\ + ],\ [\ "ee-first",\ "npm:1.1.1"\ ],\ [\ "electron-to-chromium",\ - "npm:1.3.734"\ + "npm:1.4.491"\ ],\ [\ "elliptic",\ @@ -1156,19 +1216,19 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "engine.io",\ - "npm:6.2.0"\ + "npm:6.5.2"\ ],\ [\ "engine.io-parser",\ - "npm:5.0.4"\ + "npm:5.2.1"\ ],\ [\ "enhanced-resolve",\ - "npm:5.12.0"\ + "npm:5.15.0"\ ],\ [\ "enquirer",\ - "npm:2.3.6"\ + "npm:2.4.1"\ ],\ [\ "ent",\ @@ -1180,23 +1240,27 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "envinfo",\ - "npm:7.8.1"\ + "npm:7.10.0"\ ],\ [\ "err-code",\ "npm:2.0.3"\ ],\ - [\ - "error-ex",\ - "npm:1.3.2"\ - ],\ [\ "es-abstract",\ - "npm:1.18.0"\ + "npm:1.22.1"\ ],\ [\ "es-module-lexer",\ - "npm:0.9.3"\ + "npm:1.3.0"\ + ],\ + [\ + "es-set-tostringtag",\ + "npm:2.0.1"\ + ],\ + [\ + "es-shim-unscopables",\ + "npm:1.0.0"\ ],\ [\ "es-to-primitive",\ @@ -1220,27 +1284,27 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "eslint",\ - "npm:7.26.0"\ + "npm:7.32.0"\ ],\ [\ "eslint-config-prettier",\ - "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0"\ + "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0"\ ],\ [\ "eslint-import-resolver-node",\ - "npm:0.3.4"\ + "npm:0.3.9"\ ],\ [\ "eslint-module-utils",\ - "virtual:2eadd66b59b48f44c34405af61dc8ecc60484e8290c617db596475adca1f6cba5e4bd2e925bba9e3fc09c33d15fab7095b9b355d7452a17eb1c2aa5bcb33bd4c#npm:2.6.1"\ + "virtual:08eea6d9a73a541408383f60af21b29594836cd4302b23ae846c2be28e875e4e02303457ca2b7edad4af978e69637371dd6bded23f483121f4af7732715d02a0#npm:2.8.0"\ ],\ [\ "eslint-plugin-import",\ - "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.23.2"\ + "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.28.0"\ ],\ [\ "eslint-plugin-prettier",\ - "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.0"\ + "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.1"\ ],\ [\ "eslint-plugin-simple-import-sort",\ @@ -1272,7 +1336,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "esquery",\ - "npm:1.4.0"\ + "npm:1.5.0"\ ],\ [\ "esrecurse",\ @@ -1280,7 +1344,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "estraverse",\ - "npm:5.2.0"\ + "npm:5.3.0"\ ],\ [\ "esutils",\ @@ -1294,14 +1358,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "events",\ "npm:3.3.0"\ ],\ - [\ - "execa",\ - "npm:5.0.0"\ - ],\ [\ "expand-template",\ "npm:2.0.3"\ ],\ + [\ + "exponential-backoff",\ + "npm:3.1.1"\ + ],\ [\ "extend",\ "npm:3.0.2"\ @@ -1312,11 +1376,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "fast-diff",\ - "npm:1.2.0"\ + "npm:1.3.0"\ ],\ [\ "fast-glob",\ - "npm:3.2.11"\ + "npm:3.3.1"\ ],\ [\ "fast-json-stable-stringify",\ @@ -1328,11 +1392,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "fastest-levenshtein",\ - "npm:1.0.12"\ + "npm:1.0.16"\ ],\ [\ "fastq",\ - "npm:1.11.0"\ + "npm:1.15.0"\ ],\ [\ "file-entry-cache",\ @@ -1352,11 +1416,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "find-cache-dir",\ - "npm:3.3.1"\ + "npm:3.3.2"\ ],\ [\ "find-up",\ - "npm:2.1.0"\ + "npm:4.1.0"\ ],\ [\ "flat-cache",\ @@ -1364,11 +1428,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "flatted",\ - "npm:3.2.4"\ + "npm:3.2.7"\ ],\ [\ "follow-redirects",\ - "virtual:a313c479c5c7e54d9ec8fbeeea69ff640f56b8989ea2dff42351a3fa5c4061fb80a52d8ede0f0826a181a216820c2d2c3f15da881e7fdf31cef1c446e42f0c45#npm:1.14.9"\ + "virtual:a313c479c5c7e54d9ec8fbeeea69ff640f56b8989ea2dff42351a3fa5c4061fb80a52d8ede0f0826a181a216820c2d2c3f15da881e7fdf31cef1c446e42f0c45#npm:1.15.2"\ + ],\ + [\ + "for-each",\ + "npm:0.3.3"\ ],\ [\ "foreground-child",\ @@ -1388,11 +1456,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "fs-extra",\ - "npm:10.0.0"\ + "npm:8.1.0"\ ],\ [\ "fs-minipass",\ - "npm:2.1.0"\ + "npm:3.0.3"\ ],\ [\ "fs.realpath",\ @@ -1406,13 +1474,21 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "function-bind",\ "npm:1.1.1"\ ],\ + [\ + "function.prototype.name",\ + "npm:1.1.5"\ + ],\ [\ "functional-red-black-tree",\ "npm:1.0.1"\ ],\ + [\ + "functions-have-names",\ + "npm:1.2.3"\ + ],\ [\ "gauge",\ - "npm:2.7.4"\ + "npm:4.0.4"\ ],\ [\ "gensync",\ @@ -1424,15 +1500,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "get-intrinsic",\ - "npm:1.1.1"\ + "npm:1.2.1"\ ],\ [\ "get-package-type",\ "npm:0.1.0"\ ],\ [\ - "get-stream",\ - "npm:6.0.1"\ + "get-symbol-description",\ + "npm:1.0.0"\ ],\ [\ "github-from-package",\ @@ -1440,7 +1516,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "glob",\ - "npm:7.2.0"\ + "npm:7.2.3"\ ],\ [\ "glob-parent",\ @@ -1452,23 +1528,27 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "globals",\ - "npm:12.4.0"\ + "npm:13.21.0"\ ],\ [\ "globalthis",\ - "npm:1.0.2"\ + "npm:1.0.3"\ ],\ [\ "globby",\ "npm:11.1.0"\ ],\ + [\ + "gopd",\ + "npm:1.0.1"\ + ],\ [\ "graceful-fs",\ - "npm:4.2.6"\ + "npm:4.2.11"\ ],\ [\ - "grapheme-splitter",\ - "npm:1.0.4"\ + "graphemer",\ + "npm:1.4.0"\ ],\ [\ "has",\ @@ -1476,15 +1556,27 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "has-bigints",\ - "npm:1.0.1"\ + "npm:1.0.2"\ ],\ [\ "has-flag",\ "npm:4.0.0"\ ],\ + [\ + "has-property-descriptors",\ + "npm:1.0.0"\ + ],\ + [\ + "has-proto",\ + "npm:1.0.1"\ + ],\ [\ "has-symbols",\ - "npm:1.0.2"\ + "npm:1.0.3"\ + ],\ + [\ + "has-tostringtag",\ + "npm:1.0.0"\ ],\ [\ "has-unicode",\ @@ -1506,25 +1598,21 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "hmac-drbg",\ "npm:1.0.1"\ ],\ - [\ - "hosted-git-info",\ - "npm:2.8.9"\ - ],\ [\ "html-escaper",\ "npm:2.0.2"\ ],\ [\ "http-assert",\ - "npm:1.4.1"\ + "npm:1.5.0"\ ],\ [\ "http-cache-semantics",\ - "npm:4.1.0"\ + "npm:4.1.1"\ ],\ [\ "http-errors",\ - "npm:1.7.2"\ + "npm:2.0.0"\ ],\ [\ "http-proxy",\ @@ -1532,15 +1620,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "http-proxy-agent",\ - "npm:4.0.1"\ - ],\ - [\ - "https-proxy-agent",\ "npm:5.0.0"\ ],\ [\ - "human-signals",\ - "npm:2.1.0"\ + "https-proxy-agent",\ + "npm:5.0.1"\ ],\ [\ "humanize-ms",\ @@ -1564,7 +1648,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "import-local",\ - "npm:3.0.2"\ + "npm:3.1.0"\ ],\ [\ "imurmurhash",\ @@ -1574,10 +1658,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "indent-string",\ "npm:4.0.0"\ ],\ - [\ - "infer-owner",\ - "npm:1.0.4"\ - ],\ [\ "inflation",\ "npm:2.0.0"\ @@ -1594,21 +1674,25 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "ini",\ "npm:1.3.8"\ ],\ + [\ + "internal-slot",\ + "npm:1.0.5"\ + ],\ [\ "interpret",\ "npm:2.2.0"\ ],\ [\ "ip",\ - "npm:1.1.5"\ + "npm:2.0.0"\ ],\ [\ - "is-arrayish",\ - "npm:0.2.1"\ + "is-array-buffer",\ + "npm:3.0.2"\ ],\ [\ "is-bigint",\ - "npm:1.0.2"\ + "npm:1.0.4"\ ],\ [\ "is-binary-path",\ @@ -1616,19 +1700,19 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "is-boolean-object",\ - "npm:1.1.1"\ + "npm:1.1.2"\ ],\ [\ "is-callable",\ - "npm:1.2.3"\ + "npm:1.2.7"\ ],\ [\ "is-core-module",\ - "npm:2.4.0"\ + "npm:2.13.0"\ ],\ [\ "is-date-object",\ - "npm:1.0.4"\ + "npm:1.0.5"\ ],\ [\ "is-docker",\ @@ -1644,7 +1728,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "is-generator-function",\ - "npm:1.0.9"\ + "npm:1.0.10"\ ],\ [\ "is-glob",\ @@ -1656,7 +1740,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "is-negative-zero",\ - "npm:2.0.1"\ + "npm:2.0.2"\ ],\ [\ "is-number",\ @@ -1664,7 +1748,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "is-number-object",\ - "npm:1.0.5"\ + "npm:1.0.7"\ ],\ [\ "is-plain-object",\ @@ -1672,24 +1756,36 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "is-regex",\ - "npm:1.1.3"\ + "npm:1.1.4"\ + ],\ + [\ + "is-shared-array-buffer",\ + "npm:1.0.2"\ ],\ [\ "is-stream",\ - "npm:2.0.0"\ + "npm:2.0.1"\ ],\ [\ "is-string",\ - "npm:1.0.6"\ + "npm:1.0.7"\ ],\ [\ "is-symbol",\ "npm:1.0.4"\ ],\ + [\ + "is-typed-array",\ + "npm:1.1.12"\ + ],\ [\ "is-typedarray",\ "npm:1.0.0"\ ],\ + [\ + "is-weakref",\ + "npm:1.0.2"\ + ],\ [\ "is-windows",\ "npm:1.0.2"\ @@ -1700,11 +1796,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "isarray",\ - "npm:1.0.0"\ + "npm:2.0.5"\ ],\ [\ "isbinaryfile",\ - "npm:4.0.8"\ + "npm:4.0.10"\ ],\ [\ "isexe",\ @@ -1720,7 +1816,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "istanbul-lib-coverage",\ - "npm:3.0.0"\ + "npm:3.2.0"\ ],\ [\ "istanbul-lib-hook",\ @@ -1732,27 +1828,31 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "istanbul-lib-processinfo",\ - "npm:2.0.2"\ + "npm:2.0.3"\ ],\ [\ "istanbul-lib-report",\ - "npm:3.0.0"\ + "npm:3.0.1"\ ],\ [\ "istanbul-lib-source-maps",\ - "npm:4.0.0"\ + "npm:4.0.1"\ ],\ [\ "istanbul-reports",\ - "npm:3.0.2"\ + "npm:3.1.6"\ ],\ [\ - "jasmine",\ - "npm:4.2.1"\ + "jackspeak",\ + "npm:2.2.3"\ + ],\ + [\ + "jasmine",\ + "npm:4.6.0"\ ],\ [\ "jasmine-core",\ - "npm:4.2.0"\ + "npm:4.6.0"\ ],\ [\ "jasmine-spec-reporter",\ @@ -1774,10 +1874,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "jsesc",\ "npm:2.5.2"\ ],\ - [\ - "json-parse-better-errors",\ - "npm:1.0.2"\ - ],\ [\ "json-parse-even-better-errors",\ "npm:2.3.1"\ @@ -1792,7 +1888,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "json5",\ - "npm:1.0.1"\ + "npm:1.0.2"\ ],\ [\ "jsonc-parser",\ @@ -1800,19 +1896,19 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "jsonfile",\ - "npm:6.1.0"\ + "npm:4.0.0"\ ],\ [\ "karma",\ - "npm:6.3.16"\ + "npm:6.4.2"\ ],\ [\ "karma-chrome-launcher",\ - "npm:3.1.0"\ + "npm:3.2.0"\ ],\ [\ "karma-firefox-launcher",\ - "npm:2.1.0"\ + "npm:2.1.2"\ ],\ [\ "karma-jasmine",\ @@ -1820,7 +1916,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "karma-jasmine-html-reporter",\ - "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.6.0"\ + "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.7.0"\ ],\ [\ "keygrip",\ @@ -1832,11 +1928,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "koa",\ - "npm:2.13.4"\ + "npm:2.14.2"\ ],\ [\ "koa-bodyparser",\ - "npm:4.3.0"\ + "npm:4.4.1"\ ],\ [\ "koa-compose",\ @@ -1862,37 +1958,33 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "libsodium-wrappers-sumo",\ "npm:0.7.11"\ ],\ - [\ - "load-json-file",\ - "npm:4.0.0"\ - ],\ [\ "loader-runner",\ - "npm:4.2.0"\ + "npm:4.3.0"\ ],\ [\ "locate-path",\ - "npm:2.0.0"\ + "npm:5.0.0"\ ],\ [\ "lodash",\ "npm:4.17.21"\ ],\ - [\ - "lodash.clonedeep",\ - "npm:4.5.0"\ - ],\ [\ "lodash.flattendeep",\ "npm:4.4.0"\ ],\ + [\ + "lodash.merge",\ + "npm:4.6.2"\ + ],\ [\ "lodash.truncate",\ "npm:4.4.2"\ ],\ [\ "log4js",\ - "npm:6.4.1"\ + "npm:6.9.1"\ ],\ [\ "long",\ @@ -1900,7 +1992,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "lru-cache",\ - "npm:6.0.0"\ + "npm:7.18.3"\ ],\ [\ "lunr",\ @@ -1916,7 +2008,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "make-fetch-happen",\ - "npm:8.0.14"\ + "npm:11.1.1"\ ],\ [\ "marked",\ @@ -1936,7 +2028,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "micromatch",\ - "npm:4.0.4"\ + "npm:4.0.5"\ ],\ [\ "mime",\ @@ -1944,15 +2036,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "mime-db",\ - "npm:1.47.0"\ + "npm:1.52.0"\ ],\ [\ "mime-types",\ - "npm:2.1.30"\ - ],\ - [\ - "mimic-fn",\ - "npm:2.1.0"\ + "npm:2.1.35"\ ],\ [\ "mimic-response",\ @@ -1972,11 +2060,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "minimist",\ - "npm:1.2.6"\ + "npm:1.2.8"\ ],\ [\ "minipass",\ - "npm:3.1.3"\ + "npm:7.0.3"\ ],\ [\ "minipass-collect",\ @@ -1984,7 +2072,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "minipass-fetch",\ - "npm:1.3.3"\ + "npm:3.0.4"\ ],\ [\ "minipass-flush",\ @@ -2012,7 +2100,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "ms",\ - "npm:2.1.2"\ + "npm:2.1.3"\ ],\ [\ "napi-build-utils",\ @@ -2028,7 +2116,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "negotiator",\ - "npm:0.6.2"\ + "npm:0.6.3"\ ],\ [\ "neo-async",\ @@ -2036,19 +2124,19 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "node-abi",\ - "npm:2.26.0"\ + "npm:2.30.1"\ ],\ [\ "node-addon-api",\ - "npm:3.2.0"\ + "npm:3.2.1"\ ],\ [\ "node-gyp",\ - "npm:8.0.0"\ + "npm:9.4.0"\ ],\ [\ "node-gyp-build",\ - "npm:4.5.0"\ + "npm:4.6.0"\ ],\ [\ "node-hid",\ @@ -2060,31 +2148,19 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "node-releases",\ - "npm:1.1.72"\ - ],\ - [\ - "noop-logger",\ - "npm:0.1.1"\ + "npm:2.0.13"\ ],\ [\ "nopt",\ - "npm:5.0.0"\ - ],\ - [\ - "normalize-package-data",\ - "npm:2.5.0"\ + "npm:6.0.0"\ ],\ [\ "normalize-path",\ - "npm:2.1.1"\ - ],\ - [\ - "npm-run-path",\ - "npm:4.0.1"\ + "npm:3.0.0"\ ],\ [\ "npmlog",\ - "npm:4.1.2"\ + "npm:6.0.2"\ ],\ [\ "number-is-nan",\ @@ -2100,7 +2176,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "object-inspect",\ - "npm:1.10.3"\ + "npm:1.12.3"\ ],\ [\ "object-keys",\ @@ -2108,39 +2184,43 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "object.assign",\ - "npm:4.1.2"\ + "npm:4.1.4"\ + ],\ + [\ + "object.fromentries",\ + "npm:2.0.6"\ + ],\ + [\ + "object.groupby",\ + "npm:1.0.0"\ ],\ [\ "object.values",\ - "npm:1.1.3"\ + "npm:1.1.6"\ ],\ [\ "on-finished",\ - "npm:2.3.0"\ + "npm:2.4.1"\ ],\ [\ "once",\ "npm:1.4.0"\ ],\ - [\ - "onetime",\ - "npm:5.1.2"\ - ],\ [\ "only",\ "npm:0.0.2"\ ],\ [\ "optionator",\ - "npm:0.9.1"\ + "npm:0.9.3"\ ],\ [\ "p-limit",\ - "npm:1.3.0"\ + "npm:2.3.0"\ ],\ [\ "p-locate",\ - "npm:2.0.0"\ + "npm:4.1.0"\ ],\ [\ "p-map",\ @@ -2148,7 +2228,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "p-try",\ - "npm:1.0.0"\ + "npm:2.2.0"\ ],\ [\ "package-hash",\ @@ -2156,23 +2236,19 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "pako",\ - "npm:2.0.3"\ + "npm:2.1.0"\ ],\ [\ "parent-module",\ "npm:1.0.1"\ ],\ - [\ - "parse-json",\ - "npm:4.0.0"\ - ],\ [\ "parseurl",\ "npm:1.3.3"\ ],\ [\ "path-exists",\ - "npm:3.0.0"\ + "npm:4.0.0"\ ],\ [\ "path-is-absolute",\ @@ -2187,32 +2263,28 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "npm:1.0.7"\ ],\ [\ - "path-starts-with",\ - "npm:1.0.0"\ + "path-scurry",\ + "npm:1.10.1"\ ],\ [\ "path-type",\ "npm:4.0.0"\ ],\ [\ - "picomatch",\ - "npm:2.2.3"\ + "picocolors",\ + "npm:1.0.0"\ ],\ [\ - "pify",\ - "npm:3.0.0"\ + "picomatch",\ + "npm:2.3.1"\ ],\ [\ "pkg-dir",\ "npm:4.2.0"\ ],\ - [\ - "pkg-up",\ - "npm:2.0.0"\ - ],\ [\ "prebuild-install",\ - "npm:6.1.2"\ + "npm:6.1.4"\ ],\ [\ "prelude-ls",\ @@ -2238,17 +2310,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "progress",\ "npm:2.0.3"\ ],\ - [\ - "promise-inflight",\ - "virtual:8adc312a262cccdf4915241955289bfb26ac0e1ebab1cc568f36b50651793fc358863efdf800291c5b43d0603acbe4f022b374e6efe3a568ff4c9e5cf2f8b099#npm:1.0.1"\ - ],\ [\ "promise-retry",\ "npm:2.0.1"\ ],\ [\ "protobufjs",\ - "npm:6.11.3"\ + "npm:6.11.4"\ ],\ [\ "pump",\ @@ -2256,7 +2324,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "punycode",\ - "npm:2.1.1"\ + "npm:2.3.0"\ ],\ [\ "qjobs",\ @@ -2264,7 +2332,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "qs",\ - "npm:6.7.0"\ + "npm:6.11.0"\ ],\ [\ "queue-microtask",\ @@ -2280,23 +2348,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "raw-body",\ - "npm:2.4.0"\ + "npm:2.5.2"\ ],\ [\ "rc",\ "npm:1.2.8"\ ],\ - [\ - "read-pkg",\ - "npm:3.0.0"\ - ],\ - [\ - "read-pkg-up",\ - "npm:3.0.0"\ - ],\ [\ "readable-stream",\ - "npm:3.6.0"\ + "npm:3.6.2"\ ],\ [\ "readdirp",\ @@ -2308,15 +2368,19 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "recast",\ - "npm:0.20.4"\ + "npm:0.20.5"\ ],\ [\ "rechoir",\ - "npm:0.7.0"\ + "npm:0.7.1"\ ],\ [\ "regenerator-runtime",\ - "npm:0.13.8"\ + "npm:0.14.0"\ + ],\ + [\ + "regexp.prototype.flags",\ + "npm:1.5.0"\ ],\ [\ "regexpp",\ @@ -2326,10 +2390,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "release-zalgo",\ "npm:1.0.0"\ ],\ - [\ - "remove-trailing-separator",\ - "npm:1.1.0"\ - ],\ [\ "require-directory",\ "npm:2.1.1"\ @@ -2348,7 +2408,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "resolve",\ - "patch:resolve@npm%3A1.20.0#~builtin::version=1.20.0&hash=c3c19d"\ + "patch:resolve@npm%3A1.22.4#~builtin::version=1.22.4&hash=c3c19d"\ ],\ [\ "resolve-cwd",\ @@ -2386,9 +2446,17 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "rxjs",\ "npm:6.6.7"\ ],\ + [\ + "safe-array-concat",\ + "npm:1.0.0"\ + ],\ [\ "safe-buffer",\ - "npm:5.1.2"\ + "npm:5.2.1"\ + ],\ + [\ + "safe-regex-test",\ + "npm:1.0.0"\ ],\ [\ "safer-buffer",\ @@ -2396,11 +2464,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "schema-utils",\ - "npm:3.1.1"\ + "npm:3.3.0"\ ],\ [\ "semver",\ - "npm:7.5.3"\ + "npm:7.5.4"\ ],\ [\ "serialize-javascript",\ @@ -2416,7 +2484,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "setprototypeof",\ - "npm:1.1.1"\ + "npm:1.2.0"\ ],\ [\ "shallow-clone",\ @@ -2432,7 +2500,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "shiki",\ - "npm:0.14.1"\ + "npm:0.14.3"\ ],\ [\ "side-channel",\ @@ -2440,7 +2508,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "signal-exit",\ - "npm:3.0.3"\ + "npm:3.0.7"\ ],\ [\ "simple-concat",\ @@ -2460,27 +2528,27 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "smart-buffer",\ - "npm:4.1.0"\ + "npm:4.2.0"\ ],\ [\ "socket.io",\ - "npm:4.5.3"\ + "npm:4.7.2"\ ],\ [\ "socket.io-adapter",\ - "npm:2.4.0"\ + "npm:2.5.2"\ ],\ [\ "socket.io-parser",\ - "npm:4.2.1"\ + "npm:4.2.4"\ ],\ [\ "socks",\ - "npm:2.6.1"\ + "npm:2.7.1"\ ],\ [\ "socks-proxy-agent",\ - "npm:5.0.0"\ + "npm:7.0.0"\ ],\ [\ "source-map",\ @@ -2494,29 +2562,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "spawn-wrap",\ "npm:2.0.0"\ ],\ - [\ - "spdx-correct",\ - "npm:3.1.1"\ - ],\ - [\ - "spdx-exceptions",\ - "npm:2.3.0"\ - ],\ - [\ - "spdx-expression-parse",\ - "npm:3.0.1"\ - ],\ - [\ - "spdx-license-ids",\ - "npm:3.0.8"\ - ],\ [\ "sprintf-js",\ "npm:1.0.3"\ ],\ [\ "ssri",\ - "npm:8.0.1"\ + "npm:10.0.5"\ ],\ [\ "statuses",\ @@ -2524,35 +2576,49 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "streamroller",\ - "npm:3.0.2"\ + "npm:3.1.5"\ ],\ [\ "string-width",\ - "npm:4.2.2"\ + "npm:4.2.3"\ + ],\ + [\ + "string-width-cjs",\ + [\ + "string-width",\ + "npm:4.2.3"\ + ]\ + ],\ + [\ + "string.prototype.trim",\ + "npm:1.2.7"\ ],\ [\ "string.prototype.trimend",\ - "npm:1.0.4"\ + "npm:1.0.6"\ ],\ [\ "string.prototype.trimstart",\ - "npm:1.0.4"\ + "npm:1.0.6"\ ],\ [\ "string_decoder",\ - "npm:1.1.1"\ + "npm:1.3.0"\ ],\ [\ "strip-ansi",\ - "npm:6.0.0"\ + "npm:6.0.1"\ ],\ [\ - "strip-bom",\ - "npm:3.0.0"\ + "strip-ansi-cjs",\ + [\ + "strip-ansi",\ + "npm:6.0.1"\ + ]\ ],\ [\ - "strip-final-newline",\ - "npm:2.0.0"\ + "strip-bom",\ + "npm:3.0.0"\ ],\ [\ "strip-json-comments",\ @@ -2562,21 +2628,25 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "supports-color",\ "npm:7.2.0"\ ],\ + [\ + "supports-preserve-symlinks-flag",\ + "npm:1.0.0"\ + ],\ [\ "symbol-observable",\ "npm:2.0.3"\ ],\ [\ "table",\ - "npm:6.7.1"\ + "npm:6.8.1"\ ],\ [\ "tapable",\ - "npm:2.2.0"\ + "npm:2.2.1"\ ],\ [\ "tar",\ - "npm:6.1.11"\ + "npm:6.1.15"\ ],\ [\ "tar-fs",\ @@ -2588,11 +2658,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "terser",\ - "npm:5.16.6"\ + "npm:5.19.2"\ ],\ [\ "terser-webpack-plugin",\ - "virtual:737f7b2a101da8f397a9cc9cffaf45c84266648d374574dac02268af2b50ff63ee0c90d5bc5a2015e2638ae78c60d3ed087b73bb162209661606b18d9854aac6#npm:5.3.7"\ + "virtual:9876ea10d559e8a01a7e291ced4a3366303a1ac9520d52343b481816e31623638577fdf6ef19fc1dc96f09250cdf3c1610754b17b6c6fdd91f758ae054ef66c7#npm:5.3.9"\ ],\ [\ "test-exclude",\ @@ -2616,7 +2686,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "toidentifier",\ - "npm:1.0.0"\ + "npm:1.0.1"\ ],\ [\ "ts-node",\ @@ -2624,7 +2694,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "tsconfig-paths",\ - "npm:3.9.0"\ + "npm:3.14.2"\ ],\ [\ "tslib",\ @@ -2636,7 +2706,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "tsutils",\ - "virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:3.21.0"\ + "virtual:d57bbf7cb82653932ad4bacddeffa4b6821f4eb6abff5faa16997023759d2ebded0ed9e569ad0f724c028eca007397f1cb9dc80d3544e80680b0c6f1dfa61ec2#npm:3.21.0"\ ],\ [\ "tunnel-agent",\ @@ -2648,12 +2718,28 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "type-fest",\ - "npm:0.8.1"\ + "npm:0.20.2"\ ],\ [\ "type-is",\ "npm:1.6.18"\ ],\ + [\ + "typed-array-buffer",\ + "npm:1.0.0"\ + ],\ + [\ + "typed-array-byte-length",\ + "npm:1.0.0"\ + ],\ + [\ + "typed-array-byte-offset",\ + "npm:1.0.0"\ + ],\ + [\ + "typed-array-length",\ + "npm:1.0.4"\ + ],\ [\ "typedarray-to-buffer",\ "npm:3.1.5"\ @@ -2668,28 +2754,32 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "ua-parser-js",\ - "npm:0.7.31"\ + "npm:0.7.35"\ ],\ [\ "unbox-primitive",\ - "npm:1.0.1"\ + "npm:1.0.2"\ ],\ [\ "unique-filename",\ - "npm:1.1.1"\ + "npm:3.0.0"\ ],\ [\ "unique-slug",\ - "npm:2.0.2"\ + "npm:4.0.0"\ ],\ [\ "universalify",\ - "npm:2.0.0"\ + "npm:0.1.2"\ ],\ [\ "unpipe",\ "npm:1.0.0"\ ],\ + [\ + "update-browserslist-db",\ + "virtual:e2170a875bba2f8fa9e93e47c65f2f250097e101a59d95ea6fd852f32965e8cd6cef3b5662aa7295279d5bc60c9a612ddb8515c7dd1b7e8fb9984dee1823e7d6#npm:1.0.11"\ + ],\ [\ "uri-js",\ "npm:4.4.1"\ @@ -2708,15 +2798,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "uuid",\ - "npm:3.4.0"\ + "npm:8.3.2"\ ],\ [\ "v8-compile-cache",\ - "npm:2.3.0"\ - ],\ - [\ - "validate-npm-package-license",\ - "npm:3.0.4"\ + "npm:2.4.0"\ ],\ [\ "vary",\ @@ -2740,15 +2826,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "webpack",\ - "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:5.76.1"\ + "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:5.88.2"\ ],\ [\ "webpack-cli",\ - "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:4.7.0"\ + "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:4.10.0"\ ],\ [\ "webpack-merge",\ - "npm:5.7.3"\ + "npm:5.9.0"\ ],\ [\ "webpack-sources",\ @@ -2764,23 +2850,30 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "which-module",\ - "npm:2.0.0"\ + "npm:2.0.1"\ + ],\ + [\ + "which-typed-array",\ + "npm:1.1.11"\ ],\ [\ "wide-align",\ - "npm:1.1.3"\ + "npm:1.1.5"\ ],\ [\ "wildcard",\ - "npm:2.0.0"\ + "npm:2.0.1"\ ],\ [\ - "word-wrap",\ - "npm:1.2.3"\ + "wrap-ansi",\ + "npm:8.1.0"\ ],\ [\ - "wrap-ansi",\ - "npm:7.0.0"\ + "wrap-ansi-cjs",\ + [\ + "wrap-ansi",\ + "npm:7.0.0"\ + ]\ ],\ [\ "wrappy",\ @@ -2792,7 +2885,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "ws",\ - "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:7.4.6"\ + "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:7.5.9"\ ],\ [\ "xstream",\ @@ -2812,11 +2905,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ [\ "yargs-parser",\ - "npm:20.2.7"\ + "npm:20.2.9"\ ],\ [\ "ylru",\ - "npm:1.2.1"\ + "npm:1.3.2"\ ],\ [\ "yn",\ @@ -2834,18 +2927,27 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@cosmjs/encoding", "workspace:packages/encoding"],\ ["@cosmjs/proto-signing", "workspace:packages/proto-signing"],\ ["@cosmjs/stargate", "workspace:packages/stargate"],\ - ["eslint", "npm:7.26.0"],\ + ["eslint", "npm:7.32.0"],\ ["prettier", "npm:2.8.8"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"]\ ],\ "linkType": "SOFT"\ }]\ ]],\ + ["@aashutoshrathi/word-wrap", [\ + ["npm:1.2.6", {\ + "packageLocation": "./.yarn/cache/@aashutoshrathi-word-wrap-npm-1.2.6-5b1d95e487-ada901b9e7.zip/node_modules/@aashutoshrathi/word-wrap/",\ + "packageDependencies": [\ + ["@aashutoshrathi/word-wrap", "npm:1.2.6"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["@agoric/babel-standalone", [\ - ["npm:7.9.5", {\ - "packageLocation": "./.yarn/cache/@agoric-babel-standalone-npm-7.9.5-d7c88bfb35-19c459bc5c.zip/node_modules/@agoric/babel-standalone/",\ + ["npm:7.17.7", {\ + "packageLocation": "./.yarn/cache/@agoric-babel-standalone-npm-7.17.7-e8b078ad79-a935c35fa8.zip/node_modules/@agoric/babel-standalone/",\ "packageDependencies": [\ - ["@agoric/babel-standalone", "npm:7.9.5"]\ + ["@agoric/babel-standalone", "npm:7.17.7"]\ ],\ "linkType": "HARD"\ }]\ @@ -2868,233 +2970,228 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["@ampproject/remapping", [\ + ["npm:2.2.1", {\ + "packageLocation": "./.yarn/cache/@ampproject-remapping-npm-2.2.1-3da3d624be-03c04fd526.zip/node_modules/@ampproject/remapping/",\ + "packageDependencies": [\ + ["@ampproject/remapping", "npm:2.2.1"],\ + ["@jridgewell/gen-mapping", "npm:0.3.3"],\ + ["@jridgewell/trace-mapping", "npm:0.3.19"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["@babel/code-frame", [\ ["npm:7.12.11", {\ "packageLocation": "./.yarn/cache/@babel-code-frame-npm-7.12.11-1a9a1b277f-3963eff3eb.zip/node_modules/@babel/code-frame/",\ "packageDependencies": [\ ["@babel/code-frame", "npm:7.12.11"],\ - ["@babel/highlight", "npm:7.14.0"]\ + ["@babel/highlight", "npm:7.22.10"]\ ],\ "linkType": "HARD"\ }],\ - ["npm:7.12.13", {\ - "packageLocation": "./.yarn/cache/@babel-code-frame-npm-7.12.13-fb5ba5a992-d0491bb59f.zip/node_modules/@babel/code-frame/",\ + ["npm:7.22.10", {\ + "packageLocation": "./.yarn/cache/@babel-code-frame-npm-7.22.10-bc14e2ec1b-89a06534ad.zip/node_modules/@babel/code-frame/",\ "packageDependencies": [\ - ["@babel/code-frame", "npm:7.12.13"],\ - ["@babel/highlight", "npm:7.14.0"]\ + ["@babel/code-frame", "npm:7.22.10"],\ + ["@babel/highlight", "npm:7.22.10"],\ + ["chalk", "npm:2.4.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@babel/compat-data", [\ - ["npm:7.14.0", {\ - "packageLocation": "./.yarn/cache/@babel-compat-data-npm-7.14.0-150bea01c2-24a9ce6d25.zip/node_modules/@babel/compat-data/",\ + ["npm:7.22.9", {\ + "packageLocation": "./.yarn/cache/@babel-compat-data-npm-7.22.9-f9e02d51b9-bed77d9044.zip/node_modules/@babel/compat-data/",\ "packageDependencies": [\ - ["@babel/compat-data", "npm:7.14.0"]\ + ["@babel/compat-data", "npm:7.22.9"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@babel/core", [\ - ["npm:7.14.3", {\ - "packageLocation": "./.yarn/cache/@babel-core-npm-7.14.3-9181aae4d9-b91ed6adc7.zip/node_modules/@babel/core/",\ - "packageDependencies": [\ - ["@babel/core", "npm:7.14.3"],\ - ["@babel/code-frame", "npm:7.12.13"],\ - ["@babel/generator", "npm:7.14.3"],\ - ["@babel/helper-compilation-targets", "virtual:9181aae4d97715a94d175eeb28481474469d9a92ff383295cd43eff028bd01f2bf9f49d84b8d34047ac7d6e33c4bf822a6d6790e29e06180e55c1239694939ca#npm:7.13.16"],\ - ["@babel/helper-module-transforms", "npm:7.14.2"],\ - ["@babel/helpers", "npm:7.14.0"],\ - ["@babel/parser", "npm:7.14.3"],\ - ["@babel/template", "npm:7.12.13"],\ - ["@babel/traverse", "npm:7.14.2"],\ - ["@babel/types", "npm:7.14.2"],\ - ["convert-source-map", "npm:1.7.0"],\ - ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"],\ + ["npm:7.22.10", {\ + "packageLocation": "./.yarn/cache/@babel-core-npm-7.22.10-54c0aaa674-cc4efa0920.zip/node_modules/@babel/core/",\ + "packageDependencies": [\ + ["@babel/core", "npm:7.22.10"],\ + ["@ampproject/remapping", "npm:2.2.1"],\ + ["@babel/code-frame", "npm:7.22.10"],\ + ["@babel/generator", "npm:7.22.10"],\ + ["@babel/helper-compilation-targets", "npm:7.22.10"],\ + ["@babel/helper-module-transforms", "virtual:54c0aaa6741f1e8c05c2334af06937fdcda6330884e8efea3aca7eb7152547beb2740605170ab314f0efe7669f1faa939c930f85e897349fb50670f640c6b7f8#npm:7.22.9"],\ + ["@babel/helpers", "npm:7.22.10"],\ + ["@babel/parser", "npm:7.22.10"],\ + ["@babel/template", "npm:7.22.5"],\ + ["@babel/traverse", "npm:7.22.10"],\ + ["@babel/types", "npm:7.22.10"],\ + ["convert-source-map", "npm:1.9.0"],\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"],\ ["gensync", "npm:1.0.0-beta.2"],\ - ["json5", "npm:2.2.0"],\ - ["semver", "npm:6.3.0"],\ - ["source-map", "npm:0.5.7"]\ + ["json5", "npm:2.2.3"],\ + ["semver", "npm:6.3.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@babel/generator", [\ - ["npm:7.14.3", {\ - "packageLocation": "./.yarn/cache/@babel-generator-npm-7.14.3-3bb0a82750-2c104bbe53.zip/node_modules/@babel/generator/",\ + ["npm:7.22.10", {\ + "packageLocation": "./.yarn/cache/@babel-generator-npm-7.22.10-1a9a2f9e75-59a79730ab.zip/node_modules/@babel/generator/",\ "packageDependencies": [\ - ["@babel/generator", "npm:7.14.3"],\ - ["@babel/types", "npm:7.14.2"],\ - ["jsesc", "npm:2.5.2"],\ - ["source-map", "npm:0.5.7"]\ + ["@babel/generator", "npm:7.22.10"],\ + ["@babel/types", "npm:7.22.10"],\ + ["@jridgewell/gen-mapping", "npm:0.3.3"],\ + ["@jridgewell/trace-mapping", "npm:0.3.19"],\ + ["jsesc", "npm:2.5.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@babel/helper-compilation-targets", [\ - ["npm:7.13.16", {\ - "packageLocation": "./.yarn/cache/@babel-helper-compilation-targets-npm-7.13.16-e8eed91d8d-08c8fcd998.zip/node_modules/@babel/helper-compilation-targets/",\ - "packageDependencies": [\ - ["@babel/helper-compilation-targets", "npm:7.13.16"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:9181aae4d97715a94d175eeb28481474469d9a92ff383295cd43eff028bd01f2bf9f49d84b8d34047ac7d6e33c4bf822a6d6790e29e06180e55c1239694939ca#npm:7.13.16", {\ - "packageLocation": "./.yarn/__virtual__/@babel-helper-compilation-targets-virtual-bd770daa72/0/cache/@babel-helper-compilation-targets-npm-7.13.16-e8eed91d8d-08c8fcd998.zip/node_modules/@babel/helper-compilation-targets/",\ + ["npm:7.22.10", {\ + "packageLocation": "./.yarn/cache/@babel-helper-compilation-targets-npm-7.22.10-20c2c02a4f-f6f1896816.zip/node_modules/@babel/helper-compilation-targets/",\ "packageDependencies": [\ - ["@babel/helper-compilation-targets", "virtual:9181aae4d97715a94d175eeb28481474469d9a92ff383295cd43eff028bd01f2bf9f49d84b8d34047ac7d6e33c4bf822a6d6790e29e06180e55c1239694939ca#npm:7.13.16"],\ - ["@babel/compat-data", "npm:7.14.0"],\ - ["@babel/core", "npm:7.14.3"],\ - ["@babel/helper-validator-option", "npm:7.12.17"],\ - ["@types/babel__core", null],\ - ["browserslist", "npm:4.16.6"],\ - ["semver", "npm:6.3.0"]\ - ],\ - "packagePeers": [\ - "@babel/core",\ - "@types/babel__core"\ + ["@babel/helper-compilation-targets", "npm:7.22.10"],\ + ["@babel/compat-data", "npm:7.22.9"],\ + ["@babel/helper-validator-option", "npm:7.22.5"],\ + ["browserslist", "npm:4.21.10"],\ + ["lru-cache", "npm:5.1.1"],\ + ["semver", "npm:6.3.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["@babel/helper-function-name", [\ - ["npm:7.14.2", {\ - "packageLocation": "./.yarn/cache/@babel-helper-function-name-npm-7.14.2-52642340ac-70365d36ad.zip/node_modules/@babel/helper-function-name/",\ + ["@babel/helper-environment-visitor", [\ + ["npm:7.22.5", {\ + "packageLocation": "./.yarn/cache/@babel-helper-environment-visitor-npm-7.22.5-7bc52eec61-248532077d.zip/node_modules/@babel/helper-environment-visitor/",\ "packageDependencies": [\ - ["@babel/helper-function-name", "npm:7.14.2"],\ - ["@babel/helper-get-function-arity", "npm:7.12.13"],\ - ["@babel/template", "npm:7.12.13"],\ - ["@babel/types", "npm:7.14.2"]\ + ["@babel/helper-environment-visitor", "npm:7.22.5"]\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["@babel/helper-get-function-arity", [\ - ["npm:7.12.13", {\ - "packageLocation": "./.yarn/cache/@babel-helper-get-function-arity-npm-7.12.13-7d8bcf34b7-847ef9f4d4.zip/node_modules/@babel/helper-get-function-arity/",\ + ["@babel/helper-function-name", [\ + ["npm:7.22.5", {\ + "packageLocation": "./.yarn/cache/@babel-helper-function-name-npm-7.22.5-8a1a69b63d-6b1f6ce1b1.zip/node_modules/@babel/helper-function-name/",\ "packageDependencies": [\ - ["@babel/helper-get-function-arity", "npm:7.12.13"],\ - ["@babel/types", "npm:7.14.2"]\ + ["@babel/helper-function-name", "npm:7.22.5"],\ + ["@babel/template", "npm:7.22.5"],\ + ["@babel/types", "npm:7.22.10"]\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["@babel/helper-member-expression-to-functions", [\ - ["npm:7.13.12", {\ - "packageLocation": "./.yarn/cache/@babel-helper-member-expression-to-functions-npm-7.13.12-0092ecd45c-76a5ad6ae6.zip/node_modules/@babel/helper-member-expression-to-functions/",\ + ["@babel/helper-hoist-variables", [\ + ["npm:7.22.5", {\ + "packageLocation": "./.yarn/cache/@babel-helper-hoist-variables-npm-7.22.5-6db3192347-394ca191b4.zip/node_modules/@babel/helper-hoist-variables/",\ "packageDependencies": [\ - ["@babel/helper-member-expression-to-functions", "npm:7.13.12"],\ - ["@babel/types", "npm:7.14.2"]\ + ["@babel/helper-hoist-variables", "npm:7.22.5"],\ + ["@babel/types", "npm:7.22.10"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@babel/helper-module-imports", [\ - ["npm:7.13.12", {\ - "packageLocation": "./.yarn/cache/@babel-helper-module-imports-npm-7.13.12-6f45f76073-9abb5e3acb.zip/node_modules/@babel/helper-module-imports/",\ + ["npm:7.22.5", {\ + "packageLocation": "./.yarn/cache/@babel-helper-module-imports-npm-7.22.5-399b6063db-9ac2b0404f.zip/node_modules/@babel/helper-module-imports/",\ "packageDependencies": [\ - ["@babel/helper-module-imports", "npm:7.13.12"],\ - ["@babel/types", "npm:7.14.2"]\ + ["@babel/helper-module-imports", "npm:7.22.5"],\ + ["@babel/types", "npm:7.22.10"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@babel/helper-module-transforms", [\ - ["npm:7.14.2", {\ - "packageLocation": "./.yarn/cache/@babel-helper-module-transforms-npm-7.14.2-81e49440fe-cb6930cb45.zip/node_modules/@babel/helper-module-transforms/",\ + ["npm:7.22.9", {\ + "packageLocation": "./.yarn/cache/@babel-helper-module-transforms-npm-7.22.9-dfa9ef05d1-2751f77660.zip/node_modules/@babel/helper-module-transforms/",\ "packageDependencies": [\ - ["@babel/helper-module-transforms", "npm:7.14.2"],\ - ["@babel/helper-module-imports", "npm:7.13.12"],\ - ["@babel/helper-replace-supers", "npm:7.14.3"],\ - ["@babel/helper-simple-access", "npm:7.13.12"],\ - ["@babel/helper-split-export-declaration", "npm:7.12.13"],\ - ["@babel/helper-validator-identifier", "npm:7.14.0"],\ - ["@babel/template", "npm:7.12.13"],\ - ["@babel/traverse", "npm:7.14.2"],\ - ["@babel/types", "npm:7.14.2"]\ + ["@babel/helper-module-transforms", "npm:7.22.9"]\ ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["@babel/helper-optimise-call-expression", [\ - ["npm:7.12.13", {\ - "packageLocation": "./.yarn/cache/@babel-helper-optimise-call-expression-npm-7.12.13-52e64fc268-9925679d67.zip/node_modules/@babel/helper-optimise-call-expression/",\ - "packageDependencies": [\ - ["@babel/helper-optimise-call-expression", "npm:7.12.13"],\ - ["@babel/types", "npm:7.14.2"]\ + "linkType": "SOFT"\ + }],\ + ["virtual:54c0aaa6741f1e8c05c2334af06937fdcda6330884e8efea3aca7eb7152547beb2740605170ab314f0efe7669f1faa939c930f85e897349fb50670f640c6b7f8#npm:7.22.9", {\ + "packageLocation": "./.yarn/__virtual__/@babel-helper-module-transforms-virtual-74da1efd27/0/cache/@babel-helper-module-transforms-npm-7.22.9-dfa9ef05d1-2751f77660.zip/node_modules/@babel/helper-module-transforms/",\ + "packageDependencies": [\ + ["@babel/helper-module-transforms", "virtual:54c0aaa6741f1e8c05c2334af06937fdcda6330884e8efea3aca7eb7152547beb2740605170ab314f0efe7669f1faa939c930f85e897349fb50670f640c6b7f8#npm:7.22.9"],\ + ["@babel/core", "npm:7.22.10"],\ + ["@babel/helper-environment-visitor", "npm:7.22.5"],\ + ["@babel/helper-module-imports", "npm:7.22.5"],\ + ["@babel/helper-simple-access", "npm:7.22.5"],\ + ["@babel/helper-split-export-declaration", "npm:7.22.6"],\ + ["@babel/helper-validator-identifier", "npm:7.22.5"],\ + ["@types/babel__core", null]\ + ],\ + "packagePeers": [\ + "@babel/core",\ + "@types/babel__core"\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["@babel/helper-replace-supers", [\ - ["npm:7.14.3", {\ - "packageLocation": "./.yarn/cache/@babel-helper-replace-supers-npm-7.14.3-52201924ca-c01363c502.zip/node_modules/@babel/helper-replace-supers/",\ + ["@babel/helper-simple-access", [\ + ["npm:7.22.5", {\ + "packageLocation": "./.yarn/cache/@babel-helper-simple-access-npm-7.22.5-0a3f578780-fe9686714c.zip/node_modules/@babel/helper-simple-access/",\ "packageDependencies": [\ - ["@babel/helper-replace-supers", "npm:7.14.3"],\ - ["@babel/helper-member-expression-to-functions", "npm:7.13.12"],\ - ["@babel/helper-optimise-call-expression", "npm:7.12.13"],\ - ["@babel/traverse", "npm:7.14.2"],\ - ["@babel/types", "npm:7.14.2"]\ + ["@babel/helper-simple-access", "npm:7.22.5"],\ + ["@babel/types", "npm:7.22.10"]\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["@babel/helper-simple-access", [\ - ["npm:7.13.12", {\ - "packageLocation": "./.yarn/cache/@babel-helper-simple-access-npm-7.13.12-038331126e-afd0a8d1c7.zip/node_modules/@babel/helper-simple-access/",\ + ["@babel/helper-split-export-declaration", [\ + ["npm:7.22.6", {\ + "packageLocation": "./.yarn/cache/@babel-helper-split-export-declaration-npm-7.22.6-e723505aef-e141cace58.zip/node_modules/@babel/helper-split-export-declaration/",\ "packageDependencies": [\ - ["@babel/helper-simple-access", "npm:7.13.12"],\ - ["@babel/types", "npm:7.14.2"]\ + ["@babel/helper-split-export-declaration", "npm:7.22.6"],\ + ["@babel/types", "npm:7.22.10"]\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["@babel/helper-split-export-declaration", [\ - ["npm:7.12.13", {\ - "packageLocation": "./.yarn/cache/@babel-helper-split-export-declaration-npm-7.12.13-bb30c88575-adc8954a0b.zip/node_modules/@babel/helper-split-export-declaration/",\ + ["@babel/helper-string-parser", [\ + ["npm:7.22.5", {\ + "packageLocation": "./.yarn/cache/@babel-helper-string-parser-npm-7.22.5-448ff0e489-836851ca5e.zip/node_modules/@babel/helper-string-parser/",\ "packageDependencies": [\ - ["@babel/helper-split-export-declaration", "npm:7.12.13"],\ - ["@babel/types", "npm:7.14.2"]\ + ["@babel/helper-string-parser", "npm:7.22.5"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@babel/helper-validator-identifier", [\ - ["npm:7.14.0", {\ - "packageLocation": "./.yarn/cache/@babel-helper-validator-identifier-npm-7.14.0-88c0d4b395-6276d57677.zip/node_modules/@babel/helper-validator-identifier/",\ + ["npm:7.22.5", {\ + "packageLocation": "./.yarn/cache/@babel-helper-validator-identifier-npm-7.22.5-4536624779-7f0f301134.zip/node_modules/@babel/helper-validator-identifier/",\ "packageDependencies": [\ - ["@babel/helper-validator-identifier", "npm:7.14.0"]\ + ["@babel/helper-validator-identifier", "npm:7.22.5"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@babel/helper-validator-option", [\ - ["npm:7.12.17", {\ - "packageLocation": "./.yarn/cache/@babel-helper-validator-option-npm-7.12.17-098722d989-940e7b78dc.zip/node_modules/@babel/helper-validator-option/",\ + ["npm:7.22.5", {\ + "packageLocation": "./.yarn/cache/@babel-helper-validator-option-npm-7.22.5-eaf22b24ab-bbeca8a85e.zip/node_modules/@babel/helper-validator-option/",\ "packageDependencies": [\ - ["@babel/helper-validator-option", "npm:7.12.17"]\ + ["@babel/helper-validator-option", "npm:7.22.5"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@babel/helpers", [\ - ["npm:7.14.0", {\ - "packageLocation": "./.yarn/cache/@babel-helpers-npm-7.14.0-37cb1e5143-276716f77c.zip/node_modules/@babel/helpers/",\ + ["npm:7.22.10", {\ + "packageLocation": "./.yarn/cache/@babel-helpers-npm-7.22.10-83a2c2542a-3b1219e362.zip/node_modules/@babel/helpers/",\ "packageDependencies": [\ - ["@babel/helpers", "npm:7.14.0"],\ - ["@babel/template", "npm:7.12.13"],\ - ["@babel/traverse", "npm:7.14.2"],\ - ["@babel/types", "npm:7.14.2"]\ + ["@babel/helpers", "npm:7.22.10"],\ + ["@babel/template", "npm:7.22.5"],\ + ["@babel/traverse", "npm:7.22.10"],\ + ["@babel/types", "npm:7.22.10"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@babel/highlight", [\ - ["npm:7.14.0", {\ - "packageLocation": "./.yarn/cache/@babel-highlight-npm-7.14.0-54986133d5-5aae226c0d.zip/node_modules/@babel/highlight/",\ + ["npm:7.22.10", {\ + "packageLocation": "./.yarn/cache/@babel-highlight-npm-7.22.10-cea13c397b-f714a1e1a7.zip/node_modules/@babel/highlight/",\ "packageDependencies": [\ - ["@babel/highlight", "npm:7.14.0"],\ - ["@babel/helper-validator-identifier", "npm:7.14.0"],\ + ["@babel/highlight", "npm:7.22.10"],\ + ["@babel/helper-validator-identifier", "npm:7.22.5"],\ ["chalk", "npm:2.4.2"],\ ["js-tokens", "npm:4.0.0"]\ ],\ @@ -3102,72 +3199,84 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@babel/parser", [\ - ["npm:7.14.3", {\ - "packageLocation": "./.yarn/cache/@babel-parser-npm-7.14.3-4c3311dd2f-39653900d3.zip/node_modules/@babel/parser/",\ + ["npm:7.22.10", {\ + "packageLocation": "./.yarn/cache/@babel-parser-npm-7.22.10-a7c9b29e4f-af51567b7d.zip/node_modules/@babel/parser/",\ "packageDependencies": [\ - ["@babel/parser", "npm:7.14.3"],\ - ["@babel/types", "npm:7.14.2"]\ + ["@babel/parser", "npm:7.22.10"],\ + ["@babel/types", "npm:7.22.10"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@babel/runtime", [\ - ["npm:7.14.0", {\ - "packageLocation": "./.yarn/cache/@babel-runtime-npm-7.14.0-fba2a32266-257dc25943.zip/node_modules/@babel/runtime/",\ + ["npm:7.22.10", {\ + "packageLocation": "./.yarn/cache/@babel-runtime-npm-7.22.10-2771d0ecab-524d41517e.zip/node_modules/@babel/runtime/",\ "packageDependencies": [\ - ["@babel/runtime", "npm:7.14.0"],\ - ["regenerator-runtime", "npm:0.13.8"]\ + ["@babel/runtime", "npm:7.22.10"],\ + ["regenerator-runtime", "npm:0.14.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@babel/template", [\ - ["npm:7.12.13", {\ - "packageLocation": "./.yarn/cache/@babel-template-npm-7.12.13-069e9c8875-e037731631.zip/node_modules/@babel/template/",\ + ["npm:7.22.5", {\ + "packageLocation": "./.yarn/cache/@babel-template-npm-7.22.5-358c44dc9d-c574641016.zip/node_modules/@babel/template/",\ "packageDependencies": [\ - ["@babel/template", "npm:7.12.13"],\ - ["@babel/code-frame", "npm:7.12.13"],\ - ["@babel/parser", "npm:7.14.3"],\ - ["@babel/types", "npm:7.14.2"]\ + ["@babel/template", "npm:7.22.5"],\ + ["@babel/code-frame", "npm:7.22.10"],\ + ["@babel/parser", "npm:7.22.10"],\ + ["@babel/types", "npm:7.22.10"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@babel/traverse", [\ - ["npm:7.14.2", {\ - "packageLocation": "./.yarn/cache/@babel-traverse-npm-7.14.2-5dffae5dce-054d5e4442.zip/node_modules/@babel/traverse/",\ - "packageDependencies": [\ - ["@babel/traverse", "npm:7.14.2"],\ - ["@babel/code-frame", "npm:7.12.13"],\ - ["@babel/generator", "npm:7.14.3"],\ - ["@babel/helper-function-name", "npm:7.14.2"],\ - ["@babel/helper-split-export-declaration", "npm:7.12.13"],\ - ["@babel/parser", "npm:7.14.3"],\ - ["@babel/types", "npm:7.14.2"],\ - ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"],\ + ["npm:7.22.10", {\ + "packageLocation": "./.yarn/cache/@babel-traverse-npm-7.22.10-9eaf5a4899-9f7b358563.zip/node_modules/@babel/traverse/",\ + "packageDependencies": [\ + ["@babel/traverse", "npm:7.22.10"],\ + ["@babel/code-frame", "npm:7.22.10"],\ + ["@babel/generator", "npm:7.22.10"],\ + ["@babel/helper-environment-visitor", "npm:7.22.5"],\ + ["@babel/helper-function-name", "npm:7.22.5"],\ + ["@babel/helper-hoist-variables", "npm:7.22.5"],\ + ["@babel/helper-split-export-declaration", "npm:7.22.6"],\ + ["@babel/parser", "npm:7.22.10"],\ + ["@babel/types", "npm:7.22.10"],\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"],\ ["globals", "npm:11.12.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@babel/types", [\ - ["npm:7.14.2", {\ - "packageLocation": "./.yarn/cache/@babel-types-npm-7.14.2-0a9f9700cf-b8e4796ba8.zip/node_modules/@babel/types/",\ + ["npm:7.22.10", {\ + "packageLocation": "./.yarn/cache/@babel-types-npm-7.22.10-ffafe4058f-095c4f4b75.zip/node_modules/@babel/types/",\ "packageDependencies": [\ - ["@babel/types", "npm:7.14.2"],\ - ["@babel/helper-validator-identifier", "npm:7.14.0"],\ + ["@babel/types", "npm:7.22.10"],\ + ["@babel/helper-string-parser", "npm:7.22.5"],\ + ["@babel/helper-validator-identifier", "npm:7.22.5"],\ ["to-fast-properties", "npm:2.0.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ + ["@colors/colors", [\ + ["npm:1.5.0", {\ + "packageLocation": "./.yarn/cache/@colors-colors-npm-1.5.0-875af3a8b4-d64d5260be.zip/node_modules/@colors/colors/",\ + "packageDependencies": [\ + ["@colors/colors", "npm:1.5.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["@confio/ics23", [\ ["npm:0.6.8", {\ "packageLocation": "./.yarn/cache/@confio-ics23-npm-0.6.8-c87607eb2c-376d72f644.zip/node_modules/@confio/ics23/",\ "packageDependencies": [\ ["@confio/ics23", "npm:0.6.8"],\ - ["@noble/hashes", "npm:1.0.0"],\ - ["protobufjs", "npm:6.11.3"]\ + ["@noble/hashes", "npm:1.3.1"],\ + ["protobufjs", "npm:6.11.4"]\ ],\ "linkType": "HARD"\ }]\ @@ -3181,29 +3290,29 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@cosmjs/encoding", "workspace:packages/encoding"],\ ["@cosmjs/math", "workspace:packages/math"],\ ["@cosmjs/utils", "workspace:packages/utils"],\ - ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.1"],\ + ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.2"],\ ["@types/eslint-plugin-prettier", "npm:3.1.0"],\ - ["@types/jasmine", "npm:4.0.3"],\ - ["@types/karma-firefox-launcher", "npm:2.1.0"],\ + ["@types/jasmine", "npm:4.3.5"],\ + ["@types/karma-firefox-launcher", "npm:2.1.1"],\ ["@types/karma-jasmine", "npm:4.0.2"],\ - ["@types/karma-jasmine-html-reporter", "npm:1.5.1"],\ - ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["eslint", "npm:7.26.0"],\ - ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0"],\ - ["eslint-import-resolver-node", "npm:0.3.4"],\ - ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.23.2"],\ - ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.0"],\ + ["@types/karma-jasmine-html-reporter", "npm:1.7.0"],\ + ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0"],\ + ["eslint-import-resolver-node", "npm:0.3.9"],\ + ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.28.0"],\ + ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.1"],\ ["eslint-plugin-simple-import-sort", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:7.0.0"],\ ["esm", "npm:3.2.25"],\ - ["glob", "npm:7.2.0"],\ - ["jasmine", "npm:4.2.1"],\ + ["glob", "npm:7.2.3"],\ + ["jasmine", "npm:4.6.0"],\ ["jasmine-spec-reporter", "npm:6.0.0"],\ - ["karma", "npm:6.3.16"],\ - ["karma-chrome-launcher", "npm:3.1.0"],\ - ["karma-firefox-launcher", "npm:2.1.0"],\ + ["karma", "npm:6.4.2"],\ + ["karma-chrome-launcher", "npm:3.2.0"],\ + ["karma-firefox-launcher", "npm:2.1.2"],\ ["karma-jasmine", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.1.0"],\ - ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.6.0"],\ + ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.7.0"],\ ["nyc", "npm:15.1.0"],\ ["prettier", "npm:2.8.8"],\ ["ses", "npm:0.11.1"],\ @@ -3211,8 +3320,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["ts-node", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.2"],\ ["typedoc", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:0.23.28"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"],\ - ["webpack", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:5.76.1"],\ - ["webpack-cli", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:4.7.0"]\ + ["webpack", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:5.88.2"],\ + ["webpack-cli", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:4.10.0"]\ ],\ "linkType": "SOFT"\ }]\ @@ -3232,32 +3341,32 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@cosmjs/stargate", "workspace:packages/stargate"],\ ["@cosmjs/tendermint-rpc", "workspace:packages/tendermint-rpc"],\ ["@cosmjs/utils", "workspace:packages/utils"],\ - ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.1"],\ - ["@types/babylon", "npm:6.16.5"],\ + ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.2"],\ + ["@types/babylon", "npm:6.16.6"],\ ["@types/diff", "npm:4.0.2"],\ ["@types/eslint-plugin-prettier", "npm:3.1.0"],\ - ["@types/jasmine", "npm:4.0.3"],\ - ["@types/node", "npm:18.15.11"],\ - ["@types/yargs", "npm:15.0.13"],\ - ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ + ["@types/jasmine", "npm:4.3.5"],\ + ["@types/node", "npm:18.17.5"],\ + ["@types/yargs", "npm:15.0.15"],\ + ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ ["axios", "npm:0.21.4"],\ ["babylon", "npm:6.18.0"],\ ["chalk", "npm:4.1.2"],\ ["cosmjs-types", "npm:0.8.0"],\ ["diff", "npm:4.0.2"],\ - ["eslint", "npm:7.26.0"],\ - ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0"],\ - ["eslint-import-resolver-node", "npm:0.3.4"],\ - ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.23.2"],\ - ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.0"],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0"],\ + ["eslint-import-resolver-node", "npm:0.3.9"],\ + ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.28.0"],\ + ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.1"],\ ["eslint-plugin-simple-import-sort", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:7.0.0"],\ ["esm", "npm:3.2.25"],\ - ["jasmine", "npm:4.2.1"],\ + ["jasmine", "npm:4.6.0"],\ ["jasmine-spec-reporter", "npm:6.0.0"],\ ["nyc", "npm:15.1.0"],\ ["prettier", "npm:2.8.8"],\ - ["recast", "npm:0.20.4"],\ + ["recast", "npm:0.20.5"],\ ["source-map-support", "npm:0.5.21"],\ ["ts-node", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.2"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"],\ @@ -3279,46 +3388,46 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@cosmjs/stargate", "workspace:packages/stargate"],\ ["@cosmjs/tendermint-rpc", "workspace:packages/tendermint-rpc"],\ ["@cosmjs/utils", "workspace:packages/utils"],\ - ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.1"],\ + ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.2"],\ ["@types/eslint-plugin-prettier", "npm:3.1.0"],\ - ["@types/jasmine", "npm:4.0.3"],\ - ["@types/karma-firefox-launcher", "npm:2.1.0"],\ + ["@types/jasmine", "npm:4.3.5"],\ + ["@types/karma-firefox-launcher", "npm:2.1.1"],\ ["@types/karma-jasmine", "npm:4.0.2"],\ - ["@types/karma-jasmine-html-reporter", "npm:1.5.1"],\ - ["@types/long", "npm:4.0.1"],\ - ["@types/node", "npm:18.15.11"],\ - ["@types/pako", "npm:1.0.1"],\ - ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ + ["@types/karma-jasmine-html-reporter", "npm:1.7.0"],\ + ["@types/long", "npm:4.0.2"],\ + ["@types/node", "npm:18.17.5"],\ + ["@types/pako", "npm:1.0.4"],\ + ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ ["cosmjs-types", "npm:0.8.0"],\ - ["eslint", "npm:7.26.0"],\ - ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0"],\ - ["eslint-import-resolver-node", "npm:0.3.4"],\ - ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.23.2"],\ - ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.0"],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0"],\ + ["eslint-import-resolver-node", "npm:0.3.9"],\ + ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.28.0"],\ + ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.1"],\ ["eslint-plugin-simple-import-sort", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:7.0.0"],\ ["esm", "npm:3.2.25"],\ - ["glob", "npm:7.2.0"],\ - ["jasmine", "npm:4.2.1"],\ + ["glob", "npm:7.2.3"],\ + ["jasmine", "npm:4.6.0"],\ ["jasmine-spec-reporter", "npm:6.0.0"],\ - ["karma", "npm:6.3.16"],\ - ["karma-chrome-launcher", "npm:3.1.0"],\ - ["karma-firefox-launcher", "npm:2.1.0"],\ + ["karma", "npm:6.4.2"],\ + ["karma-chrome-launcher", "npm:3.2.0"],\ + ["karma-firefox-launcher", "npm:2.1.2"],\ ["karma-jasmine", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.1.0"],\ - ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.6.0"],\ + ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.7.0"],\ ["long", "npm:4.0.0"],\ ["nyc", "npm:15.1.0"],\ - ["pako", "npm:2.0.3"],\ + ["pako", "npm:2.1.0"],\ ["prettier", "npm:2.8.8"],\ - ["protobufjs", "npm:6.11.3"],\ + ["protobufjs", "npm:6.11.4"],\ ["readonly-date", "npm:1.0.0"],\ ["ses", "npm:0.11.1"],\ ["source-map-support", "npm:0.5.21"],\ ["ts-node", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.2"],\ ["typedoc", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:0.23.28"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"],\ - ["webpack", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:5.76.1"],\ - ["webpack-cli", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:4.7.0"]\ + ["webpack", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:5.88.2"],\ + ["webpack-cli", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:4.10.0"]\ ],\ "linkType": "SOFT"\ }]\ @@ -3331,37 +3440,37 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@cosmjs/encoding", "workspace:packages/encoding"],\ ["@cosmjs/math", "workspace:packages/math"],\ ["@cosmjs/utils", "workspace:packages/utils"],\ - ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.1"],\ - ["@noble/hashes", "npm:1.0.0"],\ - ["@types/bn.js", "npm:5.1.0"],\ + ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.2"],\ + ["@noble/hashes", "npm:1.3.1"],\ + ["@types/bn.js", "npm:5.1.1"],\ ["@types/elliptic", "npm:6.4.14"],\ ["@types/eslint-plugin-prettier", "npm:3.1.0"],\ - ["@types/jasmine", "npm:4.0.3"],\ - ["@types/karma-firefox-launcher", "npm:2.1.0"],\ + ["@types/jasmine", "npm:4.3.5"],\ + ["@types/karma-firefox-launcher", "npm:2.1.1"],\ ["@types/karma-jasmine", "npm:4.0.2"],\ - ["@types/karma-jasmine-html-reporter", "npm:1.5.1"],\ + ["@types/karma-jasmine-html-reporter", "npm:1.7.0"],\ ["@types/libsodium-wrappers-sumo", "npm:0.7.5"],\ - ["@types/node", "npm:18.15.11"],\ - ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["bn.js", "npm:5.2.0"],\ + ["@types/node", "npm:18.17.5"],\ + ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["bn.js", "npm:5.2.1"],\ ["buffer", "npm:6.0.3"],\ ["elliptic", "npm:6.5.4"],\ - ["eslint", "npm:7.26.0"],\ - ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0"],\ - ["eslint-import-resolver-node", "npm:0.3.4"],\ - ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.23.2"],\ - ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.0"],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0"],\ + ["eslint-import-resolver-node", "npm:0.3.9"],\ + ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.28.0"],\ + ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.1"],\ ["eslint-plugin-simple-import-sort", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:7.0.0"],\ ["esm", "npm:3.2.25"],\ - ["glob", "npm:7.2.0"],\ - ["jasmine", "npm:4.2.1"],\ + ["glob", "npm:7.2.3"],\ + ["jasmine", "npm:4.6.0"],\ ["jasmine-spec-reporter", "npm:6.0.0"],\ - ["karma", "npm:6.3.16"],\ - ["karma-chrome-launcher", "npm:3.1.0"],\ - ["karma-firefox-launcher", "npm:2.1.0"],\ + ["karma", "npm:6.4.2"],\ + ["karma-chrome-launcher", "npm:3.2.0"],\ + ["karma-firefox-launcher", "npm:2.1.2"],\ ["karma-jasmine", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.1.0"],\ - ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.6.0"],\ + ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.7.0"],\ ["libsodium-wrappers-sumo", "npm:0.7.11"],\ ["nyc", "npm:15.1.0"],\ ["prettier", "npm:2.8.8"],\ @@ -3370,8 +3479,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["ts-node", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.2"],\ ["typedoc", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:0.23.28"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"],\ - ["webpack", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:5.76.1"],\ - ["webpack-cli", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:4.7.0"]\ + ["webpack", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:5.88.2"],\ + ["webpack-cli", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:4.10.0"]\ ],\ "linkType": "SOFT"\ }]\ @@ -3381,33 +3490,33 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./packages/encoding/",\ "packageDependencies": [\ ["@cosmjs/encoding", "workspace:packages/encoding"],\ - ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.1"],\ + ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.2"],\ ["@types/base64-js", "npm:1.3.0"],\ ["@types/eslint-plugin-prettier", "npm:3.1.0"],\ - ["@types/jasmine", "npm:4.0.3"],\ - ["@types/karma-firefox-launcher", "npm:2.1.0"],\ + ["@types/jasmine", "npm:4.3.5"],\ + ["@types/karma-firefox-launcher", "npm:2.1.1"],\ ["@types/karma-jasmine", "npm:4.0.2"],\ - ["@types/karma-jasmine-html-reporter", "npm:1.5.1"],\ - ["@types/node", "npm:18.15.11"],\ - ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ + ["@types/karma-jasmine-html-reporter", "npm:1.7.0"],\ + ["@types/node", "npm:18.17.5"],\ + ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ ["base64-js", "npm:1.5.1"],\ ["bech32", "npm:1.1.4"],\ - ["eslint", "npm:7.26.0"],\ - ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0"],\ - ["eslint-import-resolver-node", "npm:0.3.4"],\ - ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.23.2"],\ - ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.0"],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0"],\ + ["eslint-import-resolver-node", "npm:0.3.9"],\ + ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.28.0"],\ + ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.1"],\ ["eslint-plugin-simple-import-sort", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:7.0.0"],\ ["esm", "npm:3.2.25"],\ - ["glob", "npm:7.2.0"],\ - ["jasmine", "npm:4.2.1"],\ + ["glob", "npm:7.2.3"],\ + ["jasmine", "npm:4.6.0"],\ ["jasmine-spec-reporter", "npm:6.0.0"],\ - ["karma", "npm:6.3.16"],\ - ["karma-chrome-launcher", "npm:3.1.0"],\ - ["karma-firefox-launcher", "npm:2.1.0"],\ + ["karma", "npm:6.4.2"],\ + ["karma-chrome-launcher", "npm:3.2.0"],\ + ["karma-firefox-launcher", "npm:2.1.2"],\ ["karma-jasmine", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.1.0"],\ - ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.6.0"],\ + ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.7.0"],\ ["nyc", "npm:15.1.0"],\ ["prettier", "npm:2.8.8"],\ ["readonly-date", "npm:1.0.0"],\ @@ -3416,8 +3525,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["ts-node", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.2"],\ ["typedoc", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:0.23.28"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"],\ - ["webpack", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.76.1"],\ - ["webpack-cli", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:4.7.0"]\ + ["webpack", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.88.2"],\ + ["webpack-cli", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:4.10.0"]\ ],\ "linkType": "SOFT"\ }]\ @@ -3433,34 +3542,34 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@cosmjs/proto-signing", "workspace:packages/proto-signing"],\ ["@cosmjs/stargate", "workspace:packages/stargate"],\ ["@cosmjs/utils", "workspace:packages/utils"],\ - ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.1"],\ - ["@koa/cors", "npm:3.3.0"],\ + ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.2"],\ + ["@koa/cors", "npm:3.4.3"],\ ["@types/eslint-plugin-prettier", "npm:3.1.0"],\ - ["@types/jasmine", "npm:4.0.3"],\ - ["@types/koa", "npm:2.13.4"],\ - ["@types/koa-bodyparser", "npm:4.3.7"],\ - ["@types/koa__cors", "npm:3.3.0"],\ - ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["eslint", "npm:7.26.0"],\ - ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0"],\ - ["eslint-import-resolver-node", "npm:0.3.4"],\ - ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.23.2"],\ - ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.0"],\ + ["@types/jasmine", "npm:4.3.5"],\ + ["@types/koa", "npm:2.13.8"],\ + ["@types/koa-bodyparser", "npm:4.3.10"],\ + ["@types/koa__cors", "npm:3.3.1"],\ + ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0"],\ + ["eslint-import-resolver-node", "npm:0.3.9"],\ + ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.28.0"],\ + ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.1"],\ ["eslint-plugin-simple-import-sort", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:7.0.0"],\ ["esm", "npm:3.2.25"],\ - ["jasmine", "npm:4.2.1"],\ + ["jasmine", "npm:4.6.0"],\ ["jasmine-spec-reporter", "npm:6.0.0"],\ - ["koa", "npm:2.13.4"],\ - ["koa-bodyparser", "npm:4.3.0"],\ + ["koa", "npm:2.14.2"],\ + ["koa-bodyparser", "npm:4.4.1"],\ ["nyc", "npm:15.1.0"],\ ["prettier", "npm:2.8.8"],\ ["ses", "npm:0.11.1"],\ ["source-map-support", "npm:0.5.21"],\ ["ts-node", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.2"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"],\ - ["webpack", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:5.76.1"],\ - ["webpack-cli", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:4.7.0"]\ + ["webpack", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:5.88.2"],\ + ["webpack-cli", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:4.10.0"]\ ],\ "linkType": "SOFT"\ }]\ @@ -3470,31 +3579,31 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./packages/faucet-client/",\ "packageDependencies": [\ ["@cosmjs/faucet-client", "workspace:packages/faucet-client"],\ - ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.1"],\ + ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.2"],\ ["@types/eslint-plugin-prettier", "npm:3.1.0"],\ - ["@types/jasmine", "npm:4.0.3"],\ - ["@types/karma-firefox-launcher", "npm:2.1.0"],\ + ["@types/jasmine", "npm:4.3.5"],\ + ["@types/karma-firefox-launcher", "npm:2.1.1"],\ ["@types/karma-jasmine", "npm:4.0.2"],\ - ["@types/karma-jasmine-html-reporter", "npm:1.5.1"],\ - ["@types/node", "npm:18.15.11"],\ - ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ + ["@types/karma-jasmine-html-reporter", "npm:1.7.0"],\ + ["@types/node", "npm:18.17.5"],\ + ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ ["axios", "npm:0.21.4"],\ - ["eslint", "npm:7.26.0"],\ - ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0"],\ - ["eslint-import-resolver-node", "npm:0.3.4"],\ - ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.23.2"],\ - ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.0"],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0"],\ + ["eslint-import-resolver-node", "npm:0.3.9"],\ + ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.28.0"],\ + ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.1"],\ ["eslint-plugin-simple-import-sort", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:7.0.0"],\ ["esm", "npm:3.2.25"],\ - ["glob", "npm:7.2.0"],\ - ["jasmine", "npm:4.2.1"],\ + ["glob", "npm:7.2.3"],\ + ["jasmine", "npm:4.6.0"],\ ["jasmine-spec-reporter", "npm:6.0.0"],\ - ["karma", "npm:6.3.16"],\ - ["karma-chrome-launcher", "npm:3.1.0"],\ - ["karma-firefox-launcher", "npm:2.1.0"],\ + ["karma", "npm:6.4.2"],\ + ["karma-chrome-launcher", "npm:3.2.0"],\ + ["karma-firefox-launcher", "npm:2.1.2"],\ ["karma-jasmine", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.1.0"],\ - ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.6.0"],\ + ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.7.0"],\ ["nyc", "npm:15.1.0"],\ ["prettier", "npm:2.8.8"],\ ["ses", "npm:0.11.1"],\ @@ -3502,8 +3611,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["ts-node", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.2"],\ ["typedoc", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:0.23.28"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"],\ - ["webpack", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:5.76.1"],\ - ["webpack-cli", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:4.7.0"]\ + ["webpack", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:5.88.2"],\ + ["webpack-cli", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:4.10.0"]\ ],\ "linkType": "SOFT"\ }]\ @@ -3514,29 +3623,29 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["@cosmjs/json-rpc", "workspace:packages/json-rpc"],\ ["@cosmjs/stream", "workspace:packages/stream"],\ - ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.1"],\ + ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.2"],\ ["@types/eslint-plugin-prettier", "npm:3.1.0"],\ - ["@types/jasmine", "npm:4.0.3"],\ - ["@types/karma-firefox-launcher", "npm:2.1.0"],\ + ["@types/jasmine", "npm:4.3.5"],\ + ["@types/karma-firefox-launcher", "npm:2.1.1"],\ ["@types/karma-jasmine", "npm:4.0.2"],\ - ["@types/karma-jasmine-html-reporter", "npm:1.5.1"],\ - ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["eslint", "npm:7.26.0"],\ - ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0"],\ - ["eslint-import-resolver-node", "npm:0.3.4"],\ - ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.23.2"],\ - ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.0"],\ + ["@types/karma-jasmine-html-reporter", "npm:1.7.0"],\ + ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0"],\ + ["eslint-import-resolver-node", "npm:0.3.9"],\ + ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.28.0"],\ + ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.1"],\ ["eslint-plugin-simple-import-sort", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:7.0.0"],\ ["esm", "npm:3.2.25"],\ - ["glob", "npm:7.2.0"],\ - ["jasmine", "npm:4.2.1"],\ + ["glob", "npm:7.2.3"],\ + ["jasmine", "npm:4.6.0"],\ ["jasmine-spec-reporter", "npm:6.0.0"],\ - ["karma", "npm:6.3.16"],\ - ["karma-chrome-launcher", "npm:3.1.0"],\ - ["karma-firefox-launcher", "npm:2.1.0"],\ + ["karma", "npm:6.4.2"],\ + ["karma-chrome-launcher", "npm:3.2.0"],\ + ["karma-firefox-launcher", "npm:2.1.2"],\ ["karma-jasmine", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.1.0"],\ - ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.6.0"],\ + ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.7.0"],\ ["nyc", "npm:15.1.0"],\ ["prettier", "npm:2.8.8"],\ ["ses", "npm:0.11.1"],\ @@ -3544,8 +3653,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["ts-node", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.2"],\ ["typedoc", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:0.23.28"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"],\ - ["webpack", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:5.76.1"],\ - ["webpack-cli", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:4.7.0"],\ + ["webpack", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:5.88.2"],\ + ["webpack-cli", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:4.10.0"],\ ["xstream", "npm:11.14.0"]\ ],\ "linkType": "SOFT"\ @@ -3562,39 +3671,39 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@cosmjs/math", "workspace:packages/math"],\ ["@cosmjs/stargate", "workspace:packages/stargate"],\ ["@cosmjs/utils", "workspace:packages/utils"],\ - ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.1"],\ + ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.2"],\ ["@ledgerhq/hw-transport", "npm:5.51.1"],\ ["@ledgerhq/hw-transport-node-hid", "npm:5.51.1"],\ - ["@ledgerhq/hw-transport-webusb", "npm:5.51.1"],\ + ["@ledgerhq/hw-transport-webusb", "npm:5.53.1"],\ ["@types/eslint-plugin-prettier", "npm:3.1.0"],\ - ["@types/jasmine", "npm:4.0.3"],\ - ["@types/ledgerhq__hw-transport", "npm:4.21.3"],\ + ["@types/jasmine", "npm:4.3.5"],\ + ["@types/ledgerhq__hw-transport", "npm:4.21.4"],\ ["@types/ledgerhq__hw-transport-node-hid", "npm:4.22.2"],\ ["@types/ledgerhq__hw-transport-webusb", "npm:4.70.1"],\ ["@types/semver", "npm:7.5.0"],\ - ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["eslint", "npm:7.26.0"],\ - ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0"],\ - ["eslint-import-resolver-node", "npm:0.3.4"],\ - ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.23.2"],\ - ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.0"],\ + ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0"],\ + ["eslint-import-resolver-node", "npm:0.3.9"],\ + ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.28.0"],\ + ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.1"],\ ["eslint-plugin-simple-import-sort", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:7.0.0"],\ ["esm", "npm:3.2.25"],\ - ["glob", "npm:7.2.0"],\ - ["jasmine", "npm:4.2.1"],\ + ["glob", "npm:7.2.3"],\ + ["jasmine", "npm:4.6.0"],\ ["jasmine-spec-reporter", "npm:6.0.0"],\ ["ledger-cosmos-js", "npm:2.1.8"],\ ["nyc", "npm:15.1.0"],\ ["prettier", "npm:2.8.8"],\ - ["semver", "npm:7.5.3"],\ + ["semver", "npm:7.5.4"],\ ["ses", "npm:0.11.1"],\ ["source-map-support", "npm:0.5.21"],\ ["ts-node", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.2"],\ ["typedoc", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:0.23.28"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"],\ - ["webpack", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:5.76.1"],\ - ["webpack-cli", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:4.7.0"]\ + ["webpack", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:5.88.2"],\ + ["webpack-cli", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:4.10.0"]\ ],\ "linkType": "SOFT"\ }]\ @@ -3604,32 +3713,32 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./packages/math/",\ "packageDependencies": [\ ["@cosmjs/math", "workspace:packages/math"],\ - ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.1"],\ - ["@types/bn.js", "npm:5.1.0"],\ + ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.2"],\ + ["@types/bn.js", "npm:5.1.1"],\ ["@types/eslint-plugin-prettier", "npm:3.1.0"],\ - ["@types/jasmine", "npm:4.0.3"],\ - ["@types/karma-firefox-launcher", "npm:2.1.0"],\ + ["@types/jasmine", "npm:4.3.5"],\ + ["@types/karma-firefox-launcher", "npm:2.1.1"],\ ["@types/karma-jasmine", "npm:4.0.2"],\ - ["@types/karma-jasmine-html-reporter", "npm:1.5.1"],\ - ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["bn.js", "npm:5.2.0"],\ + ["@types/karma-jasmine-html-reporter", "npm:1.7.0"],\ + ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["bn.js", "npm:5.2.1"],\ ["buffer", "npm:6.0.3"],\ - ["eslint", "npm:7.26.0"],\ - ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0"],\ - ["eslint-import-resolver-node", "npm:0.3.4"],\ - ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.23.2"],\ - ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.0"],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0"],\ + ["eslint-import-resolver-node", "npm:0.3.9"],\ + ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.28.0"],\ + ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.1"],\ ["eslint-plugin-simple-import-sort", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:7.0.0"],\ ["esm", "npm:3.2.25"],\ - ["glob", "npm:7.2.0"],\ - ["jasmine", "npm:4.2.1"],\ + ["glob", "npm:7.2.3"],\ + ["jasmine", "npm:4.6.0"],\ ["jasmine-spec-reporter", "npm:6.0.0"],\ - ["karma", "npm:6.3.16"],\ - ["karma-chrome-launcher", "npm:3.1.0"],\ - ["karma-firefox-launcher", "npm:2.1.0"],\ + ["karma", "npm:6.4.2"],\ + ["karma-chrome-launcher", "npm:3.2.0"],\ + ["karma-firefox-launcher", "npm:2.1.2"],\ ["karma-jasmine", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.1.0"],\ - ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.6.0"],\ + ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.7.0"],\ ["nyc", "npm:15.1.0"],\ ["prettier", "npm:2.8.8"],\ ["ses", "npm:0.11.1"],\ @@ -3637,8 +3746,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["ts-node", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.2"],\ ["typedoc", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:0.23.28"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"],\ - ["webpack", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:5.76.1"],\ - ["webpack-cli", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:4.7.0"]\ + ["webpack", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:5.88.2"],\ + ["webpack-cli", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:4.10.0"]\ ],\ "linkType": "SOFT"\ }]\ @@ -3653,43 +3762,43 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@cosmjs/encoding", "workspace:packages/encoding"],\ ["@cosmjs/math", "workspace:packages/math"],\ ["@cosmjs/utils", "workspace:packages/utils"],\ - ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.1"],\ + ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.2"],\ ["@types/eslint-plugin-prettier", "npm:3.1.0"],\ - ["@types/jasmine", "npm:4.0.3"],\ - ["@types/karma-firefox-launcher", "npm:2.1.0"],\ + ["@types/jasmine", "npm:4.3.5"],\ + ["@types/karma-firefox-launcher", "npm:2.1.1"],\ ["@types/karma-jasmine", "npm:4.0.2"],\ - ["@types/karma-jasmine-html-reporter", "npm:1.5.1"],\ - ["@types/long", "npm:4.0.1"],\ - ["@types/node", "npm:18.15.11"],\ - ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ + ["@types/karma-jasmine-html-reporter", "npm:1.7.0"],\ + ["@types/long", "npm:4.0.2"],\ + ["@types/node", "npm:18.17.5"],\ + ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ ["cosmjs-types", "npm:0.8.0"],\ - ["eslint", "npm:7.26.0"],\ - ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0"],\ - ["eslint-import-resolver-node", "npm:0.3.4"],\ - ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.23.2"],\ - ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.0"],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0"],\ + ["eslint-import-resolver-node", "npm:0.3.9"],\ + ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.28.0"],\ + ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.1"],\ ["eslint-plugin-simple-import-sort", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:7.0.0"],\ ["esm", "npm:3.2.25"],\ - ["glob", "npm:7.2.0"],\ - ["jasmine", "npm:4.2.1"],\ + ["glob", "npm:7.2.3"],\ + ["jasmine", "npm:4.6.0"],\ ["jasmine-spec-reporter", "npm:6.0.0"],\ - ["karma", "npm:6.3.16"],\ - ["karma-chrome-launcher", "npm:3.1.0"],\ - ["karma-firefox-launcher", "npm:2.1.0"],\ + ["karma", "npm:6.4.2"],\ + ["karma-chrome-launcher", "npm:3.2.0"],\ + ["karma-firefox-launcher", "npm:2.1.2"],\ ["karma-jasmine", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.1.0"],\ - ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.6.0"],\ + ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.7.0"],\ ["long", "npm:4.0.0"],\ ["nyc", "npm:15.1.0"],\ ["prettier", "npm:2.8.8"],\ - ["protobufjs", "npm:6.11.3"],\ + ["protobufjs", "npm:6.11.4"],\ ["ses", "npm:0.11.1"],\ ["source-map-support", "npm:0.5.21"],\ ["ts-node", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.2"],\ ["typedoc", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:0.23.28"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"],\ - ["webpack", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:5.76.1"],\ - ["webpack-cli", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:4.7.0"]\ + ["webpack", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:5.88.2"],\ + ["webpack-cli", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:4.10.0"]\ ],\ "linkType": "SOFT"\ }]\ @@ -3700,31 +3809,31 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["@cosmjs/socket", "workspace:packages/socket"],\ ["@cosmjs/stream", "workspace:packages/stream"],\ - ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.1"],\ + ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.2"],\ ["@types/eslint-plugin-prettier", "npm:3.1.0"],\ - ["@types/jasmine", "npm:4.0.3"],\ - ["@types/karma-firefox-launcher", "npm:2.1.0"],\ + ["@types/jasmine", "npm:4.3.5"],\ + ["@types/karma-firefox-launcher", "npm:2.1.1"],\ ["@types/karma-jasmine", "npm:4.0.2"],\ - ["@types/karma-jasmine-html-reporter", "npm:1.5.1"],\ + ["@types/karma-jasmine-html-reporter", "npm:1.7.0"],\ ["@types/ws", "npm:6.0.4"],\ - ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["eslint", "npm:7.26.0"],\ - ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0"],\ - ["eslint-import-resolver-node", "npm:0.3.4"],\ - ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.23.2"],\ - ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.0"],\ + ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0"],\ + ["eslint-import-resolver-node", "npm:0.3.9"],\ + ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.28.0"],\ + ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.1"],\ ["eslint-plugin-simple-import-sort", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:7.0.0"],\ ["esm", "npm:3.2.25"],\ - ["glob", "npm:7.2.0"],\ + ["glob", "npm:7.2.3"],\ ["isomorphic-ws", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:4.0.1"],\ - ["jasmine", "npm:4.2.1"],\ + ["jasmine", "npm:4.6.0"],\ ["jasmine-spec-reporter", "npm:6.0.0"],\ - ["karma", "npm:6.3.16"],\ - ["karma-chrome-launcher", "npm:3.1.0"],\ - ["karma-firefox-launcher", "npm:2.1.0"],\ + ["karma", "npm:6.4.2"],\ + ["karma-chrome-launcher", "npm:3.2.0"],\ + ["karma-firefox-launcher", "npm:2.1.2"],\ ["karma-jasmine", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.1.0"],\ - ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.6.0"],\ + ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.7.0"],\ ["nyc", "npm:15.1.0"],\ ["prettier", "npm:2.8.8"],\ ["ses", "npm:0.11.1"],\ @@ -3732,9 +3841,9 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["ts-node", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.2"],\ ["typedoc", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:0.23.28"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"],\ - ["webpack", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:5.76.1"],\ - ["webpack-cli", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:4.7.0"],\ - ["ws", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:7.4.6"],\ + ["webpack", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:5.88.2"],\ + ["webpack-cli", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:4.10.0"],\ + ["ws", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:7.5.9"],\ ["xstream", "npm:11.14.0"]\ ],\ "linkType": "SOFT"\ @@ -3754,44 +3863,44 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@cosmjs/stream", "workspace:packages/stream"],\ ["@cosmjs/tendermint-rpc", "workspace:packages/tendermint-rpc"],\ ["@cosmjs/utils", "workspace:packages/utils"],\ - ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.1"],\ + ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.2"],\ ["@types/eslint-plugin-prettier", "npm:3.1.0"],\ - ["@types/jasmine", "npm:4.0.3"],\ - ["@types/karma-firefox-launcher", "npm:2.1.0"],\ + ["@types/jasmine", "npm:4.3.5"],\ + ["@types/karma-firefox-launcher", "npm:2.1.1"],\ ["@types/karma-jasmine", "npm:4.0.2"],\ - ["@types/karma-jasmine-html-reporter", "npm:1.5.1"],\ - ["@types/long", "npm:4.0.1"],\ - ["@types/node", "npm:18.15.11"],\ - ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ + ["@types/karma-jasmine-html-reporter", "npm:1.7.0"],\ + ["@types/long", "npm:4.0.2"],\ + ["@types/node", "npm:18.17.5"],\ + ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ ["cosmjs-types", "npm:0.8.0"],\ - ["eslint", "npm:7.26.0"],\ - ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0"],\ - ["eslint-import-resolver-node", "npm:0.3.4"],\ - ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.23.2"],\ - ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.0"],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0"],\ + ["eslint-import-resolver-node", "npm:0.3.9"],\ + ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.28.0"],\ + ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.1"],\ ["eslint-plugin-simple-import-sort", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:7.0.0"],\ ["esm", "npm:3.2.25"],\ - ["glob", "npm:7.2.0"],\ - ["jasmine", "npm:4.2.1"],\ + ["glob", "npm:7.2.3"],\ + ["jasmine", "npm:4.6.0"],\ ["jasmine-spec-reporter", "npm:6.0.0"],\ - ["karma", "npm:6.3.16"],\ - ["karma-chrome-launcher", "npm:3.1.0"],\ - ["karma-firefox-launcher", "npm:2.1.0"],\ + ["karma", "npm:6.4.2"],\ + ["karma-chrome-launcher", "npm:3.2.0"],\ + ["karma-firefox-launcher", "npm:2.1.2"],\ ["karma-jasmine", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.1.0"],\ - ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.6.0"],\ + ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.7.0"],\ ["long", "npm:4.0.0"],\ ["nyc", "npm:15.1.0"],\ ["prettier", "npm:2.8.8"],\ - ["protobufjs", "npm:6.11.3"],\ + ["protobufjs", "npm:6.11.4"],\ ["readonly-date", "npm:1.0.0"],\ ["ses", "npm:0.11.1"],\ ["source-map-support", "npm:0.5.21"],\ ["ts-node", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.2"],\ ["typedoc", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:0.23.28"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"],\ - ["webpack", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:5.76.1"],\ - ["webpack-cli", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:4.7.0"],\ + ["webpack", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:5.88.2"],\ + ["webpack-cli", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:4.10.0"],\ ["xstream", "npm:11.14.0"]\ ],\ "linkType": "SOFT"\ @@ -3802,30 +3911,30 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./packages/stream/",\ "packageDependencies": [\ ["@cosmjs/stream", "workspace:packages/stream"],\ - ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.1"],\ + ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.2"],\ ["@types/eslint-plugin-prettier", "npm:3.1.0"],\ - ["@types/jasmine", "npm:4.0.3"],\ - ["@types/karma-firefox-launcher", "npm:2.1.0"],\ + ["@types/jasmine", "npm:4.3.5"],\ + ["@types/karma-firefox-launcher", "npm:2.1.1"],\ ["@types/karma-jasmine", "npm:4.0.2"],\ - ["@types/karma-jasmine-html-reporter", "npm:1.5.1"],\ - ["@types/node", "npm:18.15.11"],\ - ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["eslint", "npm:7.26.0"],\ - ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0"],\ - ["eslint-import-resolver-node", "npm:0.3.4"],\ - ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.23.2"],\ - ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.0"],\ + ["@types/karma-jasmine-html-reporter", "npm:1.7.0"],\ + ["@types/node", "npm:18.17.5"],\ + ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0"],\ + ["eslint-import-resolver-node", "npm:0.3.9"],\ + ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.28.0"],\ + ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.1"],\ ["eslint-plugin-simple-import-sort", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:7.0.0"],\ ["esm", "npm:3.2.25"],\ - ["glob", "npm:7.2.0"],\ - ["jasmine", "npm:4.2.1"],\ + ["glob", "npm:7.2.3"],\ + ["jasmine", "npm:4.6.0"],\ ["jasmine-spec-reporter", "npm:6.0.0"],\ - ["karma", "npm:6.3.16"],\ - ["karma-chrome-launcher", "npm:3.1.0"],\ - ["karma-firefox-launcher", "npm:2.1.0"],\ + ["karma", "npm:6.4.2"],\ + ["karma-chrome-launcher", "npm:3.2.0"],\ + ["karma-firefox-launcher", "npm:2.1.2"],\ ["karma-jasmine", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.1.0"],\ - ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.6.0"],\ + ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.7.0"],\ ["nyc", "npm:15.1.0"],\ ["prettier", "npm:2.8.8"],\ ["ses", "npm:0.11.1"],\ @@ -3833,8 +3942,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["ts-node", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.2"],\ ["typedoc", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:0.23.28"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"],\ - ["webpack", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:5.76.1"],\ - ["webpack-cli", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:4.7.0"],\ + ["webpack", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:5.88.2"],\ + ["webpack-cli", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:4.10.0"],\ ["xstream", "npm:11.14.0"]\ ],\ "linkType": "SOFT"\ @@ -3852,31 +3961,31 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@cosmjs/socket", "workspace:packages/socket"],\ ["@cosmjs/stream", "workspace:packages/stream"],\ ["@cosmjs/utils", "workspace:packages/utils"],\ - ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.1"],\ + ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.2"],\ ["@types/eslint-plugin-prettier", "npm:3.1.0"],\ - ["@types/jasmine", "npm:4.0.3"],\ - ["@types/karma-firefox-launcher", "npm:2.1.0"],\ + ["@types/jasmine", "npm:4.3.5"],\ + ["@types/karma-firefox-launcher", "npm:2.1.1"],\ ["@types/karma-jasmine", "npm:4.0.2"],\ - ["@types/karma-jasmine-html-reporter", "npm:1.5.1"],\ - ["@types/node", "npm:18.15.11"],\ - ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ + ["@types/karma-jasmine-html-reporter", "npm:1.7.0"],\ + ["@types/node", "npm:18.17.5"],\ + ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ ["axios", "npm:0.21.4"],\ - ["eslint", "npm:7.26.0"],\ - ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0"],\ - ["eslint-import-resolver-node", "npm:0.3.4"],\ - ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.23.2"],\ - ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.0"],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0"],\ + ["eslint-import-resolver-node", "npm:0.3.9"],\ + ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.28.0"],\ + ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.1"],\ ["eslint-plugin-simple-import-sort", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:7.0.0"],\ ["esm", "npm:3.2.25"],\ - ["glob", "npm:7.2.0"],\ - ["jasmine", "npm:4.2.1"],\ + ["glob", "npm:7.2.3"],\ + ["jasmine", "npm:4.6.0"],\ ["jasmine-spec-reporter", "npm:6.0.0"],\ - ["karma", "npm:6.3.16"],\ - ["karma-chrome-launcher", "npm:3.1.0"],\ - ["karma-firefox-launcher", "npm:2.1.0"],\ + ["karma", "npm:6.4.2"],\ + ["karma-chrome-launcher", "npm:3.2.0"],\ + ["karma-firefox-launcher", "npm:2.1.2"],\ ["karma-jasmine", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.1.0"],\ - ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.6.0"],\ + ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.7.0"],\ ["nyc", "npm:15.1.0"],\ ["prettier", "npm:2.8.8"],\ ["readonly-date", "npm:1.0.0"],\ @@ -3885,8 +3994,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["ts-node", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.2"],\ ["typedoc", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:0.23.28"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"],\ - ["webpack", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:5.76.1"],\ - ["webpack-cli", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:4.7.0"],\ + ["webpack", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:5.88.2"],\ + ["webpack-cli", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:4.10.0"],\ ["xstream", "npm:11.14.0"]\ ],\ "linkType": "SOFT"\ @@ -3897,31 +4006,31 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./packages/utils/",\ "packageDependencies": [\ ["@cosmjs/utils", "workspace:packages/utils"],\ - ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.1"],\ + ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.2"],\ ["@types/eslint-plugin-prettier", "npm:3.1.0"],\ - ["@types/jasmine", "npm:4.0.3"],\ - ["@types/karma-firefox-launcher", "npm:2.1.0"],\ + ["@types/jasmine", "npm:4.3.5"],\ + ["@types/karma-firefox-launcher", "npm:2.1.1"],\ ["@types/karma-jasmine", "npm:4.0.2"],\ - ["@types/karma-jasmine-html-reporter", "npm:1.5.1"],\ - ["@types/node", "npm:18.15.11"],\ - ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ + ["@types/karma-jasmine-html-reporter", "npm:1.7.0"],\ + ["@types/node", "npm:18.17.5"],\ + ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ ["buffer", "npm:6.0.3"],\ - ["eslint", "npm:7.26.0"],\ - ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0"],\ - ["eslint-import-resolver-node", "npm:0.3.4"],\ - ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.23.2"],\ - ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.0"],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0"],\ + ["eslint-import-resolver-node", "npm:0.3.9"],\ + ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.28.0"],\ + ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.1"],\ ["eslint-plugin-simple-import-sort", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:7.0.0"],\ ["esm", "npm:3.2.25"],\ - ["glob", "npm:7.2.0"],\ - ["jasmine", "npm:4.2.1"],\ + ["glob", "npm:7.2.3"],\ + ["jasmine", "npm:4.6.0"],\ ["jasmine-spec-reporter", "npm:6.0.0"],\ - ["karma", "npm:6.3.16"],\ - ["karma-chrome-launcher", "npm:3.1.0"],\ - ["karma-firefox-launcher", "npm:2.1.0"],\ + ["karma", "npm:6.4.2"],\ + ["karma-chrome-launcher", "npm:3.2.0"],\ + ["karma-firefox-launcher", "npm:2.1.2"],\ ["karma-jasmine", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.1.0"],\ - ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.6.0"],\ + ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.7.0"],\ ["nyc", "npm:15.1.0"],\ ["prettier", "npm:2.8.8"],\ ["ses", "npm:0.11.1"],\ @@ -3929,30 +4038,62 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["ts-node", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.2"],\ ["typedoc", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:0.23.28"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"],\ - ["webpack", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:5.76.1"],\ - ["webpack-cli", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:4.7.0"]\ + ["webpack", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:5.88.2"],\ + ["webpack-cli", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:4.10.0"]\ ],\ "linkType": "SOFT"\ }]\ ]],\ ["@discoveryjs/json-ext", [\ - ["npm:0.5.3", {\ - "packageLocation": "./.yarn/cache/@discoveryjs-json-ext-npm-0.5.3-d076e2bd24-fea319569f.zip/node_modules/@discoveryjs/json-ext/",\ + ["npm:0.5.7", {\ + "packageLocation": "./.yarn/cache/@discoveryjs-json-ext-npm-0.5.7-fe04af1f31-2176d301cc.zip/node_modules/@discoveryjs/json-ext/",\ "packageDependencies": [\ - ["@discoveryjs/json-ext", "npm:0.5.3"]\ + ["@discoveryjs/json-ext", "npm:0.5.7"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@eslint-community/eslint-utils", [\ + ["npm:4.4.0", {\ + "packageLocation": "./.yarn/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-cdfe3ae42b.zip/node_modules/@eslint-community/eslint-utils/",\ + "packageDependencies": [\ + ["@eslint-community/eslint-utils", "npm:4.4.0"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:cf525c1a77fe48728704ab816789becfaf0e5ec773e4a0941b98c429eae337e666f647a59b5de8fa80f47376c211385038f4850f2392c21e4ab4ddc1ac2499f3#npm:4.4.0", {\ + "packageLocation": "./.yarn/__virtual__/@eslint-community-eslint-utils-virtual-fbc78242e3/0/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-cdfe3ae42b.zip/node_modules/@eslint-community/eslint-utils/",\ + "packageDependencies": [\ + ["@eslint-community/eslint-utils", "virtual:cf525c1a77fe48728704ab816789becfaf0e5ec773e4a0941b98c429eae337e666f647a59b5de8fa80f47376c211385038f4850f2392c21e4ab4ddc1ac2499f3#npm:4.4.0"],\ + ["@types/eslint", null],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-visitor-keys", "npm:3.4.3"]\ + ],\ + "packagePeers": [\ + "@types/eslint",\ + "eslint"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@eslint-community/regexpp", [\ + ["npm:4.6.2", {\ + "packageLocation": "./.yarn/cache/@eslint-community-regexpp-npm-4.6.2-0fc083c210-a3c341377b.zip/node_modules/@eslint-community/regexpp/",\ + "packageDependencies": [\ + ["@eslint-community/regexpp", "npm:4.6.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@eslint/eslintrc", [\ - ["npm:0.4.1", {\ - "packageLocation": "./.yarn/cache/@eslint-eslintrc-npm-0.4.1-48933b2833-85eeaa022e.zip/node_modules/@eslint/eslintrc/",\ + ["npm:0.4.3", {\ + "packageLocation": "./.yarn/cache/@eslint-eslintrc-npm-0.4.3-ee1bbcab87-03a7704150.zip/node_modules/@eslint/eslintrc/",\ "packageDependencies": [\ - ["@eslint/eslintrc", "npm:0.4.1"],\ + ["@eslint/eslintrc", "npm:0.4.3"],\ ["ajv", "npm:6.12.6"],\ - ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"],\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"],\ ["espree", "npm:7.3.1"],\ - ["globals", "npm:12.4.0"],\ + ["globals", "npm:13.21.0"],\ ["ignore", "npm:4.0.6"],\ ["import-fresh", "npm:3.3.0"],\ ["js-yaml", "npm:3.14.1"],\ @@ -3962,6 +4103,51 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["@humanwhocodes/config-array", [\ + ["npm:0.5.0", {\ + "packageLocation": "./.yarn/cache/@humanwhocodes-config-array-npm-0.5.0-5ded120470-44ee6a9f05.zip/node_modules/@humanwhocodes/config-array/",\ + "packageDependencies": [\ + ["@humanwhocodes/config-array", "npm:0.5.0"],\ + ["@humanwhocodes/object-schema", "npm:1.2.1"],\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"],\ + ["minimatch", "npm:3.1.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@humanwhocodes/object-schema", [\ + ["npm:1.2.1", {\ + "packageLocation": "./.yarn/cache/@humanwhocodes-object-schema-npm-1.2.1-eb622b5d0e-a824a1ec31.zip/node_modules/@humanwhocodes/object-schema/",\ + "packageDependencies": [\ + ["@humanwhocodes/object-schema", "npm:1.2.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@isaacs/cliui", [\ + ["npm:8.0.2", {\ + "packageLocation": "./.yarn/cache/@isaacs-cliui-npm-8.0.2-f4364666d5-4a473b9b32.zip/node_modules/@isaacs/cliui/",\ + "packageDependencies": [\ + ["@isaacs/cliui", "npm:8.0.2"],\ + ["string-width", "npm:5.1.2"],\ + ["string-width-cjs", [\ + "string-width",\ + "npm:4.2.3"\ + ]],\ + ["strip-ansi", "npm:7.1.0"],\ + ["strip-ansi-cjs", [\ + "strip-ansi",\ + "npm:6.0.1"\ + ]],\ + ["wrap-ansi", "npm:8.1.0"],\ + ["wrap-ansi-cjs", [\ + "wrap-ansi",\ + "npm:7.0.0"\ + ]]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["@istanbuljs/load-nyc-config", [\ ["npm:1.1.0", {\ "packageLocation": "./.yarn/cache/@istanbuljs-load-nyc-config-npm-1.1.0-42d17c9cb1-d578da5e2e.zip/node_modules/@istanbuljs/load-nyc-config/",\ @@ -3977,32 +4163,24 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@istanbuljs/nyc-config-typescript", [\ - ["npm:1.0.1", {\ - "packageLocation": "./.yarn/cache/@istanbuljs-nyc-config-typescript-npm-1.0.1-d1daa3ba46-b4106446f8.zip/node_modules/@istanbuljs/nyc-config-typescript/",\ + ["npm:1.0.2", {\ + "packageLocation": "./.yarn/cache/@istanbuljs-nyc-config-typescript-npm-1.0.2-379c0ff62d-df6f9c9b17.zip/node_modules/@istanbuljs/nyc-config-typescript/",\ "packageDependencies": [\ - ["@istanbuljs/nyc-config-typescript", "npm:1.0.1"]\ + ["@istanbuljs/nyc-config-typescript", "npm:1.0.2"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.1", {\ - "packageLocation": "./.yarn/__virtual__/@istanbuljs-nyc-config-typescript-virtual-898a554d35/0/cache/@istanbuljs-nyc-config-typescript-npm-1.0.1-d1daa3ba46-b4106446f8.zip/node_modules/@istanbuljs/nyc-config-typescript/",\ + ["virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.2", {\ + "packageLocation": "./.yarn/__virtual__/@istanbuljs-nyc-config-typescript-virtual-de16e0bf64/0/cache/@istanbuljs-nyc-config-typescript-npm-1.0.2-379c0ff62d-df6f9c9b17.zip/node_modules/@istanbuljs/nyc-config-typescript/",\ "packageDependencies": [\ - ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.1"],\ + ["@istanbuljs/nyc-config-typescript", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.0.2"],\ ["@istanbuljs/schema", "npm:0.1.3"],\ ["@types/nyc", null],\ - ["@types/source-map-support", null],\ - ["@types/ts-node", null],\ - ["nyc", "npm:15.1.0"],\ - ["source-map-support", "npm:0.5.21"],\ - ["ts-node", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.2"]\ + ["nyc", "npm:15.1.0"]\ ],\ "packagePeers": [\ "@types/nyc",\ - "@types/source-map-support",\ - "@types/ts-node",\ - "nyc",\ - "source-map-support",\ - "ts-node"\ + "nyc"\ ],\ "linkType": "HARD"\ }]\ @@ -4017,22 +4195,22 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@jridgewell/gen-mapping", [\ - ["npm:0.3.2", {\ - "packageLocation": "./.yarn/cache/@jridgewell-gen-mapping-npm-0.3.2-c64eeb4a4e-1832707a1c.zip/node_modules/@jridgewell/gen-mapping/",\ + ["npm:0.3.3", {\ + "packageLocation": "./.yarn/cache/@jridgewell-gen-mapping-npm-0.3.3-1815eba94c-4a74944bd3.zip/node_modules/@jridgewell/gen-mapping/",\ "packageDependencies": [\ - ["@jridgewell/gen-mapping", "npm:0.3.2"],\ + ["@jridgewell/gen-mapping", "npm:0.3.3"],\ ["@jridgewell/set-array", "npm:1.1.2"],\ - ["@jridgewell/sourcemap-codec", "npm:1.4.14"],\ - ["@jridgewell/trace-mapping", "npm:0.3.14"]\ + ["@jridgewell/sourcemap-codec", "npm:1.4.15"],\ + ["@jridgewell/trace-mapping", "npm:0.3.19"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@jridgewell/resolve-uri", [\ - ["npm:3.1.0", {\ - "packageLocation": "./.yarn/cache/@jridgewell-resolve-uri-npm-3.1.0-6ff2351e61-b5ceaaf9a1.zip/node_modules/@jridgewell/resolve-uri/",\ + ["npm:3.1.1", {\ + "packageLocation": "./.yarn/cache/@jridgewell-resolve-uri-npm-3.1.1-aa2de3f210-f5b441fe79.zip/node_modules/@jridgewell/resolve-uri/",\ "packageDependencies": [\ - ["@jridgewell/resolve-uri", "npm:3.1.0"]\ + ["@jridgewell/resolve-uri", "npm:3.1.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -4047,50 +4225,41 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@jridgewell/source-map", [\ - ["npm:0.3.2", {\ - "packageLocation": "./.yarn/cache/@jridgewell-source-map-npm-0.3.2-6fd1f37b22-1b83f0eb94.zip/node_modules/@jridgewell/source-map/",\ + ["npm:0.3.5", {\ + "packageLocation": "./.yarn/cache/@jridgewell-source-map-npm-0.3.5-9f964eaf44-1ad4dec0bd.zip/node_modules/@jridgewell/source-map/",\ "packageDependencies": [\ - ["@jridgewell/source-map", "npm:0.3.2"],\ - ["@jridgewell/gen-mapping", "npm:0.3.2"],\ - ["@jridgewell/trace-mapping", "npm:0.3.14"]\ + ["@jridgewell/source-map", "npm:0.3.5"],\ + ["@jridgewell/gen-mapping", "npm:0.3.3"],\ + ["@jridgewell/trace-mapping", "npm:0.3.19"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@jridgewell/sourcemap-codec", [\ - ["npm:1.4.14", {\ - "packageLocation": "./.yarn/cache/@jridgewell-sourcemap-codec-npm-1.4.14-f5f0630788-61100637b6.zip/node_modules/@jridgewell/sourcemap-codec/",\ + ["npm:1.4.15", {\ + "packageLocation": "./.yarn/cache/@jridgewell-sourcemap-codec-npm-1.4.15-a055fb62cf-b881c7e503.zip/node_modules/@jridgewell/sourcemap-codec/",\ "packageDependencies": [\ - ["@jridgewell/sourcemap-codec", "npm:1.4.14"]\ + ["@jridgewell/sourcemap-codec", "npm:1.4.15"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@jridgewell/trace-mapping", [\ - ["npm:0.3.14", {\ - "packageLocation": "./.yarn/cache/@jridgewell-trace-mapping-npm-0.3.14-c78fcccfdf-b9537b9630.zip/node_modules/@jridgewell/trace-mapping/",\ + ["npm:0.3.19", {\ + "packageLocation": "./.yarn/cache/@jridgewell-trace-mapping-npm-0.3.19-9aa1a7e2fd-956a6f0f6f.zip/node_modules/@jridgewell/trace-mapping/",\ "packageDependencies": [\ - ["@jridgewell/trace-mapping", "npm:0.3.14"],\ - ["@jridgewell/resolve-uri", "npm:3.1.0"],\ - ["@jridgewell/sourcemap-codec", "npm:1.4.14"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:0.3.17", {\ - "packageLocation": "./.yarn/cache/@jridgewell-trace-mapping-npm-0.3.17-57578fd48c-9d703b859c.zip/node_modules/@jridgewell/trace-mapping/",\ - "packageDependencies": [\ - ["@jridgewell/trace-mapping", "npm:0.3.17"],\ - ["@jridgewell/resolve-uri", "npm:3.1.0"],\ - ["@jridgewell/sourcemap-codec", "npm:1.4.14"]\ + ["@jridgewell/trace-mapping", "npm:0.3.19"],\ + ["@jridgewell/resolve-uri", "npm:3.1.1"],\ + ["@jridgewell/sourcemap-codec", "npm:1.4.15"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@koa/cors", [\ - ["npm:3.3.0", {\ - "packageLocation": "./.yarn/cache/@koa-cors-npm-3.3.0-0564248a2f-bb49c680e0.zip/node_modules/@koa/cors/",\ + ["npm:3.4.3", {\ + "packageLocation": "./.yarn/cache/@koa-cors-npm-3.4.3-2713c012f1-51a5b89b4e.zip/node_modules/@koa/cors/",\ "packageDependencies": [\ - ["@koa/cors", "npm:3.3.0"],\ + ["@koa/cors", "npm:3.4.3"],\ ["vary", "npm:1.1.2"]\ ],\ "linkType": "HARD"\ @@ -4104,7 +4273,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@ledgerhq/errors", "npm:5.50.0"],\ ["@ledgerhq/logs", "npm:5.50.0"],\ ["rxjs", "npm:6.6.7"],\ - ["semver", "npm:7.5.3"]\ + ["semver", "npm:7.5.4"]\ ],\ "linkType": "HARD"\ }]\ @@ -4162,10 +4331,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@ledgerhq/hw-transport-webusb", [\ - ["npm:5.51.1", {\ - "packageLocation": "./.yarn/cache/@ledgerhq-hw-transport-webusb-npm-5.51.1-8388252e37-f03bbb38c4.zip/node_modules/@ledgerhq/hw-transport-webusb/",\ + ["npm:5.53.1", {\ + "packageLocation": "./.yarn/cache/@ledgerhq-hw-transport-webusb-npm-5.53.1-669c989eee-afdaf05fd2.zip/node_modules/@ledgerhq/hw-transport-webusb/",\ "packageDependencies": [\ - ["@ledgerhq/hw-transport-webusb", "npm:5.51.1"],\ + ["@ledgerhq/hw-transport-webusb", "npm:5.53.1"],\ ["@ledgerhq/devices", "npm:5.51.1"],\ ["@ledgerhq/errors", "npm:5.50.0"],\ ["@ledgerhq/hw-transport", "npm:5.51.1"],\ @@ -4184,52 +4353,60 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@noble/hashes", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/@noble-hashes-npm-1.0.0-893cbd74b3-bdf1c28a4b.zip/node_modules/@noble/hashes/",\ + ["npm:1.3.1", {\ + "packageLocation": "./.yarn/cache/@noble-hashes-npm-1.3.1-64a92c8445-7fdefc0f7a.zip/node_modules/@noble/hashes/",\ "packageDependencies": [\ - ["@noble/hashes", "npm:1.0.0"]\ + ["@noble/hashes", "npm:1.3.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@nodelib/fs.scandir", [\ - ["npm:2.1.4", {\ - "packageLocation": "./.yarn/cache/@nodelib-fs.scandir-npm-2.1.4-6f6ddb2372-18c2150ab5.zip/node_modules/@nodelib/fs.scandir/",\ + ["npm:2.1.5", {\ + "packageLocation": "./.yarn/cache/@nodelib-fs.scandir-npm-2.1.5-89c67370dd-a970d595bd.zip/node_modules/@nodelib/fs.scandir/",\ "packageDependencies": [\ - ["@nodelib/fs.scandir", "npm:2.1.4"],\ - ["@nodelib/fs.stat", "npm:2.0.4"],\ + ["@nodelib/fs.scandir", "npm:2.1.5"],\ + ["@nodelib/fs.stat", "npm:2.0.5"],\ ["run-parallel", "npm:1.2.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@nodelib/fs.stat", [\ - ["npm:2.0.4", {\ - "packageLocation": "./.yarn/cache/@nodelib-fs.stat-npm-2.0.4-0b2acf9d70-d0d9745f87.zip/node_modules/@nodelib/fs.stat/",\ + ["npm:2.0.5", {\ + "packageLocation": "./.yarn/cache/@nodelib-fs.stat-npm-2.0.5-01f4dd3030-012480b5ca.zip/node_modules/@nodelib/fs.stat/",\ "packageDependencies": [\ - ["@nodelib/fs.stat", "npm:2.0.4"]\ + ["@nodelib/fs.stat", "npm:2.0.5"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@nodelib/fs.walk", [\ - ["npm:1.2.6", {\ - "packageLocation": "./.yarn/cache/@nodelib-fs.walk-npm-1.2.6-b686194e9d-d156901823.zip/node_modules/@nodelib/fs.walk/",\ + ["npm:1.2.8", {\ + "packageLocation": "./.yarn/cache/@nodelib-fs.walk-npm-1.2.8-b4a89da548-190c643f15.zip/node_modules/@nodelib/fs.walk/",\ "packageDependencies": [\ - ["@nodelib/fs.walk", "npm:1.2.6"],\ - ["@nodelib/fs.scandir", "npm:2.1.4"],\ - ["fastq", "npm:1.11.0"]\ + ["@nodelib/fs.walk", "npm:1.2.8"],\ + ["@nodelib/fs.scandir", "npm:2.1.5"],\ + ["fastq", "npm:1.15.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["@npmcli/move-file", [\ - ["npm:1.1.2", {\ - "packageLocation": "./.yarn/cache/@npmcli-move-file-npm-1.1.2-4f6c7b3354-c96381d4a3.zip/node_modules/@npmcli/move-file/",\ + ["@npmcli/fs", [\ + ["npm:3.1.0", {\ + "packageLocation": "./.yarn/cache/@npmcli-fs-npm-3.1.0-0844a57978-a50a6818de.zip/node_modules/@npmcli/fs/",\ "packageDependencies": [\ - ["@npmcli/move-file", "npm:1.1.2"],\ - ["mkdirp", "npm:1.0.4"],\ - ["rimraf", "npm:3.0.2"]\ + ["@npmcli/fs", "npm:3.1.0"],\ + ["semver", "npm:7.5.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@pkgjs/parseargs", [\ + ["npm:0.11.0", {\ + "packageLocation": "./.yarn/cache/@pkgjs-parseargs-npm-0.11.0-cd2a3fe948-6ad6a00fc4.zip/node_modules/@pkgjs/parseargs/",\ + "packageDependencies": [\ + ["@pkgjs/parseargs", "npm:0.11.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -4336,10 +4513,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@tootallnate/once", [\ - ["npm:1.1.2", {\ - "packageLocation": "./.yarn/cache/@tootallnate-once-npm-1.1.2-0517220057-e1fb1bbbc1.zip/node_modules/@tootallnate/once/",\ + ["npm:2.0.0", {\ + "packageLocation": "./.yarn/cache/@tootallnate-once-npm-2.0.0-e36cf4f140-ad87447820.zip/node_modules/@tootallnate/once/",\ "packageDependencies": [\ - ["@tootallnate/once", "npm:1.1.2"]\ + ["@tootallnate/once", "npm:2.0.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -4349,26 +4526,26 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/@types-accepts-npm-1.3.5-1d59cd2a7a-590b758057.zip/node_modules/@types/accepts/",\ "packageDependencies": [\ ["@types/accepts", "npm:1.3.5"],\ - ["@types/node", "npm:18.15.11"]\ + ["@types/node", "npm:20.5.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/babel-types", [\ - ["npm:7.0.9", {\ - "packageLocation": "./.yarn/cache/@types-babel-types-npm-7.0.9-ffb9682c78-2beb83d4e5.zip/node_modules/@types/babel-types/",\ + ["npm:7.0.11", {\ + "packageLocation": "./.yarn/cache/@types-babel-types-npm-7.0.11-b4a19601f1-9b02719c7c.zip/node_modules/@types/babel-types/",\ "packageDependencies": [\ - ["@types/babel-types", "npm:7.0.9"]\ + ["@types/babel-types", "npm:7.0.11"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/babylon", [\ - ["npm:6.16.5", {\ - "packageLocation": "./.yarn/cache/@types-babylon-npm-6.16.5-e901315848-e3671fd305.zip/node_modules/@types/babylon/",\ + ["npm:6.16.6", {\ + "packageLocation": "./.yarn/cache/@types-babylon-npm-6.16.6-c0c46c4816-c011e028bc.zip/node_modules/@types/babylon/",\ "packageDependencies": [\ - ["@types/babylon", "npm:6.16.5"],\ - ["@types/babel-types", "npm:7.0.9"]\ + ["@types/babylon", "npm:6.16.6"],\ + ["@types/babel-types", "npm:7.0.11"]\ ],\ "linkType": "HARD"\ }]\ @@ -4383,41 +4560,41 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@types/bn.js", [\ - ["npm:5.1.0", {\ - "packageLocation": "./.yarn/cache/@types-bn.js-npm-5.1.0-4a0335ff4f-1dc1cbbd7a.zip/node_modules/@types/bn.js/",\ + ["npm:5.1.1", {\ + "packageLocation": "./.yarn/cache/@types-bn.js-npm-5.1.1-346449981b-e50ed2dd3a.zip/node_modules/@types/bn.js/",\ "packageDependencies": [\ - ["@types/bn.js", "npm:5.1.0"],\ - ["@types/node", "npm:18.15.11"]\ + ["@types/bn.js", "npm:5.1.1"],\ + ["@types/node", "npm:20.5.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/body-parser", [\ - ["npm:1.19.0", {\ - "packageLocation": "./.yarn/cache/@types-body-parser-npm-1.19.0-3ca4d08a60-15043566f1.zip/node_modules/@types/body-parser/",\ + ["npm:1.19.2", {\ + "packageLocation": "./.yarn/cache/@types-body-parser-npm-1.19.2-f845b7b538-e17840c7d7.zip/node_modules/@types/body-parser/",\ "packageDependencies": [\ - ["@types/body-parser", "npm:1.19.0"],\ - ["@types/connect", "npm:3.4.34"],\ - ["@types/node", "npm:18.15.11"]\ + ["@types/body-parser", "npm:1.19.2"],\ + ["@types/connect", "npm:3.4.35"],\ + ["@types/node", "npm:20.5.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/connect", [\ - ["npm:3.4.34", {\ - "packageLocation": "./.yarn/cache/@types-connect-npm-3.4.34-39e4f7bb55-c6e2aa299c.zip/node_modules/@types/connect/",\ + ["npm:3.4.35", {\ + "packageLocation": "./.yarn/cache/@types-connect-npm-3.4.35-7337eee0a3-fe81351470.zip/node_modules/@types/connect/",\ "packageDependencies": [\ - ["@types/connect", "npm:3.4.34"],\ - ["@types/node", "npm:18.15.11"]\ + ["@types/connect", "npm:3.4.35"],\ + ["@types/node", "npm:20.5.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/content-disposition", [\ - ["npm:0.5.3", {\ - "packageLocation": "./.yarn/cache/@types-content-disposition-npm-0.5.3-90ee2edb84-1b15b7af33.zip/node_modules/@types/content-disposition/",\ + ["npm:0.5.5", {\ + "packageLocation": "./.yarn/cache/@types-content-disposition-npm-0.5.5-2219aba782-fdf7379db1.zip/node_modules/@types/content-disposition/",\ "packageDependencies": [\ - ["@types/content-disposition", "npm:0.5.3"]\ + ["@types/content-disposition", "npm:0.5.5"]\ ],\ "linkType": "HARD"\ }]\ @@ -4432,23 +4609,24 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@types/cookies", [\ - ["npm:0.7.6", {\ - "packageLocation": "./.yarn/cache/@types-cookies-npm-0.7.6-0c7686edd9-dffad49174.zip/node_modules/@types/cookies/",\ + ["npm:0.7.7", {\ + "packageLocation": "./.yarn/cache/@types-cookies-npm-0.7.7-0fbdd53be5-d3759efc11.zip/node_modules/@types/cookies/",\ "packageDependencies": [\ - ["@types/cookies", "npm:0.7.6"],\ - ["@types/connect", "npm:3.4.34"],\ - ["@types/express", "npm:4.17.13"],\ + ["@types/cookies", "npm:0.7.7"],\ + ["@types/connect", "npm:3.4.35"],\ + ["@types/express", "npm:4.17.17"],\ ["@types/keygrip", "npm:1.0.2"],\ - ["@types/node", "npm:18.15.11"]\ + ["@types/node", "npm:20.5.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/cors", [\ - ["npm:2.8.12", {\ - "packageLocation": "./.yarn/cache/@types-cors-npm-2.8.12-ff52e8e514-8c45f112c7.zip/node_modules/@types/cors/",\ + ["npm:2.8.13", {\ + "packageLocation": "./.yarn/cache/@types-cors-npm-2.8.13-4b8ac1068f-7ef197ea19.zip/node_modules/@types/cors/",\ "packageDependencies": [\ - ["@types/cors", "npm:2.8.12"]\ + ["@types/cors", "npm:2.8.13"],\ + ["@types/node", "npm:20.5.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -4467,18 +4645,18 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/@types-elliptic-npm-6.4.14-77735f3256-d5a64f540e.zip/node_modules/@types/elliptic/",\ "packageDependencies": [\ ["@types/elliptic", "npm:6.4.14"],\ - ["@types/bn.js", "npm:5.1.0"]\ + ["@types/bn.js", "npm:5.1.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/eslint", [\ - ["npm:7.2.10", {\ - "packageLocation": "./.yarn/cache/@types-eslint-npm-7.2.10-80d8a98db0-9c82e4733c.zip/node_modules/@types/eslint/",\ + ["npm:8.44.2", {\ + "packageLocation": "./.yarn/cache/@types-eslint-npm-8.44.2-6e9a6149b6-25b3ef61ba.zip/node_modules/@types/eslint/",\ "packageDependencies": [\ - ["@types/eslint", "npm:7.2.10"],\ - ["@types/estree", "npm:0.0.47"],\ - ["@types/json-schema", "npm:7.0.9"]\ + ["@types/eslint", "npm:8.44.2"],\ + ["@types/estree", "npm:1.0.1"],\ + ["@types/json-schema", "npm:7.0.12"]\ ],\ "linkType": "HARD"\ }]\ @@ -4488,7 +4666,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/@types-eslint-plugin-prettier-npm-3.1.0-5ef7f73ff9-e8fc9991cc.zip/node_modules/@types/eslint-plugin-prettier/",\ "packageDependencies": [\ ["@types/eslint-plugin-prettier", "npm:3.1.0"],\ - ["@types/eslint", "npm:7.2.10"]\ + ["@types/eslint", "npm:8.44.2"]\ ],\ "linkType": "HARD"\ }]\ @@ -4498,92 +4676,79 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/@types-eslint-scope-npm-3.7.4-c11d226d71-ea6a9363e9.zip/node_modules/@types/eslint-scope/",\ "packageDependencies": [\ ["@types/eslint-scope", "npm:3.7.4"],\ - ["@types/eslint", "npm:7.2.10"],\ - ["@types/estree", "npm:0.0.47"]\ + ["@types/eslint", "npm:8.44.2"],\ + ["@types/estree", "npm:1.0.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/estree", [\ - ["npm:0.0.47", {\ - "packageLocation": "./.yarn/cache/@types-estree-npm-0.0.47-23d26080e6-aed5c94043.zip/node_modules/@types/estree/",\ - "packageDependencies": [\ - ["@types/estree", "npm:0.0.47"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:0.0.51", {\ - "packageLocation": "./.yarn/cache/@types-estree-npm-0.0.51-bc20719267-e56a3bcf75.zip/node_modules/@types/estree/",\ + ["npm:1.0.1", {\ + "packageLocation": "./.yarn/cache/@types-estree-npm-1.0.1-4c9469c165-e9aa175eac.zip/node_modules/@types/estree/",\ "packageDependencies": [\ - ["@types/estree", "npm:0.0.51"]\ + ["@types/estree", "npm:1.0.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/express", [\ - ["npm:4.17.13", {\ - "packageLocation": "./.yarn/cache/@types-express-npm-4.17.13-0e12fe9c24-12a2a0e6c4.zip/node_modules/@types/express/",\ + ["npm:4.17.17", {\ + "packageLocation": "./.yarn/cache/@types-express-npm-4.17.17-46fe8173db-0196dacc27.zip/node_modules/@types/express/",\ "packageDependencies": [\ - ["@types/express", "npm:4.17.13"],\ - ["@types/body-parser", "npm:1.19.0"],\ - ["@types/express-serve-static-core", "npm:4.17.30"],\ - ["@types/qs", "npm:6.9.6"],\ - ["@types/serve-static", "npm:1.13.9"]\ + ["@types/express", "npm:4.17.17"],\ + ["@types/body-parser", "npm:1.19.2"],\ + ["@types/express-serve-static-core", "npm:4.17.35"],\ + ["@types/qs", "npm:6.9.7"],\ + ["@types/serve-static", "npm:1.15.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/express-serve-static-core", [\ - ["npm:4.17.30", {\ - "packageLocation": "./.yarn/cache/@types-express-serve-static-core-npm-4.17.30-6aec40410e-c40d902788.zip/node_modules/@types/express-serve-static-core/",\ + ["npm:4.17.35", {\ + "packageLocation": "./.yarn/cache/@types-express-serve-static-core-npm-4.17.35-c86e5f6e4a-cc8995d10c.zip/node_modules/@types/express-serve-static-core/",\ "packageDependencies": [\ - ["@types/express-serve-static-core", "npm:4.17.30"],\ - ["@types/node", "npm:18.15.11"],\ - ["@types/qs", "npm:6.9.6"],\ - ["@types/range-parser", "npm:1.2.3"]\ + ["@types/express-serve-static-core", "npm:4.17.35"],\ + ["@types/node", "npm:20.5.0"],\ + ["@types/qs", "npm:6.9.7"],\ + ["@types/range-parser", "npm:1.2.4"],\ + ["@types/send", "npm:0.17.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/http-assert", [\ - ["npm:1.5.1", {\ - "packageLocation": "./.yarn/cache/@types-http-assert-npm-1.5.1-b9321aaef7-803633eeca.zip/node_modules/@types/http-assert/",\ + ["npm:1.5.3", {\ + "packageLocation": "./.yarn/cache/@types-http-assert-npm-1.5.3-d45bf58309-9553e5a0b8.zip/node_modules/@types/http-assert/",\ "packageDependencies": [\ - ["@types/http-assert", "npm:1.5.1"]\ + ["@types/http-assert", "npm:1.5.3"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/http-errors", [\ - ["npm:1.8.0", {\ - "packageLocation": "./.yarn/cache/@types-http-errors-npm-1.8.0-962b3aae39-72b4721a28.zip/node_modules/@types/http-errors/",\ + ["npm:2.0.1", {\ + "packageLocation": "./.yarn/cache/@types-http-errors-npm-2.0.1-c59d5079a7-3bb0c50b0a.zip/node_modules/@types/http-errors/",\ "packageDependencies": [\ - ["@types/http-errors", "npm:1.8.0"]\ + ["@types/http-errors", "npm:2.0.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/jasmine", [\ - ["npm:4.0.3", {\ - "packageLocation": "./.yarn/cache/@types-jasmine-npm-4.0.3-569abf6439-9d2af9ddb5.zip/node_modules/@types/jasmine/",\ + ["npm:4.3.5", {\ + "packageLocation": "./.yarn/cache/@types-jasmine-npm-4.3.5-a2541d2400-33839af6ef.zip/node_modules/@types/jasmine/",\ "packageDependencies": [\ - ["@types/jasmine", "npm:4.0.3"]\ + ["@types/jasmine", "npm:4.3.5"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/json-schema", [\ - ["npm:7.0.11", {\ - "packageLocation": "./.yarn/cache/@types-json-schema-npm-7.0.11-79462ae5ca-527bddfe62.zip/node_modules/@types/json-schema/",\ - "packageDependencies": [\ - ["@types/json-schema", "npm:7.0.11"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:7.0.9", {\ - "packageLocation": "./.yarn/cache/@types-json-schema-npm-7.0.9-361918cff3-259d0e25f1.zip/node_modules/@types/json-schema/",\ + ["npm:7.0.12", {\ + "packageLocation": "./.yarn/cache/@types-json-schema-npm-7.0.12-f05cfc0e99-00239e9723.zip/node_modules/@types/json-schema/",\ "packageDependencies": [\ - ["@types/json-schema", "npm:7.0.9"]\ + ["@types/json-schema", "npm:7.0.12"]\ ],\ "linkType": "HARD"\ }]\ @@ -4598,22 +4763,22 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@types/karma", [\ - ["npm:6.3.0", {\ - "packageLocation": "./.yarn/cache/@types-karma-npm-6.3.0-30163e3158-0f4485f9d2.zip/node_modules/@types/karma/",\ + ["npm:6.3.4", {\ + "packageLocation": "./.yarn/cache/@types-karma-npm-6.3.4-d09afac10b-90fb121d8d.zip/node_modules/@types/karma/",\ "packageDependencies": [\ - ["@types/karma", "npm:6.3.0"],\ - ["@types/node", "npm:18.15.11"],\ - ["log4js", "npm:6.4.1"]\ + ["@types/karma", "npm:6.3.4"],\ + ["@types/node", "npm:20.5.0"],\ + ["log4js", "npm:6.9.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/karma-firefox-launcher", [\ - ["npm:2.1.0", {\ - "packageLocation": "./.yarn/cache/@types-karma-firefox-launcher-npm-2.1.0-85afe6385d-ee4f99a9d4.zip/node_modules/@types/karma-firefox-launcher/",\ + ["npm:2.1.1", {\ + "packageLocation": "./.yarn/cache/@types-karma-firefox-launcher-npm-2.1.1-2395c30591-a08eb13438.zip/node_modules/@types/karma-firefox-launcher/",\ "packageDependencies": [\ - ["@types/karma-firefox-launcher", "npm:2.1.0"],\ - ["@types/karma", "npm:6.3.0"]\ + ["@types/karma-firefox-launcher", "npm:2.1.1"],\ + ["@types/karma", "npm:6.3.4"]\ ],\ "linkType": "HARD"\ }]\ @@ -4623,18 +4788,18 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/@types-karma-jasmine-npm-4.0.2-3aedb99021-42b3221d68.zip/node_modules/@types/karma-jasmine/",\ "packageDependencies": [\ ["@types/karma-jasmine", "npm:4.0.2"],\ - ["@types/jasmine", "npm:4.0.3"],\ - ["@types/karma", "npm:6.3.0"]\ + ["@types/jasmine", "npm:4.3.5"],\ + ["@types/karma", "npm:6.3.4"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/karma-jasmine-html-reporter", [\ - ["npm:1.5.1", {\ - "packageLocation": "./.yarn/cache/@types-karma-jasmine-html-reporter-npm-1.5.1-6da636fb6b-d6674efa64.zip/node_modules/@types/karma-jasmine-html-reporter/",\ + ["npm:1.7.0", {\ + "packageLocation": "./.yarn/cache/@types-karma-jasmine-html-reporter-npm-1.7.0-1c4ba0d60b-1cf480183d.zip/node_modules/@types/karma-jasmine-html-reporter/",\ "packageDependencies": [\ - ["@types/karma-jasmine-html-reporter", "npm:1.5.1"],\ - ["@types/karma", "npm:6.3.0"]\ + ["@types/karma-jasmine-html-reporter", "npm:1.7.0"],\ + ["@types/karma", "npm:6.3.4"]\ ],\ "linkType": "HARD"\ }]\ @@ -4649,28 +4814,28 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@types/koa", [\ - ["npm:2.13.4", {\ - "packageLocation": "./.yarn/cache/@types-koa-npm-2.13.4-e10e6e7742-35a54e6894.zip/node_modules/@types/koa/",\ + ["npm:2.13.8", {\ + "packageLocation": "./.yarn/cache/@types-koa-npm-2.13.8-c17230be10-76a2a6d219.zip/node_modules/@types/koa/",\ "packageDependencies": [\ - ["@types/koa", "npm:2.13.4"],\ + ["@types/koa", "npm:2.13.8"],\ ["@types/accepts", "npm:1.3.5"],\ - ["@types/content-disposition", "npm:0.5.3"],\ - ["@types/cookies", "npm:0.7.6"],\ - ["@types/http-assert", "npm:1.5.1"],\ - ["@types/http-errors", "npm:1.8.0"],\ + ["@types/content-disposition", "npm:0.5.5"],\ + ["@types/cookies", "npm:0.7.7"],\ + ["@types/http-assert", "npm:1.5.3"],\ + ["@types/http-errors", "npm:2.0.1"],\ ["@types/keygrip", "npm:1.0.2"],\ ["@types/koa-compose", "npm:3.2.5"],\ - ["@types/node", "npm:18.15.11"]\ + ["@types/node", "npm:20.5.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/koa-bodyparser", [\ - ["npm:4.3.7", {\ - "packageLocation": "./.yarn/cache/@types-koa-bodyparser-npm-4.3.7-ff2df015ea-3a2cac14cb.zip/node_modules/@types/koa-bodyparser/",\ + ["npm:4.3.10", {\ + "packageLocation": "./.yarn/cache/@types-koa-bodyparser-npm-4.3.10-281609ae41-4b4cd17681.zip/node_modules/@types/koa-bodyparser/",\ "packageDependencies": [\ - ["@types/koa-bodyparser", "npm:4.3.7"],\ - ["@types/koa", "npm:2.13.4"]\ + ["@types/koa-bodyparser", "npm:4.3.10"],\ + ["@types/koa", "npm:2.13.8"]\ ],\ "linkType": "HARD"\ }]\ @@ -4680,27 +4845,27 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/@types-koa-compose-npm-3.2.5-b9ab25d904-5d1147c4b0.zip/node_modules/@types/koa-compose/",\ "packageDependencies": [\ ["@types/koa-compose", "npm:3.2.5"],\ - ["@types/koa", "npm:2.13.4"]\ + ["@types/koa", "npm:2.13.8"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/koa__cors", [\ - ["npm:3.3.0", {\ - "packageLocation": "./.yarn/cache/@types-koa__cors-npm-3.3.0-d247b76272-c1aeb10b07.zip/node_modules/@types/koa__cors/",\ + ["npm:3.3.1", {\ + "packageLocation": "./.yarn/cache/@types-koa__cors-npm-3.3.1-173cac4235-816303d34c.zip/node_modules/@types/koa__cors/",\ "packageDependencies": [\ - ["@types/koa__cors", "npm:3.3.0"],\ - ["@types/koa", "npm:2.13.4"]\ + ["@types/koa__cors", "npm:3.3.1"],\ + ["@types/koa", "npm:2.13.8"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/ledgerhq__hw-transport", [\ - ["npm:4.21.3", {\ - "packageLocation": "./.yarn/cache/@types-ledgerhq__hw-transport-npm-4.21.3-706fb3b50a-1f64b4bc49.zip/node_modules/@types/ledgerhq__hw-transport/",\ + ["npm:4.21.4", {\ + "packageLocation": "./.yarn/cache/@types-ledgerhq__hw-transport-npm-4.21.4-0dc4aede83-f47bb5c1ca.zip/node_modules/@types/ledgerhq__hw-transport/",\ "packageDependencies": [\ - ["@types/ledgerhq__hw-transport", "npm:4.21.3"],\ - ["@types/node", "npm:18.15.11"]\ + ["@types/ledgerhq__hw-transport", "npm:4.21.4"],\ + ["@types/node", "npm:20.5.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -4710,9 +4875,9 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/@types-ledgerhq__hw-transport-node-hid-npm-4.22.2-7da00e29e4-f8196906ad.zip/node_modules/@types/ledgerhq__hw-transport-node-hid/",\ "packageDependencies": [\ ["@types/ledgerhq__hw-transport-node-hid", "npm:4.22.2"],\ - ["@types/ledgerhq__hw-transport", "npm:4.21.3"],\ - ["@types/node", "npm:18.15.11"],\ - ["@types/node-hid", "npm:1.3.0"]\ + ["@types/ledgerhq__hw-transport", "npm:4.21.4"],\ + ["@types/node", "npm:20.5.0"],\ + ["@types/node-hid", "npm:1.3.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -4722,8 +4887,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/@types-ledgerhq__hw-transport-webusb-npm-4.70.1-58d540f7c6-b261df71b2.zip/node_modules/@types/ledgerhq__hw-transport-webusb/",\ "packageDependencies": [\ ["@types/ledgerhq__hw-transport-webusb", "npm:4.70.1"],\ - ["@types/ledgerhq__hw-transport", "npm:4.21.3"],\ - ["@types/node", "npm:18.15.11"]\ + ["@types/ledgerhq__hw-transport", "npm:4.21.4"],\ + ["@types/node", "npm:20.5.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -4748,10 +4913,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@types/long", [\ - ["npm:4.0.1", {\ - "packageLocation": "./.yarn/cache/@types-long-npm-4.0.1-022c8b6e77-ff9653c33f.zip/node_modules/@types/long/",\ + ["npm:4.0.2", {\ + "packageLocation": "./.yarn/cache/@types-long-npm-4.0.2-e7bdc00dd4-d16cde7240.zip/node_modules/@types/long/",\ "packageDependencies": [\ - ["@types/long", "npm:4.0.1"]\ + ["@types/long", "npm:4.0.2"]\ ],\ "linkType": "HARD"\ }]\ @@ -4763,50 +4928,64 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/mime", "npm:1.3.2"]\ ],\ "linkType": "HARD"\ + }],\ + ["npm:3.0.1", {\ + "packageLocation": "./.yarn/cache/@types-mime-npm-3.0.1-dec03536dc-4040fac73f.zip/node_modules/@types/mime/",\ + "packageDependencies": [\ + ["@types/mime", "npm:3.0.1"]\ + ],\ + "linkType": "HARD"\ }]\ ]],\ ["@types/node", [\ - ["npm:18.15.11", {\ - "packageLocation": "./.yarn/cache/@types-node-npm-18.15.11-fd8ceaaffd-977b4ad047.zip/node_modules/@types/node/",\ + ["npm:18.17.5", {\ + "packageLocation": "./.yarn/cache/@types-node-npm-18.17.5-e736eb2acc-b8c658a992.zip/node_modules/@types/node/",\ + "packageDependencies": [\ + ["@types/node", "npm:18.17.5"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:20.5.0", {\ + "packageLocation": "./.yarn/cache/@types-node-npm-20.5.0-ea170d5dd7-659bc5fc93.zip/node_modules/@types/node/",\ "packageDependencies": [\ - ["@types/node", "npm:18.15.11"]\ + ["@types/node", "npm:20.5.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/node-hid", [\ - ["npm:1.3.0", {\ - "packageLocation": "./.yarn/cache/@types-node-hid-npm-1.3.0-cc72d31c37-3ef3db8873.zip/node_modules/@types/node-hid/",\ + ["npm:1.3.1", {\ + "packageLocation": "./.yarn/cache/@types-node-hid-npm-1.3.1-b216f72882-30a01c916e.zip/node_modules/@types/node-hid/",\ "packageDependencies": [\ - ["@types/node-hid", "npm:1.3.0"],\ - ["@types/node", "npm:18.15.11"]\ + ["@types/node-hid", "npm:1.3.1"],\ + ["@types/node", "npm:20.5.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/pako", [\ - ["npm:1.0.1", {\ - "packageLocation": "./.yarn/cache/@types-pako-npm-1.0.1-9e979aac42-998b8be64d.zip/node_modules/@types/pako/",\ + ["npm:1.0.4", {\ + "packageLocation": "./.yarn/cache/@types-pako-npm-1.0.4-645f46e1ad-a7ee316fad.zip/node_modules/@types/pako/",\ "packageDependencies": [\ - ["@types/pako", "npm:1.0.1"]\ + ["@types/pako", "npm:1.0.4"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/qs", [\ - ["npm:6.9.6", {\ - "packageLocation": "./.yarn/cache/@types-qs-npm-6.9.6-2fc5ce36d4-01871b1cf7.zip/node_modules/@types/qs/",\ + ["npm:6.9.7", {\ + "packageLocation": "./.yarn/cache/@types-qs-npm-6.9.7-4a3e6ca0d0-7fd6f9c250.zip/node_modules/@types/qs/",\ "packageDependencies": [\ - ["@types/qs", "npm:6.9.6"]\ + ["@types/qs", "npm:6.9.7"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/range-parser", [\ - ["npm:1.2.3", {\ - "packageLocation": "./.yarn/cache/@types-range-parser-npm-1.2.3-c06253b351-a0a4218214.zip/node_modules/@types/range-parser/",\ + ["npm:1.2.4", {\ + "packageLocation": "./.yarn/cache/@types-range-parser-npm-1.2.4-23d797fbde-b7c0dfd508.zip/node_modules/@types/range-parser/",\ "packageDependencies": [\ - ["@types/range-parser", "npm:1.2.3"]\ + ["@types/range-parser", "npm:1.2.4"]\ ],\ "linkType": "HARD"\ }]\ @@ -4820,13 +4999,25 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ - ["@types/serve-static", [\ - ["npm:1.13.9", {\ - "packageLocation": "./.yarn/cache/@types-serve-static-npm-1.13.9-59107a68c3-5c5f3b64e9.zip/node_modules/@types/serve-static/",\ + ["@types/send", [\ + ["npm:0.17.1", {\ + "packageLocation": "./.yarn/cache/@types-send-npm-0.17.1-5f715ca966-10b620a596.zip/node_modules/@types/send/",\ "packageDependencies": [\ - ["@types/serve-static", "npm:1.13.9"],\ + ["@types/send", "npm:0.17.1"],\ ["@types/mime", "npm:1.3.2"],\ - ["@types/node", "npm:18.15.11"]\ + ["@types/node", "npm:20.5.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["@types/serve-static", [\ + ["npm:1.15.2", {\ + "packageLocation": "./.yarn/cache/@types-serve-static-npm-1.15.2-fc398c0cea-15c261dbfc.zip/node_modules/@types/serve-static/",\ + "packageDependencies": [\ + ["@types/serve-static", "npm:1.15.2"],\ + ["@types/http-errors", "npm:2.0.1"],\ + ["@types/mime", "npm:3.0.1"],\ + ["@types/node", "npm:20.5.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -4836,57 +5027,57 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/@types-ws-npm-6.0.4-4b7cc6a57b-b2656a76bf.zip/node_modules/@types/ws/",\ "packageDependencies": [\ ["@types/ws", "npm:6.0.4"],\ - ["@types/node", "npm:18.15.11"]\ + ["@types/node", "npm:20.5.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/yargs", [\ - ["npm:15.0.13", {\ - "packageLocation": "./.yarn/cache/@types-yargs-npm-15.0.13-d1172b1fcd-a6ebb0ec63.zip/node_modules/@types/yargs/",\ + ["npm:15.0.15", {\ + "packageLocation": "./.yarn/cache/@types-yargs-npm-15.0.15-b73a9d1c59-3420f6bcc5.zip/node_modules/@types/yargs/",\ "packageDependencies": [\ - ["@types/yargs", "npm:15.0.13"],\ - ["@types/yargs-parser", "npm:20.2.0"]\ + ["@types/yargs", "npm:15.0.15"],\ + ["@types/yargs-parser", "npm:21.0.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@types/yargs-parser", [\ - ["npm:20.2.0", {\ - "packageLocation": "./.yarn/cache/@types-yargs-parser-npm-20.2.0-4ca5b35c4e-54cf3f8d2c.zip/node_modules/@types/yargs-parser/",\ + ["npm:21.0.0", {\ + "packageLocation": "./.yarn/cache/@types-yargs-parser-npm-21.0.0-c8a3b32c52-b2f4c8d12a.zip/node_modules/@types/yargs-parser/",\ "packageDependencies": [\ - ["@types/yargs-parser", "npm:20.2.0"]\ + ["@types/yargs-parser", "npm:21.0.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@typescript-eslint/eslint-plugin", [\ - ["npm:5.54.0", {\ - "packageLocation": "./.yarn/cache/@typescript-eslint-eslint-plugin-npm-5.54.0-94219a47c9-4fdb520b8e.zip/node_modules/@typescript-eslint/eslint-plugin/",\ + ["npm:5.62.0", {\ + "packageLocation": "./.yarn/cache/@typescript-eslint-eslint-plugin-npm-5.62.0-c48b9a5492-fc104b389c.zip/node_modules/@typescript-eslint/eslint-plugin/",\ "packageDependencies": [\ - ["@typescript-eslint/eslint-plugin", "npm:5.54.0"]\ + ["@typescript-eslint/eslint-plugin", "npm:5.62.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0", {\ - "packageLocation": "./.yarn/__virtual__/@typescript-eslint-eslint-plugin-virtual-2e8b63b951/0/cache/@typescript-eslint-eslint-plugin-npm-5.54.0-94219a47c9-4fdb520b8e.zip/node_modules/@typescript-eslint/eslint-plugin/",\ + ["virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0", {\ + "packageLocation": "./.yarn/__virtual__/@typescript-eslint-eslint-plugin-virtual-d57bbf7cb8/0/cache/@typescript-eslint-eslint-plugin-npm-5.62.0-c48b9a5492-fc104b389c.zip/node_modules/@typescript-eslint/eslint-plugin/",\ "packageDependencies": [\ - ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ + ["@typescript-eslint/eslint-plugin", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["@eslint-community/regexpp", "npm:4.6.2"],\ ["@types/eslint", null],\ ["@types/typescript", null],\ ["@types/typescript-eslint__parser", null],\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["@typescript-eslint/scope-manager", "npm:5.54.0"],\ - ["@typescript-eslint/type-utils", "virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:5.54.0"],\ - ["@typescript-eslint/utils", "virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:5.54.0"],\ - ["debug", "virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:4.3.4"],\ - ["eslint", "npm:7.26.0"],\ - ["grapheme-splitter", "npm:1.0.4"],\ - ["ignore", "npm:5.2.0"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["@typescript-eslint/scope-manager", "npm:5.62.0"],\ + ["@typescript-eslint/type-utils", "virtual:d57bbf7cb82653932ad4bacddeffa4b6821f4eb6abff5faa16997023759d2ebded0ed9e569ad0f724c028eca007397f1cb9dc80d3544e80680b0c6f1dfa61ec2#npm:5.62.0"],\ + ["@typescript-eslint/utils", "virtual:d57bbf7cb82653932ad4bacddeffa4b6821f4eb6abff5faa16997023759d2ebded0ed9e569ad0f724c028eca007397f1cb9dc80d3544e80680b0c6f1dfa61ec2#npm:5.62.0"],\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"],\ + ["eslint", "npm:7.32.0"],\ + ["graphemer", "npm:1.4.0"],\ + ["ignore", "npm:5.2.4"],\ ["natural-compare-lite", "npm:1.4.0"],\ - ["regexpp", "npm:3.2.0"],\ - ["semver", "npm:7.5.3"],\ - ["tsutils", "virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:3.21.0"],\ + ["semver", "npm:7.5.4"],\ + ["tsutils", "virtual:d57bbf7cb82653932ad4bacddeffa4b6821f4eb6abff5faa16997023759d2ebded0ed9e569ad0f724c028eca007397f1cb9dc80d3544e80680b0c6f1dfa61ec2#npm:3.21.0"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"]\ ],\ "packagePeers": [\ @@ -4901,24 +5092,24 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@typescript-eslint/parser", [\ - ["npm:5.54.0", {\ - "packageLocation": "./.yarn/cache/@typescript-eslint-parser-npm-5.54.0-9e20db98b2-368d6dd85b.zip/node_modules/@typescript-eslint/parser/",\ + ["npm:5.62.0", {\ + "packageLocation": "./.yarn/cache/@typescript-eslint-parser-npm-5.62.0-c6b29fa302-d168f4c7f2.zip/node_modules/@typescript-eslint/parser/",\ "packageDependencies": [\ - ["@typescript-eslint/parser", "npm:5.54.0"]\ + ["@typescript-eslint/parser", "npm:5.62.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0", {\ - "packageLocation": "./.yarn/__virtual__/@typescript-eslint-parser-virtual-50a1058113/0/cache/@typescript-eslint-parser-npm-5.54.0-9e20db98b2-368d6dd85b.zip/node_modules/@typescript-eslint/parser/",\ + ["virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0", {\ + "packageLocation": "./.yarn/__virtual__/@typescript-eslint-parser-virtual-585ec8ce99/0/cache/@typescript-eslint-parser-npm-5.62.0-c6b29fa302-d168f4c7f2.zip/node_modules/@typescript-eslint/parser/",\ "packageDependencies": [\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ ["@types/eslint", null],\ ["@types/typescript", null],\ - ["@typescript-eslint/scope-manager", "npm:5.54.0"],\ - ["@typescript-eslint/types", "npm:5.54.0"],\ - ["@typescript-eslint/typescript-estree", "virtual:dab3b79a49a5f47d0c99a5dd46dbdff2ada6c475788250c1f0fcb82df5cad8c19be5cd3a44974c1ab5534d7476c94dd95a1487a1327da6bbeb8b0f3aacf8423a#npm:5.54.0"],\ - ["debug", "virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:4.3.4"],\ - ["eslint", "npm:7.26.0"],\ + ["@typescript-eslint/scope-manager", "npm:5.62.0"],\ + ["@typescript-eslint/types", "npm:5.62.0"],\ + ["@typescript-eslint/typescript-estree", "virtual:90626d291792210425dc8a00f4b0c1448e6dcc27b44b4b647b07081bccb82e428dc5b81600d288e4bc9e9d1ca8a4eddf3a477fa5a9b669509888cd1e088c4762#npm:5.62.0"],\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"],\ + ["eslint", "npm:7.32.0"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"]\ ],\ "packagePeers": [\ @@ -4931,35 +5122,35 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@typescript-eslint/scope-manager", [\ - ["npm:5.54.0", {\ - "packageLocation": "./.yarn/cache/@typescript-eslint-scope-manager-npm-5.54.0-dfb33b8cef-e50f12396d.zip/node_modules/@typescript-eslint/scope-manager/",\ + ["npm:5.62.0", {\ + "packageLocation": "./.yarn/cache/@typescript-eslint-scope-manager-npm-5.62.0-c0013838b0-6062d6b797.zip/node_modules/@typescript-eslint/scope-manager/",\ "packageDependencies": [\ - ["@typescript-eslint/scope-manager", "npm:5.54.0"],\ - ["@typescript-eslint/types", "npm:5.54.0"],\ - ["@typescript-eslint/visitor-keys", "npm:5.54.0"]\ + ["@typescript-eslint/scope-manager", "npm:5.62.0"],\ + ["@typescript-eslint/types", "npm:5.62.0"],\ + ["@typescript-eslint/visitor-keys", "npm:5.62.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@typescript-eslint/type-utils", [\ - ["npm:5.54.0", {\ - "packageLocation": "./.yarn/cache/@typescript-eslint-type-utils-npm-5.54.0-fe5db2eaae-9cb5b52c72.zip/node_modules/@typescript-eslint/type-utils/",\ + ["npm:5.62.0", {\ + "packageLocation": "./.yarn/cache/@typescript-eslint-type-utils-npm-5.62.0-220216d668-fc41eece5f.zip/node_modules/@typescript-eslint/type-utils/",\ "packageDependencies": [\ - ["@typescript-eslint/type-utils", "npm:5.54.0"]\ + ["@typescript-eslint/type-utils", "npm:5.62.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:5.54.0", {\ - "packageLocation": "./.yarn/__virtual__/@typescript-eslint-type-utils-virtual-dab3b79a49/0/cache/@typescript-eslint-type-utils-npm-5.54.0-fe5db2eaae-9cb5b52c72.zip/node_modules/@typescript-eslint/type-utils/",\ + ["virtual:d57bbf7cb82653932ad4bacddeffa4b6821f4eb6abff5faa16997023759d2ebded0ed9e569ad0f724c028eca007397f1cb9dc80d3544e80680b0c6f1dfa61ec2#npm:5.62.0", {\ + "packageLocation": "./.yarn/__virtual__/@typescript-eslint-type-utils-virtual-90626d2917/0/cache/@typescript-eslint-type-utils-npm-5.62.0-220216d668-fc41eece5f.zip/node_modules/@typescript-eslint/type-utils/",\ "packageDependencies": [\ - ["@typescript-eslint/type-utils", "virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:5.54.0"],\ + ["@typescript-eslint/type-utils", "virtual:d57bbf7cb82653932ad4bacddeffa4b6821f4eb6abff5faa16997023759d2ebded0ed9e569ad0f724c028eca007397f1cb9dc80d3544e80680b0c6f1dfa61ec2#npm:5.62.0"],\ ["@types/eslint", null],\ ["@types/typescript", null],\ - ["@typescript-eslint/typescript-estree", "virtual:dab3b79a49a5f47d0c99a5dd46dbdff2ada6c475788250c1f0fcb82df5cad8c19be5cd3a44974c1ab5534d7476c94dd95a1487a1327da6bbeb8b0f3aacf8423a#npm:5.54.0"],\ - ["@typescript-eslint/utils", "virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:5.54.0"],\ - ["debug", "virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:4.3.4"],\ - ["eslint", "npm:7.26.0"],\ - ["tsutils", "virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:3.21.0"],\ + ["@typescript-eslint/typescript-estree", "virtual:90626d291792210425dc8a00f4b0c1448e6dcc27b44b4b647b07081bccb82e428dc5b81600d288e4bc9e9d1ca8a4eddf3a477fa5a9b669509888cd1e088c4762#npm:5.62.0"],\ + ["@typescript-eslint/utils", "virtual:d57bbf7cb82653932ad4bacddeffa4b6821f4eb6abff5faa16997023759d2ebded0ed9e569ad0f724c028eca007397f1cb9dc80d3544e80680b0c6f1dfa61ec2#npm:5.62.0"],\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"],\ + ["eslint", "npm:7.32.0"],\ + ["tsutils", "virtual:d57bbf7cb82653932ad4bacddeffa4b6821f4eb6abff5faa16997023759d2ebded0ed9e569ad0f724c028eca007397f1cb9dc80d3544e80680b0c6f1dfa61ec2#npm:3.21.0"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"]\ ],\ "packagePeers": [\ @@ -4972,35 +5163,35 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@typescript-eslint/types", [\ - ["npm:5.54.0", {\ - "packageLocation": "./.yarn/cache/@typescript-eslint-types-npm-5.54.0-d7ab03d795-0f66b1b930.zip/node_modules/@typescript-eslint/types/",\ + ["npm:5.62.0", {\ + "packageLocation": "./.yarn/cache/@typescript-eslint-types-npm-5.62.0-5c2e0aab15-48c8711738.zip/node_modules/@typescript-eslint/types/",\ "packageDependencies": [\ - ["@typescript-eslint/types", "npm:5.54.0"]\ + ["@typescript-eslint/types", "npm:5.62.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@typescript-eslint/typescript-estree", [\ - ["npm:5.54.0", {\ - "packageLocation": "./.yarn/cache/@typescript-eslint-typescript-estree-npm-5.54.0-1b0f33d5db-377c75c34c.zip/node_modules/@typescript-eslint/typescript-estree/",\ + ["npm:5.62.0", {\ + "packageLocation": "./.yarn/cache/@typescript-eslint-typescript-estree-npm-5.62.0-5d1ea132a9-3624520abb.zip/node_modules/@typescript-eslint/typescript-estree/",\ "packageDependencies": [\ - ["@typescript-eslint/typescript-estree", "npm:5.54.0"]\ + ["@typescript-eslint/typescript-estree", "npm:5.62.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:b72deb79e2ec592967c5308e4bf1e792d5b5ca0d14e9c1ab085f52dd2b14c18062e243ec00f9ee082ef907e2293f1a70ff799a6253f4f2f8605e8d778a51ba89#npm:5.54.0", {\ - "packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-838a9315d4/0/cache/@typescript-eslint-typescript-estree-npm-5.54.0-1b0f33d5db-377c75c34c.zip/node_modules/@typescript-eslint/typescript-estree/",\ + ["virtual:90626d291792210425dc8a00f4b0c1448e6dcc27b44b4b647b07081bccb82e428dc5b81600d288e4bc9e9d1ca8a4eddf3a477fa5a9b669509888cd1e088c4762#npm:5.62.0", {\ + "packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-74b6ffef15/0/cache/@typescript-eslint-typescript-estree-npm-5.62.0-5d1ea132a9-3624520abb.zip/node_modules/@typescript-eslint/typescript-estree/",\ "packageDependencies": [\ - ["@typescript-eslint/typescript-estree", "virtual:b72deb79e2ec592967c5308e4bf1e792d5b5ca0d14e9c1ab085f52dd2b14c18062e243ec00f9ee082ef907e2293f1a70ff799a6253f4f2f8605e8d778a51ba89#npm:5.54.0"],\ + ["@typescript-eslint/typescript-estree", "virtual:90626d291792210425dc8a00f4b0c1448e6dcc27b44b4b647b07081bccb82e428dc5b81600d288e4bc9e9d1ca8a4eddf3a477fa5a9b669509888cd1e088c4762#npm:5.62.0"],\ ["@types/typescript", null],\ - ["@typescript-eslint/types", "npm:5.54.0"],\ - ["@typescript-eslint/visitor-keys", "npm:5.54.0"],\ - ["debug", "virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:4.3.4"],\ + ["@typescript-eslint/types", "npm:5.62.0"],\ + ["@typescript-eslint/visitor-keys", "npm:5.62.0"],\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"],\ ["globby", "npm:11.1.0"],\ ["is-glob", "npm:4.0.3"],\ - ["semver", "npm:7.5.3"],\ - ["tsutils", "virtual:838a9315d444a54db96788d2b28a822ef21789df47f5a41ed7f7f2dd34e0a447899fa272d1407402ef6a6b310136ed11ec578f26931b2b84031cd2ba37dba0a0#npm:3.21.0"],\ - ["typescript", null]\ + ["semver", "npm:7.5.4"],\ + ["tsutils", "virtual:d57bbf7cb82653932ad4bacddeffa4b6821f4eb6abff5faa16997023759d2ebded0ed9e569ad0f724c028eca007397f1cb9dc80d3544e80680b0c6f1dfa61ec2#npm:3.21.0"],\ + ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"]\ ],\ "packagePeers": [\ "@types/typescript",\ @@ -5008,19 +5199,19 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:dab3b79a49a5f47d0c99a5dd46dbdff2ada6c475788250c1f0fcb82df5cad8c19be5cd3a44974c1ab5534d7476c94dd95a1487a1327da6bbeb8b0f3aacf8423a#npm:5.54.0", {\ - "packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-4fc1617798/0/cache/@typescript-eslint-typescript-estree-npm-5.54.0-1b0f33d5db-377c75c34c.zip/node_modules/@typescript-eslint/typescript-estree/",\ + ["virtual:cf525c1a77fe48728704ab816789becfaf0e5ec773e4a0941b98c429eae337e666f647a59b5de8fa80f47376c211385038f4850f2392c21e4ab4ddc1ac2499f3#npm:5.62.0", {\ + "packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-9efc45d62b/0/cache/@typescript-eslint-typescript-estree-npm-5.62.0-5d1ea132a9-3624520abb.zip/node_modules/@typescript-eslint/typescript-estree/",\ "packageDependencies": [\ - ["@typescript-eslint/typescript-estree", "virtual:dab3b79a49a5f47d0c99a5dd46dbdff2ada6c475788250c1f0fcb82df5cad8c19be5cd3a44974c1ab5534d7476c94dd95a1487a1327da6bbeb8b0f3aacf8423a#npm:5.54.0"],\ + ["@typescript-eslint/typescript-estree", "virtual:cf525c1a77fe48728704ab816789becfaf0e5ec773e4a0941b98c429eae337e666f647a59b5de8fa80f47376c211385038f4850f2392c21e4ab4ddc1ac2499f3#npm:5.62.0"],\ ["@types/typescript", null],\ - ["@typescript-eslint/types", "npm:5.54.0"],\ - ["@typescript-eslint/visitor-keys", "npm:5.54.0"],\ - ["debug", "virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:4.3.4"],\ + ["@typescript-eslint/types", "npm:5.62.0"],\ + ["@typescript-eslint/visitor-keys", "npm:5.62.0"],\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"],\ ["globby", "npm:11.1.0"],\ ["is-glob", "npm:4.0.3"],\ - ["semver", "npm:7.5.3"],\ - ["tsutils", "virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:3.21.0"],\ - ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"]\ + ["semver", "npm:7.5.4"],\ + ["tsutils", "virtual:9efc45d62b42d7b3206f0c521400934faa6a4bceb4fc9c85d7491e50e8ee9fb5438b92eeba72c6c42fc9b957333ea57c253243560d25f99da72ee6fb47d316bf#npm:3.21.0"],\ + ["typescript", null]\ ],\ "packagePeers": [\ "@types/typescript",\ @@ -5030,27 +5221,27 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@typescript-eslint/utils", [\ - ["npm:5.54.0", {\ - "packageLocation": "./.yarn/cache/@typescript-eslint-utils-npm-5.54.0-2cc2b73c1a-b8f344fc29.zip/node_modules/@typescript-eslint/utils/",\ + ["npm:5.62.0", {\ + "packageLocation": "./.yarn/cache/@typescript-eslint-utils-npm-5.62.0-907f2d579e-ee9398c8c5.zip/node_modules/@typescript-eslint/utils/",\ "packageDependencies": [\ - ["@typescript-eslint/utils", "npm:5.54.0"]\ + ["@typescript-eslint/utils", "npm:5.62.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:5.54.0", {\ - "packageLocation": "./.yarn/__virtual__/@typescript-eslint-utils-virtual-b72deb79e2/0/cache/@typescript-eslint-utils-npm-5.54.0-2cc2b73c1a-b8f344fc29.zip/node_modules/@typescript-eslint/utils/",\ + ["virtual:d57bbf7cb82653932ad4bacddeffa4b6821f4eb6abff5faa16997023759d2ebded0ed9e569ad0f724c028eca007397f1cb9dc80d3544e80680b0c6f1dfa61ec2#npm:5.62.0", {\ + "packageLocation": "./.yarn/__virtual__/@typescript-eslint-utils-virtual-cf525c1a77/0/cache/@typescript-eslint-utils-npm-5.62.0-907f2d579e-ee9398c8c5.zip/node_modules/@typescript-eslint/utils/",\ "packageDependencies": [\ - ["@typescript-eslint/utils", "virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:5.54.0"],\ + ["@typescript-eslint/utils", "virtual:d57bbf7cb82653932ad4bacddeffa4b6821f4eb6abff5faa16997023759d2ebded0ed9e569ad0f724c028eca007397f1cb9dc80d3544e80680b0c6f1dfa61ec2#npm:5.62.0"],\ + ["@eslint-community/eslint-utils", "virtual:cf525c1a77fe48728704ab816789becfaf0e5ec773e4a0941b98c429eae337e666f647a59b5de8fa80f47376c211385038f4850f2392c21e4ab4ddc1ac2499f3#npm:4.4.0"],\ ["@types/eslint", null],\ - ["@types/json-schema", "npm:7.0.9"],\ + ["@types/json-schema", "npm:7.0.12"],\ ["@types/semver", "npm:7.5.0"],\ - ["@typescript-eslint/scope-manager", "npm:5.54.0"],\ - ["@typescript-eslint/types", "npm:5.54.0"],\ - ["@typescript-eslint/typescript-estree", "virtual:b72deb79e2ec592967c5308e4bf1e792d5b5ca0d14e9c1ab085f52dd2b14c18062e243ec00f9ee082ef907e2293f1a70ff799a6253f4f2f8605e8d778a51ba89#npm:5.54.0"],\ - ["eslint", "npm:7.26.0"],\ + ["@typescript-eslint/scope-manager", "npm:5.62.0"],\ + ["@typescript-eslint/types", "npm:5.62.0"],\ + ["@typescript-eslint/typescript-estree", "virtual:cf525c1a77fe48728704ab816789becfaf0e5ec773e4a0941b98c429eae337e666f647a59b5de8fa80f47376c211385038f4850f2392c21e4ab4ddc1ac2499f3#npm:5.62.0"],\ + ["eslint", "npm:7.32.0"],\ ["eslint-scope", "npm:5.1.1"],\ - ["eslint-utils", "virtual:b72deb79e2ec592967c5308e4bf1e792d5b5ca0d14e9c1ab085f52dd2b14c18062e243ec00f9ee082ef907e2293f1a70ff799a6253f4f2f8605e8d778a51ba89#npm:3.0.0"],\ - ["semver", "npm:7.5.3"]\ + ["semver", "npm:7.5.4"]\ ],\ "packagePeers": [\ "@types/eslint",\ @@ -5060,203 +5251,203 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@typescript-eslint/visitor-keys", [\ - ["npm:5.54.0", {\ - "packageLocation": "./.yarn/cache/@typescript-eslint-visitor-keys-npm-5.54.0-abbd7c507a-17fc323c09.zip/node_modules/@typescript-eslint/visitor-keys/",\ + ["npm:5.62.0", {\ + "packageLocation": "./.yarn/cache/@typescript-eslint-visitor-keys-npm-5.62.0-da1af55f83-976b05d103.zip/node_modules/@typescript-eslint/visitor-keys/",\ "packageDependencies": [\ - ["@typescript-eslint/visitor-keys", "npm:5.54.0"],\ - ["@typescript-eslint/types", "npm:5.54.0"],\ - ["eslint-visitor-keys", "npm:3.3.0"]\ + ["@typescript-eslint/visitor-keys", "npm:5.62.0"],\ + ["@typescript-eslint/types", "npm:5.62.0"],\ + ["eslint-visitor-keys", "npm:3.4.3"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@webassemblyjs/ast", [\ - ["npm:1.11.1", {\ - "packageLocation": "./.yarn/cache/@webassemblyjs-ast-npm-1.11.1-623d3d973e-1eee1534ad.zip/node_modules/@webassemblyjs/ast/",\ + ["npm:1.11.6", {\ + "packageLocation": "./.yarn/cache/@webassemblyjs-ast-npm-1.11.6-d3fd2bb49a-38ef1b526c.zip/node_modules/@webassemblyjs/ast/",\ "packageDependencies": [\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/helper-numbers", "npm:1.11.1"],\ - ["@webassemblyjs/helper-wasm-bytecode", "npm:1.11.1"]\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/helper-numbers", "npm:1.11.6"],\ + ["@webassemblyjs/helper-wasm-bytecode", "npm:1.11.6"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@webassemblyjs/floating-point-hex-parser", [\ - ["npm:1.11.1", {\ - "packageLocation": "./.yarn/cache/@webassemblyjs-floating-point-hex-parser-npm-1.11.1-f8af5c0037-b8efc6fa08.zip/node_modules/@webassemblyjs/floating-point-hex-parser/",\ + ["npm:1.11.6", {\ + "packageLocation": "./.yarn/cache/@webassemblyjs-floating-point-hex-parser-npm-1.11.6-3a9928fc76-29b0875884.zip/node_modules/@webassemblyjs/floating-point-hex-parser/",\ "packageDependencies": [\ - ["@webassemblyjs/floating-point-hex-parser", "npm:1.11.1"]\ + ["@webassemblyjs/floating-point-hex-parser", "npm:1.11.6"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@webassemblyjs/helper-api-error", [\ - ["npm:1.11.1", {\ - "packageLocation": "./.yarn/cache/@webassemblyjs-helper-api-error-npm-1.11.1-b839d59053-0792813f0e.zip/node_modules/@webassemblyjs/helper-api-error/",\ + ["npm:1.11.6", {\ + "packageLocation": "./.yarn/cache/@webassemblyjs-helper-api-error-npm-1.11.6-75f6275ff4-e8563df851.zip/node_modules/@webassemblyjs/helper-api-error/",\ "packageDependencies": [\ - ["@webassemblyjs/helper-api-error", "npm:1.11.1"]\ + ["@webassemblyjs/helper-api-error", "npm:1.11.6"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@webassemblyjs/helper-buffer", [\ - ["npm:1.11.1", {\ - "packageLocation": "./.yarn/cache/@webassemblyjs-helper-buffer-npm-1.11.1-6afb1ef4aa-a337ee44b4.zip/node_modules/@webassemblyjs/helper-buffer/",\ + ["npm:1.11.6", {\ + "packageLocation": "./.yarn/cache/@webassemblyjs-helper-buffer-npm-1.11.6-69996544b0-b14d0573bf.zip/node_modules/@webassemblyjs/helper-buffer/",\ "packageDependencies": [\ - ["@webassemblyjs/helper-buffer", "npm:1.11.1"]\ + ["@webassemblyjs/helper-buffer", "npm:1.11.6"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@webassemblyjs/helper-numbers", [\ - ["npm:1.11.1", {\ - "packageLocation": "./.yarn/cache/@webassemblyjs-helper-numbers-npm-1.11.1-a41f7439eb-44d2905dac.zip/node_modules/@webassemblyjs/helper-numbers/",\ + ["npm:1.11.6", {\ + "packageLocation": "./.yarn/cache/@webassemblyjs-helper-numbers-npm-1.11.6-819ddab1da-f4b562fa21.zip/node_modules/@webassemblyjs/helper-numbers/",\ "packageDependencies": [\ - ["@webassemblyjs/helper-numbers", "npm:1.11.1"],\ - ["@webassemblyjs/floating-point-hex-parser", "npm:1.11.1"],\ - ["@webassemblyjs/helper-api-error", "npm:1.11.1"],\ + ["@webassemblyjs/helper-numbers", "npm:1.11.6"],\ + ["@webassemblyjs/floating-point-hex-parser", "npm:1.11.6"],\ + ["@webassemblyjs/helper-api-error", "npm:1.11.6"],\ ["@xtuc/long", "npm:4.2.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@webassemblyjs/helper-wasm-bytecode", [\ - ["npm:1.11.1", {\ - "packageLocation": "./.yarn/cache/@webassemblyjs-helper-wasm-bytecode-npm-1.11.1-84f0ee4c30-eac4001131.zip/node_modules/@webassemblyjs/helper-wasm-bytecode/",\ + ["npm:1.11.6", {\ + "packageLocation": "./.yarn/cache/@webassemblyjs-helper-wasm-bytecode-npm-1.11.6-3bc23747de-3535ef4f1f.zip/node_modules/@webassemblyjs/helper-wasm-bytecode/",\ "packageDependencies": [\ - ["@webassemblyjs/helper-wasm-bytecode", "npm:1.11.1"]\ + ["@webassemblyjs/helper-wasm-bytecode", "npm:1.11.6"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@webassemblyjs/helper-wasm-section", [\ - ["npm:1.11.1", {\ - "packageLocation": "./.yarn/cache/@webassemblyjs-helper-wasm-section-npm-1.11.1-e4e8450b9d-617696cfe8.zip/node_modules/@webassemblyjs/helper-wasm-section/",\ + ["npm:1.11.6", {\ + "packageLocation": "./.yarn/cache/@webassemblyjs-helper-wasm-section-npm-1.11.6-344f8ff2af-b2cf751bf4.zip/node_modules/@webassemblyjs/helper-wasm-section/",\ "packageDependencies": [\ - ["@webassemblyjs/helper-wasm-section", "npm:1.11.1"],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/helper-buffer", "npm:1.11.1"],\ - ["@webassemblyjs/helper-wasm-bytecode", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-gen", "npm:1.11.1"]\ + ["@webassemblyjs/helper-wasm-section", "npm:1.11.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/helper-buffer", "npm:1.11.6"],\ + ["@webassemblyjs/helper-wasm-bytecode", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-gen", "npm:1.11.6"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@webassemblyjs/ieee754", [\ - ["npm:1.11.1", {\ - "packageLocation": "./.yarn/cache/@webassemblyjs-ieee754-npm-1.11.1-897eb85879-23a0ac02a5.zip/node_modules/@webassemblyjs/ieee754/",\ + ["npm:1.11.6", {\ + "packageLocation": "./.yarn/cache/@webassemblyjs-ieee754-npm-1.11.6-95c92f446a-13574b8e41.zip/node_modules/@webassemblyjs/ieee754/",\ "packageDependencies": [\ - ["@webassemblyjs/ieee754", "npm:1.11.1"],\ + ["@webassemblyjs/ieee754", "npm:1.11.6"],\ ["@xtuc/ieee754", "npm:1.2.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@webassemblyjs/leb128", [\ - ["npm:1.11.1", {\ - "packageLocation": "./.yarn/cache/@webassemblyjs-leb128-npm-1.11.1-fd9f27673d-33ccc4ade2.zip/node_modules/@webassemblyjs/leb128/",\ + ["npm:1.11.6", {\ + "packageLocation": "./.yarn/cache/@webassemblyjs-leb128-npm-1.11.6-697d62da2e-7ea942dc97.zip/node_modules/@webassemblyjs/leb128/",\ "packageDependencies": [\ - ["@webassemblyjs/leb128", "npm:1.11.1"],\ + ["@webassemblyjs/leb128", "npm:1.11.6"],\ ["@xtuc/long", "npm:4.2.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@webassemblyjs/utf8", [\ - ["npm:1.11.1", {\ - "packageLocation": "./.yarn/cache/@webassemblyjs-utf8-npm-1.11.1-583036e767-972c5cfc76.zip/node_modules/@webassemblyjs/utf8/",\ + ["npm:1.11.6", {\ + "packageLocation": "./.yarn/cache/@webassemblyjs-utf8-npm-1.11.6-102c4e5d68-807fe5b5ce.zip/node_modules/@webassemblyjs/utf8/",\ "packageDependencies": [\ - ["@webassemblyjs/utf8", "npm:1.11.1"]\ + ["@webassemblyjs/utf8", "npm:1.11.6"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@webassemblyjs/wasm-edit", [\ - ["npm:1.11.1", {\ - "packageLocation": "./.yarn/cache/@webassemblyjs-wasm-edit-npm-1.11.1-34565c1e92-6d7d9efaec.zip/node_modules/@webassemblyjs/wasm-edit/",\ + ["npm:1.11.6", {\ + "packageLocation": "./.yarn/cache/@webassemblyjs-wasm-edit-npm-1.11.6-8d2703f828-29ce758704.zip/node_modules/@webassemblyjs/wasm-edit/",\ "packageDependencies": [\ - ["@webassemblyjs/wasm-edit", "npm:1.11.1"],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/helper-buffer", "npm:1.11.1"],\ - ["@webassemblyjs/helper-wasm-bytecode", "npm:1.11.1"],\ - ["@webassemblyjs/helper-wasm-section", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-gen", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-opt", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-parser", "npm:1.11.1"],\ - ["@webassemblyjs/wast-printer", "npm:1.11.1"]\ + ["@webassemblyjs/wasm-edit", "npm:1.11.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/helper-buffer", "npm:1.11.6"],\ + ["@webassemblyjs/helper-wasm-bytecode", "npm:1.11.6"],\ + ["@webassemblyjs/helper-wasm-section", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-gen", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-opt", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-parser", "npm:1.11.6"],\ + ["@webassemblyjs/wast-printer", "npm:1.11.6"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@webassemblyjs/wasm-gen", [\ - ["npm:1.11.1", {\ - "packageLocation": "./.yarn/cache/@webassemblyjs-wasm-gen-npm-1.11.1-a6d0b4d37d-1f6921e640.zip/node_modules/@webassemblyjs/wasm-gen/",\ + ["npm:1.11.6", {\ + "packageLocation": "./.yarn/cache/@webassemblyjs-wasm-gen-npm-1.11.6-0ca036cab0-a645a2eecb.zip/node_modules/@webassemblyjs/wasm-gen/",\ "packageDependencies": [\ - ["@webassemblyjs/wasm-gen", "npm:1.11.1"],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/helper-wasm-bytecode", "npm:1.11.1"],\ - ["@webassemblyjs/ieee754", "npm:1.11.1"],\ - ["@webassemblyjs/leb128", "npm:1.11.1"],\ - ["@webassemblyjs/utf8", "npm:1.11.1"]\ + ["@webassemblyjs/wasm-gen", "npm:1.11.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/helper-wasm-bytecode", "npm:1.11.6"],\ + ["@webassemblyjs/ieee754", "npm:1.11.6"],\ + ["@webassemblyjs/leb128", "npm:1.11.6"],\ + ["@webassemblyjs/utf8", "npm:1.11.6"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@webassemblyjs/wasm-opt", [\ - ["npm:1.11.1", {\ - "packageLocation": "./.yarn/cache/@webassemblyjs-wasm-opt-npm-1.11.1-0bb73c20b9-21586883a2.zip/node_modules/@webassemblyjs/wasm-opt/",\ + ["npm:1.11.6", {\ + "packageLocation": "./.yarn/cache/@webassemblyjs-wasm-opt-npm-1.11.6-8be3443975-b4557f1954.zip/node_modules/@webassemblyjs/wasm-opt/",\ "packageDependencies": [\ - ["@webassemblyjs/wasm-opt", "npm:1.11.1"],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/helper-buffer", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-gen", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-parser", "npm:1.11.1"]\ + ["@webassemblyjs/wasm-opt", "npm:1.11.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/helper-buffer", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-gen", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-parser", "npm:1.11.6"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@webassemblyjs/wasm-parser", [\ - ["npm:1.11.1", {\ - "packageLocation": "./.yarn/cache/@webassemblyjs-wasm-parser-npm-1.11.1-cd49c51fdc-1521644065.zip/node_modules/@webassemblyjs/wasm-parser/",\ + ["npm:1.11.6", {\ + "packageLocation": "./.yarn/cache/@webassemblyjs-wasm-parser-npm-1.11.6-88e2433c21-8200a8d77c.zip/node_modules/@webassemblyjs/wasm-parser/",\ "packageDependencies": [\ - ["@webassemblyjs/wasm-parser", "npm:1.11.1"],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/helper-api-error", "npm:1.11.1"],\ - ["@webassemblyjs/helper-wasm-bytecode", "npm:1.11.1"],\ - ["@webassemblyjs/ieee754", "npm:1.11.1"],\ - ["@webassemblyjs/leb128", "npm:1.11.1"],\ - ["@webassemblyjs/utf8", "npm:1.11.1"]\ + ["@webassemblyjs/wasm-parser", "npm:1.11.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/helper-api-error", "npm:1.11.6"],\ + ["@webassemblyjs/helper-wasm-bytecode", "npm:1.11.6"],\ + ["@webassemblyjs/ieee754", "npm:1.11.6"],\ + ["@webassemblyjs/leb128", "npm:1.11.6"],\ + ["@webassemblyjs/utf8", "npm:1.11.6"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@webassemblyjs/wast-printer", [\ - ["npm:1.11.1", {\ - "packageLocation": "./.yarn/cache/@webassemblyjs-wast-printer-npm-1.11.1-f1213430d6-f15ae4c244.zip/node_modules/@webassemblyjs/wast-printer/",\ + ["npm:1.11.6", {\ + "packageLocation": "./.yarn/cache/@webassemblyjs-wast-printer-npm-1.11.6-3191861e3f-d2fa6a4c42.zip/node_modules/@webassemblyjs/wast-printer/",\ "packageDependencies": [\ - ["@webassemblyjs/wast-printer", "npm:1.11.1"],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ + ["@webassemblyjs/wast-printer", "npm:1.11.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ ["@xtuc/long", "npm:4.2.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["@webpack-cli/configtest", [\ - ["npm:1.0.3", {\ - "packageLocation": "./.yarn/cache/@webpack-cli-configtest-npm-1.0.3-b6e357f778-4efcca159e.zip/node_modules/@webpack-cli/configtest/",\ + ["npm:1.2.0", {\ + "packageLocation": "./.yarn/cache/@webpack-cli-configtest-npm-1.2.0-728a6bf8bd-a2726cd9ec.zip/node_modules/@webpack-cli/configtest/",\ "packageDependencies": [\ - ["@webpack-cli/configtest", "npm:1.0.3"]\ + ["@webpack-cli/configtest", "npm:1.2.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:0dffb8990811e5c397885e163b3d6c3a962e214d8c54600fce976052ec938b6bf73c0d4710c1ae94feb6a13cd1ef2dcf6a2703b948ea0ab44ded996e8903eca9#npm:1.0.3", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-5ef09fb892/0/cache/@webpack-cli-configtest-npm-1.0.3-b6e357f778-4efcca159e.zip/node_modules/@webpack-cli/configtest/",\ + ["virtual:1115deaf0cc2aaaddb9832fb5599cc0547a37f2deeb7d03662ed193684a3a1dcf2d97590c070bb4aa39cbefc14a8b9499d004749aa200c99650b82b7ad02d3c4#npm:1.2.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-c3985ac7ff/0/cache/@webpack-cli-configtest-npm-1.2.0-728a6bf8bd-a2726cd9ec.zip/node_modules/@webpack-cli/configtest/",\ "packageDependencies": [\ - ["@webpack-cli/configtest", "virtual:0dffb8990811e5c397885e163b3d6c3a962e214d8c54600fce976052ec938b6bf73c0d4710c1ae94feb6a13cd1ef2dcf6a2703b948ea0ab44ded996e8903eca9#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:1115deaf0cc2aaaddb9832fb5599cc0547a37f2deeb7d03662ed193684a3a1dcf2d97590c070bb4aa39cbefc14a8b9499d004749aa200c99650b82b7ad02d3c4#npm:1.2.0"],\ ["@types/webpack", null],\ ["@types/webpack-cli", null],\ - ["webpack", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.76.1"],\ - ["webpack-cli", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:4.7.0"]\ + ["webpack", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:5.88.2"],\ + ["webpack-cli", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5266,14 +5457,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:19b2f127812c1907b1a38c9a09197f204b62fe7eef6532a842d9e5edd0b340137d9842e41494462fa7a7e7606b2c2e959ccd71fd984fd23865c8a0d5c45bdc93#npm:1.0.3", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-4e48d11bab/0/cache/@webpack-cli-configtest-npm-1.0.3-b6e357f778-4efcca159e.zip/node_modules/@webpack-cli/configtest/",\ + ["virtual:34efed012b94a6b85252453a92078909c7936bbac75dcf08c080bc5f149cfaf3b39611684067792df3401adf2ace2739eecc5c4437cbe28efb1e96965a318737#npm:1.2.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-7a29e4fee2/0/cache/@webpack-cli-configtest-npm-1.2.0-728a6bf8bd-a2726cd9ec.zip/node_modules/@webpack-cli/configtest/",\ "packageDependencies": [\ - ["@webpack-cli/configtest", "virtual:19b2f127812c1907b1a38c9a09197f204b62fe7eef6532a842d9e5edd0b340137d9842e41494462fa7a7e7606b2c2e959ccd71fd984fd23865c8a0d5c45bdc93#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:34efed012b94a6b85252453a92078909c7936bbac75dcf08c080bc5f149cfaf3b39611684067792df3401adf2ace2739eecc5c4437cbe28efb1e96965a318737#npm:1.2.0"],\ ["@types/webpack", null],\ ["@types/webpack-cli", null],\ - ["webpack", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:5.76.1"],\ - ["webpack-cli", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:4.7.0"]\ + ["webpack", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:5.88.2"],\ + ["webpack-cli", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5283,14 +5474,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:1a6414db5d72e5953d80806e633b46faad6e5f2c7ad2c1288bd98b3a164f8f43066dc78438f2e5f9fa1fcb8ec7e3c46a8c1d103b486aff4adfc1ae573b2864e2#npm:1.0.3", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-700898143d/0/cache/@webpack-cli-configtest-npm-1.0.3-b6e357f778-4efcca159e.zip/node_modules/@webpack-cli/configtest/",\ + ["virtual:4175a1998bebcd57dbc55293cf336c1b31641f8ecd4870002ac7eb174c7b40cff0ab57ef6eb206c3bd0d8c5bd888361a5de2f5977db4fb35da02c81fca87988d#npm:1.2.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-5f2865bd69/0/cache/@webpack-cli-configtest-npm-1.2.0-728a6bf8bd-a2726cd9ec.zip/node_modules/@webpack-cli/configtest/",\ "packageDependencies": [\ - ["@webpack-cli/configtest", "virtual:1a6414db5d72e5953d80806e633b46faad6e5f2c7ad2c1288bd98b3a164f8f43066dc78438f2e5f9fa1fcb8ec7e3c46a8c1d103b486aff4adfc1ae573b2864e2#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:4175a1998bebcd57dbc55293cf336c1b31641f8ecd4870002ac7eb174c7b40cff0ab57ef6eb206c3bd0d8c5bd888361a5de2f5977db4fb35da02c81fca87988d#npm:1.2.0"],\ ["@types/webpack", null],\ ["@types/webpack-cli", null],\ - ["webpack", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:5.76.1"],\ - ["webpack-cli", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:4.7.0"]\ + ["webpack", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:5.88.2"],\ + ["webpack-cli", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5300,14 +5491,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:3ea0c3d01a91f33f2b24b3c62295ba50dc5ef053f064cdf07af43c620c6676ffb7047384e94d8051c46c3fcde0c51e60e90f847a877a41fe8c439f2527308476#npm:1.0.3", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-af67a62b82/0/cache/@webpack-cli-configtest-npm-1.0.3-b6e357f778-4efcca159e.zip/node_modules/@webpack-cli/configtest/",\ + ["virtual:6ece23f624e19111012ab576f39c4a472e20eed34986fb51bd7f0fae3354bdbed57785b6a87ec3abdddea1300ef03566e7b501328d2855bdfae78bb45afd999a#npm:1.2.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-eb7609e83f/0/cache/@webpack-cli-configtest-npm-1.2.0-728a6bf8bd-a2726cd9ec.zip/node_modules/@webpack-cli/configtest/",\ "packageDependencies": [\ - ["@webpack-cli/configtest", "virtual:3ea0c3d01a91f33f2b24b3c62295ba50dc5ef053f064cdf07af43c620c6676ffb7047384e94d8051c46c3fcde0c51e60e90f847a877a41fe8c439f2527308476#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:6ece23f624e19111012ab576f39c4a472e20eed34986fb51bd7f0fae3354bdbed57785b6a87ec3abdddea1300ef03566e7b501328d2855bdfae78bb45afd999a#npm:1.2.0"],\ ["@types/webpack", null],\ ["@types/webpack-cli", null],\ - ["webpack", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:5.76.1"],\ - ["webpack-cli", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:4.7.0"]\ + ["webpack", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:5.88.2"],\ + ["webpack-cli", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5317,14 +5508,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:3f2095d1b1ae86c3528b28bd8410f4d8bf5f6047b5402e111275cdabf96cfed69de5749998e5371b82993388087e5eee4fbc64b5a88b9a1f7cccaf495cab5b18#npm:1.0.3", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-a2633f5f35/0/cache/@webpack-cli-configtest-npm-1.0.3-b6e357f778-4efcca159e.zip/node_modules/@webpack-cli/configtest/",\ + ["virtual:74811ee2a4f4a044bbc3384892ec003917f77ffd3ba4a0a4a4976566e3d3a9892dae17c2a376c3754bc8a2b5905a0bf7b68afdc6745c4e4b30393ad52e7c218f#npm:1.2.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-a77a4ffe94/0/cache/@webpack-cli-configtest-npm-1.2.0-728a6bf8bd-a2726cd9ec.zip/node_modules/@webpack-cli/configtest/",\ "packageDependencies": [\ - ["@webpack-cli/configtest", "virtual:3f2095d1b1ae86c3528b28bd8410f4d8bf5f6047b5402e111275cdabf96cfed69de5749998e5371b82993388087e5eee4fbc64b5a88b9a1f7cccaf495cab5b18#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:74811ee2a4f4a044bbc3384892ec003917f77ffd3ba4a0a4a4976566e3d3a9892dae17c2a376c3754bc8a2b5905a0bf7b68afdc6745c4e4b30393ad52e7c218f#npm:1.2.0"],\ ["@types/webpack", null],\ ["@types/webpack-cli", null],\ - ["webpack", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:5.76.1"],\ - ["webpack-cli", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:4.7.0"]\ + ["webpack", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:5.88.2"],\ + ["webpack-cli", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5334,14 +5525,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:3f317c00d6f5d4b597361fb23682c53767cae5897bd1a69b65d898f86e2e08dd74b2ebcc074d1f7c1982b7964d3e381749811b4553c03a4dac0923648c98cf5f#npm:1.0.3", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-f40f9b4dc5/0/cache/@webpack-cli-configtest-npm-1.0.3-b6e357f778-4efcca159e.zip/node_modules/@webpack-cli/configtest/",\ + ["virtual:935dc59173fdc03ca4670c486f0c76a1eef433310cbe7b1946b7172abe7735de2cd4dd871bcb7833611c302a79129aa183ee43d22cd1b106b3d354eb878f34db#npm:1.2.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-360abf08fe/0/cache/@webpack-cli-configtest-npm-1.2.0-728a6bf8bd-a2726cd9ec.zip/node_modules/@webpack-cli/configtest/",\ "packageDependencies": [\ - ["@webpack-cli/configtest", "virtual:3f317c00d6f5d4b597361fb23682c53767cae5897bd1a69b65d898f86e2e08dd74b2ebcc074d1f7c1982b7964d3e381749811b4553c03a4dac0923648c98cf5f#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:935dc59173fdc03ca4670c486f0c76a1eef433310cbe7b1946b7172abe7735de2cd4dd871bcb7833611c302a79129aa183ee43d22cd1b106b3d354eb878f34db#npm:1.2.0"],\ ["@types/webpack", null],\ ["@types/webpack-cli", null],\ - ["webpack", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:5.76.1"],\ - ["webpack-cli", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:4.7.0"]\ + ["webpack", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:5.88.2"],\ + ["webpack-cli", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5351,14 +5542,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:6aa2f0205c2e84475d560e84447d4ad5469ae4a696d3c5fd04b106f0acfd3605d22dce182c31de5f85d3ce85becb1071c029b25e06429fdf284beed8e1f7b1be#npm:1.0.3", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-5f05cc615e/0/cache/@webpack-cli-configtest-npm-1.0.3-b6e357f778-4efcca159e.zip/node_modules/@webpack-cli/configtest/",\ + ["virtual:985f09af5cb428469830ec62dabd454c0015dd70acc17890be6a6d0ea98dbf659373b79717401755d1983f2c532b6532b7fb2dc71863897de70aa5f14f9d0d04#npm:1.2.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-15a2b70c66/0/cache/@webpack-cli-configtest-npm-1.2.0-728a6bf8bd-a2726cd9ec.zip/node_modules/@webpack-cli/configtest/",\ "packageDependencies": [\ - ["@webpack-cli/configtest", "virtual:6aa2f0205c2e84475d560e84447d4ad5469ae4a696d3c5fd04b106f0acfd3605d22dce182c31de5f85d3ce85becb1071c029b25e06429fdf284beed8e1f7b1be#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:985f09af5cb428469830ec62dabd454c0015dd70acc17890be6a6d0ea98dbf659373b79717401755d1983f2c532b6532b7fb2dc71863897de70aa5f14f9d0d04#npm:1.2.0"],\ ["@types/webpack", null],\ ["@types/webpack-cli", null],\ - ["webpack", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:5.76.1"],\ - ["webpack-cli", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:4.7.0"]\ + ["webpack", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:5.88.2"],\ + ["webpack-cli", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5368,14 +5559,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:712183b8256b1ad2b955dfd65392300c7ccc5ef7a8fe0263558a47bb329e60ecc3e2c46c83fde3173db60fa97b8e7ca90b297c7aee52a2ca3bece0c7577ba565#npm:1.0.3", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-d08772212f/0/cache/@webpack-cli-configtest-npm-1.0.3-b6e357f778-4efcca159e.zip/node_modules/@webpack-cli/configtest/",\ + ["virtual:9d0dcc8aee65ed745256a364f8e36ac9dbc5e6d5b9445277593171982a7d13a3d36086a6e47d37500ac199aacb3e258f9831aaeb7cddcb15c7e9639642fcacbd#npm:1.2.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-47a60fe3b3/0/cache/@webpack-cli-configtest-npm-1.2.0-728a6bf8bd-a2726cd9ec.zip/node_modules/@webpack-cli/configtest/",\ "packageDependencies": [\ - ["@webpack-cli/configtest", "virtual:712183b8256b1ad2b955dfd65392300c7ccc5ef7a8fe0263558a47bb329e60ecc3e2c46c83fde3173db60fa97b8e7ca90b297c7aee52a2ca3bece0c7577ba565#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:9d0dcc8aee65ed745256a364f8e36ac9dbc5e6d5b9445277593171982a7d13a3d36086a6e47d37500ac199aacb3e258f9831aaeb7cddcb15c7e9639642fcacbd#npm:1.2.0"],\ ["@types/webpack", null],\ ["@types/webpack-cli", null],\ - ["webpack", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:5.76.1"],\ - ["webpack-cli", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:4.7.0"]\ + ["webpack", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:5.88.2"],\ + ["webpack-cli", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5385,14 +5576,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:87e4e29d0a073486e83efd3fb6ccb7905fedbae979a2f77544c4e7ebf5a6bf9cb2ec8ed5b3be875e151cdf6e30b7c3d3d2c148a069709cbac3edecc2314b098d#npm:1.0.3", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-c83273e6dc/0/cache/@webpack-cli-configtest-npm-1.0.3-b6e357f778-4efcca159e.zip/node_modules/@webpack-cli/configtest/",\ + ["virtual:9df3d550965966985c859dffeb145ff415e8fcb2873896d25632c194894a378def26f584691c0ca0ca8104e26903e02b9c92099ca226e0ccb3457a368fd255ef#npm:1.2.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-9b175f8586/0/cache/@webpack-cli-configtest-npm-1.2.0-728a6bf8bd-a2726cd9ec.zip/node_modules/@webpack-cli/configtest/",\ "packageDependencies": [\ - ["@webpack-cli/configtest", "virtual:87e4e29d0a073486e83efd3fb6ccb7905fedbae979a2f77544c4e7ebf5a6bf9cb2ec8ed5b3be875e151cdf6e30b7c3d3d2c148a069709cbac3edecc2314b098d#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:9df3d550965966985c859dffeb145ff415e8fcb2873896d25632c194894a378def26f584691c0ca0ca8104e26903e02b9c92099ca226e0ccb3457a368fd255ef#npm:1.2.0"],\ ["@types/webpack", null],\ ["@types/webpack-cli", null],\ - ["webpack", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:5.76.1"],\ - ["webpack-cli", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:4.7.0"]\ + ["webpack", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:5.88.2"],\ + ["webpack-cli", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5402,14 +5593,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:8aa70e5ddf4bf177ef358ddf514e31e5ae37328cf6140c50a8bf949f5e5058766ef80c00056d13489dc3eb71d291591fef5996e6062a700bbf7c95a98b6e50c2#npm:1.0.3", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-323aa61039/0/cache/@webpack-cli-configtest-npm-1.0.3-b6e357f778-4efcca159e.zip/node_modules/@webpack-cli/configtest/",\ + ["virtual:acdb8e14ef9eb9196d4af13197cbc00f56a0cfa91ffcfca23f74f2df718d36224ab880b4d106f1456e3bf1849ded71fe70916933ad9358ab636241d7b8027984#npm:1.2.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-4ccc384917/0/cache/@webpack-cli-configtest-npm-1.2.0-728a6bf8bd-a2726cd9ec.zip/node_modules/@webpack-cli/configtest/",\ "packageDependencies": [\ - ["@webpack-cli/configtest", "virtual:8aa70e5ddf4bf177ef358ddf514e31e5ae37328cf6140c50a8bf949f5e5058766ef80c00056d13489dc3eb71d291591fef5996e6062a700bbf7c95a98b6e50c2#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:acdb8e14ef9eb9196d4af13197cbc00f56a0cfa91ffcfca23f74f2df718d36224ab880b4d106f1456e3bf1849ded71fe70916933ad9358ab636241d7b8027984#npm:1.2.0"],\ ["@types/webpack", null],\ ["@types/webpack-cli", null],\ - ["webpack", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:5.76.1"],\ - ["webpack-cli", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:4.7.0"]\ + ["webpack", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:5.88.2"],\ + ["webpack-cli", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5419,14 +5610,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:98bf358c501855e8743ae991de414e6a786f1298755a0a8602d82cdaa5173e33d864020ac1fdf90829f00b3737844455215343b73ce27125126e9a2bb0f78747#npm:1.0.3", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-7dd1c176dd/0/cache/@webpack-cli-configtest-npm-1.0.3-b6e357f778-4efcca159e.zip/node_modules/@webpack-cli/configtest/",\ + ["virtual:c84bbba271a142106fa43a6c30918bcb68b8ffe40ec8ec9fbbdf912c234bd9b4c0c245b7482459805420f66dbff2a3f45ac32c99fc211976094e5aa37e775d04#npm:1.2.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-d7b4dbe5af/0/cache/@webpack-cli-configtest-npm-1.2.0-728a6bf8bd-a2726cd9ec.zip/node_modules/@webpack-cli/configtest/",\ "packageDependencies": [\ - ["@webpack-cli/configtest", "virtual:98bf358c501855e8743ae991de414e6a786f1298755a0a8602d82cdaa5173e33d864020ac1fdf90829f00b3737844455215343b73ce27125126e9a2bb0f78747#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:c84bbba271a142106fa43a6c30918bcb68b8ffe40ec8ec9fbbdf912c234bd9b4c0c245b7482459805420f66dbff2a3f45ac32c99fc211976094e5aa37e775d04#npm:1.2.0"],\ ["@types/webpack", null],\ ["@types/webpack-cli", null],\ - ["webpack", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:5.76.1"],\ - ["webpack-cli", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:4.7.0"]\ + ["webpack", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:5.88.2"],\ + ["webpack-cli", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5436,14 +5627,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:a52c57a2f219548b55c02cd38ccc5537df09cd5a76db0d2f06e70fdb8f2b0fc85a32f0e5a3a1b9f0e85d1c648d8aa7c8c60819690b44741a49cb4f5689f81e0f#npm:1.0.3", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-95079204e6/0/cache/@webpack-cli-configtest-npm-1.0.3-b6e357f778-4efcca159e.zip/node_modules/@webpack-cli/configtest/",\ + ["virtual:d238eb575f4cd9a888aa4eb2917d8fae65e681e5369648dbb5b122f52d88ccaa3442afd93636e31c7d7eddf83592b2d556886bd920ef1fb49d5e1fdc01bdb65a#npm:1.2.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-0d13af34ef/0/cache/@webpack-cli-configtest-npm-1.2.0-728a6bf8bd-a2726cd9ec.zip/node_modules/@webpack-cli/configtest/",\ "packageDependencies": [\ - ["@webpack-cli/configtest", "virtual:a52c57a2f219548b55c02cd38ccc5537df09cd5a76db0d2f06e70fdb8f2b0fc85a32f0e5a3a1b9f0e85d1c648d8aa7c8c60819690b44741a49cb4f5689f81e0f#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:d238eb575f4cd9a888aa4eb2917d8fae65e681e5369648dbb5b122f52d88ccaa3442afd93636e31c7d7eddf83592b2d556886bd920ef1fb49d5e1fdc01bdb65a#npm:1.2.0"],\ ["@types/webpack", null],\ ["@types/webpack-cli", null],\ - ["webpack", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:5.76.1"],\ - ["webpack-cli", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:4.7.0"]\ + ["webpack", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:5.88.2"],\ + ["webpack-cli", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5453,14 +5644,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:e545141db94d121e901ffbb09d6c54f53f485ecdf99f9847aaf0f186594082f8121d89d8183c7bf05b17673cbb64c358037fbd69d06a0ad71096f07b595a2385#npm:1.0.3", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-b614d6a687/0/cache/@webpack-cli-configtest-npm-1.0.3-b6e357f778-4efcca159e.zip/node_modules/@webpack-cli/configtest/",\ + ["virtual:e77654db5e06aa7acc2ccb39bbe42ad01d4f84b5fa2c4b2f2b2f3f98b8f1431cefd61c15272506c621d0e3e3811a908ef41a296de87a4f13fb33d3b6bda5c641#npm:1.2.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-373ec42335/0/cache/@webpack-cli-configtest-npm-1.2.0-728a6bf8bd-a2726cd9ec.zip/node_modules/@webpack-cli/configtest/",\ "packageDependencies": [\ - ["@webpack-cli/configtest", "virtual:e545141db94d121e901ffbb09d6c54f53f485ecdf99f9847aaf0f186594082f8121d89d8183c7bf05b17673cbb64c358037fbd69d06a0ad71096f07b595a2385#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:e77654db5e06aa7acc2ccb39bbe42ad01d4f84b5fa2c4b2f2b2f3f98b8f1431cefd61c15272506c621d0e3e3811a908ef41a296de87a4f13fb33d3b6bda5c641#npm:1.2.0"],\ ["@types/webpack", null],\ ["@types/webpack-cli", null],\ - ["webpack", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:5.76.1"],\ - ["webpack-cli", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:4.7.0"]\ + ["webpack", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.88.2"],\ + ["webpack-cli", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5470,14 +5661,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:ef44dbe4a0887b3ad14f09b6347c15d0db82a8927990a2da2fd639dc590694850b3df878dd3cbc868013c58ae6dcaeda4d5d16b96817c60d1a31ea77f0c0c1a2#npm:1.0.3", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-3f066dcf21/0/cache/@webpack-cli-configtest-npm-1.0.3-b6e357f778-4efcca159e.zip/node_modules/@webpack-cli/configtest/",\ + ["virtual:ef491f5c015f28129e937195e1c6fa23d14e66ca4df07e6709daefe0a2f0d86f1a5fe1c68a62002dc1b1e37a622490e05c98ff741f00256cb04373b854063ae6#npm:1.2.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-266b4490bb/0/cache/@webpack-cli-configtest-npm-1.2.0-728a6bf8bd-a2726cd9ec.zip/node_modules/@webpack-cli/configtest/",\ "packageDependencies": [\ - ["@webpack-cli/configtest", "virtual:ef44dbe4a0887b3ad14f09b6347c15d0db82a8927990a2da2fd639dc590694850b3df878dd3cbc868013c58ae6dcaeda4d5d16b96817c60d1a31ea77f0c0c1a2#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:ef491f5c015f28129e937195e1c6fa23d14e66ca4df07e6709daefe0a2f0d86f1a5fe1c68a62002dc1b1e37a622490e05c98ff741f00256cb04373b854063ae6#npm:1.2.0"],\ ["@types/webpack", null],\ ["@types/webpack-cli", null],\ - ["webpack", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:5.76.1"],\ - ["webpack-cli", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:4.7.0"]\ + ["webpack", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:5.88.2"],\ + ["webpack-cli", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5487,14 +5678,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:f163430d480c7d1a43ed44430ddc1d3b80854df746309b4d16766c3a534976b48dd4c8639aa68947f16c23f4b2d63d59f83ad577265bf920b9b42be9085d01c7#npm:1.0.3", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-b1377341b5/0/cache/@webpack-cli-configtest-npm-1.0.3-b6e357f778-4efcca159e.zip/node_modules/@webpack-cli/configtest/",\ + ["virtual:f5022bce7a2b84ada5f5e52d05e3565059aa737acfdbe305e0c6acf0a9f5fac16e8895490aed61cec2224735c77717e171688a7425b8ec7bbb276a9954dfcbbb#npm:1.2.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-configtest-virtual-bed236a1d3/0/cache/@webpack-cli-configtest-npm-1.2.0-728a6bf8bd-a2726cd9ec.zip/node_modules/@webpack-cli/configtest/",\ "packageDependencies": [\ - ["@webpack-cli/configtest", "virtual:f163430d480c7d1a43ed44430ddc1d3b80854df746309b4d16766c3a534976b48dd4c8639aa68947f16c23f4b2d63d59f83ad577265bf920b9b42be9085d01c7#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:f5022bce7a2b84ada5f5e52d05e3565059aa737acfdbe305e0c6acf0a9f5fac16e8895490aed61cec2224735c77717e171688a7425b8ec7bbb276a9954dfcbbb#npm:1.2.0"],\ ["@types/webpack", null],\ ["@types/webpack-cli", null],\ - ["webpack", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:5.76.1"],\ - ["webpack-cli", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:4.7.0"]\ + ["webpack", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:5.88.2"],\ + ["webpack-cli", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5506,20 +5697,20 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@webpack-cli/info", [\ - ["npm:1.2.4", {\ - "packageLocation": "./.yarn/cache/@webpack-cli-info-npm-1.2.4-e4a2135f37-4e27ccd04c.zip/node_modules/@webpack-cli/info/",\ + ["npm:1.5.0", {\ + "packageLocation": "./.yarn/cache/@webpack-cli-info-npm-1.5.0-9d9627ae19-7f56fe037c.zip/node_modules/@webpack-cli/info/",\ "packageDependencies": [\ - ["@webpack-cli/info", "npm:1.2.4"]\ + ["@webpack-cli/info", "npm:1.5.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:0dffb8990811e5c397885e163b3d6c3a962e214d8c54600fce976052ec938b6bf73c0d4710c1ae94feb6a13cd1ef2dcf6a2703b948ea0ab44ded996e8903eca9#npm:1.2.4", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-bc96527c43/0/cache/@webpack-cli-info-npm-1.2.4-e4a2135f37-4e27ccd04c.zip/node_modules/@webpack-cli/info/",\ + ["virtual:1115deaf0cc2aaaddb9832fb5599cc0547a37f2deeb7d03662ed193684a3a1dcf2d97590c070bb4aa39cbefc14a8b9499d004749aa200c99650b82b7ad02d3c4#npm:1.5.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-cc14ca28f4/0/cache/@webpack-cli-info-npm-1.5.0-9d9627ae19-7f56fe037c.zip/node_modules/@webpack-cli/info/",\ "packageDependencies": [\ - ["@webpack-cli/info", "virtual:0dffb8990811e5c397885e163b3d6c3a962e214d8c54600fce976052ec938b6bf73c0d4710c1ae94feb6a13cd1ef2dcf6a2703b948ea0ab44ded996e8903eca9#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:1115deaf0cc2aaaddb9832fb5599cc0547a37f2deeb7d03662ed193684a3a1dcf2d97590c070bb4aa39cbefc14a8b9499d004749aa200c99650b82b7ad02d3c4#npm:1.5.0"],\ ["@types/webpack-cli", null],\ - ["envinfo", "npm:7.8.1"],\ - ["webpack-cli", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:4.7.0"]\ + ["envinfo", "npm:7.10.0"],\ + ["webpack-cli", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5527,13 +5718,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:19b2f127812c1907b1a38c9a09197f204b62fe7eef6532a842d9e5edd0b340137d9842e41494462fa7a7e7606b2c2e959ccd71fd984fd23865c8a0d5c45bdc93#npm:1.2.4", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-0e96a2b611/0/cache/@webpack-cli-info-npm-1.2.4-e4a2135f37-4e27ccd04c.zip/node_modules/@webpack-cli/info/",\ + ["virtual:34efed012b94a6b85252453a92078909c7936bbac75dcf08c080bc5f149cfaf3b39611684067792df3401adf2ace2739eecc5c4437cbe28efb1e96965a318737#npm:1.5.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-24d8187be6/0/cache/@webpack-cli-info-npm-1.5.0-9d9627ae19-7f56fe037c.zip/node_modules/@webpack-cli/info/",\ "packageDependencies": [\ - ["@webpack-cli/info", "virtual:19b2f127812c1907b1a38c9a09197f204b62fe7eef6532a842d9e5edd0b340137d9842e41494462fa7a7e7606b2c2e959ccd71fd984fd23865c8a0d5c45bdc93#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:34efed012b94a6b85252453a92078909c7936bbac75dcf08c080bc5f149cfaf3b39611684067792df3401adf2ace2739eecc5c4437cbe28efb1e96965a318737#npm:1.5.0"],\ ["@types/webpack-cli", null],\ - ["envinfo", "npm:7.8.1"],\ - ["webpack-cli", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:4.7.0"]\ + ["envinfo", "npm:7.10.0"],\ + ["webpack-cli", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5541,13 +5732,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:1a6414db5d72e5953d80806e633b46faad6e5f2c7ad2c1288bd98b3a164f8f43066dc78438f2e5f9fa1fcb8ec7e3c46a8c1d103b486aff4adfc1ae573b2864e2#npm:1.2.4", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-71774d59db/0/cache/@webpack-cli-info-npm-1.2.4-e4a2135f37-4e27ccd04c.zip/node_modules/@webpack-cli/info/",\ + ["virtual:4175a1998bebcd57dbc55293cf336c1b31641f8ecd4870002ac7eb174c7b40cff0ab57ef6eb206c3bd0d8c5bd888361a5de2f5977db4fb35da02c81fca87988d#npm:1.5.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-5b4af41345/0/cache/@webpack-cli-info-npm-1.5.0-9d9627ae19-7f56fe037c.zip/node_modules/@webpack-cli/info/",\ "packageDependencies": [\ - ["@webpack-cli/info", "virtual:1a6414db5d72e5953d80806e633b46faad6e5f2c7ad2c1288bd98b3a164f8f43066dc78438f2e5f9fa1fcb8ec7e3c46a8c1d103b486aff4adfc1ae573b2864e2#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:4175a1998bebcd57dbc55293cf336c1b31641f8ecd4870002ac7eb174c7b40cff0ab57ef6eb206c3bd0d8c5bd888361a5de2f5977db4fb35da02c81fca87988d#npm:1.5.0"],\ ["@types/webpack-cli", null],\ - ["envinfo", "npm:7.8.1"],\ - ["webpack-cli", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:4.7.0"]\ + ["envinfo", "npm:7.10.0"],\ + ["webpack-cli", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5555,13 +5746,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:3ea0c3d01a91f33f2b24b3c62295ba50dc5ef053f064cdf07af43c620c6676ffb7047384e94d8051c46c3fcde0c51e60e90f847a877a41fe8c439f2527308476#npm:1.2.4", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-6c0587bf6e/0/cache/@webpack-cli-info-npm-1.2.4-e4a2135f37-4e27ccd04c.zip/node_modules/@webpack-cli/info/",\ + ["virtual:6ece23f624e19111012ab576f39c4a472e20eed34986fb51bd7f0fae3354bdbed57785b6a87ec3abdddea1300ef03566e7b501328d2855bdfae78bb45afd999a#npm:1.5.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-1ac4ebd3f4/0/cache/@webpack-cli-info-npm-1.5.0-9d9627ae19-7f56fe037c.zip/node_modules/@webpack-cli/info/",\ "packageDependencies": [\ - ["@webpack-cli/info", "virtual:3ea0c3d01a91f33f2b24b3c62295ba50dc5ef053f064cdf07af43c620c6676ffb7047384e94d8051c46c3fcde0c51e60e90f847a877a41fe8c439f2527308476#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:6ece23f624e19111012ab576f39c4a472e20eed34986fb51bd7f0fae3354bdbed57785b6a87ec3abdddea1300ef03566e7b501328d2855bdfae78bb45afd999a#npm:1.5.0"],\ ["@types/webpack-cli", null],\ - ["envinfo", "npm:7.8.1"],\ - ["webpack-cli", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:4.7.0"]\ + ["envinfo", "npm:7.10.0"],\ + ["webpack-cli", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5569,13 +5760,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:3f2095d1b1ae86c3528b28bd8410f4d8bf5f6047b5402e111275cdabf96cfed69de5749998e5371b82993388087e5eee4fbc64b5a88b9a1f7cccaf495cab5b18#npm:1.2.4", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-eea32a6276/0/cache/@webpack-cli-info-npm-1.2.4-e4a2135f37-4e27ccd04c.zip/node_modules/@webpack-cli/info/",\ + ["virtual:74811ee2a4f4a044bbc3384892ec003917f77ffd3ba4a0a4a4976566e3d3a9892dae17c2a376c3754bc8a2b5905a0bf7b68afdc6745c4e4b30393ad52e7c218f#npm:1.5.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-97304a2773/0/cache/@webpack-cli-info-npm-1.5.0-9d9627ae19-7f56fe037c.zip/node_modules/@webpack-cli/info/",\ "packageDependencies": [\ - ["@webpack-cli/info", "virtual:3f2095d1b1ae86c3528b28bd8410f4d8bf5f6047b5402e111275cdabf96cfed69de5749998e5371b82993388087e5eee4fbc64b5a88b9a1f7cccaf495cab5b18#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:74811ee2a4f4a044bbc3384892ec003917f77ffd3ba4a0a4a4976566e3d3a9892dae17c2a376c3754bc8a2b5905a0bf7b68afdc6745c4e4b30393ad52e7c218f#npm:1.5.0"],\ ["@types/webpack-cli", null],\ - ["envinfo", "npm:7.8.1"],\ - ["webpack-cli", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:4.7.0"]\ + ["envinfo", "npm:7.10.0"],\ + ["webpack-cli", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5583,13 +5774,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:3f317c00d6f5d4b597361fb23682c53767cae5897bd1a69b65d898f86e2e08dd74b2ebcc074d1f7c1982b7964d3e381749811b4553c03a4dac0923648c98cf5f#npm:1.2.4", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-f80bf05dd6/0/cache/@webpack-cli-info-npm-1.2.4-e4a2135f37-4e27ccd04c.zip/node_modules/@webpack-cli/info/",\ + ["virtual:935dc59173fdc03ca4670c486f0c76a1eef433310cbe7b1946b7172abe7735de2cd4dd871bcb7833611c302a79129aa183ee43d22cd1b106b3d354eb878f34db#npm:1.5.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-251bfed53e/0/cache/@webpack-cli-info-npm-1.5.0-9d9627ae19-7f56fe037c.zip/node_modules/@webpack-cli/info/",\ "packageDependencies": [\ - ["@webpack-cli/info", "virtual:3f317c00d6f5d4b597361fb23682c53767cae5897bd1a69b65d898f86e2e08dd74b2ebcc074d1f7c1982b7964d3e381749811b4553c03a4dac0923648c98cf5f#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:935dc59173fdc03ca4670c486f0c76a1eef433310cbe7b1946b7172abe7735de2cd4dd871bcb7833611c302a79129aa183ee43d22cd1b106b3d354eb878f34db#npm:1.5.0"],\ ["@types/webpack-cli", null],\ - ["envinfo", "npm:7.8.1"],\ - ["webpack-cli", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:4.7.0"]\ + ["envinfo", "npm:7.10.0"],\ + ["webpack-cli", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5597,13 +5788,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:6aa2f0205c2e84475d560e84447d4ad5469ae4a696d3c5fd04b106f0acfd3605d22dce182c31de5f85d3ce85becb1071c029b25e06429fdf284beed8e1f7b1be#npm:1.2.4", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-960665e76e/0/cache/@webpack-cli-info-npm-1.2.4-e4a2135f37-4e27ccd04c.zip/node_modules/@webpack-cli/info/",\ + ["virtual:985f09af5cb428469830ec62dabd454c0015dd70acc17890be6a6d0ea98dbf659373b79717401755d1983f2c532b6532b7fb2dc71863897de70aa5f14f9d0d04#npm:1.5.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-6c2e499fd4/0/cache/@webpack-cli-info-npm-1.5.0-9d9627ae19-7f56fe037c.zip/node_modules/@webpack-cli/info/",\ "packageDependencies": [\ - ["@webpack-cli/info", "virtual:6aa2f0205c2e84475d560e84447d4ad5469ae4a696d3c5fd04b106f0acfd3605d22dce182c31de5f85d3ce85becb1071c029b25e06429fdf284beed8e1f7b1be#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:985f09af5cb428469830ec62dabd454c0015dd70acc17890be6a6d0ea98dbf659373b79717401755d1983f2c532b6532b7fb2dc71863897de70aa5f14f9d0d04#npm:1.5.0"],\ ["@types/webpack-cli", null],\ - ["envinfo", "npm:7.8.1"],\ - ["webpack-cli", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:4.7.0"]\ + ["envinfo", "npm:7.10.0"],\ + ["webpack-cli", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5611,13 +5802,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:712183b8256b1ad2b955dfd65392300c7ccc5ef7a8fe0263558a47bb329e60ecc3e2c46c83fde3173db60fa97b8e7ca90b297c7aee52a2ca3bece0c7577ba565#npm:1.2.4", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-90ab972cd9/0/cache/@webpack-cli-info-npm-1.2.4-e4a2135f37-4e27ccd04c.zip/node_modules/@webpack-cli/info/",\ + ["virtual:9d0dcc8aee65ed745256a364f8e36ac9dbc5e6d5b9445277593171982a7d13a3d36086a6e47d37500ac199aacb3e258f9831aaeb7cddcb15c7e9639642fcacbd#npm:1.5.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-70555f8f51/0/cache/@webpack-cli-info-npm-1.5.0-9d9627ae19-7f56fe037c.zip/node_modules/@webpack-cli/info/",\ "packageDependencies": [\ - ["@webpack-cli/info", "virtual:712183b8256b1ad2b955dfd65392300c7ccc5ef7a8fe0263558a47bb329e60ecc3e2c46c83fde3173db60fa97b8e7ca90b297c7aee52a2ca3bece0c7577ba565#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:9d0dcc8aee65ed745256a364f8e36ac9dbc5e6d5b9445277593171982a7d13a3d36086a6e47d37500ac199aacb3e258f9831aaeb7cddcb15c7e9639642fcacbd#npm:1.5.0"],\ ["@types/webpack-cli", null],\ - ["envinfo", "npm:7.8.1"],\ - ["webpack-cli", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:4.7.0"]\ + ["envinfo", "npm:7.10.0"],\ + ["webpack-cli", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5625,13 +5816,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:87e4e29d0a073486e83efd3fb6ccb7905fedbae979a2f77544c4e7ebf5a6bf9cb2ec8ed5b3be875e151cdf6e30b7c3d3d2c148a069709cbac3edecc2314b098d#npm:1.2.4", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-fe46807215/0/cache/@webpack-cli-info-npm-1.2.4-e4a2135f37-4e27ccd04c.zip/node_modules/@webpack-cli/info/",\ + ["virtual:9df3d550965966985c859dffeb145ff415e8fcb2873896d25632c194894a378def26f584691c0ca0ca8104e26903e02b9c92099ca226e0ccb3457a368fd255ef#npm:1.5.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-a9c0fe0af3/0/cache/@webpack-cli-info-npm-1.5.0-9d9627ae19-7f56fe037c.zip/node_modules/@webpack-cli/info/",\ "packageDependencies": [\ - ["@webpack-cli/info", "virtual:87e4e29d0a073486e83efd3fb6ccb7905fedbae979a2f77544c4e7ebf5a6bf9cb2ec8ed5b3be875e151cdf6e30b7c3d3d2c148a069709cbac3edecc2314b098d#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:9df3d550965966985c859dffeb145ff415e8fcb2873896d25632c194894a378def26f584691c0ca0ca8104e26903e02b9c92099ca226e0ccb3457a368fd255ef#npm:1.5.0"],\ ["@types/webpack-cli", null],\ - ["envinfo", "npm:7.8.1"],\ - ["webpack-cli", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:4.7.0"]\ + ["envinfo", "npm:7.10.0"],\ + ["webpack-cli", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5639,13 +5830,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:8aa70e5ddf4bf177ef358ddf514e31e5ae37328cf6140c50a8bf949f5e5058766ef80c00056d13489dc3eb71d291591fef5996e6062a700bbf7c95a98b6e50c2#npm:1.2.4", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-534768e2f6/0/cache/@webpack-cli-info-npm-1.2.4-e4a2135f37-4e27ccd04c.zip/node_modules/@webpack-cli/info/",\ + ["virtual:acdb8e14ef9eb9196d4af13197cbc00f56a0cfa91ffcfca23f74f2df718d36224ab880b4d106f1456e3bf1849ded71fe70916933ad9358ab636241d7b8027984#npm:1.5.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-43c29efc68/0/cache/@webpack-cli-info-npm-1.5.0-9d9627ae19-7f56fe037c.zip/node_modules/@webpack-cli/info/",\ "packageDependencies": [\ - ["@webpack-cli/info", "virtual:8aa70e5ddf4bf177ef358ddf514e31e5ae37328cf6140c50a8bf949f5e5058766ef80c00056d13489dc3eb71d291591fef5996e6062a700bbf7c95a98b6e50c2#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:acdb8e14ef9eb9196d4af13197cbc00f56a0cfa91ffcfca23f74f2df718d36224ab880b4d106f1456e3bf1849ded71fe70916933ad9358ab636241d7b8027984#npm:1.5.0"],\ ["@types/webpack-cli", null],\ - ["envinfo", "npm:7.8.1"],\ - ["webpack-cli", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:4.7.0"]\ + ["envinfo", "npm:7.10.0"],\ + ["webpack-cli", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5653,13 +5844,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:98bf358c501855e8743ae991de414e6a786f1298755a0a8602d82cdaa5173e33d864020ac1fdf90829f00b3737844455215343b73ce27125126e9a2bb0f78747#npm:1.2.4", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-f4935a94d7/0/cache/@webpack-cli-info-npm-1.2.4-e4a2135f37-4e27ccd04c.zip/node_modules/@webpack-cli/info/",\ + ["virtual:c84bbba271a142106fa43a6c30918bcb68b8ffe40ec8ec9fbbdf912c234bd9b4c0c245b7482459805420f66dbff2a3f45ac32c99fc211976094e5aa37e775d04#npm:1.5.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-9d0dd27243/0/cache/@webpack-cli-info-npm-1.5.0-9d9627ae19-7f56fe037c.zip/node_modules/@webpack-cli/info/",\ "packageDependencies": [\ - ["@webpack-cli/info", "virtual:98bf358c501855e8743ae991de414e6a786f1298755a0a8602d82cdaa5173e33d864020ac1fdf90829f00b3737844455215343b73ce27125126e9a2bb0f78747#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:c84bbba271a142106fa43a6c30918bcb68b8ffe40ec8ec9fbbdf912c234bd9b4c0c245b7482459805420f66dbff2a3f45ac32c99fc211976094e5aa37e775d04#npm:1.5.0"],\ ["@types/webpack-cli", null],\ - ["envinfo", "npm:7.8.1"],\ - ["webpack-cli", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:4.7.0"]\ + ["envinfo", "npm:7.10.0"],\ + ["webpack-cli", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5667,13 +5858,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:a52c57a2f219548b55c02cd38ccc5537df09cd5a76db0d2f06e70fdb8f2b0fc85a32f0e5a3a1b9f0e85d1c648d8aa7c8c60819690b44741a49cb4f5689f81e0f#npm:1.2.4", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-0646f18cd4/0/cache/@webpack-cli-info-npm-1.2.4-e4a2135f37-4e27ccd04c.zip/node_modules/@webpack-cli/info/",\ + ["virtual:d238eb575f4cd9a888aa4eb2917d8fae65e681e5369648dbb5b122f52d88ccaa3442afd93636e31c7d7eddf83592b2d556886bd920ef1fb49d5e1fdc01bdb65a#npm:1.5.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-1c7161efed/0/cache/@webpack-cli-info-npm-1.5.0-9d9627ae19-7f56fe037c.zip/node_modules/@webpack-cli/info/",\ "packageDependencies": [\ - ["@webpack-cli/info", "virtual:a52c57a2f219548b55c02cd38ccc5537df09cd5a76db0d2f06e70fdb8f2b0fc85a32f0e5a3a1b9f0e85d1c648d8aa7c8c60819690b44741a49cb4f5689f81e0f#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:d238eb575f4cd9a888aa4eb2917d8fae65e681e5369648dbb5b122f52d88ccaa3442afd93636e31c7d7eddf83592b2d556886bd920ef1fb49d5e1fdc01bdb65a#npm:1.5.0"],\ ["@types/webpack-cli", null],\ - ["envinfo", "npm:7.8.1"],\ - ["webpack-cli", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:4.7.0"]\ + ["envinfo", "npm:7.10.0"],\ + ["webpack-cli", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5681,13 +5872,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:e545141db94d121e901ffbb09d6c54f53f485ecdf99f9847aaf0f186594082f8121d89d8183c7bf05b17673cbb64c358037fbd69d06a0ad71096f07b595a2385#npm:1.2.4", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-98a9b8985b/0/cache/@webpack-cli-info-npm-1.2.4-e4a2135f37-4e27ccd04c.zip/node_modules/@webpack-cli/info/",\ + ["virtual:e77654db5e06aa7acc2ccb39bbe42ad01d4f84b5fa2c4b2f2b2f3f98b8f1431cefd61c15272506c621d0e3e3811a908ef41a296de87a4f13fb33d3b6bda5c641#npm:1.5.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-9cdff1229e/0/cache/@webpack-cli-info-npm-1.5.0-9d9627ae19-7f56fe037c.zip/node_modules/@webpack-cli/info/",\ "packageDependencies": [\ - ["@webpack-cli/info", "virtual:e545141db94d121e901ffbb09d6c54f53f485ecdf99f9847aaf0f186594082f8121d89d8183c7bf05b17673cbb64c358037fbd69d06a0ad71096f07b595a2385#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:e77654db5e06aa7acc2ccb39bbe42ad01d4f84b5fa2c4b2f2b2f3f98b8f1431cefd61c15272506c621d0e3e3811a908ef41a296de87a4f13fb33d3b6bda5c641#npm:1.5.0"],\ ["@types/webpack-cli", null],\ - ["envinfo", "npm:7.8.1"],\ - ["webpack-cli", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:4.7.0"]\ + ["envinfo", "npm:7.10.0"],\ + ["webpack-cli", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5695,13 +5886,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:ef44dbe4a0887b3ad14f09b6347c15d0db82a8927990a2da2fd639dc590694850b3df878dd3cbc868013c58ae6dcaeda4d5d16b96817c60d1a31ea77f0c0c1a2#npm:1.2.4", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-836da24424/0/cache/@webpack-cli-info-npm-1.2.4-e4a2135f37-4e27ccd04c.zip/node_modules/@webpack-cli/info/",\ + ["virtual:ef491f5c015f28129e937195e1c6fa23d14e66ca4df07e6709daefe0a2f0d86f1a5fe1c68a62002dc1b1e37a622490e05c98ff741f00256cb04373b854063ae6#npm:1.5.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-07683435a6/0/cache/@webpack-cli-info-npm-1.5.0-9d9627ae19-7f56fe037c.zip/node_modules/@webpack-cli/info/",\ "packageDependencies": [\ - ["@webpack-cli/info", "virtual:ef44dbe4a0887b3ad14f09b6347c15d0db82a8927990a2da2fd639dc590694850b3df878dd3cbc868013c58ae6dcaeda4d5d16b96817c60d1a31ea77f0c0c1a2#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:ef491f5c015f28129e937195e1c6fa23d14e66ca4df07e6709daefe0a2f0d86f1a5fe1c68a62002dc1b1e37a622490e05c98ff741f00256cb04373b854063ae6#npm:1.5.0"],\ ["@types/webpack-cli", null],\ - ["envinfo", "npm:7.8.1"],\ - ["webpack-cli", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:4.7.0"]\ + ["envinfo", "npm:7.10.0"],\ + ["webpack-cli", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5709,13 +5900,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:f163430d480c7d1a43ed44430ddc1d3b80854df746309b4d16766c3a534976b48dd4c8639aa68947f16c23f4b2d63d59f83ad577265bf920b9b42be9085d01c7#npm:1.2.4", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-d5ada4560e/0/cache/@webpack-cli-info-npm-1.2.4-e4a2135f37-4e27ccd04c.zip/node_modules/@webpack-cli/info/",\ + ["virtual:f5022bce7a2b84ada5f5e52d05e3565059aa737acfdbe305e0c6acf0a9f5fac16e8895490aed61cec2224735c77717e171688a7425b8ec7bbb276a9954dfcbbb#npm:1.5.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-info-virtual-fa9d9a73e0/0/cache/@webpack-cli-info-npm-1.5.0-9d9627ae19-7f56fe037c.zip/node_modules/@webpack-cli/info/",\ "packageDependencies": [\ - ["@webpack-cli/info", "virtual:f163430d480c7d1a43ed44430ddc1d3b80854df746309b4d16766c3a534976b48dd4c8639aa68947f16c23f4b2d63d59f83ad577265bf920b9b42be9085d01c7#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:f5022bce7a2b84ada5f5e52d05e3565059aa737acfdbe305e0c6acf0a9f5fac16e8895490aed61cec2224735c77717e171688a7425b8ec7bbb276a9954dfcbbb#npm:1.5.0"],\ ["@types/webpack-cli", null],\ - ["envinfo", "npm:7.8.1"],\ - ["webpack-cli", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:4.7.0"]\ + ["envinfo", "npm:7.10.0"],\ + ["webpack-cli", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:4.10.0"]\ ],\ "packagePeers": [\ "@types/webpack-cli",\ @@ -5725,20 +5916,20 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["@webpack-cli/serve", [\ - ["npm:1.4.0", {\ - "packageLocation": "./.yarn/cache/@webpack-cli-serve-npm-1.4.0-1f566be693-0b063bed4c.zip/node_modules/@webpack-cli/serve/",\ + ["npm:1.7.0", {\ + "packageLocation": "./.yarn/cache/@webpack-cli-serve-npm-1.7.0-2869abfdb4-d475e8effa.zip/node_modules/@webpack-cli/serve/",\ "packageDependencies": [\ - ["@webpack-cli/serve", "npm:1.4.0"]\ + ["@webpack-cli/serve", "npm:1.7.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:0dffb8990811e5c397885e163b3d6c3a962e214d8c54600fce976052ec938b6bf73c0d4710c1ae94feb6a13cd1ef2dcf6a2703b948ea0ab44ded996e8903eca9#npm:1.4.0", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-9e2ec1dd6e/0/cache/@webpack-cli-serve-npm-1.4.0-1f566be693-0b063bed4c.zip/node_modules/@webpack-cli/serve/",\ + ["virtual:1115deaf0cc2aaaddb9832fb5599cc0547a37f2deeb7d03662ed193684a3a1dcf2d97590c070bb4aa39cbefc14a8b9499d004749aa200c99650b82b7ad02d3c4#npm:1.7.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-9078f9a472/0/cache/@webpack-cli-serve-npm-1.7.0-2869abfdb4-d475e8effa.zip/node_modules/@webpack-cli/serve/",\ "packageDependencies": [\ - ["@webpack-cli/serve", "virtual:0dffb8990811e5c397885e163b3d6c3a962e214d8c54600fce976052ec938b6bf73c0d4710c1ae94feb6a13cd1ef2dcf6a2703b948ea0ab44ded996e8903eca9#npm:1.4.0"],\ + ["@webpack-cli/serve", "virtual:1115deaf0cc2aaaddb9832fb5599cc0547a37f2deeb7d03662ed193684a3a1dcf2d97590c070bb4aa39cbefc14a8b9499d004749aa200c99650b82b7ad02d3c4#npm:1.7.0"],\ ["@types/webpack-cli", null],\ ["@types/webpack-dev-server", null],\ - ["webpack-cli", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:4.7.0"],\ + ["webpack-cli", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:4.10.0"],\ ["webpack-dev-server", null]\ ],\ "packagePeers": [\ @@ -5749,13 +5940,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:19b2f127812c1907b1a38c9a09197f204b62fe7eef6532a842d9e5edd0b340137d9842e41494462fa7a7e7606b2c2e959ccd71fd984fd23865c8a0d5c45bdc93#npm:1.4.0", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-1e1edbdbec/0/cache/@webpack-cli-serve-npm-1.4.0-1f566be693-0b063bed4c.zip/node_modules/@webpack-cli/serve/",\ + ["virtual:34efed012b94a6b85252453a92078909c7936bbac75dcf08c080bc5f149cfaf3b39611684067792df3401adf2ace2739eecc5c4437cbe28efb1e96965a318737#npm:1.7.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-bcc20db958/0/cache/@webpack-cli-serve-npm-1.7.0-2869abfdb4-d475e8effa.zip/node_modules/@webpack-cli/serve/",\ "packageDependencies": [\ - ["@webpack-cli/serve", "virtual:19b2f127812c1907b1a38c9a09197f204b62fe7eef6532a842d9e5edd0b340137d9842e41494462fa7a7e7606b2c2e959ccd71fd984fd23865c8a0d5c45bdc93#npm:1.4.0"],\ + ["@webpack-cli/serve", "virtual:34efed012b94a6b85252453a92078909c7936bbac75dcf08c080bc5f149cfaf3b39611684067792df3401adf2ace2739eecc5c4437cbe28efb1e96965a318737#npm:1.7.0"],\ ["@types/webpack-cli", null],\ ["@types/webpack-dev-server", null],\ - ["webpack-cli", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:4.7.0"],\ + ["webpack-cli", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:4.10.0"],\ ["webpack-dev-server", null]\ ],\ "packagePeers": [\ @@ -5766,13 +5957,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:1a6414db5d72e5953d80806e633b46faad6e5f2c7ad2c1288bd98b3a164f8f43066dc78438f2e5f9fa1fcb8ec7e3c46a8c1d103b486aff4adfc1ae573b2864e2#npm:1.4.0", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-2eb3ad9626/0/cache/@webpack-cli-serve-npm-1.4.0-1f566be693-0b063bed4c.zip/node_modules/@webpack-cli/serve/",\ + ["virtual:4175a1998bebcd57dbc55293cf336c1b31641f8ecd4870002ac7eb174c7b40cff0ab57ef6eb206c3bd0d8c5bd888361a5de2f5977db4fb35da02c81fca87988d#npm:1.7.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-c4acc949de/0/cache/@webpack-cli-serve-npm-1.7.0-2869abfdb4-d475e8effa.zip/node_modules/@webpack-cli/serve/",\ "packageDependencies": [\ - ["@webpack-cli/serve", "virtual:1a6414db5d72e5953d80806e633b46faad6e5f2c7ad2c1288bd98b3a164f8f43066dc78438f2e5f9fa1fcb8ec7e3c46a8c1d103b486aff4adfc1ae573b2864e2#npm:1.4.0"],\ + ["@webpack-cli/serve", "virtual:4175a1998bebcd57dbc55293cf336c1b31641f8ecd4870002ac7eb174c7b40cff0ab57ef6eb206c3bd0d8c5bd888361a5de2f5977db4fb35da02c81fca87988d#npm:1.7.0"],\ ["@types/webpack-cli", null],\ ["@types/webpack-dev-server", null],\ - ["webpack-cli", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:4.7.0"],\ + ["webpack-cli", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:4.10.0"],\ ["webpack-dev-server", null]\ ],\ "packagePeers": [\ @@ -5783,13 +5974,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:3ea0c3d01a91f33f2b24b3c62295ba50dc5ef053f064cdf07af43c620c6676ffb7047384e94d8051c46c3fcde0c51e60e90f847a877a41fe8c439f2527308476#npm:1.4.0", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-0fc3f02bbe/0/cache/@webpack-cli-serve-npm-1.4.0-1f566be693-0b063bed4c.zip/node_modules/@webpack-cli/serve/",\ + ["virtual:6ece23f624e19111012ab576f39c4a472e20eed34986fb51bd7f0fae3354bdbed57785b6a87ec3abdddea1300ef03566e7b501328d2855bdfae78bb45afd999a#npm:1.7.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-bebe0e9466/0/cache/@webpack-cli-serve-npm-1.7.0-2869abfdb4-d475e8effa.zip/node_modules/@webpack-cli/serve/",\ "packageDependencies": [\ - ["@webpack-cli/serve", "virtual:3ea0c3d01a91f33f2b24b3c62295ba50dc5ef053f064cdf07af43c620c6676ffb7047384e94d8051c46c3fcde0c51e60e90f847a877a41fe8c439f2527308476#npm:1.4.0"],\ + ["@webpack-cli/serve", "virtual:6ece23f624e19111012ab576f39c4a472e20eed34986fb51bd7f0fae3354bdbed57785b6a87ec3abdddea1300ef03566e7b501328d2855bdfae78bb45afd999a#npm:1.7.0"],\ ["@types/webpack-cli", null],\ ["@types/webpack-dev-server", null],\ - ["webpack-cli", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:4.7.0"],\ + ["webpack-cli", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:4.10.0"],\ ["webpack-dev-server", null]\ ],\ "packagePeers": [\ @@ -5800,13 +5991,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:3f2095d1b1ae86c3528b28bd8410f4d8bf5f6047b5402e111275cdabf96cfed69de5749998e5371b82993388087e5eee4fbc64b5a88b9a1f7cccaf495cab5b18#npm:1.4.0", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-cea108c2e7/0/cache/@webpack-cli-serve-npm-1.4.0-1f566be693-0b063bed4c.zip/node_modules/@webpack-cli/serve/",\ + ["virtual:74811ee2a4f4a044bbc3384892ec003917f77ffd3ba4a0a4a4976566e3d3a9892dae17c2a376c3754bc8a2b5905a0bf7b68afdc6745c4e4b30393ad52e7c218f#npm:1.7.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-8b014da59a/0/cache/@webpack-cli-serve-npm-1.7.0-2869abfdb4-d475e8effa.zip/node_modules/@webpack-cli/serve/",\ "packageDependencies": [\ - ["@webpack-cli/serve", "virtual:3f2095d1b1ae86c3528b28bd8410f4d8bf5f6047b5402e111275cdabf96cfed69de5749998e5371b82993388087e5eee4fbc64b5a88b9a1f7cccaf495cab5b18#npm:1.4.0"],\ + ["@webpack-cli/serve", "virtual:74811ee2a4f4a044bbc3384892ec003917f77ffd3ba4a0a4a4976566e3d3a9892dae17c2a376c3754bc8a2b5905a0bf7b68afdc6745c4e4b30393ad52e7c218f#npm:1.7.0"],\ ["@types/webpack-cli", null],\ ["@types/webpack-dev-server", null],\ - ["webpack-cli", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:4.7.0"],\ + ["webpack-cli", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:4.10.0"],\ ["webpack-dev-server", null]\ ],\ "packagePeers": [\ @@ -5817,13 +6008,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:3f317c00d6f5d4b597361fb23682c53767cae5897bd1a69b65d898f86e2e08dd74b2ebcc074d1f7c1982b7964d3e381749811b4553c03a4dac0923648c98cf5f#npm:1.4.0", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-98e86b5bb5/0/cache/@webpack-cli-serve-npm-1.4.0-1f566be693-0b063bed4c.zip/node_modules/@webpack-cli/serve/",\ + ["virtual:935dc59173fdc03ca4670c486f0c76a1eef433310cbe7b1946b7172abe7735de2cd4dd871bcb7833611c302a79129aa183ee43d22cd1b106b3d354eb878f34db#npm:1.7.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-4642cb3efd/0/cache/@webpack-cli-serve-npm-1.7.0-2869abfdb4-d475e8effa.zip/node_modules/@webpack-cli/serve/",\ "packageDependencies": [\ - ["@webpack-cli/serve", "virtual:3f317c00d6f5d4b597361fb23682c53767cae5897bd1a69b65d898f86e2e08dd74b2ebcc074d1f7c1982b7964d3e381749811b4553c03a4dac0923648c98cf5f#npm:1.4.0"],\ + ["@webpack-cli/serve", "virtual:935dc59173fdc03ca4670c486f0c76a1eef433310cbe7b1946b7172abe7735de2cd4dd871bcb7833611c302a79129aa183ee43d22cd1b106b3d354eb878f34db#npm:1.7.0"],\ ["@types/webpack-cli", null],\ ["@types/webpack-dev-server", null],\ - ["webpack-cli", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:4.7.0"],\ + ["webpack-cli", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:4.10.0"],\ ["webpack-dev-server", null]\ ],\ "packagePeers": [\ @@ -5834,13 +6025,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:6aa2f0205c2e84475d560e84447d4ad5469ae4a696d3c5fd04b106f0acfd3605d22dce182c31de5f85d3ce85becb1071c029b25e06429fdf284beed8e1f7b1be#npm:1.4.0", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-e297fc94ed/0/cache/@webpack-cli-serve-npm-1.4.0-1f566be693-0b063bed4c.zip/node_modules/@webpack-cli/serve/",\ + ["virtual:985f09af5cb428469830ec62dabd454c0015dd70acc17890be6a6d0ea98dbf659373b79717401755d1983f2c532b6532b7fb2dc71863897de70aa5f14f9d0d04#npm:1.7.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-0f760bfbf8/0/cache/@webpack-cli-serve-npm-1.7.0-2869abfdb4-d475e8effa.zip/node_modules/@webpack-cli/serve/",\ "packageDependencies": [\ - ["@webpack-cli/serve", "virtual:6aa2f0205c2e84475d560e84447d4ad5469ae4a696d3c5fd04b106f0acfd3605d22dce182c31de5f85d3ce85becb1071c029b25e06429fdf284beed8e1f7b1be#npm:1.4.0"],\ + ["@webpack-cli/serve", "virtual:985f09af5cb428469830ec62dabd454c0015dd70acc17890be6a6d0ea98dbf659373b79717401755d1983f2c532b6532b7fb2dc71863897de70aa5f14f9d0d04#npm:1.7.0"],\ ["@types/webpack-cli", null],\ ["@types/webpack-dev-server", null],\ - ["webpack-cli", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:4.7.0"],\ + ["webpack-cli", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:4.10.0"],\ ["webpack-dev-server", null]\ ],\ "packagePeers": [\ @@ -5851,13 +6042,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:712183b8256b1ad2b955dfd65392300c7ccc5ef7a8fe0263558a47bb329e60ecc3e2c46c83fde3173db60fa97b8e7ca90b297c7aee52a2ca3bece0c7577ba565#npm:1.4.0", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-a244450c39/0/cache/@webpack-cli-serve-npm-1.4.0-1f566be693-0b063bed4c.zip/node_modules/@webpack-cli/serve/",\ + ["virtual:9d0dcc8aee65ed745256a364f8e36ac9dbc5e6d5b9445277593171982a7d13a3d36086a6e47d37500ac199aacb3e258f9831aaeb7cddcb15c7e9639642fcacbd#npm:1.7.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-40bfd90085/0/cache/@webpack-cli-serve-npm-1.7.0-2869abfdb4-d475e8effa.zip/node_modules/@webpack-cli/serve/",\ "packageDependencies": [\ - ["@webpack-cli/serve", "virtual:712183b8256b1ad2b955dfd65392300c7ccc5ef7a8fe0263558a47bb329e60ecc3e2c46c83fde3173db60fa97b8e7ca90b297c7aee52a2ca3bece0c7577ba565#npm:1.4.0"],\ + ["@webpack-cli/serve", "virtual:9d0dcc8aee65ed745256a364f8e36ac9dbc5e6d5b9445277593171982a7d13a3d36086a6e47d37500ac199aacb3e258f9831aaeb7cddcb15c7e9639642fcacbd#npm:1.7.0"],\ ["@types/webpack-cli", null],\ ["@types/webpack-dev-server", null],\ - ["webpack-cli", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:4.7.0"],\ + ["webpack-cli", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:4.10.0"],\ ["webpack-dev-server", null]\ ],\ "packagePeers": [\ @@ -5868,13 +6059,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:87e4e29d0a073486e83efd3fb6ccb7905fedbae979a2f77544c4e7ebf5a6bf9cb2ec8ed5b3be875e151cdf6e30b7c3d3d2c148a069709cbac3edecc2314b098d#npm:1.4.0", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-960c087e04/0/cache/@webpack-cli-serve-npm-1.4.0-1f566be693-0b063bed4c.zip/node_modules/@webpack-cli/serve/",\ + ["virtual:9df3d550965966985c859dffeb145ff415e8fcb2873896d25632c194894a378def26f584691c0ca0ca8104e26903e02b9c92099ca226e0ccb3457a368fd255ef#npm:1.7.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-3c72af1159/0/cache/@webpack-cli-serve-npm-1.7.0-2869abfdb4-d475e8effa.zip/node_modules/@webpack-cli/serve/",\ "packageDependencies": [\ - ["@webpack-cli/serve", "virtual:87e4e29d0a073486e83efd3fb6ccb7905fedbae979a2f77544c4e7ebf5a6bf9cb2ec8ed5b3be875e151cdf6e30b7c3d3d2c148a069709cbac3edecc2314b098d#npm:1.4.0"],\ + ["@webpack-cli/serve", "virtual:9df3d550965966985c859dffeb145ff415e8fcb2873896d25632c194894a378def26f584691c0ca0ca8104e26903e02b9c92099ca226e0ccb3457a368fd255ef#npm:1.7.0"],\ ["@types/webpack-cli", null],\ ["@types/webpack-dev-server", null],\ - ["webpack-cli", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:4.7.0"],\ + ["webpack-cli", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:4.10.0"],\ ["webpack-dev-server", null]\ ],\ "packagePeers": [\ @@ -5885,13 +6076,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:8aa70e5ddf4bf177ef358ddf514e31e5ae37328cf6140c50a8bf949f5e5058766ef80c00056d13489dc3eb71d291591fef5996e6062a700bbf7c95a98b6e50c2#npm:1.4.0", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-dc6c8615e1/0/cache/@webpack-cli-serve-npm-1.4.0-1f566be693-0b063bed4c.zip/node_modules/@webpack-cli/serve/",\ + ["virtual:acdb8e14ef9eb9196d4af13197cbc00f56a0cfa91ffcfca23f74f2df718d36224ab880b4d106f1456e3bf1849ded71fe70916933ad9358ab636241d7b8027984#npm:1.7.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-4c98a8d931/0/cache/@webpack-cli-serve-npm-1.7.0-2869abfdb4-d475e8effa.zip/node_modules/@webpack-cli/serve/",\ "packageDependencies": [\ - ["@webpack-cli/serve", "virtual:8aa70e5ddf4bf177ef358ddf514e31e5ae37328cf6140c50a8bf949f5e5058766ef80c00056d13489dc3eb71d291591fef5996e6062a700bbf7c95a98b6e50c2#npm:1.4.0"],\ + ["@webpack-cli/serve", "virtual:acdb8e14ef9eb9196d4af13197cbc00f56a0cfa91ffcfca23f74f2df718d36224ab880b4d106f1456e3bf1849ded71fe70916933ad9358ab636241d7b8027984#npm:1.7.0"],\ ["@types/webpack-cli", null],\ ["@types/webpack-dev-server", null],\ - ["webpack-cli", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:4.7.0"],\ + ["webpack-cli", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:4.10.0"],\ ["webpack-dev-server", null]\ ],\ "packagePeers": [\ @@ -5902,13 +6093,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:98bf358c501855e8743ae991de414e6a786f1298755a0a8602d82cdaa5173e33d864020ac1fdf90829f00b3737844455215343b73ce27125126e9a2bb0f78747#npm:1.4.0", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-1a37528ed6/0/cache/@webpack-cli-serve-npm-1.4.0-1f566be693-0b063bed4c.zip/node_modules/@webpack-cli/serve/",\ + ["virtual:c84bbba271a142106fa43a6c30918bcb68b8ffe40ec8ec9fbbdf912c234bd9b4c0c245b7482459805420f66dbff2a3f45ac32c99fc211976094e5aa37e775d04#npm:1.7.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-e17c7cd9ae/0/cache/@webpack-cli-serve-npm-1.7.0-2869abfdb4-d475e8effa.zip/node_modules/@webpack-cli/serve/",\ "packageDependencies": [\ - ["@webpack-cli/serve", "virtual:98bf358c501855e8743ae991de414e6a786f1298755a0a8602d82cdaa5173e33d864020ac1fdf90829f00b3737844455215343b73ce27125126e9a2bb0f78747#npm:1.4.0"],\ + ["@webpack-cli/serve", "virtual:c84bbba271a142106fa43a6c30918bcb68b8ffe40ec8ec9fbbdf912c234bd9b4c0c245b7482459805420f66dbff2a3f45ac32c99fc211976094e5aa37e775d04#npm:1.7.0"],\ ["@types/webpack-cli", null],\ ["@types/webpack-dev-server", null],\ - ["webpack-cli", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:4.7.0"],\ + ["webpack-cli", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:4.10.0"],\ ["webpack-dev-server", null]\ ],\ "packagePeers": [\ @@ -5919,13 +6110,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:a52c57a2f219548b55c02cd38ccc5537df09cd5a76db0d2f06e70fdb8f2b0fc85a32f0e5a3a1b9f0e85d1c648d8aa7c8c60819690b44741a49cb4f5689f81e0f#npm:1.4.0", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-c41f864cd1/0/cache/@webpack-cli-serve-npm-1.4.0-1f566be693-0b063bed4c.zip/node_modules/@webpack-cli/serve/",\ + ["virtual:d238eb575f4cd9a888aa4eb2917d8fae65e681e5369648dbb5b122f52d88ccaa3442afd93636e31c7d7eddf83592b2d556886bd920ef1fb49d5e1fdc01bdb65a#npm:1.7.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-0401fb34eb/0/cache/@webpack-cli-serve-npm-1.7.0-2869abfdb4-d475e8effa.zip/node_modules/@webpack-cli/serve/",\ "packageDependencies": [\ - ["@webpack-cli/serve", "virtual:a52c57a2f219548b55c02cd38ccc5537df09cd5a76db0d2f06e70fdb8f2b0fc85a32f0e5a3a1b9f0e85d1c648d8aa7c8c60819690b44741a49cb4f5689f81e0f#npm:1.4.0"],\ + ["@webpack-cli/serve", "virtual:d238eb575f4cd9a888aa4eb2917d8fae65e681e5369648dbb5b122f52d88ccaa3442afd93636e31c7d7eddf83592b2d556886bd920ef1fb49d5e1fdc01bdb65a#npm:1.7.0"],\ ["@types/webpack-cli", null],\ ["@types/webpack-dev-server", null],\ - ["webpack-cli", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:4.7.0"],\ + ["webpack-cli", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:4.10.0"],\ ["webpack-dev-server", null]\ ],\ "packagePeers": [\ @@ -5936,13 +6127,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:e545141db94d121e901ffbb09d6c54f53f485ecdf99f9847aaf0f186594082f8121d89d8183c7bf05b17673cbb64c358037fbd69d06a0ad71096f07b595a2385#npm:1.4.0", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-222b31cce8/0/cache/@webpack-cli-serve-npm-1.4.0-1f566be693-0b063bed4c.zip/node_modules/@webpack-cli/serve/",\ + ["virtual:e77654db5e06aa7acc2ccb39bbe42ad01d4f84b5fa2c4b2f2b2f3f98b8f1431cefd61c15272506c621d0e3e3811a908ef41a296de87a4f13fb33d3b6bda5c641#npm:1.7.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-7278e279d7/0/cache/@webpack-cli-serve-npm-1.7.0-2869abfdb4-d475e8effa.zip/node_modules/@webpack-cli/serve/",\ "packageDependencies": [\ - ["@webpack-cli/serve", "virtual:e545141db94d121e901ffbb09d6c54f53f485ecdf99f9847aaf0f186594082f8121d89d8183c7bf05b17673cbb64c358037fbd69d06a0ad71096f07b595a2385#npm:1.4.0"],\ + ["@webpack-cli/serve", "virtual:e77654db5e06aa7acc2ccb39bbe42ad01d4f84b5fa2c4b2f2b2f3f98b8f1431cefd61c15272506c621d0e3e3811a908ef41a296de87a4f13fb33d3b6bda5c641#npm:1.7.0"],\ ["@types/webpack-cli", null],\ ["@types/webpack-dev-server", null],\ - ["webpack-cli", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:4.7.0"],\ + ["webpack-cli", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:4.10.0"],\ ["webpack-dev-server", null]\ ],\ "packagePeers": [\ @@ -5953,13 +6144,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:ef44dbe4a0887b3ad14f09b6347c15d0db82a8927990a2da2fd639dc590694850b3df878dd3cbc868013c58ae6dcaeda4d5d16b96817c60d1a31ea77f0c0c1a2#npm:1.4.0", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-bdef06d4c4/0/cache/@webpack-cli-serve-npm-1.4.0-1f566be693-0b063bed4c.zip/node_modules/@webpack-cli/serve/",\ + ["virtual:ef491f5c015f28129e937195e1c6fa23d14e66ca4df07e6709daefe0a2f0d86f1a5fe1c68a62002dc1b1e37a622490e05c98ff741f00256cb04373b854063ae6#npm:1.7.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-bcd87f5aa3/0/cache/@webpack-cli-serve-npm-1.7.0-2869abfdb4-d475e8effa.zip/node_modules/@webpack-cli/serve/",\ "packageDependencies": [\ - ["@webpack-cli/serve", "virtual:ef44dbe4a0887b3ad14f09b6347c15d0db82a8927990a2da2fd639dc590694850b3df878dd3cbc868013c58ae6dcaeda4d5d16b96817c60d1a31ea77f0c0c1a2#npm:1.4.0"],\ + ["@webpack-cli/serve", "virtual:ef491f5c015f28129e937195e1c6fa23d14e66ca4df07e6709daefe0a2f0d86f1a5fe1c68a62002dc1b1e37a622490e05c98ff741f00256cb04373b854063ae6#npm:1.7.0"],\ ["@types/webpack-cli", null],\ ["@types/webpack-dev-server", null],\ - ["webpack-cli", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:4.7.0"],\ + ["webpack-cli", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:4.10.0"],\ ["webpack-dev-server", null]\ ],\ "packagePeers": [\ @@ -5970,13 +6161,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:f163430d480c7d1a43ed44430ddc1d3b80854df746309b4d16766c3a534976b48dd4c8639aa68947f16c23f4b2d63d59f83ad577265bf920b9b42be9085d01c7#npm:1.4.0", {\ - "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-3f2d9f97eb/0/cache/@webpack-cli-serve-npm-1.4.0-1f566be693-0b063bed4c.zip/node_modules/@webpack-cli/serve/",\ + ["virtual:f5022bce7a2b84ada5f5e52d05e3565059aa737acfdbe305e0c6acf0a9f5fac16e8895490aed61cec2224735c77717e171688a7425b8ec7bbb276a9954dfcbbb#npm:1.7.0", {\ + "packageLocation": "./.yarn/__virtual__/@webpack-cli-serve-virtual-4a633bdd0e/0/cache/@webpack-cli-serve-npm-1.7.0-2869abfdb4-d475e8effa.zip/node_modules/@webpack-cli/serve/",\ "packageDependencies": [\ - ["@webpack-cli/serve", "virtual:f163430d480c7d1a43ed44430ddc1d3b80854df746309b4d16766c3a534976b48dd4c8639aa68947f16c23f4b2d63d59f83ad577265bf920b9b42be9085d01c7#npm:1.4.0"],\ + ["@webpack-cli/serve", "virtual:f5022bce7a2b84ada5f5e52d05e3565059aa737acfdbe305e0c6acf0a9f5fac16e8895490aed61cec2224735c77717e171688a7425b8ec7bbb276a9954dfcbbb#npm:1.7.0"],\ ["@types/webpack-cli", null],\ ["@types/webpack-dev-server", null],\ - ["webpack-cli", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:4.7.0"],\ + ["webpack-cli", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:4.10.0"],\ ["webpack-dev-server", null]\ ],\ "packagePeers": [\ @@ -6016,12 +6207,12 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["accepts", [\ - ["npm:1.3.7", {\ - "packageLocation": "./.yarn/cache/accepts-npm-1.3.7-0dc9de65aa-27fc8060ff.zip/node_modules/accepts/",\ + ["npm:1.3.8", {\ + "packageLocation": "./.yarn/cache/accepts-npm-1.3.8-9a812371c9-50c43d32e7.zip/node_modules/accepts/",\ "packageDependencies": [\ - ["accepts", "npm:1.3.7"],\ - ["mime-types", "npm:2.1.30"],\ - ["negotiator", "npm:0.6.2"]\ + ["accepts", "npm:1.3.8"],\ + ["mime-types", "npm:2.1.35"],\ + ["negotiator", "npm:0.6.3"]\ ],\ "linkType": "HARD"\ }]\ @@ -6034,35 +6225,28 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:8.7.1", {\ - "packageLocation": "./.yarn/cache/acorn-npm-8.7.1-7c7a019990-aca0aabf98.zip/node_modules/acorn/",\ - "packageDependencies": [\ - ["acorn", "npm:8.7.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:8.8.2", {\ - "packageLocation": "./.yarn/cache/acorn-npm-8.8.2-9d518fd7d3-f790b99a1b.zip/node_modules/acorn/",\ + ["npm:8.10.0", {\ + "packageLocation": "./.yarn/cache/acorn-npm-8.10.0-2230c9e83e-538ba38af0.zip/node_modules/acorn/",\ "packageDependencies": [\ - ["acorn", "npm:8.8.2"]\ + ["acorn", "npm:8.10.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["acorn-import-assertions", [\ - ["npm:1.8.0", {\ - "packageLocation": "./.yarn/cache/acorn-import-assertions-npm-1.8.0-e9a9d57e27-5c4cf7c850.zip/node_modules/acorn-import-assertions/",\ + ["npm:1.9.0", {\ + "packageLocation": "./.yarn/cache/acorn-import-assertions-npm-1.9.0-22f56507c7-944fb2659d.zip/node_modules/acorn-import-assertions/",\ "packageDependencies": [\ - ["acorn-import-assertions", "npm:1.8.0"]\ + ["acorn-import-assertions", "npm:1.9.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:1.8.0", {\ - "packageLocation": "./.yarn/__virtual__/acorn-import-assertions-virtual-28b7687b82/0/cache/acorn-import-assertions-npm-1.8.0-e9a9d57e27-5c4cf7c850.zip/node_modules/acorn-import-assertions/",\ + ["virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:1.9.0", {\ + "packageLocation": "./.yarn/__virtual__/acorn-import-assertions-virtual-f27fdba993/0/cache/acorn-import-assertions-npm-1.9.0-22f56507c7-944fb2659d.zip/node_modules/acorn-import-assertions/",\ "packageDependencies": [\ - ["acorn-import-assertions", "virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:1.8.0"],\ + ["acorn-import-assertions", "virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:1.9.0"],\ ["@types/acorn", null],\ - ["acorn", "npm:8.8.2"]\ + ["acorn", "npm:8.10.0"]\ ],\ "packagePeers": [\ "@types/acorn",\ @@ -6072,17 +6256,17 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["acorn-jsx", [\ - ["npm:5.3.1", {\ - "packageLocation": "./.yarn/cache/acorn-jsx-npm-5.3.1-6ba8185d02-daf441a9d7.zip/node_modules/acorn-jsx/",\ + ["npm:5.3.2", {\ + "packageLocation": "./.yarn/cache/acorn-jsx-npm-5.3.2-d7594599ea-c3d3b2a89c.zip/node_modules/acorn-jsx/",\ "packageDependencies": [\ - ["acorn-jsx", "npm:5.3.1"]\ + ["acorn-jsx", "npm:5.3.2"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:8d8ea5d1e3376905d0290522290f47c29213c64d936d96293d758a315829a3cf4c6a5b8ffc1cfee36c3db08f700ad3aaf0711cc5d406a7218c275de6d74effa9#npm:5.3.1", {\ - "packageLocation": "./.yarn/__virtual__/acorn-jsx-virtual-72d2078d8a/0/cache/acorn-jsx-npm-5.3.1-6ba8185d02-daf441a9d7.zip/node_modules/acorn-jsx/",\ + ["virtual:8d8ea5d1e3376905d0290522290f47c29213c64d936d96293d758a315829a3cf4c6a5b8ffc1cfee36c3db08f700ad3aaf0711cc5d406a7218c275de6d74effa9#npm:5.3.2", {\ + "packageLocation": "./.yarn/__virtual__/acorn-jsx-virtual-6934646a20/0/cache/acorn-jsx-npm-5.3.2-d7594599ea-c3d3b2a89c.zip/node_modules/acorn-jsx/",\ "packageDependencies": [\ - ["acorn-jsx", "virtual:8d8ea5d1e3376905d0290522290f47c29213c64d936d96293d758a315829a3cf4c6a5b8ffc1cfee36c3db08f700ad3aaf0711cc5d406a7218c275de6d74effa9#npm:5.3.1"],\ + ["acorn-jsx", "virtual:8d8ea5d1e3376905d0290522290f47c29213c64d936d96293d758a315829a3cf4c6a5b8ffc1cfee36c3db08f700ad3aaf0711cc5d406a7218c275de6d74effa9#npm:5.3.2"],\ ["@types/acorn", null],\ ["acorn", "npm:7.4.1"]\ ],\ @@ -6098,18 +6282,16 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/agent-base-npm-6.0.2-428f325a93-f52b6872cc.zip/node_modules/agent-base/",\ "packageDependencies": [\ ["agent-base", "npm:6.0.2"],\ - ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"]\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["agentkeepalive", [\ - ["npm:4.1.4", {\ - "packageLocation": "./.yarn/cache/agentkeepalive-npm-4.1.4-4d5b41b4c1-d49c24d4b3.zip/node_modules/agentkeepalive/",\ + ["npm:4.5.0", {\ + "packageLocation": "./.yarn/cache/agentkeepalive-npm-4.5.0-f237b580b2-13278cd5b1.zip/node_modules/agentkeepalive/",\ "packageDependencies": [\ - ["agentkeepalive", "npm:4.1.4"],\ - ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"],\ - ["depd", "npm:1.1.2"],\ + ["agentkeepalive", "npm:4.5.0"],\ ["humanize-ms", "npm:1.2.1"]\ ],\ "linkType": "HARD"\ @@ -6138,10 +6320,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:8.4.0", {\ - "packageLocation": "./.yarn/cache/ajv-npm-8.4.0-1d671a4d5f-05d5114c05.zip/node_modules/ajv/",\ + ["npm:8.12.0", {\ + "packageLocation": "./.yarn/cache/ajv-npm-8.12.0-3bf6e30741-4dc13714e3.zip/node_modules/ajv/",\ "packageDependencies": [\ - ["ajv", "npm:8.4.0"],\ + ["ajv", "npm:8.12.0"],\ ["fast-deep-equal", "npm:3.1.3"],\ ["json-schema-traverse", "npm:1.0.0"],\ ["require-from-string", "npm:2.0.2"],\ @@ -6158,10 +6340,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "SOFT"\ }],\ - ["virtual:8704647575acf2f5b19fccfcb0acebacd9c94259ebe9afcfaf4c053812fd896f10775930ee5a5949e20833a61503d2cd22aa259cbe69729f6a192de4bf43dc00#npm:3.5.2", {\ - "packageLocation": "./.yarn/__virtual__/ajv-keywords-virtual-8b373d3ee8/0/cache/ajv-keywords-npm-3.5.2-0e391b70e2-7dc5e59316.zip/node_modules/ajv-keywords/",\ + ["virtual:f2b36937f163b579815d3163513b3330d7a31aaf0599eea66346382b8838395c613f4204e9809cc2ff6bba09c17ab0c34b37deadcb147de7e2f5e535d6ccc245#npm:3.5.2", {\ + "packageLocation": "./.yarn/__virtual__/ajv-keywords-virtual-80fc73abbe/0/cache/ajv-keywords-npm-3.5.2-0e391b70e2-7dc5e59316.zip/node_modules/ajv-keywords/",\ "packageDependencies": [\ - ["ajv-keywords", "virtual:8704647575acf2f5b19fccfcb0acebacd9c94259ebe9afcfaf4c053812fd896f10775930ee5a5949e20833a61503d2cd22aa259cbe69729f6a192de4bf43dc00#npm:3.5.2"],\ + ["ajv-keywords", "virtual:f2b36937f163b579815d3163513b3330d7a31aaf0599eea66346382b8838395c613f4204e9809cc2ff6bba09c17ab0c34b37deadcb147de7e2f5e535d6ccc245#npm:3.5.2"],\ ["@types/ajv", null],\ ["ajv", "npm:6.12.6"]\ ],\ @@ -6173,10 +6355,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["ansi-colors", [\ - ["npm:4.1.1", {\ - "packageLocation": "./.yarn/cache/ansi-colors-npm-4.1.1-97ad42f223-138d04a510.zip/node_modules/ansi-colors/",\ + ["npm:4.1.3", {\ + "packageLocation": "./.yarn/cache/ansi-colors-npm-4.1.3-8ffd0ae6c7-a9c2ec8420.zip/node_modules/ansi-colors/",\ "packageDependencies": [\ - ["ansi-colors", "npm:4.1.1"]\ + ["ansi-colors", "npm:4.1.3"]\ ],\ "linkType": "HARD"\ }]\ @@ -6189,26 +6371,26 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/ansi-regex-npm-3.0.1-01f44078a3-09daf180c5.zip/node_modules/ansi-regex/",\ + ["npm:5.0.1", {\ + "packageLocation": "./.yarn/cache/ansi-regex-npm-5.0.1-c963a48615-2aa4bb54ca.zip/node_modules/ansi-regex/",\ "packageDependencies": [\ - ["ansi-regex", "npm:3.0.1"]\ + ["ansi-regex", "npm:5.0.1"]\ ],\ "linkType": "HARD"\ }],\ - ["npm:5.0.1", {\ - "packageLocation": "./.yarn/cache/ansi-regex-npm-5.0.1-c963a48615-2aa4bb54ca.zip/node_modules/ansi-regex/",\ + ["npm:6.0.1", {\ + "packageLocation": "./.yarn/cache/ansi-regex-npm-6.0.1-8d663a607d-1ff8b7667c.zip/node_modules/ansi-regex/",\ "packageDependencies": [\ - ["ansi-regex", "npm:5.0.1"]\ + ["ansi-regex", "npm:6.0.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["ansi-sequence-parser", [\ - ["npm:1.1.0", {\ - "packageLocation": "./.yarn/cache/ansi-sequence-parser-npm-1.1.0-166d719777-75f4d3a4c5.zip/node_modules/ansi-sequence-parser/",\ + ["npm:1.1.1", {\ + "packageLocation": "./.yarn/cache/ansi-sequence-parser-npm-1.1.1-4cfd5b85e2-ead5b15c59.zip/node_modules/ansi-sequence-parser/",\ "packageDependencies": [\ - ["ansi-sequence-parser", "npm:1.1.0"]\ + ["ansi-sequence-parser", "npm:1.1.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -6229,15 +6411,22 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["color-convert", "npm:2.0.1"]\ ],\ "linkType": "HARD"\ + }],\ + ["npm:6.2.1", {\ + "packageLocation": "./.yarn/cache/ansi-styles-npm-6.2.1-d43647018c-ef940f2f0c.zip/node_modules/ansi-styles/",\ + "packageDependencies": [\ + ["ansi-styles", "npm:6.2.1"]\ + ],\ + "linkType": "HARD"\ }]\ ]],\ ["anymatch", [\ - ["npm:3.1.2", {\ - "packageLocation": "./.yarn/cache/anymatch-npm-3.1.2-1d5471acfa-985163db22.zip/node_modules/anymatch/",\ + ["npm:3.1.3", {\ + "packageLocation": "./.yarn/cache/anymatch-npm-3.1.3-bc81d103b1-3e044fd6d1.zip/node_modules/anymatch/",\ "packageDependencies": [\ - ["anymatch", "npm:3.1.2"],\ + ["anymatch", "npm:3.1.3"],\ ["normalize-path", "npm:3.0.0"],\ - ["picomatch", "npm:2.2.3"]\ + ["picomatch", "npm:2.3.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -6247,7 +6436,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/append-transform-npm-2.0.0-99bd7d69ed-f26f393bf7.zip/node_modules/append-transform/",\ "packageDependencies": [\ ["append-transform", "npm:2.0.0"],\ - ["default-require-extensions", "npm:3.0.0"]\ + ["default-require-extensions", "npm:3.0.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -6259,6 +6448,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["aproba", "npm:1.2.0"]\ ],\ "linkType": "HARD"\ + }],\ + ["npm:2.0.0", {\ + "packageLocation": "./.yarn/cache/aproba-npm-2.0.0-8716bcfde6-5615cadcfb.zip/node_modules/aproba/",\ + "packageDependencies": [\ + ["aproba", "npm:2.0.0"]\ + ],\ + "linkType": "HARD"\ }]\ ]],\ ["archy", [\ @@ -6271,12 +6467,21 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["are-we-there-yet", [\ - ["npm:1.1.5", {\ - "packageLocation": "./.yarn/cache/are-we-there-yet-npm-1.1.5-b8418908b0-9a746b1dbc.zip/node_modules/are-we-there-yet/",\ + ["npm:1.1.7", {\ + "packageLocation": "./.yarn/cache/are-we-there-yet-npm-1.1.7-db9f39924e-70d251719c.zip/node_modules/are-we-there-yet/",\ + "packageDependencies": [\ + ["are-we-there-yet", "npm:1.1.7"],\ + ["delegates", "npm:1.0.0"],\ + ["readable-stream", "npm:2.3.8"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:3.0.1", {\ + "packageLocation": "./.yarn/cache/are-we-there-yet-npm-3.0.1-3395b1512f-52590c2486.zip/node_modules/are-we-there-yet/",\ "packageDependencies": [\ - ["are-we-there-yet", "npm:1.1.5"],\ + ["are-we-there-yet", "npm:3.0.1"],\ ["delegates", "npm:1.0.0"],\ - ["readable-stream", "npm:2.3.7"]\ + ["readable-stream", "npm:3.6.2"]\ ],\ "linkType": "HARD"\ }]\ @@ -6300,16 +6505,27 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["array-buffer-byte-length", [\ + ["npm:1.0.0", {\ + "packageLocation": "./.yarn/cache/array-buffer-byte-length-npm-1.0.0-331671f28a-044e101ce1.zip/node_modules/array-buffer-byte-length/",\ + "packageDependencies": [\ + ["array-buffer-byte-length", "npm:1.0.0"],\ + ["call-bind", "npm:1.0.2"],\ + ["is-array-buffer", "npm:3.0.2"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["array-includes", [\ - ["npm:3.1.3", {\ - "packageLocation": "./.yarn/cache/array-includes-npm-3.1.3-5f58cf4c82-eaab881241.zip/node_modules/array-includes/",\ + ["npm:3.1.6", {\ + "packageLocation": "./.yarn/cache/array-includes-npm-3.1.6-d0ff9d248b-f22f8cd8ba.zip/node_modules/array-includes/",\ "packageDependencies": [\ - ["array-includes", "npm:3.1.3"],\ + ["array-includes", "npm:3.1.6"],\ ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.1.3"],\ - ["es-abstract", "npm:1.18.0"],\ - ["get-intrinsic", "npm:1.1.1"],\ - ["is-string", "npm:1.0.6"]\ + ["define-properties", "npm:1.2.0"],\ + ["es-abstract", "npm:1.22.1"],\ + ["get-intrinsic", "npm:1.2.1"],\ + ["is-string", "npm:1.0.7"]\ ],\ "linkType": "HARD"\ }]\ @@ -6323,14 +6539,57 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["array.prototype.findlastindex", [\ + ["npm:1.2.2", {\ + "packageLocation": "./.yarn/cache/array.prototype.findlastindex-npm-1.2.2-dc5ee7bf67-8a166359f6.zip/node_modules/array.prototype.findlastindex/",\ + "packageDependencies": [\ + ["array.prototype.findlastindex", "npm:1.2.2"],\ + ["call-bind", "npm:1.0.2"],\ + ["define-properties", "npm:1.2.0"],\ + ["es-abstract", "npm:1.22.1"],\ + ["es-shim-unscopables", "npm:1.0.0"],\ + ["get-intrinsic", "npm:1.2.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["array.prototype.flat", [\ - ["npm:1.2.4", {\ - "packageLocation": "./.yarn/cache/array.prototype.flat-npm-1.2.4-7b3397fc11-1ec5d9887a.zip/node_modules/array.prototype.flat/",\ + ["npm:1.3.1", {\ + "packageLocation": "./.yarn/cache/array.prototype.flat-npm-1.3.1-e9a9e389c0-5a8415949d.zip/node_modules/array.prototype.flat/",\ + "packageDependencies": [\ + ["array.prototype.flat", "npm:1.3.1"],\ + ["call-bind", "npm:1.0.2"],\ + ["define-properties", "npm:1.2.0"],\ + ["es-abstract", "npm:1.22.1"],\ + ["es-shim-unscopables", "npm:1.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["array.prototype.flatmap", [\ + ["npm:1.3.1", {\ + "packageLocation": "./.yarn/cache/array.prototype.flatmap-npm-1.3.1-c65186ca34-8c1c43a499.zip/node_modules/array.prototype.flatmap/",\ + "packageDependencies": [\ + ["array.prototype.flatmap", "npm:1.3.1"],\ + ["call-bind", "npm:1.0.2"],\ + ["define-properties", "npm:1.2.0"],\ + ["es-abstract", "npm:1.22.1"],\ + ["es-shim-unscopables", "npm:1.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["arraybuffer.prototype.slice", [\ + ["npm:1.0.1", {\ + "packageLocation": "./.yarn/cache/arraybuffer.prototype.slice-npm-1.0.1-d44cb5acc0-e3e9b2a3e9.zip/node_modules/arraybuffer.prototype.slice/",\ "packageDependencies": [\ - ["array.prototype.flat", "npm:1.2.4"],\ + ["arraybuffer.prototype.slice", "npm:1.0.1"],\ + ["array-buffer-byte-length", "npm:1.0.0"],\ ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.1.3"],\ - ["es-abstract", "npm:1.18.0"]\ + ["define-properties", "npm:1.2.0"],\ + ["get-intrinsic", "npm:1.2.1"],\ + ["is-array-buffer", "npm:3.0.2"],\ + ["is-shared-array-buffer", "npm:1.0.2"]\ ],\ "linkType": "HARD"\ }]\ @@ -6340,7 +6599,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/ast-types-npm-0.14.2-43c4ac4b0d-8674a77307.zip/node_modules/ast-types/",\ "packageDependencies": [\ ["ast-types", "npm:0.14.2"],\ - ["tslib", "npm:2.2.0"]\ + ["tslib", "npm:2.6.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -6354,12 +6613,21 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["available-typed-arrays", [\ + ["npm:1.0.5", {\ + "packageLocation": "./.yarn/cache/available-typed-arrays-npm-1.0.5-88f321e4d3-20eb47b3ce.zip/node_modules/available-typed-arrays/",\ + "packageDependencies": [\ + ["available-typed-arrays", "npm:1.0.5"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["axios", [\ ["npm:0.21.4", {\ "packageLocation": "./.yarn/cache/axios-npm-0.21.4-e278873748-44245f24ac.zip/node_modules/axios/",\ "packageDependencies": [\ ["axios", "npm:0.21.4"],\ - ["follow-redirects", "virtual:a313c479c5c7e54d9ec8fbeeea69ff640f56b8989ea2dff42351a3fa5c4061fb80a52d8ede0f0826a181a216820c2d2c3f15da881e7fdf31cef1c446e42f0c45#npm:1.14.9"]\ + ["follow-redirects", "virtual:a313c479c5c7e54d9ec8fbeeea69ff640f56b8989ea2dff42351a3fa5c4061fb80a52d8ede0f0826a181a216820c2d2c3f15da881e7fdf31cef1c446e42f0c45#npm:1.15.2"]\ ],\ "linkType": "HARD"\ }]\ @@ -6435,7 +6703,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["bl", "npm:4.1.0"],\ ["buffer", "npm:5.7.1"],\ ["inherits", "npm:2.0.4"],\ - ["readable-stream", "npm:3.6.0"]\ + ["readable-stream", "npm:3.6.2"]\ ],\ "linkType": "HARD"\ }]\ @@ -6448,29 +6716,31 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:5.2.0", {\ - "packageLocation": "./.yarn/cache/bn.js-npm-5.2.0-11748c0b07-6117170393.zip/node_modules/bn.js/",\ + ["npm:5.2.1", {\ + "packageLocation": "./.yarn/cache/bn.js-npm-5.2.1-dc952b1965-3dd8c8d380.zip/node_modules/bn.js/",\ "packageDependencies": [\ - ["bn.js", "npm:5.2.0"]\ + ["bn.js", "npm:5.2.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["body-parser", [\ - ["npm:1.19.0", {\ - "packageLocation": "./.yarn/cache/body-parser-npm-1.19.0-6e177cabfa-490231b4c8.zip/node_modules/body-parser/",\ + ["npm:1.20.2", {\ + "packageLocation": "./.yarn/cache/body-parser-npm-1.20.2-44738662cf-14d37ec638.zip/node_modules/body-parser/",\ "packageDependencies": [\ - ["body-parser", "npm:1.19.0"],\ - ["bytes", "npm:3.1.0"],\ - ["content-type", "npm:1.0.4"],\ - ["debug", "virtual:fa0173d26738ef894de6f639abae81ef8c1dc3fb742f450a622367c86186d9f4d23dbd3bcc38bbe27382c39f87e11cad6137dd70480a36e752eee25974706e2c#npm:2.6.9"],\ - ["depd", "npm:1.1.2"],\ - ["http-errors", "npm:1.7.2"],\ + ["body-parser", "npm:1.20.2"],\ + ["bytes", "npm:3.1.2"],\ + ["content-type", "npm:1.0.5"],\ + ["debug", "virtual:44738662cf800ff2863ba9baeabb817b24a959a14f86e20a31680e5dc79a4a738f7ceb7dca32753d579fae475aa061dffad8228a3391f3a9546b122f077e29a5#npm:2.6.9"],\ + ["depd", "npm:2.0.0"],\ + ["destroy", "npm:1.2.0"],\ + ["http-errors", "npm:2.0.0"],\ ["iconv-lite", "npm:0.4.24"],\ - ["on-finished", "npm:2.3.0"],\ - ["qs", "npm:6.7.0"],\ - ["raw-body", "npm:2.4.0"],\ - ["type-is", "npm:1.6.18"]\ + ["on-finished", "npm:2.4.1"],\ + ["qs", "npm:6.11.0"],\ + ["raw-body", "npm:2.5.2"],\ + ["type-is", "npm:1.6.18"],\ + ["unpipe", "npm:1.0.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -6514,15 +6784,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["browserslist", [\ - ["npm:4.16.6", {\ - "packageLocation": "./.yarn/cache/browserslist-npm-4.16.6-a20cef1ca7-3dffc86892.zip/node_modules/browserslist/",\ + ["npm:4.21.10", {\ + "packageLocation": "./.yarn/cache/browserslist-npm-4.21.10-e2170a875b-1e27c0f111.zip/node_modules/browserslist/",\ "packageDependencies": [\ - ["browserslist", "npm:4.16.6"],\ - ["caniuse-lite", "npm:1.0.30001228"],\ - ["colorette", "npm:1.2.2"],\ - ["electron-to-chromium", "npm:1.3.734"],\ - ["escalade", "npm:3.1.1"],\ - ["node-releases", "npm:1.1.72"]\ + ["browserslist", "npm:4.21.10"],\ + ["caniuse-lite", "npm:1.0.30001520"],\ + ["electron-to-chromium", "npm:1.4.491"],\ + ["node-releases", "npm:2.0.13"],\ + ["update-browserslist-db", "virtual:e2170a875bba2f8fa9e93e47c65f2f250097e101a59d95ea6fd852f32965e8cd6cef3b5662aa7295279d5bc60c9a612ddb8515c7dd1b7e8fb9984dee1823e7d6#npm:1.0.11"]\ ],\ "linkType": "HARD"\ }]\ @@ -6548,45 +6817,40 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["buffer-from", [\ - ["npm:1.1.1", {\ - "packageLocation": "./.yarn/cache/buffer-from-npm-1.1.1-22917b8ed8-ccc53b6973.zip/node_modules/buffer-from/",\ + ["npm:1.1.2", {\ + "packageLocation": "./.yarn/cache/buffer-from-npm-1.1.2-03d2f20d7e-0448524a56.zip/node_modules/buffer-from/",\ "packageDependencies": [\ - ["buffer-from", "npm:1.1.1"]\ + ["buffer-from", "npm:1.1.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["bytes", [\ - ["npm:3.1.0", {\ - "packageLocation": "./.yarn/cache/bytes-npm-3.1.0-19c5b15405-7c3b21c5d9.zip/node_modules/bytes/",\ + ["npm:3.1.2", {\ + "packageLocation": "./.yarn/cache/bytes-npm-3.1.2-28b8643004-e4bcd3948d.zip/node_modules/bytes/",\ "packageDependencies": [\ - ["bytes", "npm:3.1.0"]\ + ["bytes", "npm:3.1.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["cacache", [\ - ["npm:15.1.0", {\ - "packageLocation": "./.yarn/cache/cacache-npm-15.1.0-8adc312a26-e63d1651cf.zip/node_modules/cacache/",\ - "packageDependencies": [\ - ["cacache", "npm:15.1.0"],\ - ["@npmcli/move-file", "npm:1.1.2"],\ - ["chownr", "npm:2.0.0"],\ - ["fs-minipass", "npm:2.1.0"],\ - ["glob", "npm:7.2.0"],\ - ["infer-owner", "npm:1.0.4"],\ - ["lru-cache", "npm:6.0.0"],\ - ["minipass", "npm:3.1.3"],\ + ["npm:17.1.4", {\ + "packageLocation": "./.yarn/cache/cacache-npm-17.1.4-51ef53d0a8-b7751df756.zip/node_modules/cacache/",\ + "packageDependencies": [\ + ["cacache", "npm:17.1.4"],\ + ["@npmcli/fs", "npm:3.1.0"],\ + ["fs-minipass", "npm:3.0.3"],\ + ["glob", "npm:10.3.3"],\ + ["lru-cache", "npm:7.18.3"],\ + ["minipass", "npm:7.0.3"],\ ["minipass-collect", "npm:1.0.2"],\ ["minipass-flush", "npm:1.0.5"],\ ["minipass-pipeline", "npm:1.2.4"],\ - ["mkdirp", "npm:1.0.4"],\ ["p-map", "npm:4.0.0"],\ - ["promise-inflight", "virtual:8adc312a262cccdf4915241955289bfb26ac0e1ebab1cc568f36b50651793fc358863efdf800291c5b43d0603acbe4f022b374e6efe3a568ff4c9e5cf2f8b099#npm:1.0.1"],\ - ["rimraf", "npm:3.0.2"],\ - ["ssri", "npm:8.0.1"],\ - ["tar", "npm:6.1.11"],\ - ["unique-filename", "npm:1.1.1"]\ + ["ssri", "npm:10.0.5"],\ + ["tar", "npm:6.1.15"],\ + ["unique-filename", "npm:3.0.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -6596,8 +6860,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/cache-content-type-npm-1.0.1-f709f8c309-18db4d5945.zip/node_modules/cache-content-type/",\ "packageDependencies": [\ ["cache-content-type", "npm:1.0.1"],\ - ["mime-types", "npm:2.1.30"],\ - ["ylru", "npm:1.2.1"]\ + ["mime-types", "npm:2.1.35"],\ + ["ylru", "npm:1.3.2"]\ ],\ "linkType": "HARD"\ }]\ @@ -6621,7 +6885,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["call-bind", "npm:1.0.2"],\ ["function-bind", "npm:1.1.1"],\ - ["get-intrinsic", "npm:1.1.1"]\ + ["get-intrinsic", "npm:1.2.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -6645,10 +6909,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["caniuse-lite", [\ - ["npm:1.0.30001228", {\ - "packageLocation": "./.yarn/cache/caniuse-lite-npm-1.0.30001228-80662cadf9-d7ea2234d3.zip/node_modules/caniuse-lite/",\ + ["npm:1.0.30001520", {\ + "packageLocation": "./.yarn/cache/caniuse-lite-npm-1.0.30001520-83db97126d-59991ad8f3.zip/node_modules/caniuse-lite/",\ "packageDependencies": [\ - ["caniuse-lite", "npm:1.0.30001228"]\ + ["caniuse-lite", "npm:1.0.30001520"]\ ],\ "linkType": "HARD"\ }]\ @@ -6679,7 +6943,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/chokidar-npm-3.5.3-c5f9b0a56a-b49fcde401.zip/node_modules/chokidar/",\ "packageDependencies": [\ ["chokidar", "npm:3.5.3"],\ - ["anymatch", "npm:3.1.2"],\ + ["anymatch", "npm:3.1.3"],\ ["braces", "npm:3.0.2"],\ ["fsevents", "patch:fsevents@npm%3A2.3.2#~builtin::version=2.3.2&hash=df0bf1"],\ ["glob-parent", "npm:5.1.2"],\ @@ -6730,8 +6994,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/cliui-npm-6.0.0-488b2414c6-4fcfd26d29.zip/node_modules/cliui/",\ "packageDependencies": [\ ["cliui", "npm:6.0.0"],\ - ["string-width", "npm:4.2.2"],\ - ["strip-ansi", "npm:6.0.0"],\ + ["string-width", "npm:4.2.3"],\ + ["strip-ansi", "npm:6.0.1"],\ ["wrap-ansi", "npm:6.2.0"]\ ],\ "linkType": "HARD"\ @@ -6740,8 +7004,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/cliui-npm-7.0.4-d6b8a9edb6-ce2e8f578a.zip/node_modules/cliui/",\ "packageDependencies": [\ ["cliui", "npm:7.0.4"],\ - ["string-width", "npm:4.2.2"],\ - ["strip-ansi", "npm:6.0.0"],\ + ["string-width", "npm:4.2.3"],\ + ["strip-ansi", "npm:6.0.1"],\ ["wrap-ansi", "npm:7.0.0"]\ ],\ "linkType": "HARD"\ @@ -6774,8 +7038,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["co-body", "npm:6.1.0"],\ ["inflation", "npm:2.0.0"],\ - ["qs", "npm:6.10.1"],\ - ["raw-body", "npm:2.4.1"],\ + ["qs", "npm:6.11.2"],\ + ["raw-body", "npm:2.5.2"],\ ["type-is", "npm:1.6.18"]\ ],\ "linkType": "HARD"\ @@ -6824,11 +7088,20 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["color-support", [\ + ["npm:1.1.3", {\ + "packageLocation": "./.yarn/cache/color-support-npm-1.1.3-3be5c53455-9b73568176.zip/node_modules/color-support/",\ + "packageDependencies": [\ + ["color-support", "npm:1.1.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["colorette", [\ - ["npm:1.2.2", {\ - "packageLocation": "./.yarn/cache/colorette-npm-1.2.2-da75bd0b32-69fec14dda.zip/node_modules/colorette/",\ + ["npm:2.0.20", {\ + "packageLocation": "./.yarn/cache/colorette-npm-2.0.20-692d428726-0c016fea2b.zip/node_modules/colorette/",\ "packageDependencies": [\ - ["colorette", "npm:1.2.2"]\ + ["colorette", "npm:2.0.20"]\ ],\ "linkType": "HARD"\ }]\ @@ -6881,7 +7154,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/connect-npm-3.7.0-25ccb085cc-96e1c4effc.zip/node_modules/connect/",\ "packageDependencies": [\ ["connect", "npm:3.7.0"],\ - ["debug", "virtual:fa0173d26738ef894de6f639abae81ef8c1dc3fb742f450a622367c86186d9f4d23dbd3bcc38bbe27382c39f87e11cad6137dd70480a36e752eee25974706e2c#npm:2.6.9"],\ + ["debug", "virtual:44738662cf800ff2863ba9baeabb817b24a959a14f86e20a31680e5dc79a4a738f7ceb7dca32753d579fae475aa061dffad8228a3391f3a9546b122f077e29a5#npm:2.6.9"],\ ["finalhandler", "npm:1.1.2"],\ ["parseurl", "npm:1.3.3"],\ ["utils-merge", "npm:1.0.1"]\ @@ -6898,51 +7171,39 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ - ["contains-path", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/contains-path-npm-1.0.0-09f0b1ba0b-18c878d65f.zip/node_modules/contains-path/",\ - "packageDependencies": [\ - ["contains-path", "npm:1.0.0"],\ - ["normalize-path", "npm:2.1.1"],\ - ["path-starts-with", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ ["content-disposition", [\ - ["npm:0.5.3", {\ - "packageLocation": "./.yarn/cache/content-disposition-npm-0.5.3-9a9a567e17-95bf164c0b.zip/node_modules/content-disposition/",\ + ["npm:0.5.4", {\ + "packageLocation": "./.yarn/cache/content-disposition-npm-0.5.4-2d93678616-afb9d545e2.zip/node_modules/content-disposition/",\ "packageDependencies": [\ - ["content-disposition", "npm:0.5.3"],\ - ["safe-buffer", "npm:5.1.2"]\ + ["content-disposition", "npm:0.5.4"],\ + ["safe-buffer", "npm:5.2.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["content-type", [\ - ["npm:1.0.4", {\ - "packageLocation": "./.yarn/cache/content-type-npm-1.0.4-3b1a5ca16b-3d93585fda.zip/node_modules/content-type/",\ + ["npm:1.0.5", {\ + "packageLocation": "./.yarn/cache/content-type-npm-1.0.5-3e037bf9ab-566271e0a2.zip/node_modules/content-type/",\ "packageDependencies": [\ - ["content-type", "npm:1.0.4"]\ + ["content-type", "npm:1.0.5"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["convert-source-map", [\ - ["npm:1.7.0", {\ - "packageLocation": "./.yarn/cache/convert-source-map-npm-1.7.0-f9727424f7-bcd2e3ea7d.zip/node_modules/convert-source-map/",\ + ["npm:1.9.0", {\ + "packageLocation": "./.yarn/cache/convert-source-map-npm-1.9.0-e294555f4b-dc55a1f28d.zip/node_modules/convert-source-map/",\ "packageDependencies": [\ - ["convert-source-map", "npm:1.7.0"],\ - ["safe-buffer", "npm:5.1.2"]\ + ["convert-source-map", "npm:1.9.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["cookie", [\ - ["npm:0.4.1", {\ - "packageLocation": "./.yarn/cache/cookie-npm-0.4.1-cc5e2ebb42-bd7c47f5d9.zip/node_modules/cookie/",\ + ["npm:0.4.2", {\ + "packageLocation": "./.yarn/cache/cookie-npm-0.4.2-7761894d5f-a00833c998.zip/node_modules/cookie/",\ "packageDependencies": [\ - ["cookie", "npm:0.4.1"]\ + ["cookie", "npm:0.4.2"]\ ],\ "linkType": "HARD"\ }]\ @@ -6968,10 +7229,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["core-util-is", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/core-util-is-npm-1.0.2-9fc2b94dc3-7a4c925b49.zip/node_modules/core-util-is/",\ + ["npm:1.0.3", {\ + "packageLocation": "./.yarn/cache/core-util-is-npm-1.0.3-ca74b76c90-9de8597363.zip/node_modules/core-util-is/",\ "packageDependencies": [\ - ["core-util-is", "npm:1.0.2"]\ + ["core-util-is", "npm:1.0.3"]\ ],\ "linkType": "HARD"\ }]\ @@ -6998,7 +7259,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@cosmjs/encoding", "workspace:packages/encoding"],\ ["@cosmjs/proto-signing", "workspace:packages/proto-signing"],\ ["@cosmjs/stargate", "workspace:packages/stargate"],\ - ["eslint", "npm:7.26.0"],\ + ["eslint", "npm:7.32.0"],\ ["prettier", "npm:2.8.8"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"]\ ],\ @@ -7011,7 +7272,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["cosmjs-types", "npm:0.8.0"],\ ["long", "npm:4.0.0"],\ - ["protobufjs", "npm:6.11.3"]\ + ["protobufjs", "npm:6.11.4"]\ ],\ "linkType": "HARD"\ }]\ @@ -7038,10 +7299,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["date-format", [\ - ["npm:4.0.3", {\ - "packageLocation": "./.yarn/cache/date-format-npm-4.0.3-ce15085cfe-8ae4d9de35.zip/node_modules/date-format/",\ + ["npm:4.0.14", {\ + "packageLocation": "./.yarn/cache/date-format-npm-4.0.14-50da5e5139-dfe5139df6.zip/node_modules/date-format/",\ "packageDependencies": [\ - ["date-format", "npm:4.0.3"]\ + ["date-format", "npm:4.0.14"]\ ],\ "linkType": "HARD"\ }]\ @@ -7061,13 +7322,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "SOFT"\ }],\ - ["npm:4.3.3", {\ - "packageLocation": "./.yarn/cache/debug-npm-4.3.3-710fd4cc7f-14472d56fe.zip/node_modules/debug/",\ - "packageDependencies": [\ - ["debug", "npm:4.3.3"]\ - ],\ - "linkType": "SOFT"\ - }],\ ["npm:4.3.4", {\ "packageLocation": "./.yarn/cache/debug-npm-4.3.4-4513954577-3dbad3f94e.zip/node_modules/debug/",\ "packageDependencies": [\ @@ -7075,24 +7329,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "SOFT"\ }],\ - ["virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:4.3.4", {\ - "packageLocation": "./.yarn/__virtual__/debug-virtual-f3e67f9c2c/0/cache/debug-npm-4.3.4-4513954577-3dbad3f94e.zip/node_modules/debug/",\ - "packageDependencies": [\ - ["debug", "virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:4.3.4"],\ - ["@types/supports-color", null],\ - ["ms", "npm:2.1.2"],\ - ["supports-color", null]\ - ],\ - "packagePeers": [\ - "@types/supports-color",\ - "supports-color"\ - ],\ - "linkType": "HARD"\ - }],\ - ["virtual:3f02fdc9c01c9edeeb198ff2c318139c4ba1b083bcc941ca06dbe04dde7c9d9af243e05fa031bfd97204db40c8d491dd4f9e619914628b323c37b1f02acd578d#npm:3.2.7", {\ - "packageLocation": "./.yarn/__virtual__/debug-virtual-485cba03e2/0/cache/debug-npm-3.2.7-754e818c7a-b3d8c59407.zip/node_modules/debug/",\ + ["virtual:2a426afc4b2eef43db12a540d29c2b5476640459bfcd5c24f86bb401cf8cce97e63bd81794d206a5643057e7f662643afd5ce3dfc4d4bfd8e706006c6309c5fa#npm:3.2.7", {\ + "packageLocation": "./.yarn/__virtual__/debug-virtual-d2345003b7/0/cache/debug-npm-3.2.7-754e818c7a-b3d8c59407.zip/node_modules/debug/",\ "packageDependencies": [\ - ["debug", "virtual:3f02fdc9c01c9edeeb198ff2c318139c4ba1b083bcc941ca06dbe04dde7c9d9af243e05fa031bfd97204db40c8d491dd4f9e619914628b323c37b1f02acd578d#npm:3.2.7"],\ + ["debug", "virtual:2a426afc4b2eef43db12a540d29c2b5476640459bfcd5c24f86bb401cf8cce97e63bd81794d206a5643057e7f662643afd5ce3dfc4d4bfd8e706006c6309c5fa#npm:3.2.7"],\ ["@types/supports-color", null],\ ["ms", "npm:2.1.3"],\ ["supports-color", null]\ @@ -7103,10 +7343,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3", {\ - "packageLocation": "./.yarn/__virtual__/debug-virtual-a367c695fd/0/cache/debug-npm-4.3.3-710fd4cc7f-14472d56fe.zip/node_modules/debug/",\ + ["virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4", {\ + "packageLocation": "./.yarn/__virtual__/debug-virtual-c6b33303b0/0/cache/debug-npm-4.3.4-4513954577-3dbad3f94e.zip/node_modules/debug/",\ "packageDependencies": [\ - ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"],\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"],\ ["@types/supports-color", null],\ ["ms", "npm:2.1.2"],\ ["supports-color", null]\ @@ -7117,10 +7357,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:fa0173d26738ef894de6f639abae81ef8c1dc3fb742f450a622367c86186d9f4d23dbd3bcc38bbe27382c39f87e11cad6137dd70480a36e752eee25974706e2c#npm:2.6.9", {\ - "packageLocation": "./.yarn/__virtual__/debug-virtual-d08cd93353/0/cache/debug-npm-2.6.9-7d4cb597dc-d2f51589ca.zip/node_modules/debug/",\ + ["virtual:44738662cf800ff2863ba9baeabb817b24a959a14f86e20a31680e5dc79a4a738f7ceb7dca32753d579fae475aa061dffad8228a3391f3a9546b122f077e29a5#npm:2.6.9", {\ + "packageLocation": "./.yarn/__virtual__/debug-virtual-fad9a3537e/0/cache/debug-npm-2.6.9-7d4cb597dc-d2f51589ca.zip/node_modules/debug/",\ "packageDependencies": [\ - ["debug", "virtual:fa0173d26738ef894de6f639abae81ef8c1dc3fb742f450a622367c86186d9f4d23dbd3bcc38bbe27382c39f87e11cad6137dd70480a36e752eee25974706e2c#npm:2.6.9"],\ + ["debug", "virtual:44738662cf800ff2863ba9baeabb817b24a959a14f86e20a31680e5dc79a4a738f7ceb7dca32753d579fae475aa061dffad8228a3391f3a9546b122f077e29a5#npm:2.6.9"],\ ["@types/supports-color", null],\ ["ms", "npm:2.0.0"],\ ["supports-color", null]\ @@ -7170,29 +7410,30 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["deep-is", [\ - ["npm:0.1.3", {\ - "packageLocation": "./.yarn/cache/deep-is-npm-0.1.3-0941784645-c15b04c384.zip/node_modules/deep-is/",\ + ["npm:0.1.4", {\ + "packageLocation": "./.yarn/cache/deep-is-npm-0.1.4-88938b5a67-edb65dd0d7.zip/node_modules/deep-is/",\ "packageDependencies": [\ - ["deep-is", "npm:0.1.3"]\ + ["deep-is", "npm:0.1.4"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["default-require-extensions", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/default-require-extensions-npm-3.0.0-40586718d6-0b5bdb6786.zip/node_modules/default-require-extensions/",\ + ["npm:3.0.1", {\ + "packageLocation": "./.yarn/cache/default-require-extensions-npm-3.0.1-3e811bddf3-45882fc971.zip/node_modules/default-require-extensions/",\ "packageDependencies": [\ - ["default-require-extensions", "npm:3.0.0"],\ + ["default-require-extensions", "npm:3.0.1"],\ ["strip-bom", "npm:4.0.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["define-properties", [\ - ["npm:1.1.3", {\ - "packageLocation": "./.yarn/cache/define-properties-npm-1.1.3-0f3115e2b9-da80dba55d.zip/node_modules/define-properties/",\ + ["npm:1.2.0", {\ + "packageLocation": "./.yarn/cache/define-properties-npm-1.2.0-3547cd0fd2-e60aee6a19.zip/node_modules/define-properties/",\ "packageDependencies": [\ - ["define-properties", "npm:1.1.3"],\ + ["define-properties", "npm:1.2.0"],\ + ["has-property-descriptors", "npm:1.0.0"],\ ["object-keys", "npm:1.1.1"]\ ],\ "linkType": "HARD"\ @@ -7224,10 +7465,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["destroy", [\ - ["npm:1.0.4", {\ - "packageLocation": "./.yarn/cache/destroy-npm-1.0.4-a2203e01cb-da9ab4961d.zip/node_modules/destroy/",\ + ["npm:1.2.0", {\ + "packageLocation": "./.yarn/cache/destroy-npm-1.2.0-6a511802e2-0acb300b74.zip/node_modules/destroy/",\ "packageDependencies": [\ - ["destroy", "npm:1.0.4"]\ + ["destroy", "npm:1.2.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -7300,6 +7541,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["eastasianwidth", [\ + ["npm:0.2.0", {\ + "packageLocation": "./.yarn/cache/eastasianwidth-npm-0.2.0-c37eb16bd1-7d00d7cd8e.zip/node_modules/eastasianwidth/",\ + "packageDependencies": [\ + ["eastasianwidth", "npm:0.2.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["ee-first", [\ ["npm:1.1.1", {\ "packageLocation": "./.yarn/cache/ee-first-npm-1.1.1-33f8535b39-1b4cac778d.zip/node_modules/ee-first/",\ @@ -7310,10 +7560,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["electron-to-chromium", [\ - ["npm:1.3.734", {\ - "packageLocation": "./.yarn/cache/electron-to-chromium-npm-1.3.734-b9a1cae538-129a13f372.zip/node_modules/electron-to-chromium/",\ + ["npm:1.4.491", {\ + "packageLocation": "./.yarn/cache/electron-to-chromium-npm-1.4.491-7541a41cd5-8d96c720c8.zip/node_modules/electron-to-chromium/",\ "packageDependencies": [\ - ["electron-to-chromium", "npm:1.3.734"]\ + ["electron-to-chromium", "npm:1.4.491"]\ ],\ "linkType": "HARD"\ }]\ @@ -7341,6 +7591,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["emoji-regex", "npm:8.0.0"]\ ],\ "linkType": "HARD"\ + }],\ + ["npm:9.2.2", {\ + "packageLocation": "./.yarn/cache/emoji-regex-npm-9.2.2-e6fac8d058-8487182da7.zip/node_modules/emoji-regex/",\ + "packageDependencies": [\ + ["emoji-regex", "npm:9.2.2"]\ + ],\ + "linkType": "HARD"\ }]\ ]],\ ["encodeurl", [\ @@ -7357,7 +7614,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/encoding-npm-0.1.13-82a1837d30-bb98632f8f.zip/node_modules/encoding/",\ "packageDependencies": [\ ["encoding", "npm:0.1.13"],\ - ["iconv-lite", "npm:0.6.2"]\ + ["iconv-lite", "npm:0.6.3"]\ ],\ "linkType": "HARD"\ }]\ @@ -7373,50 +7630,51 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["engine.io", [\ - ["npm:6.2.0", {\ - "packageLocation": "./.yarn/cache/engine.io-npm-6.2.0-a0c0d83e66-cc485c5ba2.zip/node_modules/engine.io/",\ + ["npm:6.5.2", {\ + "packageLocation": "./.yarn/cache/engine.io-npm-6.5.2-ee531cd7df-2fb1da3993.zip/node_modules/engine.io/",\ "packageDependencies": [\ - ["engine.io", "npm:6.2.0"],\ + ["engine.io", "npm:6.5.2"],\ ["@types/cookie", "npm:0.4.1"],\ - ["@types/cors", "npm:2.8.12"],\ - ["@types/node", "npm:18.15.11"],\ - ["accepts", "npm:1.3.7"],\ + ["@types/cors", "npm:2.8.13"],\ + ["@types/node", "npm:20.5.0"],\ + ["accepts", "npm:1.3.8"],\ ["base64id", "npm:2.0.0"],\ - ["cookie", "npm:0.4.1"],\ + ["cookie", "npm:0.4.2"],\ ["cors", "npm:2.8.5"],\ - ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"],\ - ["engine.io-parser", "npm:5.0.4"],\ - ["ws", "virtual:a0c0d83e66563f51d601c822567e6d79b2ed7475481445e29115ee78d98a1ad5241e9e0cbf0e0eb707d80a4db444175061b5c5627b6aa1262f0868dc9ad1e7a1#npm:8.2.3"]\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"],\ + ["engine.io-parser", "npm:5.2.1"],\ + ["ws", "virtual:ee531cd7dfd5026f7bba8760172e4108567cb8fc1127e57365281be51439b691f6dd1c82e657a9e658d51419256a96685c3291cee11b82603df44b409613475b#npm:8.11.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["engine.io-parser", [\ - ["npm:5.0.4", {\ - "packageLocation": "./.yarn/cache/engine.io-parser-npm-5.0.4-27a510b395-d4ad0cef6f.zip/node_modules/engine.io-parser/",\ + ["npm:5.2.1", {\ + "packageLocation": "./.yarn/cache/engine.io-parser-npm-5.2.1-2e514fd9eb-55b0e8e185.zip/node_modules/engine.io-parser/",\ "packageDependencies": [\ - ["engine.io-parser", "npm:5.0.4"]\ + ["engine.io-parser", "npm:5.2.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["enhanced-resolve", [\ - ["npm:5.12.0", {\ - "packageLocation": "./.yarn/cache/enhanced-resolve-npm-5.12.0-c291ce4ee3-bf3f787fac.zip/node_modules/enhanced-resolve/",\ + ["npm:5.15.0", {\ + "packageLocation": "./.yarn/cache/enhanced-resolve-npm-5.15.0-16eb7ddef9-fbd8cdc926.zip/node_modules/enhanced-resolve/",\ "packageDependencies": [\ - ["enhanced-resolve", "npm:5.12.0"],\ - ["graceful-fs", "npm:4.2.6"],\ - ["tapable", "npm:2.2.0"]\ + ["enhanced-resolve", "npm:5.15.0"],\ + ["graceful-fs", "npm:4.2.11"],\ + ["tapable", "npm:2.2.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["enquirer", [\ - ["npm:2.3.6", {\ - "packageLocation": "./.yarn/cache/enquirer-npm-2.3.6-7899175762-1c0911e14a.zip/node_modules/enquirer/",\ + ["npm:2.4.1", {\ + "packageLocation": "./.yarn/cache/enquirer-npm-2.4.1-d71b2b33c1-f080f11a74.zip/node_modules/enquirer/",\ "packageDependencies": [\ - ["enquirer", "npm:2.3.6"],\ - ["ansi-colors", "npm:4.1.1"]\ + ["enquirer", "npm:2.4.1"],\ + ["ansi-colors", "npm:4.1.3"],\ + ["strip-ansi", "npm:6.0.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -7440,63 +7698,98 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["envinfo", [\ - ["npm:7.8.1", {\ - "packageLocation": "./.yarn/cache/envinfo-npm-7.8.1-f320033691-de736c98d6.zip/node_modules/envinfo/",\ - "packageDependencies": [\ - ["envinfo", "npm:7.8.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["err-code", [\ - ["npm:2.0.3", {\ - "packageLocation": "./.yarn/cache/err-code-npm-2.0.3-082e0ff9a7-8b7b1be20d.zip/node_modules/err-code/",\ + ["npm:7.10.0", {\ + "packageLocation": "./.yarn/cache/envinfo-npm-7.10.0-cba8c054d4-05e81a5768.zip/node_modules/envinfo/",\ "packageDependencies": [\ - ["err-code", "npm:2.0.3"]\ + ["envinfo", "npm:7.10.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["error-ex", [\ - ["npm:1.3.2", {\ - "packageLocation": "./.yarn/cache/error-ex-npm-1.3.2-5654f80c0f-c1c2b8b65f.zip/node_modules/error-ex/",\ + ["err-code", [\ + ["npm:2.0.3", {\ + "packageLocation": "./.yarn/cache/err-code-npm-2.0.3-082e0ff9a7-8b7b1be20d.zip/node_modules/err-code/",\ "packageDependencies": [\ - ["error-ex", "npm:1.3.2"],\ - ["is-arrayish", "npm:0.2.1"]\ + ["err-code", "npm:2.0.3"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["es-abstract", [\ - ["npm:1.18.0", {\ - "packageLocation": "./.yarn/cache/es-abstract-npm-1.18.0-ac2faa8a98-6783bea97f.zip/node_modules/es-abstract/",\ + ["npm:1.22.1", {\ + "packageLocation": "./.yarn/cache/es-abstract-npm-1.22.1-bfe4c9a3e1-614e2c1c37.zip/node_modules/es-abstract/",\ "packageDependencies": [\ - ["es-abstract", "npm:1.18.0"],\ + ["es-abstract", "npm:1.22.1"],\ + ["array-buffer-byte-length", "npm:1.0.0"],\ + ["arraybuffer.prototype.slice", "npm:1.0.1"],\ + ["available-typed-arrays", "npm:1.0.5"],\ ["call-bind", "npm:1.0.2"],\ + ["es-set-tostringtag", "npm:2.0.1"],\ ["es-to-primitive", "npm:1.2.1"],\ - ["function-bind", "npm:1.1.1"],\ - ["get-intrinsic", "npm:1.1.1"],\ + ["function.prototype.name", "npm:1.1.5"],\ + ["get-intrinsic", "npm:1.2.1"],\ + ["get-symbol-description", "npm:1.0.0"],\ + ["globalthis", "npm:1.0.3"],\ + ["gopd", "npm:1.0.1"],\ ["has", "npm:1.0.3"],\ - ["has-symbols", "npm:1.0.2"],\ - ["is-callable", "npm:1.2.3"],\ - ["is-negative-zero", "npm:2.0.1"],\ - ["is-regex", "npm:1.1.3"],\ - ["is-string", "npm:1.0.6"],\ - ["object-inspect", "npm:1.10.3"],\ + ["has-property-descriptors", "npm:1.0.0"],\ + ["has-proto", "npm:1.0.1"],\ + ["has-symbols", "npm:1.0.3"],\ + ["internal-slot", "npm:1.0.5"],\ + ["is-array-buffer", "npm:3.0.2"],\ + ["is-callable", "npm:1.2.7"],\ + ["is-negative-zero", "npm:2.0.2"],\ + ["is-regex", "npm:1.1.4"],\ + ["is-shared-array-buffer", "npm:1.0.2"],\ + ["is-string", "npm:1.0.7"],\ + ["is-typed-array", "npm:1.1.12"],\ + ["is-weakref", "npm:1.0.2"],\ + ["object-inspect", "npm:1.12.3"],\ ["object-keys", "npm:1.1.1"],\ - ["object.assign", "npm:4.1.2"],\ - ["string.prototype.trimend", "npm:1.0.4"],\ - ["string.prototype.trimstart", "npm:1.0.4"],\ - ["unbox-primitive", "npm:1.0.1"]\ + ["object.assign", "npm:4.1.4"],\ + ["regexp.prototype.flags", "npm:1.5.0"],\ + ["safe-array-concat", "npm:1.0.0"],\ + ["safe-regex-test", "npm:1.0.0"],\ + ["string.prototype.trim", "npm:1.2.7"],\ + ["string.prototype.trimend", "npm:1.0.6"],\ + ["string.prototype.trimstart", "npm:1.0.6"],\ + ["typed-array-buffer", "npm:1.0.0"],\ + ["typed-array-byte-length", "npm:1.0.0"],\ + ["typed-array-byte-offset", "npm:1.0.0"],\ + ["typed-array-length", "npm:1.0.4"],\ + ["unbox-primitive", "npm:1.0.2"],\ + ["which-typed-array", "npm:1.1.11"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["es-module-lexer", [\ - ["npm:0.9.3", {\ - "packageLocation": "./.yarn/cache/es-module-lexer-npm-0.9.3-ff6236dadb-84bbab23c3.zip/node_modules/es-module-lexer/",\ + ["npm:1.3.0", {\ + "packageLocation": "./.yarn/cache/es-module-lexer-npm-1.3.0-9be5e8b1c4-48fd9f504a.zip/node_modules/es-module-lexer/",\ + "packageDependencies": [\ + ["es-module-lexer", "npm:1.3.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["es-set-tostringtag", [\ + ["npm:2.0.1", {\ + "packageLocation": "./.yarn/cache/es-set-tostringtag-npm-2.0.1-c87b5de872-ec416a1294.zip/node_modules/es-set-tostringtag/",\ + "packageDependencies": [\ + ["es-set-tostringtag", "npm:2.0.1"],\ + ["get-intrinsic", "npm:1.2.1"],\ + ["has", "npm:1.0.3"],\ + ["has-tostringtag", "npm:1.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["es-shim-unscopables", [\ + ["npm:1.0.0", {\ + "packageLocation": "./.yarn/cache/es-shim-unscopables-npm-1.0.0-06186593f1-83e95cadbb.zip/node_modules/es-shim-unscopables/",\ "packageDependencies": [\ - ["es-module-lexer", "npm:0.9.3"]\ + ["es-shim-unscopables", "npm:1.0.0"],\ + ["has", "npm:1.0.3"]\ ],\ "linkType": "HARD"\ }]\ @@ -7506,8 +7799,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/es-to-primitive-npm-1.2.1-b7a7eac6c5-4ead6671a2.zip/node_modules/es-to-primitive/",\ "packageDependencies": [\ ["es-to-primitive", "npm:1.2.1"],\ - ["is-callable", "npm:1.2.3"],\ - ["is-date-object", "npm:1.0.4"],\ + ["is-callable", "npm:1.2.7"],\ + ["is-date-object", "npm:1.0.5"],\ ["is-symbol", "npm:1.0.4"]\ ],\ "linkType": "HARD"\ @@ -7547,31 +7840,41 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["escape-string-regexp", "npm:1.0.5"]\ ],\ "linkType": "HARD"\ + }],\ + ["npm:4.0.0", {\ + "packageLocation": "./.yarn/cache/escape-string-regexp-npm-4.0.0-4b531d8d59-98b48897d9.zip/node_modules/escape-string-regexp/",\ + "packageDependencies": [\ + ["escape-string-regexp", "npm:4.0.0"]\ + ],\ + "linkType": "HARD"\ }]\ ]],\ ["eslint", [\ - ["npm:7.26.0", {\ - "packageLocation": "./.yarn/cache/eslint-npm-7.26.0-0bcc96e5d3-6178eeb1bf.zip/node_modules/eslint/",\ + ["npm:7.32.0", {\ + "packageLocation": "./.yarn/cache/eslint-npm-7.32.0-e15cc6682f-cc85af9985.zip/node_modules/eslint/",\ "packageDependencies": [\ - ["eslint", "npm:7.26.0"],\ + ["eslint", "npm:7.32.0"],\ ["@babel/code-frame", "npm:7.12.11"],\ - ["@eslint/eslintrc", "npm:0.4.1"],\ + ["@eslint/eslintrc", "npm:0.4.3"],\ + ["@humanwhocodes/config-array", "npm:0.5.0"],\ ["ajv", "npm:6.12.6"],\ ["chalk", "npm:4.1.2"],\ ["cross-spawn", "npm:7.0.3"],\ - ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"],\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"],\ ["doctrine", "npm:3.0.0"],\ - ["enquirer", "npm:2.3.6"],\ + ["enquirer", "npm:2.4.1"],\ + ["escape-string-regexp", "npm:4.0.0"],\ ["eslint-scope", "npm:5.1.1"],\ ["eslint-utils", "npm:2.1.0"],\ ["eslint-visitor-keys", "npm:2.1.0"],\ ["espree", "npm:7.3.1"],\ - ["esquery", "npm:1.4.0"],\ + ["esquery", "npm:1.5.0"],\ ["esutils", "npm:2.0.3"],\ + ["fast-deep-equal", "npm:3.1.3"],\ ["file-entry-cache", "npm:6.0.1"],\ ["functional-red-black-tree", "npm:1.0.1"],\ ["glob-parent", "npm:5.1.2"],\ - ["globals", "npm:13.8.0"],\ + ["globals", "npm:13.21.0"],\ ["ignore", "npm:4.0.6"],\ ["import-fresh", "npm:3.3.0"],\ ["imurmurhash", "npm:0.1.4"],\ @@ -7579,36 +7882,36 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["js-yaml", "npm:3.14.1"],\ ["json-stable-stringify-without-jsonify", "npm:1.0.1"],\ ["levn", "npm:0.4.1"],\ - ["lodash", "npm:4.17.21"],\ + ["lodash.merge", "npm:4.6.2"],\ ["minimatch", "npm:3.1.2"],\ ["natural-compare", "npm:1.4.0"],\ - ["optionator", "npm:0.9.1"],\ + ["optionator", "npm:0.9.3"],\ ["progress", "npm:2.0.3"],\ ["regexpp", "npm:3.2.0"],\ - ["semver", "npm:7.5.3"],\ - ["strip-ansi", "npm:6.0.0"],\ + ["semver", "npm:7.5.4"],\ + ["strip-ansi", "npm:6.0.1"],\ ["strip-json-comments", "npm:3.1.1"],\ - ["table", "npm:6.7.1"],\ + ["table", "npm:6.8.1"],\ ["text-table", "npm:0.2.0"],\ - ["v8-compile-cache", "npm:2.3.0"]\ + ["v8-compile-cache", "npm:2.4.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["eslint-config-prettier", [\ - ["npm:8.3.0", {\ - "packageLocation": "./.yarn/cache/eslint-config-prettier-npm-8.3.0-f540cd1f53-df4cea3032.zip/node_modules/eslint-config-prettier/",\ + ["npm:8.10.0", {\ + "packageLocation": "./.yarn/cache/eslint-config-prettier-npm-8.10.0-c1aac67611-153266badd.zip/node_modules/eslint-config-prettier/",\ "packageDependencies": [\ - ["eslint-config-prettier", "npm:8.3.0"]\ + ["eslint-config-prettier", "npm:8.10.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0", {\ - "packageLocation": "./.yarn/__virtual__/eslint-config-prettier-virtual-4dd141b4f1/0/cache/eslint-config-prettier-npm-8.3.0-f540cd1f53-df4cea3032.zip/node_modules/eslint-config-prettier/",\ + ["virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0", {\ + "packageLocation": "./.yarn/__virtual__/eslint-config-prettier-virtual-2230edf8ad/0/cache/eslint-config-prettier-npm-8.10.0-c1aac67611-153266badd.zip/node_modules/eslint-config-prettier/",\ "packageDependencies": [\ - ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0"],\ + ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0"],\ ["@types/eslint", null],\ - ["eslint", "npm:7.26.0"]\ + ["eslint", "npm:7.32.0"]\ ],\ "packagePeers": [\ "@types/eslint",\ @@ -7618,84 +7921,90 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["eslint-import-resolver-node", [\ - ["npm:0.3.4", {\ - "packageLocation": "./.yarn/cache/eslint-import-resolver-node-npm-0.3.4-fa0173d267-a0db55ec26.zip/node_modules/eslint-import-resolver-node/",\ + ["npm:0.3.9", {\ + "packageLocation": "./.yarn/cache/eslint-import-resolver-node-npm-0.3.9-2a426afc4b-439b912712.zip/node_modules/eslint-import-resolver-node/",\ "packageDependencies": [\ - ["eslint-import-resolver-node", "npm:0.3.4"],\ - ["debug", "virtual:fa0173d26738ef894de6f639abae81ef8c1dc3fb742f450a622367c86186d9f4d23dbd3bcc38bbe27382c39f87e11cad6137dd70480a36e752eee25974706e2c#npm:2.6.9"],\ - ["resolve", "patch:resolve@npm%3A1.20.0#~builtin::version=1.20.0&hash=c3c19d"]\ + ["eslint-import-resolver-node", "npm:0.3.9"],\ + ["debug", "virtual:2a426afc4b2eef43db12a540d29c2b5476640459bfcd5c24f86bb401cf8cce97e63bd81794d206a5643057e7f662643afd5ce3dfc4d4bfd8e706006c6309c5fa#npm:3.2.7"],\ + ["is-core-module", "npm:2.13.0"],\ + ["resolve", "patch:resolve@npm%3A1.22.4#~builtin::version=1.22.4&hash=c3c19d"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["eslint-module-utils", [\ - ["npm:2.6.1", {\ - "packageLocation": "./.yarn/cache/eslint-module-utils-npm-2.6.1-bfddc3ec15-3cc43a36a0.zip/node_modules/eslint-module-utils/",\ + ["npm:2.8.0", {\ + "packageLocation": "./.yarn/cache/eslint-module-utils-npm-2.8.0-05e42bcab0-74c6dfea76.zip/node_modules/eslint-module-utils/",\ "packageDependencies": [\ - ["eslint-module-utils", "npm:2.6.1"]\ + ["eslint-module-utils", "npm:2.8.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:2eadd66b59b48f44c34405af61dc8ecc60484e8290c617db596475adca1f6cba5e4bd2e925bba9e3fc09c33d15fab7095b9b355d7452a17eb1c2aa5bcb33bd4c#npm:2.6.1", {\ - "packageLocation": "./.yarn/__virtual__/eslint-module-utils-virtual-3f02fdc9c0/0/cache/eslint-module-utils-npm-2.6.1-bfddc3ec15-3cc43a36a0.zip/node_modules/eslint-module-utils/",\ + ["virtual:08eea6d9a73a541408383f60af21b29594836cd4302b23ae846c2be28e875e4e02303457ca2b7edad4af978e69637371dd6bded23f483121f4af7732715d02a0#npm:2.8.0", {\ + "packageLocation": "./.yarn/__virtual__/eslint-module-utils-virtual-65b0dcec77/0/cache/eslint-module-utils-npm-2.8.0-05e42bcab0-74c6dfea76.zip/node_modules/eslint-module-utils/",\ "packageDependencies": [\ - ["eslint-module-utils", "virtual:2eadd66b59b48f44c34405af61dc8ecc60484e8290c617db596475adca1f6cba5e4bd2e925bba9e3fc09c33d15fab7095b9b355d7452a17eb1c2aa5bcb33bd4c#npm:2.6.1"],\ + ["eslint-module-utils", "virtual:08eea6d9a73a541408383f60af21b29594836cd4302b23ae846c2be28e875e4e02303457ca2b7edad4af978e69637371dd6bded23f483121f4af7732715d02a0#npm:2.8.0"],\ + ["@types/eslint", null],\ ["@types/eslint-import-resolver-node", null],\ ["@types/eslint-import-resolver-typescript", null],\ ["@types/eslint-import-resolver-webpack", null],\ ["@types/typescript-eslint__parser", null],\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["debug", "virtual:3f02fdc9c01c9edeeb198ff2c318139c4ba1b083bcc941ca06dbe04dde7c9d9af243e05fa031bfd97204db40c8d491dd4f9e619914628b323c37b1f02acd578d#npm:3.2.7"],\ - ["eslint-import-resolver-node", "npm:0.3.4"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["debug", "virtual:2a426afc4b2eef43db12a540d29c2b5476640459bfcd5c24f86bb401cf8cce97e63bd81794d206a5643057e7f662643afd5ce3dfc4d4bfd8e706006c6309c5fa#npm:3.2.7"],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-import-resolver-node", "npm:0.3.9"],\ ["eslint-import-resolver-typescript", null],\ - ["eslint-import-resolver-webpack", null],\ - ["pkg-dir", "npm:2.0.0"]\ + ["eslint-import-resolver-webpack", null]\ ],\ "packagePeers": [\ "@types/eslint-import-resolver-node",\ "@types/eslint-import-resolver-typescript",\ "@types/eslint-import-resolver-webpack",\ + "@types/eslint",\ "@types/typescript-eslint__parser",\ "@typescript-eslint/parser",\ "eslint-import-resolver-node",\ "eslint-import-resolver-typescript",\ - "eslint-import-resolver-webpack"\ + "eslint-import-resolver-webpack",\ + "eslint"\ ],\ "linkType": "HARD"\ }]\ ]],\ ["eslint-plugin-import", [\ - ["npm:2.23.2", {\ - "packageLocation": "./.yarn/cache/eslint-plugin-import-npm-2.23.2-4b59efe04c-cd8f119266.zip/node_modules/eslint-plugin-import/",\ + ["npm:2.28.0", {\ + "packageLocation": "./.yarn/cache/eslint-plugin-import-npm-2.28.0-7894c48955-f9eba311b9.zip/node_modules/eslint-plugin-import/",\ "packageDependencies": [\ - ["eslint-plugin-import", "npm:2.23.2"]\ + ["eslint-plugin-import", "npm:2.28.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.23.2", {\ - "packageLocation": "./.yarn/__virtual__/eslint-plugin-import-virtual-2eadd66b59/0/cache/eslint-plugin-import-npm-2.23.2-4b59efe04c-cd8f119266.zip/node_modules/eslint-plugin-import/",\ + ["virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.28.0", {\ + "packageLocation": "./.yarn/__virtual__/eslint-plugin-import-virtual-08eea6d9a7/0/cache/eslint-plugin-import-npm-2.28.0-7894c48955-f9eba311b9.zip/node_modules/eslint-plugin-import/",\ "packageDependencies": [\ - ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.23.2"],\ + ["eslint-plugin-import", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:2.28.0"],\ ["@types/eslint", null],\ ["@types/typescript-eslint__parser", null],\ - ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.54.0"],\ - ["array-includes", "npm:3.1.3"],\ - ["array.prototype.flat", "npm:1.2.4"],\ - ["contains-path", "npm:1.0.0"],\ - ["debug", "virtual:fa0173d26738ef894de6f639abae81ef8c1dc3fb742f450a622367c86186d9f4d23dbd3bcc38bbe27382c39f87e11cad6137dd70480a36e752eee25974706e2c#npm:2.6.9"],\ + ["@typescript-eslint/parser", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.62.0"],\ + ["array-includes", "npm:3.1.6"],\ + ["array.prototype.findlastindex", "npm:1.2.2"],\ + ["array.prototype.flat", "npm:1.3.1"],\ + ["array.prototype.flatmap", "npm:1.3.1"],\ + ["debug", "virtual:2a426afc4b2eef43db12a540d29c2b5476640459bfcd5c24f86bb401cf8cce97e63bd81794d206a5643057e7f662643afd5ce3dfc4d4bfd8e706006c6309c5fa#npm:3.2.7"],\ ["doctrine", "npm:2.1.0"],\ - ["eslint", "npm:7.26.0"],\ - ["eslint-import-resolver-node", "npm:0.3.4"],\ - ["eslint-module-utils", "virtual:2eadd66b59b48f44c34405af61dc8ecc60484e8290c617db596475adca1f6cba5e4bd2e925bba9e3fc09c33d15fab7095b9b355d7452a17eb1c2aa5bcb33bd4c#npm:2.6.1"],\ - ["find-up", "npm:2.1.0"],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-import-resolver-node", "npm:0.3.9"],\ + ["eslint-module-utils", "virtual:08eea6d9a73a541408383f60af21b29594836cd4302b23ae846c2be28e875e4e02303457ca2b7edad4af978e69637371dd6bded23f483121f4af7732715d02a0#npm:2.8.0"],\ ["has", "npm:1.0.3"],\ - ["is-core-module", "npm:2.4.0"],\ + ["is-core-module", "npm:2.13.0"],\ + ["is-glob", "npm:4.0.3"],\ ["minimatch", "npm:3.1.2"],\ - ["object.values", "npm:1.1.3"],\ - ["pkg-up", "npm:2.0.0"],\ - ["read-pkg-up", "npm:3.0.0"],\ - ["resolve", "patch:resolve@npm%3A1.20.0#~builtin::version=1.20.0&hash=c3c19d"],\ - ["tsconfig-paths", "npm:3.9.0"]\ + ["object.fromentries", "npm:2.0.6"],\ + ["object.groupby", "npm:1.0.0"],\ + ["object.values", "npm:1.1.6"],\ + ["resolve", "patch:resolve@npm%3A1.22.4#~builtin::version=1.22.4&hash=c3c19d"],\ + ["semver", "npm:6.3.1"],\ + ["tsconfig-paths", "npm:3.14.2"]\ ],\ "packagePeers": [\ "@types/eslint",\ @@ -7707,22 +8016,22 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["eslint-plugin-prettier", [\ - ["npm:3.4.0", {\ - "packageLocation": "./.yarn/cache/eslint-plugin-prettier-npm-3.4.0-36b0696d09-30a07e8d12.zip/node_modules/eslint-plugin-prettier/",\ + ["npm:3.4.1", {\ + "packageLocation": "./.yarn/cache/eslint-plugin-prettier-npm-3.4.1-c0bf5af22f-fa6a89f0d7.zip/node_modules/eslint-plugin-prettier/",\ "packageDependencies": [\ - ["eslint-plugin-prettier", "npm:3.4.0"]\ + ["eslint-plugin-prettier", "npm:3.4.1"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.0", {\ - "packageLocation": "./.yarn/__virtual__/eslint-plugin-prettier-virtual-6536023104/0/cache/eslint-plugin-prettier-npm-3.4.0-36b0696d09-30a07e8d12.zip/node_modules/eslint-plugin-prettier/",\ + ["virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.1", {\ + "packageLocation": "./.yarn/__virtual__/eslint-plugin-prettier-virtual-30bdd026ef/0/cache/eslint-plugin-prettier-npm-3.4.1-c0bf5af22f-fa6a89f0d7.zip/node_modules/eslint-plugin-prettier/",\ "packageDependencies": [\ - ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.0"],\ + ["eslint-plugin-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:3.4.1"],\ ["@types/eslint", null],\ ["@types/eslint-config-prettier", null],\ ["@types/prettier", null],\ - ["eslint", "npm:7.26.0"],\ - ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.3.0"],\ + ["eslint", "npm:7.32.0"],\ + ["eslint-config-prettier", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:8.10.0"],\ ["prettier", "npm:2.8.8"],\ ["prettier-linter-helpers", "npm:1.0.0"]\ ],\ @@ -7750,7 +8059,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["eslint-plugin-simple-import-sort", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:7.0.0"],\ ["@types/eslint", null],\ - ["eslint", "npm:7.26.0"]\ + ["eslint", "npm:7.32.0"]\ ],\ "packagePeers": [\ "@types/eslint",\ @@ -7778,27 +8087,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["eslint-visitor-keys", "npm:1.3.0"]\ ],\ "linkType": "HARD"\ - }],\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/eslint-utils-npm-3.0.0-630b3a4013-0668fe02f5.zip/node_modules/eslint-utils/",\ - "packageDependencies": [\ - ["eslint-utils", "npm:3.0.0"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:b72deb79e2ec592967c5308e4bf1e792d5b5ca0d14e9c1ab085f52dd2b14c18062e243ec00f9ee082ef907e2293f1a70ff799a6253f4f2f8605e8d778a51ba89#npm:3.0.0", {\ - "packageLocation": "./.yarn/__virtual__/eslint-utils-virtual-26723f35cb/0/cache/eslint-utils-npm-3.0.0-630b3a4013-0668fe02f5.zip/node_modules/eslint-utils/",\ - "packageDependencies": [\ - ["eslint-utils", "virtual:b72deb79e2ec592967c5308e4bf1e792d5b5ca0d14e9c1ab085f52dd2b14c18062e243ec00f9ee082ef907e2293f1a70ff799a6253f4f2f8605e8d778a51ba89#npm:3.0.0"],\ - ["@types/eslint", null],\ - ["eslint", "npm:7.26.0"],\ - ["eslint-visitor-keys", "npm:2.1.0"]\ - ],\ - "packagePeers": [\ - "@types/eslint",\ - "eslint"\ - ],\ - "linkType": "HARD"\ }]\ ]],\ ["eslint-visitor-keys", [\ @@ -7816,10 +8104,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:3.3.0", {\ - "packageLocation": "./.yarn/cache/eslint-visitor-keys-npm-3.3.0-d329af7c8c-d59e68a7c5.zip/node_modules/eslint-visitor-keys/",\ + ["npm:3.4.3", {\ + "packageLocation": "./.yarn/cache/eslint-visitor-keys-npm-3.4.3-a356ac7e46-36e9ef87fc.zip/node_modules/eslint-visitor-keys/",\ "packageDependencies": [\ - ["eslint-visitor-keys", "npm:3.3.0"]\ + ["eslint-visitor-keys", "npm:3.4.3"]\ ],\ "linkType": "HARD"\ }]\ @@ -7839,7 +8127,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["espree", "npm:7.3.1"],\ ["acorn", "npm:7.4.1"],\ - ["acorn-jsx", "virtual:8d8ea5d1e3376905d0290522290f47c29213c64d936d96293d758a315829a3cf4c6a5b8ffc1cfee36c3db08f700ad3aaf0711cc5d406a7218c275de6d74effa9#npm:5.3.1"],\ + ["acorn-jsx", "virtual:8d8ea5d1e3376905d0290522290f47c29213c64d936d96293d758a315829a3cf4c6a5b8ffc1cfee36c3db08f700ad3aaf0711cc5d406a7218c275de6d74effa9#npm:5.3.2"],\ ["eslint-visitor-keys", "npm:1.3.0"]\ ],\ "linkType": "HARD"\ @@ -7855,11 +8143,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["esquery", [\ - ["npm:1.4.0", {\ - "packageLocation": "./.yarn/cache/esquery-npm-1.4.0-f39408b1a7-a0807e17ab.zip/node_modules/esquery/",\ + ["npm:1.5.0", {\ + "packageLocation": "./.yarn/cache/esquery-npm-1.5.0-d8f8a06879-aefb0d2596.zip/node_modules/esquery/",\ "packageDependencies": [\ - ["esquery", "npm:1.4.0"],\ - ["estraverse", "npm:5.2.0"]\ + ["esquery", "npm:1.5.0"],\ + ["estraverse", "npm:5.3.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -7869,7 +8157,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/esrecurse-npm-4.3.0-10b86a887a-ebc17b1a33.zip/node_modules/esrecurse/",\ "packageDependencies": [\ ["esrecurse", "npm:4.3.0"],\ - ["estraverse", "npm:5.2.0"]\ + ["estraverse", "npm:5.3.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -7882,10 +8170,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:5.2.0", {\ - "packageLocation": "./.yarn/cache/estraverse-npm-5.2.0-b2e8e36350-ec11b70d94.zip/node_modules/estraverse/",\ + ["npm:5.3.0", {\ + "packageLocation": "./.yarn/cache/estraverse-npm-5.3.0-03284f8f63-072780882d.zip/node_modules/estraverse/",\ "packageDependencies": [\ - ["estraverse", "npm:5.2.0"]\ + ["estraverse", "npm:5.3.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -7917,29 +8205,20 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ - ["execa", [\ - ["npm:5.0.0", {\ - "packageLocation": "./.yarn/cache/execa-npm-5.0.0-4ee568fb49-a044367ebd.zip/node_modules/execa/",\ + ["expand-template", [\ + ["npm:2.0.3", {\ + "packageLocation": "./.yarn/cache/expand-template-npm-2.0.3-80de959306-588c198472.zip/node_modules/expand-template/",\ "packageDependencies": [\ - ["execa", "npm:5.0.0"],\ - ["cross-spawn", "npm:7.0.3"],\ - ["get-stream", "npm:6.0.1"],\ - ["human-signals", "npm:2.1.0"],\ - ["is-stream", "npm:2.0.0"],\ - ["merge-stream", "npm:2.0.0"],\ - ["npm-run-path", "npm:4.0.1"],\ - ["onetime", "npm:5.1.2"],\ - ["signal-exit", "npm:3.0.3"],\ - ["strip-final-newline", "npm:2.0.0"]\ + ["expand-template", "npm:2.0.3"]\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["expand-template", [\ - ["npm:2.0.3", {\ - "packageLocation": "./.yarn/cache/expand-template-npm-2.0.3-80de959306-588c198472.zip/node_modules/expand-template/",\ + ["exponential-backoff", [\ + ["npm:3.1.1", {\ + "packageLocation": "./.yarn/cache/exponential-backoff-npm-3.1.1-04df458b30-3d21519a4f.zip/node_modules/exponential-backoff/",\ "packageDependencies": [\ - ["expand-template", "npm:2.0.3"]\ + ["exponential-backoff", "npm:3.1.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -7963,24 +8242,24 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["fast-diff", [\ - ["npm:1.2.0", {\ - "packageLocation": "./.yarn/cache/fast-diff-npm-1.2.0-5ba4171bb6-1b5306eaa9.zip/node_modules/fast-diff/",\ + ["npm:1.3.0", {\ + "packageLocation": "./.yarn/cache/fast-diff-npm-1.3.0-9f19e3b743-d22d371b99.zip/node_modules/fast-diff/",\ "packageDependencies": [\ - ["fast-diff", "npm:1.2.0"]\ + ["fast-diff", "npm:1.3.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["fast-glob", [\ - ["npm:3.2.11", {\ - "packageLocation": "./.yarn/cache/fast-glob-npm-3.2.11-bc01135fef-f473105324.zip/node_modules/fast-glob/",\ + ["npm:3.3.1", {\ + "packageLocation": "./.yarn/cache/fast-glob-npm-3.3.1-8045ff8f4d-b6f3add640.zip/node_modules/fast-glob/",\ "packageDependencies": [\ - ["fast-glob", "npm:3.2.11"],\ - ["@nodelib/fs.stat", "npm:2.0.4"],\ - ["@nodelib/fs.walk", "npm:1.2.6"],\ + ["fast-glob", "npm:3.3.1"],\ + ["@nodelib/fs.stat", "npm:2.0.5"],\ + ["@nodelib/fs.walk", "npm:1.2.8"],\ ["glob-parent", "npm:5.1.2"],\ ["merge2", "npm:1.4.1"],\ - ["micromatch", "npm:4.0.4"]\ + ["micromatch", "npm:4.0.5"]\ ],\ "linkType": "HARD"\ }]\ @@ -8004,19 +8283,19 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["fastest-levenshtein", [\ - ["npm:1.0.12", {\ - "packageLocation": "./.yarn/cache/fastest-levenshtein-npm-1.0.12-a32b4ef51e-e1a013698d.zip/node_modules/fastest-levenshtein/",\ + ["npm:1.0.16", {\ + "packageLocation": "./.yarn/cache/fastest-levenshtein-npm-1.0.16-192d328856-a78d44285c.zip/node_modules/fastest-levenshtein/",\ "packageDependencies": [\ - ["fastest-levenshtein", "npm:1.0.12"]\ + ["fastest-levenshtein", "npm:1.0.16"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["fastq", [\ - ["npm:1.11.0", {\ - "packageLocation": "./.yarn/cache/fastq-npm-1.11.0-840a129ad5-9db0ceea92.zip/node_modules/fastq/",\ + ["npm:1.15.0", {\ + "packageLocation": "./.yarn/cache/fastq-npm-1.15.0-1013f6514e-0170e6bfcd.zip/node_modules/fastq/",\ "packageDependencies": [\ - ["fastq", "npm:1.11.0"],\ + ["fastq", "npm:1.15.0"],\ ["reusify", "npm:1.0.4"]\ ],\ "linkType": "HARD"\ @@ -8056,7 +8335,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/finalhandler-npm-1.1.2-55a75d6b53-617880460c.zip/node_modules/finalhandler/",\ "packageDependencies": [\ ["finalhandler", "npm:1.1.2"],\ - ["debug", "virtual:fa0173d26738ef894de6f639abae81ef8c1dc3fb742f450a622367c86186d9f4d23dbd3bcc38bbe27382c39f87e11cad6137dd70480a36e752eee25974706e2c#npm:2.6.9"],\ + ["debug", "virtual:44738662cf800ff2863ba9baeabb817b24a959a14f86e20a31680e5dc79a4a738f7ceb7dca32753d579fae475aa061dffad8228a3391f3a9546b122f077e29a5#npm:2.6.9"],\ ["encodeurl", "npm:1.0.2"],\ ["escape-html", "npm:1.0.3"],\ ["on-finished", "npm:2.3.0"],\ @@ -8068,10 +8347,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["find-cache-dir", [\ - ["npm:3.3.1", {\ - "packageLocation": "./.yarn/cache/find-cache-dir-npm-3.3.1-66916b4b23-0f7c22b65e.zip/node_modules/find-cache-dir/",\ + ["npm:3.3.2", {\ + "packageLocation": "./.yarn/cache/find-cache-dir-npm-3.3.2-836e68dd83-1e61c2e64f.zip/node_modules/find-cache-dir/",\ "packageDependencies": [\ - ["find-cache-dir", "npm:3.3.1"],\ + ["find-cache-dir", "npm:3.3.2"],\ ["commondir", "npm:1.0.1"],\ ["make-dir", "npm:3.1.0"],\ ["pkg-dir", "npm:4.2.0"]\ @@ -8080,14 +8359,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["find-up", [\ - ["npm:2.1.0", {\ - "packageLocation": "./.yarn/cache/find-up-npm-2.1.0-9f6cb1765c-43284fe4da.zip/node_modules/find-up/",\ - "packageDependencies": [\ - ["find-up", "npm:2.1.0"],\ - ["locate-path", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ ["npm:4.1.0", {\ "packageLocation": "./.yarn/cache/find-up-npm-4.1.0-c3ccf8d855-4c172680e8.zip/node_modules/find-up/",\ "packageDependencies": [\ @@ -8103,33 +8374,33 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/flat-cache-npm-3.0.4-ee77e5911e-4fdd10ecbc.zip/node_modules/flat-cache/",\ "packageDependencies": [\ ["flat-cache", "npm:3.0.4"],\ - ["flatted", "npm:3.2.4"],\ + ["flatted", "npm:3.2.7"],\ ["rimraf", "npm:3.0.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["flatted", [\ - ["npm:3.2.4", {\ - "packageLocation": "./.yarn/cache/flatted-npm-3.2.4-b14c5985c7-7d33846428.zip/node_modules/flatted/",\ + ["npm:3.2.7", {\ + "packageLocation": "./.yarn/cache/flatted-npm-3.2.7-0da10b7c56-427633049d.zip/node_modules/flatted/",\ "packageDependencies": [\ - ["flatted", "npm:3.2.4"]\ + ["flatted", "npm:3.2.7"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["follow-redirects", [\ - ["npm:1.14.9", {\ - "packageLocation": "./.yarn/cache/follow-redirects-npm-1.14.9-522f191631-f5982e0eb4.zip/node_modules/follow-redirects/",\ + ["npm:1.15.2", {\ + "packageLocation": "./.yarn/cache/follow-redirects-npm-1.15.2-1ec1dd82be-faa66059b6.zip/node_modules/follow-redirects/",\ "packageDependencies": [\ - ["follow-redirects", "npm:1.14.9"]\ + ["follow-redirects", "npm:1.15.2"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:a313c479c5c7e54d9ec8fbeeea69ff640f56b8989ea2dff42351a3fa5c4061fb80a52d8ede0f0826a181a216820c2d2c3f15da881e7fdf31cef1c446e42f0c45#npm:1.14.9", {\ - "packageLocation": "./.yarn/__virtual__/follow-redirects-virtual-0b008d299e/0/cache/follow-redirects-npm-1.14.9-522f191631-f5982e0eb4.zip/node_modules/follow-redirects/",\ + ["virtual:a313c479c5c7e54d9ec8fbeeea69ff640f56b8989ea2dff42351a3fa5c4061fb80a52d8ede0f0826a181a216820c2d2c3f15da881e7fdf31cef1c446e42f0c45#npm:1.15.2", {\ + "packageLocation": "./.yarn/__virtual__/follow-redirects-virtual-2696a91c1b/0/cache/follow-redirects-npm-1.15.2-1ec1dd82be-faa66059b6.zip/node_modules/follow-redirects/",\ "packageDependencies": [\ - ["follow-redirects", "virtual:a313c479c5c7e54d9ec8fbeeea69ff640f56b8989ea2dff42351a3fa5c4061fb80a52d8ede0f0826a181a216820c2d2c3f15da881e7fdf31cef1c446e42f0c45#npm:1.14.9"],\ + ["follow-redirects", "virtual:a313c479c5c7e54d9ec8fbeeea69ff640f56b8989ea2dff42351a3fa5c4061fb80a52d8ede0f0826a181a216820c2d2c3f15da881e7fdf31cef1c446e42f0c45#npm:1.15.2"],\ ["@types/debug", null],\ ["debug", null]\ ],\ @@ -8140,13 +8411,32 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["for-each", [\ + ["npm:0.3.3", {\ + "packageLocation": "./.yarn/cache/for-each-npm-0.3.3-0010ca8cdd-6c48ff2bc6.zip/node_modules/for-each/",\ + "packageDependencies": [\ + ["for-each", "npm:0.3.3"],\ + ["is-callable", "npm:1.2.7"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["foreground-child", [\ ["npm:2.0.0", {\ "packageLocation": "./.yarn/cache/foreground-child-npm-2.0.0-80c976b61e-f77ec9aff6.zip/node_modules/foreground-child/",\ "packageDependencies": [\ ["foreground-child", "npm:2.0.0"],\ ["cross-spawn", "npm:7.0.3"],\ - ["signal-exit", "npm:3.0.3"]\ + ["signal-exit", "npm:3.0.7"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:3.1.1", {\ + "packageLocation": "./.yarn/cache/foreground-child-npm-3.1.1-77e78ed774-139d270bc8.zip/node_modules/foreground-child/",\ + "packageDependencies": [\ + ["foreground-child", "npm:3.1.1"],\ + ["cross-spawn", "npm:7.0.3"],\ + ["signal-exit", "npm:4.1.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -8179,13 +8469,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["fs-extra", [\ - ["npm:10.0.0", {\ - "packageLocation": "./.yarn/cache/fs-extra-npm-10.0.0-4f8c704115-5285a3d8f3.zip/node_modules/fs-extra/",\ + ["npm:8.1.0", {\ + "packageLocation": "./.yarn/cache/fs-extra-npm-8.1.0-197473387f-bf44f0e6ce.zip/node_modules/fs-extra/",\ "packageDependencies": [\ - ["fs-extra", "npm:10.0.0"],\ - ["graceful-fs", "npm:4.2.6"],\ - ["jsonfile", "npm:6.1.0"],\ - ["universalify", "npm:2.0.0"]\ + ["fs-extra", "npm:8.1.0"],\ + ["graceful-fs", "npm:4.2.11"],\ + ["jsonfile", "npm:4.0.0"],\ + ["universalify", "npm:0.1.2"]\ ],\ "linkType": "HARD"\ }]\ @@ -8195,7 +8485,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/fs-minipass-npm-2.1.0-501ef87306-1b8d128dae.zip/node_modules/fs-minipass/",\ "packageDependencies": [\ ["fs-minipass", "npm:2.1.0"],\ - ["minipass", "npm:3.1.3"]\ + ["minipass", "npm:3.3.6"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:3.0.3", {\ + "packageLocation": "./.yarn/cache/fs-minipass-npm-3.0.3-d148d6ac19-8722a41109.zip/node_modules/fs-minipass/",\ + "packageDependencies": [\ + ["fs-minipass", "npm:3.0.3"],\ + ["minipass", "npm:7.0.3"]\ ],\ "linkType": "HARD"\ }]\ @@ -8214,7 +8512,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/unplugged/fsevents-patch-2882183fbf/node_modules/fsevents/",\ "packageDependencies": [\ ["fsevents", "patch:fsevents@npm%3A2.3.2#~builtin::version=2.3.2&hash=df0bf1"],\ - ["node-gyp", "npm:8.0.0"]\ + ["node-gyp", "npm:9.4.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -8228,6 +8526,19 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["function.prototype.name", [\ + ["npm:1.1.5", {\ + "packageLocation": "./.yarn/cache/function.prototype.name-npm-1.1.5-e776a642bb-acd21d733a.zip/node_modules/function.prototype.name/",\ + "packageDependencies": [\ + ["function.prototype.name", "npm:1.1.5"],\ + ["call-bind", "npm:1.0.2"],\ + ["define-properties", "npm:1.2.0"],\ + ["es-abstract", "npm:1.22.1"],\ + ["functions-have-names", "npm:1.2.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["functional-red-black-tree", [\ ["npm:1.0.1", {\ "packageLocation": "./.yarn/cache/functional-red-black-tree-npm-1.0.1-ccfe924dcd-ca6c170f37.zip/node_modules/functional-red-black-tree/",\ @@ -8237,6 +8548,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["functions-have-names", [\ + ["npm:1.2.3", {\ + "packageLocation": "./.yarn/cache/functions-have-names-npm-1.2.3-e5cf1e2208-c3f1f5ba20.zip/node_modules/functions-have-names/",\ + "packageDependencies": [\ + ["functions-have-names", "npm:1.2.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["gauge", [\ ["npm:2.7.4", {\ "packageLocation": "./.yarn/cache/gauge-npm-2.7.4-2189a73529-a89b53cee6.zip/node_modules/gauge/",\ @@ -8246,10 +8566,25 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["console-control-strings", "npm:1.1.0"],\ ["has-unicode", "npm:2.0.1"],\ ["object-assign", "npm:4.1.1"],\ - ["signal-exit", "npm:3.0.3"],\ + ["signal-exit", "npm:3.0.7"],\ ["string-width", "npm:1.0.2"],\ ["strip-ansi", "npm:3.0.1"],\ - ["wide-align", "npm:1.1.3"]\ + ["wide-align", "npm:1.1.5"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:4.0.4", {\ + "packageLocation": "./.yarn/cache/gauge-npm-4.0.4-8f878385e9-788b6bfe52.zip/node_modules/gauge/",\ + "packageDependencies": [\ + ["gauge", "npm:4.0.4"],\ + ["aproba", "npm:2.0.0"],\ + ["color-support", "npm:1.1.3"],\ + ["console-control-strings", "npm:1.1.0"],\ + ["has-unicode", "npm:2.0.1"],\ + ["signal-exit", "npm:3.0.7"],\ + ["string-width", "npm:4.2.3"],\ + ["strip-ansi", "npm:6.0.1"],\ + ["wide-align", "npm:1.1.5"]\ ],\ "linkType": "HARD"\ }]\ @@ -8273,13 +8608,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["get-intrinsic", [\ - ["npm:1.1.1", {\ - "packageLocation": "./.yarn/cache/get-intrinsic-npm-1.1.1-7e868745da-a9fe2ca8fa.zip/node_modules/get-intrinsic/",\ + ["npm:1.2.1", {\ + "packageLocation": "./.yarn/cache/get-intrinsic-npm-1.2.1-ae857fd610-5b61d88552.zip/node_modules/get-intrinsic/",\ "packageDependencies": [\ - ["get-intrinsic", "npm:1.1.1"],\ + ["get-intrinsic", "npm:1.2.1"],\ ["function-bind", "npm:1.1.1"],\ ["has", "npm:1.0.3"],\ - ["has-symbols", "npm:1.0.2"]\ + ["has-proto", "npm:1.0.1"],\ + ["has-symbols", "npm:1.0.3"]\ ],\ "linkType": "HARD"\ }]\ @@ -8293,11 +8629,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ - ["get-stream", [\ - ["npm:6.0.1", {\ - "packageLocation": "./.yarn/cache/get-stream-npm-6.0.1-83e51a4642-e04ecece32.zip/node_modules/get-stream/",\ + ["get-symbol-description", [\ + ["npm:1.0.0", {\ + "packageLocation": "./.yarn/cache/get-symbol-description-npm-1.0.0-9c95a4bc1f-9ceff8fe96.zip/node_modules/get-symbol-description/",\ "packageDependencies": [\ - ["get-stream", "npm:6.0.1"]\ + ["get-symbol-description", "npm:1.0.0"],\ + ["call-bind", "npm:1.0.2"],\ + ["get-intrinsic", "npm:1.2.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -8312,10 +8650,22 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["glob", [\ - ["npm:7.2.0", {\ - "packageLocation": "./.yarn/cache/glob-npm-7.2.0-bb4644d239-78a8ea9423.zip/node_modules/glob/",\ + ["npm:10.3.3", {\ + "packageLocation": "./.yarn/cache/glob-npm-10.3.3-2d9abea8c7-29190d3291.zip/node_modules/glob/",\ + "packageDependencies": [\ + ["glob", "npm:10.3.3"],\ + ["foreground-child", "npm:3.1.1"],\ + ["jackspeak", "npm:2.2.3"],\ + ["minimatch", "npm:9.0.3"],\ + ["minipass", "npm:7.0.3"],\ + ["path-scurry", "npm:1.10.1"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:7.2.3", {\ + "packageLocation": "./.yarn/cache/glob-npm-7.2.3-2d866d17a5-29452e97b3.zip/node_modules/glob/",\ "packageDependencies": [\ - ["glob", "npm:7.2.0"],\ + ["glob", "npm:7.2.3"],\ ["fs.realpath", "npm:1.0.0"],\ ["inflight", "npm:1.0.6"],\ ["inherits", "npm:2.0.4"],\ @@ -8353,29 +8703,21 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:12.4.0", {\ - "packageLocation": "./.yarn/cache/globals-npm-12.4.0-02b5a6ba9c-7ae5ee16a9.zip/node_modules/globals/",\ - "packageDependencies": [\ - ["globals", "npm:12.4.0"],\ - ["type-fest", "npm:0.8.1"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:13.8.0", {\ - "packageLocation": "./.yarn/cache/globals-npm-13.8.0-0988f60ed8-acbfcad2b8.zip/node_modules/globals/",\ + ["npm:13.21.0", {\ + "packageLocation": "./.yarn/cache/globals-npm-13.21.0-c0829ce1cb-86c92ca8a0.zip/node_modules/globals/",\ "packageDependencies": [\ - ["globals", "npm:13.8.0"],\ + ["globals", "npm:13.21.0"],\ ["type-fest", "npm:0.20.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["globalthis", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/globalthis-npm-1.0.2-061a9a4217-5a5f3c7ab9.zip/node_modules/globalthis/",\ + ["npm:1.0.3", {\ + "packageLocation": "./.yarn/cache/globalthis-npm-1.0.3-96cd56020d-fbd7d760dc.zip/node_modules/globalthis/",\ "packageDependencies": [\ - ["globalthis", "npm:1.0.2"],\ - ["define-properties", "npm:1.1.3"]\ + ["globalthis", "npm:1.0.3"],\ + ["define-properties", "npm:1.2.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -8387,35 +8729,38 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["globby", "npm:11.1.0"],\ ["array-union", "npm:2.1.0"],\ ["dir-glob", "npm:3.0.1"],\ - ["fast-glob", "npm:3.2.11"],\ - ["ignore", "npm:5.2.0"],\ + ["fast-glob", "npm:3.3.1"],\ + ["ignore", "npm:5.2.4"],\ ["merge2", "npm:1.4.1"],\ ["slash", "npm:3.0.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["graceful-fs", [\ - ["npm:4.2.10", {\ - "packageLocation": "./.yarn/cache/graceful-fs-npm-4.2.10-79c70989ca-3f109d70ae.zip/node_modules/graceful-fs/",\ + ["gopd", [\ + ["npm:1.0.1", {\ + "packageLocation": "./.yarn/cache/gopd-npm-1.0.1-10c1d0b534-a5ccfb8806.zip/node_modules/gopd/",\ "packageDependencies": [\ - ["graceful-fs", "npm:4.2.10"]\ + ["gopd", "npm:1.0.1"],\ + ["get-intrinsic", "npm:1.2.1"]\ ],\ "linkType": "HARD"\ - }],\ - ["npm:4.2.6", {\ - "packageLocation": "./.yarn/cache/graceful-fs-npm-4.2.6-535b2234f1-792e64aafd.zip/node_modules/graceful-fs/",\ + }]\ + ]],\ + ["graceful-fs", [\ + ["npm:4.2.11", {\ + "packageLocation": "./.yarn/cache/graceful-fs-npm-4.2.11-24bb648a68-ac85f94da9.zip/node_modules/graceful-fs/",\ "packageDependencies": [\ - ["graceful-fs", "npm:4.2.6"]\ + ["graceful-fs", "npm:4.2.11"]\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["grapheme-splitter", [\ - ["npm:1.0.4", {\ - "packageLocation": "./.yarn/cache/grapheme-splitter-npm-1.0.4-648f2bf509-0c22ec54de.zip/node_modules/grapheme-splitter/",\ + ["graphemer", [\ + ["npm:1.4.0", {\ + "packageLocation": "./.yarn/cache/graphemer-npm-1.4.0-0627732d35-bab8f0be9b.zip/node_modules/graphemer/",\ "packageDependencies": [\ - ["grapheme-splitter", "npm:1.0.4"]\ + ["graphemer", "npm:1.4.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -8431,10 +8776,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["has-bigints", [\ - ["npm:1.0.1", {\ - "packageLocation": "./.yarn/cache/has-bigints-npm-1.0.1-1b93717a74-44ab558681.zip/node_modules/has-bigints/",\ + ["npm:1.0.2", {\ + "packageLocation": "./.yarn/cache/has-bigints-npm-1.0.2-52732e614d-390e31e7be.zip/node_modules/has-bigints/",\ "packageDependencies": [\ - ["has-bigints", "npm:1.0.1"]\ + ["has-bigints", "npm:1.0.2"]\ ],\ "linkType": "HARD"\ }]\ @@ -8455,11 +8800,40 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["has-property-descriptors", [\ + ["npm:1.0.0", {\ + "packageLocation": "./.yarn/cache/has-property-descriptors-npm-1.0.0-56289b918d-a6d3f0a266.zip/node_modules/has-property-descriptors/",\ + "packageDependencies": [\ + ["has-property-descriptors", "npm:1.0.0"],\ + ["get-intrinsic", "npm:1.2.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["has-proto", [\ + ["npm:1.0.1", {\ + "packageLocation": "./.yarn/cache/has-proto-npm-1.0.1-631ea9d820-febc5b5b53.zip/node_modules/has-proto/",\ + "packageDependencies": [\ + ["has-proto", "npm:1.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["has-symbols", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/has-symbols-npm-1.0.2-50e53af115-2309c42607.zip/node_modules/has-symbols/",\ + ["npm:1.0.3", {\ + "packageLocation": "./.yarn/cache/has-symbols-npm-1.0.3-1986bff2c4-a054c40c63.zip/node_modules/has-symbols/",\ + "packageDependencies": [\ + ["has-symbols", "npm:1.0.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["has-tostringtag", [\ + ["npm:1.0.0", {\ + "packageLocation": "./.yarn/cache/has-tostringtag-npm-1.0.0-b1fcf3ab55-cc12eb28cb.zip/node_modules/has-tostringtag/",\ "packageDependencies": [\ - ["has-symbols", "npm:1.0.2"]\ + ["has-tostringtag", "npm:1.0.0"],\ + ["has-symbols", "npm:1.0.3"]\ ],\ "linkType": "HARD"\ }]\ @@ -8479,7 +8853,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["hash-base", "npm:3.1.0"],\ ["inherits", "npm:2.0.4"],\ - ["readable-stream", "npm:3.6.0"],\ + ["readable-stream", "npm:3.6.2"],\ ["safe-buffer", "npm:5.2.1"]\ ],\ "linkType": "HARD"\ @@ -8501,7 +8875,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/hasha-npm-5.2.2-d171116d12-06cc474bed.zip/node_modules/hasha/",\ "packageDependencies": [\ ["hasha", "npm:5.2.2"],\ - ["is-stream", "npm:2.0.0"],\ + ["is-stream", "npm:2.0.1"],\ ["type-fest", "npm:0.8.1"]\ ],\ "linkType": "HARD"\ @@ -8519,15 +8893,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ - ["hosted-git-info", [\ - ["npm:2.8.9", {\ - "packageLocation": "./.yarn/cache/hosted-git-info-npm-2.8.9-62c44fa93f-c955394bda.zip/node_modules/hosted-git-info/",\ - "packageDependencies": [\ - ["hosted-git-info", "npm:2.8.9"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ ["html-escaper", [\ ["npm:2.0.2", {\ "packageLocation": "./.yarn/cache/html-escaper-npm-2.0.2-38e51ef294-d2df2da3ad.zip/node_modules/html-escaper/",\ @@ -8538,59 +8903,47 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["http-assert", [\ - ["npm:1.4.1", {\ - "packageLocation": "./.yarn/cache/http-assert-npm-1.4.1-cabfc41ff3-dd5d30eb45.zip/node_modules/http-assert/",\ + ["npm:1.5.0", {\ + "packageLocation": "./.yarn/cache/http-assert-npm-1.5.0-bf7ea4ffcf-69c9b3c14c.zip/node_modules/http-assert/",\ "packageDependencies": [\ - ["http-assert", "npm:1.4.1"],\ + ["http-assert", "npm:1.5.0"],\ ["deep-equal", "npm:1.0.1"],\ - ["http-errors", "npm:1.7.3"]\ + ["http-errors", "npm:1.8.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["http-cache-semantics", [\ - ["npm:4.1.0", {\ - "packageLocation": "./.yarn/cache/http-cache-semantics-npm-4.1.0-860520a31f-974de94a81.zip/node_modules/http-cache-semantics/",\ + ["npm:4.1.1", {\ + "packageLocation": "./.yarn/cache/http-cache-semantics-npm-4.1.1-1120131375-83ac0bc60b.zip/node_modules/http-cache-semantics/",\ "packageDependencies": [\ - ["http-cache-semantics", "npm:4.1.0"]\ + ["http-cache-semantics", "npm:4.1.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["http-errors", [\ - ["npm:1.7.2", {\ - "packageLocation": "./.yarn/cache/http-errors-npm-1.7.2-67163ae1df-5534b0ae08.zip/node_modules/http-errors/",\ - "packageDependencies": [\ - ["http-errors", "npm:1.7.2"],\ - ["depd", "npm:1.1.2"],\ - ["inherits", "npm:2.0.3"],\ - ["setprototypeof", "npm:1.1.1"],\ - ["statuses", "npm:1.5.0"],\ - ["toidentifier", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:1.7.3", {\ - "packageLocation": "./.yarn/cache/http-errors-npm-1.7.3-f6dc83b082-a59f359473.zip/node_modules/http-errors/",\ + ["npm:1.8.1", {\ + "packageLocation": "./.yarn/cache/http-errors-npm-1.8.1-fb60d9f6ae-d3c7e7e776.zip/node_modules/http-errors/",\ "packageDependencies": [\ - ["http-errors", "npm:1.7.3"],\ + ["http-errors", "npm:1.8.1"],\ ["depd", "npm:1.1.2"],\ ["inherits", "npm:2.0.4"],\ - ["setprototypeof", "npm:1.1.1"],\ + ["setprototypeof", "npm:1.2.0"],\ ["statuses", "npm:1.5.0"],\ - ["toidentifier", "npm:1.0.0"]\ + ["toidentifier", "npm:1.0.1"]\ ],\ "linkType": "HARD"\ }],\ - ["npm:1.8.0", {\ - "packageLocation": "./.yarn/cache/http-errors-npm-1.8.0-4399ea3b8d-873d997bad.zip/node_modules/http-errors/",\ + ["npm:2.0.0", {\ + "packageLocation": "./.yarn/cache/http-errors-npm-2.0.0-3f1c503428-9b0a378266.zip/node_modules/http-errors/",\ "packageDependencies": [\ - ["http-errors", "npm:1.8.0"],\ - ["depd", "npm:1.1.2"],\ + ["http-errors", "npm:2.0.0"],\ + ["depd", "npm:2.0.0"],\ ["inherits", "npm:2.0.4"],\ ["setprototypeof", "npm:1.2.0"],\ - ["statuses", "npm:1.5.0"],\ - ["toidentifier", "npm:1.0.0"]\ + ["statuses", "npm:2.0.1"],\ + ["toidentifier", "npm:1.0.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -8601,40 +8954,31 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["http-proxy", "npm:1.18.1"],\ ["eventemitter3", "npm:4.0.7"],\ - ["follow-redirects", "virtual:a313c479c5c7e54d9ec8fbeeea69ff640f56b8989ea2dff42351a3fa5c4061fb80a52d8ede0f0826a181a216820c2d2c3f15da881e7fdf31cef1c446e42f0c45#npm:1.14.9"],\ + ["follow-redirects", "virtual:a313c479c5c7e54d9ec8fbeeea69ff640f56b8989ea2dff42351a3fa5c4061fb80a52d8ede0f0826a181a216820c2d2c3f15da881e7fdf31cef1c446e42f0c45#npm:1.15.2"],\ ["requires-port", "npm:1.0.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["http-proxy-agent", [\ - ["npm:4.0.1", {\ - "packageLocation": "./.yarn/cache/http-proxy-agent-npm-4.0.1-ce9ef61788-c6a5da5a19.zip/node_modules/http-proxy-agent/",\ + ["npm:5.0.0", {\ + "packageLocation": "./.yarn/cache/http-proxy-agent-npm-5.0.0-7f1f121b83-e2ee1ff165.zip/node_modules/http-proxy-agent/",\ "packageDependencies": [\ - ["http-proxy-agent", "npm:4.0.1"],\ - ["@tootallnate/once", "npm:1.1.2"],\ + ["http-proxy-agent", "npm:5.0.0"],\ + ["@tootallnate/once", "npm:2.0.0"],\ ["agent-base", "npm:6.0.2"],\ - ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"]\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["https-proxy-agent", [\ - ["npm:5.0.0", {\ - "packageLocation": "./.yarn/cache/https-proxy-agent-npm-5.0.0-bb777903c3-165bfb090b.zip/node_modules/https-proxy-agent/",\ + ["npm:5.0.1", {\ + "packageLocation": "./.yarn/cache/https-proxy-agent-npm-5.0.1-42d65f358e-571fccdf38.zip/node_modules/https-proxy-agent/",\ "packageDependencies": [\ - ["https-proxy-agent", "npm:5.0.0"],\ + ["https-proxy-agent", "npm:5.0.1"],\ ["agent-base", "npm:6.0.2"],\ - ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["human-signals", [\ - ["npm:2.1.0", {\ - "packageLocation": "./.yarn/cache/human-signals-npm-2.1.0-f75815481d-b87fd89fce.zip/node_modules/human-signals/",\ - "packageDependencies": [\ - ["human-signals", "npm:2.1.0"]\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"]\ ],\ "linkType": "HARD"\ }]\ @@ -8658,10 +9002,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:0.6.2", {\ - "packageLocation": "./.yarn/cache/iconv-lite-npm-0.6.2-13e85ec7dc-03e03eb9fc.zip/node_modules/iconv-lite/",\ + ["npm:0.6.3", {\ + "packageLocation": "./.yarn/cache/iconv-lite-npm-0.6.3-24b8aae27e-3f60d47a5c.zip/node_modules/iconv-lite/",\ "packageDependencies": [\ - ["iconv-lite", "npm:0.6.2"],\ + ["iconv-lite", "npm:0.6.3"],\ ["safer-buffer", "npm:2.1.2"]\ ],\ "linkType": "HARD"\ @@ -8684,10 +9028,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:5.2.0", {\ - "packageLocation": "./.yarn/cache/ignore-npm-5.2.0-fc4b58a4f3-6b1f926792.zip/node_modules/ignore/",\ + ["npm:5.2.4", {\ + "packageLocation": "./.yarn/cache/ignore-npm-5.2.4-fbe6e989e5-3d4c309c60.zip/node_modules/ignore/",\ "packageDependencies": [\ - ["ignore", "npm:5.2.0"]\ + ["ignore", "npm:5.2.4"]\ ],\ "linkType": "HARD"\ }]\ @@ -8704,10 +9048,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["import-local", [\ - ["npm:3.0.2", {\ - "packageLocation": "./.yarn/cache/import-local-npm-3.0.2-c8afc1fd5f-c74d9f9484.zip/node_modules/import-local/",\ + ["npm:3.1.0", {\ + "packageLocation": "./.yarn/cache/import-local-npm-3.1.0-8960af5e51-bfcdb63b5e.zip/node_modules/import-local/",\ "packageDependencies": [\ - ["import-local", "npm:3.0.2"],\ + ["import-local", "npm:3.1.0"],\ ["pkg-dir", "npm:4.2.0"],\ ["resolve-cwd", "npm:3.0.0"]\ ],\ @@ -8732,15 +9076,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ - ["infer-owner", [\ - ["npm:1.0.4", {\ - "packageLocation": "./.yarn/cache/infer-owner-npm-1.0.4-685ac3d2af-181e732764.zip/node_modules/infer-owner/",\ - "packageDependencies": [\ - ["infer-owner", "npm:1.0.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ ["inflation", [\ ["npm:2.0.0", {\ "packageLocation": "./.yarn/cache/inflation-npm-2.0.0-e638c91672-a0494871b1.zip/node_modules/inflation/",\ @@ -8762,13 +9097,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["inherits", [\ - ["npm:2.0.3", {\ - "packageLocation": "./.yarn/cache/inherits-npm-2.0.3-401e64b080-78cb8d7d85.zip/node_modules/inherits/",\ - "packageDependencies": [\ - ["inherits", "npm:2.0.3"]\ - ],\ - "linkType": "HARD"\ - }],\ ["npm:2.0.4", {\ "packageLocation": "./.yarn/cache/inherits-npm-2.0.4-c66b3957a0-4a48a73384.zip/node_modules/inherits/",\ "packageDependencies": [\ @@ -8786,6 +9114,18 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["internal-slot", [\ + ["npm:1.0.5", {\ + "packageLocation": "./.yarn/cache/internal-slot-npm-1.0.5-a2241f3e66-97e84046bf.zip/node_modules/internal-slot/",\ + "packageDependencies": [\ + ["internal-slot", "npm:1.0.5"],\ + ["get-intrinsic", "npm:1.2.1"],\ + ["has", "npm:1.0.3"],\ + ["side-channel", "npm:1.0.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["interpret", [\ ["npm:2.2.0", {\ "packageLocation": "./.yarn/cache/interpret-npm-2.2.0-3603a544e1-f51efef7cb.zip/node_modules/interpret/",\ @@ -8796,28 +9136,32 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["ip", [\ - ["npm:1.1.5", {\ - "packageLocation": "./.yarn/cache/ip-npm-1.1.5-af36318aa6-30133981f0.zip/node_modules/ip/",\ + ["npm:2.0.0", {\ + "packageLocation": "./.yarn/cache/ip-npm-2.0.0-204facb3cc-cfcfac6b87.zip/node_modules/ip/",\ "packageDependencies": [\ - ["ip", "npm:1.1.5"]\ + ["ip", "npm:2.0.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["is-arrayish", [\ - ["npm:0.2.1", {\ - "packageLocation": "./.yarn/cache/is-arrayish-npm-0.2.1-23927dfb15-eef4417e3c.zip/node_modules/is-arrayish/",\ + ["is-array-buffer", [\ + ["npm:3.0.2", {\ + "packageLocation": "./.yarn/cache/is-array-buffer-npm-3.0.2-0dec897785-dcac9dda66.zip/node_modules/is-array-buffer/",\ "packageDependencies": [\ - ["is-arrayish", "npm:0.2.1"]\ + ["is-array-buffer", "npm:3.0.2"],\ + ["call-bind", "npm:1.0.2"],\ + ["get-intrinsic", "npm:1.2.1"],\ + ["is-typed-array", "npm:1.1.12"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["is-bigint", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/is-bigint-npm-1.0.2-db0dde4bd4-5268edbde8.zip/node_modules/is-bigint/",\ + ["npm:1.0.4", {\ + "packageLocation": "./.yarn/cache/is-bigint-npm-1.0.4-31c2eecbc9-c56edfe09b.zip/node_modules/is-bigint/",\ "packageDependencies": [\ - ["is-bigint", "npm:1.0.2"]\ + ["is-bigint", "npm:1.0.4"],\ + ["has-bigints", "npm:1.0.2"]\ ],\ "linkType": "HARD"\ }]\ @@ -8833,39 +9177,41 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["is-boolean-object", [\ - ["npm:1.1.1", {\ - "packageLocation": "./.yarn/cache/is-boolean-object-npm-1.1.1-4a132c53e4-95b8322426.zip/node_modules/is-boolean-object/",\ + ["npm:1.1.2", {\ + "packageLocation": "./.yarn/cache/is-boolean-object-npm-1.1.2-ecbd575e6a-c03b23dbaa.zip/node_modules/is-boolean-object/",\ "packageDependencies": [\ - ["is-boolean-object", "npm:1.1.1"],\ - ["call-bind", "npm:1.0.2"]\ + ["is-boolean-object", "npm:1.1.2"],\ + ["call-bind", "npm:1.0.2"],\ + ["has-tostringtag", "npm:1.0.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["is-callable", [\ - ["npm:1.2.3", {\ - "packageLocation": "./.yarn/cache/is-callable-npm-1.2.3-2a68c9d549-084a732afd.zip/node_modules/is-callable/",\ + ["npm:1.2.7", {\ + "packageLocation": "./.yarn/cache/is-callable-npm-1.2.7-808a303e61-61fd57d03b.zip/node_modules/is-callable/",\ "packageDependencies": [\ - ["is-callable", "npm:1.2.3"]\ + ["is-callable", "npm:1.2.7"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["is-core-module", [\ - ["npm:2.4.0", {\ - "packageLocation": "./.yarn/cache/is-core-module-npm-2.4.0-bae19c65cd-c498902d4c.zip/node_modules/is-core-module/",\ + ["npm:2.13.0", {\ + "packageLocation": "./.yarn/cache/is-core-module-npm-2.13.0-e444c50225-053ab101fb.zip/node_modules/is-core-module/",\ "packageDependencies": [\ - ["is-core-module", "npm:2.4.0"],\ + ["is-core-module", "npm:2.13.0"],\ ["has", "npm:1.0.3"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["is-date-object", [\ - ["npm:1.0.4", {\ - "packageLocation": "./.yarn/cache/is-date-object-npm-1.0.4-bc85407e70-20ce7b73fd.zip/node_modules/is-date-object/",\ + ["npm:1.0.5", {\ + "packageLocation": "./.yarn/cache/is-date-object-npm-1.0.5-88f3d08b5e-baa9077cdf.zip/node_modules/is-date-object/",\ "packageDependencies": [\ - ["is-date-object", "npm:1.0.4"]\ + ["is-date-object", "npm:1.0.5"],\ + ["has-tostringtag", "npm:1.0.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -8897,13 +9243,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/is-fullwidth-code-point-npm-2.0.0-507f56ec71-eef9c6e15f.zip/node_modules/is-fullwidth-code-point/",\ - "packageDependencies": [\ - ["is-fullwidth-code-point", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ ["npm:3.0.0", {\ "packageLocation": "./.yarn/cache/is-fullwidth-code-point-npm-3.0.0-1ecf4ebee5-44a30c2945.zip/node_modules/is-fullwidth-code-point/",\ "packageDependencies": [\ @@ -8913,10 +9252,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["is-generator-function", [\ - ["npm:1.0.9", {\ - "packageLocation": "./.yarn/cache/is-generator-function-npm-1.0.9-5c5a02a5d9-78e68709a0.zip/node_modules/is-generator-function/",\ + ["npm:1.0.10", {\ + "packageLocation": "./.yarn/cache/is-generator-function-npm-1.0.10-1d0f3809ef-d54644e7db.zip/node_modules/is-generator-function/",\ "packageDependencies": [\ - ["is-generator-function", "npm:1.0.9"]\ + ["is-generator-function", "npm:1.0.10"],\ + ["has-tostringtag", "npm:1.0.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -8941,10 +9281,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["is-negative-zero", [\ - ["npm:2.0.1", {\ - "packageLocation": "./.yarn/cache/is-negative-zero-npm-2.0.1-d8f3dbcfe1-a46f2e0cb5.zip/node_modules/is-negative-zero/",\ + ["npm:2.0.2", {\ + "packageLocation": "./.yarn/cache/is-negative-zero-npm-2.0.2-0adac91f15-f3232194c4.zip/node_modules/is-negative-zero/",\ "packageDependencies": [\ - ["is-negative-zero", "npm:2.0.1"]\ + ["is-negative-zero", "npm:2.0.2"]\ ],\ "linkType": "HARD"\ }]\ @@ -8959,10 +9299,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["is-number-object", [\ - ["npm:1.0.5", {\ - "packageLocation": "./.yarn/cache/is-number-object-npm-1.0.5-fb5fdccdde-8c217b4a16.zip/node_modules/is-number-object/",\ + ["npm:1.0.7", {\ + "packageLocation": "./.yarn/cache/is-number-object-npm-1.0.7-539d0e274d-d1e8d01bb0.zip/node_modules/is-number-object/",\ "packageDependencies": [\ - ["is-number-object", "npm:1.0.5"]\ + ["is-number-object", "npm:1.0.7"],\ + ["has-tostringtag", "npm:1.0.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -8978,30 +9319,41 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["is-regex", [\ - ["npm:1.1.3", {\ - "packageLocation": "./.yarn/cache/is-regex-npm-1.1.3-5a00a17388-19a831a1ba.zip/node_modules/is-regex/",\ + ["npm:1.1.4", {\ + "packageLocation": "./.yarn/cache/is-regex-npm-1.1.4-cca193ef11-362399b335.zip/node_modules/is-regex/",\ "packageDependencies": [\ - ["is-regex", "npm:1.1.3"],\ + ["is-regex", "npm:1.1.4"],\ ["call-bind", "npm:1.0.2"],\ - ["has-symbols", "npm:1.0.2"]\ + ["has-tostringtag", "npm:1.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-shared-array-buffer", [\ + ["npm:1.0.2", {\ + "packageLocation": "./.yarn/cache/is-shared-array-buffer-npm-1.0.2-32e4181fcd-9508929cf1.zip/node_modules/is-shared-array-buffer/",\ + "packageDependencies": [\ + ["is-shared-array-buffer", "npm:1.0.2"],\ + ["call-bind", "npm:1.0.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["is-stream", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/is-stream-npm-2.0.0-1401f82ad7-4dc47738e2.zip/node_modules/is-stream/",\ + ["npm:2.0.1", {\ + "packageLocation": "./.yarn/cache/is-stream-npm-2.0.1-c802db55e7-b8e05ccdf9.zip/node_modules/is-stream/",\ "packageDependencies": [\ - ["is-stream", "npm:2.0.0"]\ + ["is-stream", "npm:2.0.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["is-string", [\ - ["npm:1.0.6", {\ - "packageLocation": "./.yarn/cache/is-string-npm-1.0.6-2e7dbd354f-9990bf0abf.zip/node_modules/is-string/",\ + ["npm:1.0.7", {\ + "packageLocation": "./.yarn/cache/is-string-npm-1.0.7-9f7066daed-323b3d0462.zip/node_modules/is-string/",\ "packageDependencies": [\ - ["is-string", "npm:1.0.6"]\ + ["is-string", "npm:1.0.7"],\ + ["has-tostringtag", "npm:1.0.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -9011,7 +9363,17 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/is-symbol-npm-1.0.4-eb9baac703-92805812ef.zip/node_modules/is-symbol/",\ "packageDependencies": [\ ["is-symbol", "npm:1.0.4"],\ - ["has-symbols", "npm:1.0.2"]\ + ["has-symbols", "npm:1.0.3"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-typed-array", [\ + ["npm:1.1.12", {\ + "packageLocation": "./.yarn/cache/is-typed-array-npm-1.1.12-6135c91b1a-4c89c4a3be.zip/node_modules/is-typed-array/",\ + "packageDependencies": [\ + ["is-typed-array", "npm:1.1.12"],\ + ["which-typed-array", "npm:1.1.11"]\ ],\ "linkType": "HARD"\ }]\ @@ -9020,7 +9382,17 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["npm:1.0.0", {\ "packageLocation": "./.yarn/cache/is-typedarray-npm-1.0.0-bbd99de5b6-3508c6cd0a.zip/node_modules/is-typedarray/",\ "packageDependencies": [\ - ["is-typedarray", "npm:1.0.0"]\ + ["is-typedarray", "npm:1.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["is-weakref", [\ + ["npm:1.0.2", {\ + "packageLocation": "./.yarn/cache/is-weakref-npm-1.0.2-ff80e8c314-95bd9a57cd.zip/node_modules/is-weakref/",\ + "packageDependencies": [\ + ["is-weakref", "npm:1.0.2"],\ + ["call-bind", "npm:1.0.2"]\ ],\ "linkType": "HARD"\ }]\ @@ -9051,13 +9423,20 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["isarray", "npm:1.0.0"]\ ],\ "linkType": "HARD"\ + }],\ + ["npm:2.0.5", {\ + "packageLocation": "./.yarn/cache/isarray-npm-2.0.5-4ba522212d-bd5bbe4104.zip/node_modules/isarray/",\ + "packageDependencies": [\ + ["isarray", "npm:2.0.5"]\ + ],\ + "linkType": "HARD"\ }]\ ]],\ ["isbinaryfile", [\ - ["npm:4.0.8", {\ - "packageLocation": "./.yarn/cache/isbinaryfile-npm-4.0.8-62c71dd57b-606e3bb648.zip/node_modules/isbinaryfile/",\ + ["npm:4.0.10", {\ + "packageLocation": "./.yarn/cache/isbinaryfile-npm-4.0.10-91d1251522-a6b28db7e2.zip/node_modules/isbinaryfile/",\ "packageDependencies": [\ - ["isbinaryfile", "npm:4.0.8"]\ + ["isbinaryfile", "npm:4.0.10"]\ ],\ "linkType": "HARD"\ }]\ @@ -9093,7 +9472,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["isomorphic-ws", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:4.0.1"],\ ["@types/ws", "npm:6.0.4"],\ - ["ws", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:7.4.6"]\ + ["ws", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:7.5.9"]\ ],\ "packagePeers": [\ "@types/ws",\ @@ -9103,10 +9482,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["istanbul-lib-coverage", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/istanbul-lib-coverage-npm-3.0.0-654bb0146d-ea57c24288.zip/node_modules/istanbul-lib-coverage/",\ + ["npm:3.2.0", {\ + "packageLocation": "./.yarn/cache/istanbul-lib-coverage-npm-3.2.0-93f84b2c8c-a2a545033b.zip/node_modules/istanbul-lib-coverage/",\ "packageDependencies": [\ - ["istanbul-lib-coverage", "npm:3.0.0"]\ + ["istanbul-lib-coverage", "npm:3.2.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -9126,81 +9505,91 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/istanbul-lib-instrument-npm-4.0.3-4d4c2263f8-fa1171d302.zip/node_modules/istanbul-lib-instrument/",\ "packageDependencies": [\ ["istanbul-lib-instrument", "npm:4.0.3"],\ - ["@babel/core", "npm:7.14.3"],\ + ["@babel/core", "npm:7.22.10"],\ ["@istanbuljs/schema", "npm:0.1.3"],\ - ["istanbul-lib-coverage", "npm:3.0.0"],\ - ["semver", "npm:6.3.0"]\ + ["istanbul-lib-coverage", "npm:3.2.0"],\ + ["semver", "npm:6.3.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["istanbul-lib-processinfo", [\ - ["npm:2.0.2", {\ - "packageLocation": "./.yarn/cache/istanbul-lib-processinfo-npm-2.0.2-74916fa6cb-400bd0b25b.zip/node_modules/istanbul-lib-processinfo/",\ + ["npm:2.0.3", {\ + "packageLocation": "./.yarn/cache/istanbul-lib-processinfo-npm-2.0.3-468806e0b3-501729e809.zip/node_modules/istanbul-lib-processinfo/",\ "packageDependencies": [\ - ["istanbul-lib-processinfo", "npm:2.0.2"],\ + ["istanbul-lib-processinfo", "npm:2.0.3"],\ ["archy", "npm:1.0.0"],\ ["cross-spawn", "npm:7.0.3"],\ - ["istanbul-lib-coverage", "npm:3.0.0"],\ - ["make-dir", "npm:3.1.0"],\ + ["istanbul-lib-coverage", "npm:3.2.0"],\ ["p-map", "npm:3.0.0"],\ ["rimraf", "npm:3.0.2"],\ - ["uuid", "npm:3.4.0"]\ + ["uuid", "npm:8.3.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["istanbul-lib-report", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/istanbul-lib-report-npm-3.0.0-660f97340a-3f29eb3f53.zip/node_modules/istanbul-lib-report/",\ + ["npm:3.0.1", {\ + "packageLocation": "./.yarn/cache/istanbul-lib-report-npm-3.0.1-b17446ab24-fd17a1b879.zip/node_modules/istanbul-lib-report/",\ "packageDependencies": [\ - ["istanbul-lib-report", "npm:3.0.0"],\ - ["istanbul-lib-coverage", "npm:3.0.0"],\ - ["make-dir", "npm:3.1.0"],\ + ["istanbul-lib-report", "npm:3.0.1"],\ + ["istanbul-lib-coverage", "npm:3.2.0"],\ + ["make-dir", "npm:4.0.0"],\ ["supports-color", "npm:7.2.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["istanbul-lib-source-maps", [\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/istanbul-lib-source-maps-npm-4.0.0-def3895674-292bfb4083.zip/node_modules/istanbul-lib-source-maps/",\ + ["npm:4.0.1", {\ + "packageLocation": "./.yarn/cache/istanbul-lib-source-maps-npm-4.0.1-af0f859df7-21ad3df45d.zip/node_modules/istanbul-lib-source-maps/",\ "packageDependencies": [\ - ["istanbul-lib-source-maps", "npm:4.0.0"],\ - ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"],\ - ["istanbul-lib-coverage", "npm:3.0.0"],\ + ["istanbul-lib-source-maps", "npm:4.0.1"],\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"],\ + ["istanbul-lib-coverage", "npm:3.2.0"],\ ["source-map", "npm:0.6.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["istanbul-reports", [\ - ["npm:3.0.2", {\ - "packageLocation": "./.yarn/cache/istanbul-reports-npm-3.0.2-6ccd67e17e-c5da63f1f4.zip/node_modules/istanbul-reports/",\ + ["npm:3.1.6", {\ + "packageLocation": "./.yarn/cache/istanbul-reports-npm-3.1.6-66918eb97f-44c4c0582f.zip/node_modules/istanbul-reports/",\ "packageDependencies": [\ - ["istanbul-reports", "npm:3.0.2"],\ + ["istanbul-reports", "npm:3.1.6"],\ ["html-escaper", "npm:2.0.2"],\ - ["istanbul-lib-report", "npm:3.0.0"]\ + ["istanbul-lib-report", "npm:3.0.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["jackspeak", [\ + ["npm:2.2.3", {\ + "packageLocation": "./.yarn/cache/jackspeak-npm-2.2.3-bcc5afec11-8add557045.zip/node_modules/jackspeak/",\ + "packageDependencies": [\ + ["jackspeak", "npm:2.2.3"],\ + ["@isaacs/cliui", "npm:8.0.2"],\ + ["@pkgjs/parseargs", "npm:0.11.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["jasmine", [\ - ["npm:4.2.1", {\ - "packageLocation": "./.yarn/cache/jasmine-npm-4.2.1-b8c8f1d620-3fe11afead.zip/node_modules/jasmine/",\ + ["npm:4.6.0", {\ + "packageLocation": "./.yarn/cache/jasmine-npm-4.6.0-610a07828e-1034466aac.zip/node_modules/jasmine/",\ "packageDependencies": [\ - ["jasmine", "npm:4.2.1"],\ - ["glob", "npm:7.2.0"],\ - ["jasmine-core", "npm:4.2.0"]\ + ["jasmine", "npm:4.6.0"],\ + ["glob", "npm:7.2.3"],\ + ["jasmine-core", "npm:4.6.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["jasmine-core", [\ - ["npm:4.2.0", {\ - "packageLocation": "./.yarn/cache/jasmine-core-npm-4.2.0-21c91c9b6b-86c731bb4d.zip/node_modules/jasmine-core/",\ + ["npm:4.6.0", {\ + "packageLocation": "./.yarn/cache/jasmine-core-npm-4.6.0-57a71d0bb0-c5c5ce16c5.zip/node_modules/jasmine-core/",\ "packageDependencies": [\ - ["jasmine-core", "npm:4.2.0"]\ + ["jasmine-core", "npm:4.6.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -9220,7 +9609,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/jest-worker-npm-27.5.1-1c110b5894-98cd68b696.zip/node_modules/jest-worker/",\ "packageDependencies": [\ ["jest-worker", "npm:27.5.1"],\ - ["@types/node", "npm:18.15.11"],\ + ["@types/node", "npm:20.5.0"],\ ["merge-stream", "npm:2.0.0"],\ ["supports-color", "npm:8.1.1"]\ ],\ @@ -9256,15 +9645,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ - ["json-parse-better-errors", [\ - ["npm:1.0.2", {\ - "packageLocation": "./.yarn/cache/json-parse-better-errors-npm-1.0.2-7f37637d19-ff2b5ba2a7.zip/node_modules/json-parse-better-errors/",\ - "packageDependencies": [\ - ["json-parse-better-errors", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ ["json-parse-even-better-errors", [\ ["npm:2.3.1", {\ "packageLocation": "./.yarn/cache/json-parse-even-better-errors-npm-2.3.1-144d62256e-798ed4cf33.zip/node_modules/json-parse-even-better-errors/",\ @@ -9300,19 +9680,18 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["json5", [\ - ["npm:1.0.1", {\ - "packageLocation": "./.yarn/cache/json5-npm-1.0.1-647fc8794b-e76ea23dbb.zip/node_modules/json5/",\ + ["npm:1.0.2", {\ + "packageLocation": "./.yarn/cache/json5-npm-1.0.2-9607f93e30-866458a8c5.zip/node_modules/json5/",\ "packageDependencies": [\ - ["json5", "npm:1.0.1"],\ - ["minimist", "npm:1.2.6"]\ + ["json5", "npm:1.0.2"],\ + ["minimist", "npm:1.2.8"]\ ],\ "linkType": "HARD"\ }],\ - ["npm:2.2.0", {\ - "packageLocation": "./.yarn/cache/json5-npm-2.2.0-da49dc7cb5-e88fc5274b.zip/node_modules/json5/",\ + ["npm:2.2.3", {\ + "packageLocation": "./.yarn/cache/json5-npm-2.2.3-9962c55073-2a7436a933.zip/node_modules/json5/",\ "packageDependencies": [\ - ["json5", "npm:2.2.0"],\ - ["minimist", "npm:1.2.6"]\ + ["json5", "npm:2.2.3"]\ ],\ "linkType": "HARD"\ }]\ @@ -9327,64 +9706,63 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["jsonfile", [\ - ["npm:6.1.0", {\ - "packageLocation": "./.yarn/cache/jsonfile-npm-6.1.0-20a4796cee-7af3b8e1ac.zip/node_modules/jsonfile/",\ + ["npm:4.0.0", {\ + "packageLocation": "./.yarn/cache/jsonfile-npm-4.0.0-10ce3aea15-6447d6224f.zip/node_modules/jsonfile/",\ "packageDependencies": [\ - ["jsonfile", "npm:6.1.0"],\ - ["graceful-fs", "npm:4.2.6"],\ - ["universalify", "npm:2.0.0"]\ + ["jsonfile", "npm:4.0.0"],\ + ["graceful-fs", "npm:4.2.11"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["karma", [\ - ["npm:6.3.16", {\ - "packageLocation": "./.yarn/cache/karma-npm-6.3.16-cf78707de2-eb1703d490.zip/node_modules/karma/",\ + ["npm:6.4.2", {\ + "packageLocation": "./.yarn/cache/karma-npm-6.4.2-b40bdb3129-e493874729.zip/node_modules/karma/",\ "packageDependencies": [\ - ["karma", "npm:6.3.16"],\ - ["body-parser", "npm:1.19.0"],\ + ["karma", "npm:6.4.2"],\ + ["@colors/colors", "npm:1.5.0"],\ + ["body-parser", "npm:1.20.2"],\ ["braces", "npm:3.0.2"],\ ["chokidar", "npm:3.5.3"],\ - ["colors", "npm:1.4.0"],\ ["connect", "npm:3.7.0"],\ ["di", "npm:0.0.1"],\ ["dom-serialize", "npm:2.2.1"],\ - ["glob", "npm:7.2.0"],\ - ["graceful-fs", "npm:4.2.6"],\ + ["glob", "npm:7.2.3"],\ + ["graceful-fs", "npm:4.2.11"],\ ["http-proxy", "npm:1.18.1"],\ - ["isbinaryfile", "npm:4.0.8"],\ + ["isbinaryfile", "npm:4.0.10"],\ ["lodash", "npm:4.17.21"],\ - ["log4js", "npm:6.4.1"],\ + ["log4js", "npm:6.9.1"],\ ["mime", "npm:2.6.0"],\ ["minimatch", "npm:3.1.2"],\ - ["mkdirp", "npm:0.5.5"],\ + ["mkdirp", "npm:0.5.6"],\ ["qjobs", "npm:1.2.0"],\ ["range-parser", "npm:1.2.1"],\ ["rimraf", "npm:3.0.2"],\ - ["socket.io", "npm:4.5.3"],\ + ["socket.io", "npm:4.7.2"],\ ["source-map", "npm:0.6.1"],\ ["tmp", "npm:0.2.1"],\ - ["ua-parser-js", "npm:0.7.31"],\ + ["ua-parser-js", "npm:0.7.35"],\ ["yargs", "npm:16.2.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["karma-chrome-launcher", [\ - ["npm:3.1.0", {\ - "packageLocation": "./.yarn/cache/karma-chrome-launcher-npm-3.1.0-999405afd7-63431ddec9.zip/node_modules/karma-chrome-launcher/",\ + ["npm:3.2.0", {\ + "packageLocation": "./.yarn/cache/karma-chrome-launcher-npm-3.2.0-0c19d5f622-e1119e4f95.zip/node_modules/karma-chrome-launcher/",\ "packageDependencies": [\ - ["karma-chrome-launcher", "npm:3.1.0"],\ + ["karma-chrome-launcher", "npm:3.2.0"],\ ["which", "npm:1.3.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["karma-firefox-launcher", [\ - ["npm:2.1.0", {\ - "packageLocation": "./.yarn/cache/karma-firefox-launcher-npm-2.1.0-f96484a4b6-35d751d1e8.zip/node_modules/karma-firefox-launcher/",\ + ["npm:2.1.2", {\ + "packageLocation": "./.yarn/cache/karma-firefox-launcher-npm-2.1.2-63bf50abac-bfd5b35b35.zip/node_modules/karma-firefox-launcher/",\ "packageDependencies": [\ - ["karma-firefox-launcher", "npm:2.1.0"],\ + ["karma-firefox-launcher", "npm:2.1.2"],\ ["is-wsl", "npm:2.2.0"],\ ["which", "npm:2.0.2"]\ ],\ @@ -9404,8 +9782,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["karma-jasmine", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.1.0"],\ ["@types/karma", null],\ - ["jasmine-core", "npm:4.2.0"],\ - ["karma", "npm:6.3.16"]\ + ["jasmine-core", "npm:4.6.0"],\ + ["karma", "npm:6.4.2"]\ ],\ "packagePeers": [\ "@types/karma",\ @@ -9415,22 +9793,22 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["karma-jasmine-html-reporter", [\ - ["npm:1.6.0", {\ - "packageLocation": "./.yarn/cache/karma-jasmine-html-reporter-npm-1.6.0-193b96fabc-18c23a096e.zip/node_modules/karma-jasmine-html-reporter/",\ + ["npm:1.7.0", {\ + "packageLocation": "./.yarn/cache/karma-jasmine-html-reporter-npm-1.7.0-87aa5c7cce-926c25858e.zip/node_modules/karma-jasmine-html-reporter/",\ "packageDependencies": [\ - ["karma-jasmine-html-reporter", "npm:1.6.0"]\ + ["karma-jasmine-html-reporter", "npm:1.7.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.6.0", {\ - "packageLocation": "./.yarn/__virtual__/karma-jasmine-html-reporter-virtual-f29f8c99a2/0/cache/karma-jasmine-html-reporter-npm-1.6.0-193b96fabc-18c23a096e.zip/node_modules/karma-jasmine-html-reporter/",\ + ["virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.7.0", {\ + "packageLocation": "./.yarn/__virtual__/karma-jasmine-html-reporter-virtual-1519a98597/0/cache/karma-jasmine-html-reporter-npm-1.7.0-87aa5c7cce-926c25858e.zip/node_modules/karma-jasmine-html-reporter/",\ "packageDependencies": [\ - ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.6.0"],\ + ["karma-jasmine-html-reporter", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:1.7.0"],\ ["@types/jasmine-core", null],\ ["@types/karma", null],\ ["@types/karma-jasmine", "npm:4.0.2"],\ ["jasmine-core", null],\ - ["karma", "npm:6.3.16"],\ + ["karma", "npm:6.4.2"],\ ["karma-jasmine", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.1.0"]\ ],\ "packagePeers": [\ @@ -9464,28 +9842,28 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["koa", [\ - ["npm:2.13.4", {\ - "packageLocation": "./.yarn/cache/koa-npm-2.13.4-8aee05a69e-c9a6f9c803.zip/node_modules/koa/",\ + ["npm:2.14.2", {\ + "packageLocation": "./.yarn/cache/koa-npm-2.14.2-0908395b5d-17fe3b8f5e.zip/node_modules/koa/",\ "packageDependencies": [\ - ["koa", "npm:2.13.4"],\ - ["accepts", "npm:1.3.7"],\ + ["koa", "npm:2.14.2"],\ + ["accepts", "npm:1.3.8"],\ ["cache-content-type", "npm:1.0.1"],\ - ["content-disposition", "npm:0.5.3"],\ - ["content-type", "npm:1.0.4"],\ + ["content-disposition", "npm:0.5.4"],\ + ["content-type", "npm:1.0.5"],\ ["cookies", "npm:0.8.0"],\ - ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"],\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"],\ ["delegates", "npm:1.0.0"],\ ["depd", "npm:2.0.0"],\ - ["destroy", "npm:1.0.4"],\ + ["destroy", "npm:1.2.0"],\ ["encodeurl", "npm:1.0.2"],\ ["escape-html", "npm:1.0.3"],\ ["fresh", "npm:0.5.2"],\ - ["http-assert", "npm:1.4.1"],\ - ["http-errors", "npm:1.8.0"],\ - ["is-generator-function", "npm:1.0.9"],\ + ["http-assert", "npm:1.5.0"],\ + ["http-errors", "npm:1.8.1"],\ + ["is-generator-function", "npm:1.0.10"],\ ["koa-compose", "npm:4.1.0"],\ ["koa-convert", "npm:2.0.0"],\ - ["on-finished", "npm:2.3.0"],\ + ["on-finished", "npm:2.4.1"],\ ["only", "npm:0.0.2"],\ ["parseurl", "npm:1.3.3"],\ ["statuses", "npm:1.5.0"],\ @@ -9496,12 +9874,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["koa-bodyparser", [\ - ["npm:4.3.0", {\ - "packageLocation": "./.yarn/cache/koa-bodyparser-npm-4.3.0-1bf6ca26ab-c227fe0fb5.zip/node_modules/koa-bodyparser/",\ + ["npm:4.4.1", {\ + "packageLocation": "./.yarn/cache/koa-bodyparser-npm-4.4.1-d833e4beca-2b839acc53.zip/node_modules/koa-bodyparser/",\ "packageDependencies": [\ - ["koa-bodyparser", "npm:4.3.0"],\ + ["koa-bodyparser", "npm:4.4.1"],\ ["co-body", "npm:6.1.0"],\ - ["copy-to", "npm:2.0.1"]\ + ["copy-to", "npm:2.0.1"],\ + ["type-is", "npm:1.6.18"]\ ],\ "linkType": "HARD"\ }]\ @@ -9531,7 +9910,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/ledger-cosmos-js-npm-2.1.8-e975511a2f-cba4f5e29d.zip/node_modules/ledger-cosmos-js/",\ "packageDependencies": [\ ["ledger-cosmos-js", "npm:2.1.8"],\ - ["@babel/runtime", "npm:7.14.0"],\ + ["@babel/runtime", "npm:7.22.10"],\ ["@ledgerhq/hw-transport", "npm:5.51.1"],\ ["bech32", "npm:1.1.4"],\ ["ripemd160", "npm:2.0.2"]\ @@ -9569,38 +9948,16 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ - ["load-json-file", [\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/load-json-file-npm-4.0.0-c9f09d85eb-8f5d6d93ba.zip/node_modules/load-json-file/",\ - "packageDependencies": [\ - ["load-json-file", "npm:4.0.0"],\ - ["graceful-fs", "npm:4.2.6"],\ - ["parse-json", "npm:4.0.0"],\ - ["pify", "npm:3.0.0"],\ - ["strip-bom", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ ["loader-runner", [\ - ["npm:4.2.0", {\ - "packageLocation": "./.yarn/cache/loader-runner-npm-4.2.0-427f0e7134-e61aea8b69.zip/node_modules/loader-runner/",\ + ["npm:4.3.0", {\ + "packageLocation": "./.yarn/cache/loader-runner-npm-4.3.0-9ca67df372-a90e00dee9.zip/node_modules/loader-runner/",\ "packageDependencies": [\ - ["loader-runner", "npm:4.2.0"]\ + ["loader-runner", "npm:4.3.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["locate-path", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/locate-path-npm-2.0.0-673d28b0ea-02d581edbb.zip/node_modules/locate-path/",\ - "packageDependencies": [\ - ["locate-path", "npm:2.0.0"],\ - ["p-locate", "npm:2.0.0"],\ - ["path-exists", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ ["npm:5.0.0", {\ "packageLocation": "./.yarn/cache/locate-path-npm-5.0.0-46580c43e4-83e51725e6.zip/node_modules/locate-path/",\ "packageDependencies": [\ @@ -9619,20 +9976,20 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ - ["lodash.clonedeep", [\ - ["npm:4.5.0", {\ - "packageLocation": "./.yarn/cache/lodash.clonedeep-npm-4.5.0-fbc3cda4e5-92c46f094b.zip/node_modules/lodash.clonedeep/",\ + ["lodash.flattendeep", [\ + ["npm:4.4.0", {\ + "packageLocation": "./.yarn/cache/lodash.flattendeep-npm-4.4.0-26b2b4cbd7-8521c919ac.zip/node_modules/lodash.flattendeep/",\ "packageDependencies": [\ - ["lodash.clonedeep", "npm:4.5.0"]\ + ["lodash.flattendeep", "npm:4.4.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["lodash.flattendeep", [\ - ["npm:4.4.0", {\ - "packageLocation": "./.yarn/cache/lodash.flattendeep-npm-4.4.0-26b2b4cbd7-8521c919ac.zip/node_modules/lodash.flattendeep/",\ + ["lodash.merge", [\ + ["npm:4.6.2", {\ + "packageLocation": "./.yarn/cache/lodash.merge-npm-4.6.2-77cb4416bf-ad580b4bdb.zip/node_modules/lodash.merge/",\ "packageDependencies": [\ - ["lodash.flattendeep", "npm:4.4.0"]\ + ["lodash.merge", "npm:4.6.2"]\ ],\ "linkType": "HARD"\ }]\ @@ -9647,15 +10004,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["log4js", [\ - ["npm:6.4.1", {\ - "packageLocation": "./.yarn/cache/log4js-npm-6.4.1-b00dd7826e-0614949662.zip/node_modules/log4js/",\ + ["npm:6.9.1", {\ + "packageLocation": "./.yarn/cache/log4js-npm-6.9.1-b621c90f9f-59d98c37d4.zip/node_modules/log4js/",\ "packageDependencies": [\ - ["log4js", "npm:6.4.1"],\ - ["date-format", "npm:4.0.3"],\ - ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"],\ - ["flatted", "npm:3.2.4"],\ + ["log4js", "npm:6.9.1"],\ + ["date-format", "npm:4.0.14"],\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"],\ + ["flatted", "npm:3.2.7"],\ ["rfdc", "npm:1.3.0"],\ - ["streamroller", "npm:3.0.2"]\ + ["streamroller", "npm:3.1.5"]\ ],\ "linkType": "HARD"\ }]\ @@ -9670,6 +10027,21 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["lru-cache", [\ + ["npm:10.0.1", {\ + "packageLocation": "./.yarn/cache/lru-cache-npm-10.0.1-0e1abf4c13-06f8d0e1ce.zip/node_modules/lru-cache/",\ + "packageDependencies": [\ + ["lru-cache", "npm:10.0.1"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:5.1.1", {\ + "packageLocation": "./.yarn/cache/lru-cache-npm-5.1.1-f475882a51-c154ae1cbb.zip/node_modules/lru-cache/",\ + "packageDependencies": [\ + ["lru-cache", "npm:5.1.1"],\ + ["yallist", "npm:3.1.1"]\ + ],\ + "linkType": "HARD"\ + }],\ ["npm:6.0.0", {\ "packageLocation": "./.yarn/cache/lru-cache-npm-6.0.0-b4c8668fe1-f97f499f89.zip/node_modules/lru-cache/",\ "packageDependencies": [\ @@ -9677,6 +10049,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["yallist", "npm:4.0.0"]\ ],\ "linkType": "HARD"\ + }],\ + ["npm:7.18.3", {\ + "packageLocation": "./.yarn/cache/lru-cache-npm-7.18.3-e68be5b11c-e550d77238.zip/node_modules/lru-cache/",\ + "packageDependencies": [\ + ["lru-cache", "npm:7.18.3"]\ + ],\ + "linkType": "HARD"\ }]\ ]],\ ["lunr", [\ @@ -9693,7 +10072,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/make-dir-npm-3.1.0-d1d7505142-484200020a.zip/node_modules/make-dir/",\ "packageDependencies": [\ ["make-dir", "npm:3.1.0"],\ - ["semver", "npm:6.3.0"]\ + ["semver", "npm:6.3.1"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:4.0.0", {\ + "packageLocation": "./.yarn/cache/make-dir-npm-4.0.0-ec3cd921cc-bf0731a2dd.zip/node_modules/make-dir/",\ + "packageDependencies": [\ + ["make-dir", "npm:4.0.0"],\ + ["semver", "npm:7.5.4"]\ ],\ "linkType": "HARD"\ }]\ @@ -9708,25 +10095,25 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["make-fetch-happen", [\ - ["npm:8.0.14", {\ - "packageLocation": "./.yarn/cache/make-fetch-happen-npm-8.0.14-fa5d78adad-326fefde1a.zip/node_modules/make-fetch-happen/",\ - "packageDependencies": [\ - ["make-fetch-happen", "npm:8.0.14"],\ - ["agentkeepalive", "npm:4.1.4"],\ - ["cacache", "npm:15.1.0"],\ - ["http-cache-semantics", "npm:4.1.0"],\ - ["http-proxy-agent", "npm:4.0.1"],\ - ["https-proxy-agent", "npm:5.0.0"],\ + ["npm:11.1.1", {\ + "packageLocation": "./.yarn/cache/make-fetch-happen-npm-11.1.1-f32b79aaaa-7268bf274a.zip/node_modules/make-fetch-happen/",\ + "packageDependencies": [\ + ["make-fetch-happen", "npm:11.1.1"],\ + ["agentkeepalive", "npm:4.5.0"],\ + ["cacache", "npm:17.1.4"],\ + ["http-cache-semantics", "npm:4.1.1"],\ + ["http-proxy-agent", "npm:5.0.0"],\ + ["https-proxy-agent", "npm:5.0.1"],\ ["is-lambda", "npm:1.0.1"],\ - ["lru-cache", "npm:6.0.0"],\ - ["minipass", "npm:3.1.3"],\ - ["minipass-collect", "npm:1.0.2"],\ - ["minipass-fetch", "npm:1.3.3"],\ + ["lru-cache", "npm:7.18.3"],\ + ["minipass", "npm:5.0.0"],\ + ["minipass-fetch", "npm:3.0.4"],\ ["minipass-flush", "npm:1.0.5"],\ ["minipass-pipeline", "npm:1.2.4"],\ + ["negotiator", "npm:0.6.3"],\ ["promise-retry", "npm:2.0.1"],\ - ["socks-proxy-agent", "npm:5.0.0"],\ - ["ssri", "npm:8.0.1"]\ + ["socks-proxy-agent", "npm:7.0.0"],\ + ["ssri", "npm:10.0.5"]\ ],\ "linkType": "HARD"\ }]\ @@ -9768,12 +10155,12 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["micromatch", [\ - ["npm:4.0.4", {\ - "packageLocation": "./.yarn/cache/micromatch-npm-4.0.4-9fdcbb7a0e-ef3d1c88e7.zip/node_modules/micromatch/",\ + ["npm:4.0.5", {\ + "packageLocation": "./.yarn/cache/micromatch-npm-4.0.5-cfab5d7669-02a17b671c.zip/node_modules/micromatch/",\ "packageDependencies": [\ - ["micromatch", "npm:4.0.4"],\ + ["micromatch", "npm:4.0.5"],\ ["braces", "npm:3.0.2"],\ - ["picomatch", "npm:2.2.3"]\ + ["picomatch", "npm:2.3.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -9788,29 +10175,20 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["mime-db", [\ - ["npm:1.47.0", {\ - "packageLocation": "./.yarn/cache/mime-db-npm-1.47.0-a85d74ef62-6808235243.zip/node_modules/mime-db/",\ + ["npm:1.52.0", {\ + "packageLocation": "./.yarn/cache/mime-db-npm-1.52.0-b5371d6fd2-0d99a03585.zip/node_modules/mime-db/",\ "packageDependencies": [\ - ["mime-db", "npm:1.47.0"]\ + ["mime-db", "npm:1.52.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["mime-types", [\ - ["npm:2.1.30", {\ - "packageLocation": "./.yarn/cache/mime-types-npm-2.1.30-500b101efd-53c36729b1.zip/node_modules/mime-types/",\ - "packageDependencies": [\ - ["mime-types", "npm:2.1.30"],\ - ["mime-db", "npm:1.47.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["mimic-fn", [\ - ["npm:2.1.0", {\ - "packageLocation": "./.yarn/cache/mimic-fn-npm-2.1.0-4fbeb3abb4-d2421a3444.zip/node_modules/mimic-fn/",\ + ["npm:2.1.35", {\ + "packageLocation": "./.yarn/cache/mime-types-npm-2.1.35-dd9ea9f3e2-89a5b7f1de.zip/node_modules/mime-types/",\ "packageDependencies": [\ - ["mimic-fn", "npm:2.1.0"]\ + ["mime-types", "npm:2.1.35"],\ + ["mime-db", "npm:1.52.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -9851,32 +10229,54 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:7.4.4", {\ - "packageLocation": "./.yarn/cache/minimatch-npm-7.4.4-f84bbddfc6-a96494db55.zip/node_modules/minimatch/",\ + ["npm:7.4.6", {\ + "packageLocation": "./.yarn/cache/minimatch-npm-7.4.6-f3feee458c-1a6c8d2261.zip/node_modules/minimatch/",\ + "packageDependencies": [\ + ["minimatch", "npm:7.4.6"],\ + ["brace-expansion", "npm:2.0.1"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:9.0.3", {\ + "packageLocation": "./.yarn/cache/minimatch-npm-9.0.3-69d7d6fad5-253487976b.zip/node_modules/minimatch/",\ "packageDependencies": [\ - ["minimatch", "npm:7.4.4"],\ + ["minimatch", "npm:9.0.3"],\ ["brace-expansion", "npm:2.0.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["minimist", [\ - ["npm:1.2.6", {\ - "packageLocation": "./.yarn/cache/minimist-npm-1.2.6-f4cee4b4af-d15428cd1e.zip/node_modules/minimist/",\ + ["npm:1.2.8", {\ + "packageLocation": "./.yarn/cache/minimist-npm-1.2.8-d7af7b1dce-75a6d645fb.zip/node_modules/minimist/",\ "packageDependencies": [\ - ["minimist", "npm:1.2.6"]\ + ["minimist", "npm:1.2.8"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["minipass", [\ - ["npm:3.1.3", {\ - "packageLocation": "./.yarn/cache/minipass-npm-3.1.3-af723e33f3-74b623c1f9.zip/node_modules/minipass/",\ + ["npm:3.3.6", {\ + "packageLocation": "./.yarn/cache/minipass-npm-3.3.6-b8d93a945b-a30d083c80.zip/node_modules/minipass/",\ "packageDependencies": [\ - ["minipass", "npm:3.1.3"],\ + ["minipass", "npm:3.3.6"],\ ["yallist", "npm:4.0.0"]\ ],\ "linkType": "HARD"\ + }],\ + ["npm:5.0.0", {\ + "packageLocation": "./.yarn/cache/minipass-npm-5.0.0-c64fb63c92-425dab2887.zip/node_modules/minipass/",\ + "packageDependencies": [\ + ["minipass", "npm:5.0.0"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:7.0.3", {\ + "packageLocation": "./.yarn/cache/minipass-npm-7.0.3-3b57909ee9-6f1614f5b5.zip/node_modules/minipass/",\ + "packageDependencies": [\ + ["minipass", "npm:7.0.3"]\ + ],\ + "linkType": "HARD"\ }]\ ]],\ ["minipass-collect", [\ @@ -9884,18 +10284,18 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/minipass-collect-npm-1.0.2-3b4676eab5-14df761028.zip/node_modules/minipass-collect/",\ "packageDependencies": [\ ["minipass-collect", "npm:1.0.2"],\ - ["minipass", "npm:3.1.3"]\ + ["minipass", "npm:3.3.6"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["minipass-fetch", [\ - ["npm:1.3.3", {\ - "packageLocation": "./.yarn/cache/minipass-fetch-npm-1.3.3-6dd11d4b13-bd3d825b6b.zip/node_modules/minipass-fetch/",\ + ["npm:3.0.4", {\ + "packageLocation": "./.yarn/cache/minipass-fetch-npm-3.0.4-200ac7c66d-af7aad15d5.zip/node_modules/minipass-fetch/",\ "packageDependencies": [\ - ["minipass-fetch", "npm:1.3.3"],\ + ["minipass-fetch", "npm:3.0.4"],\ ["encoding", "npm:0.1.13"],\ - ["minipass", "npm:3.1.3"],\ + ["minipass", "npm:7.0.3"],\ ["minipass-sized", "npm:1.0.3"],\ ["minizlib", "npm:2.1.2"]\ ],\ @@ -9907,7 +10307,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/minipass-flush-npm-1.0.5-efe79d9826-56269a0b22.zip/node_modules/minipass-flush/",\ "packageDependencies": [\ ["minipass-flush", "npm:1.0.5"],\ - ["minipass", "npm:3.1.3"]\ + ["minipass", "npm:3.3.6"]\ ],\ "linkType": "HARD"\ }]\ @@ -9917,7 +10317,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/minipass-pipeline-npm-1.2.4-5924cb077f-b14240dac0.zip/node_modules/minipass-pipeline/",\ "packageDependencies": [\ ["minipass-pipeline", "npm:1.2.4"],\ - ["minipass", "npm:3.1.3"]\ + ["minipass", "npm:3.3.6"]\ ],\ "linkType": "HARD"\ }]\ @@ -9927,7 +10327,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/minipass-sized-npm-1.0.3-306d86f432-79076749fc.zip/node_modules/minipass-sized/",\ "packageDependencies": [\ ["minipass-sized", "npm:1.0.3"],\ - ["minipass", "npm:3.1.3"]\ + ["minipass", "npm:3.3.6"]\ ],\ "linkType": "HARD"\ }]\ @@ -9937,18 +10337,18 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/minizlib-npm-2.1.2-ea89cd0cfb-f1fdeac0b0.zip/node_modules/minizlib/",\ "packageDependencies": [\ ["minizlib", "npm:2.1.2"],\ - ["minipass", "npm:3.1.3"],\ + ["minipass", "npm:3.3.6"],\ ["yallist", "npm:4.0.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["mkdirp", [\ - ["npm:0.5.5", {\ - "packageLocation": "./.yarn/cache/mkdirp-npm-0.5.5-6bc76534fc-3bce20ea52.zip/node_modules/mkdirp/",\ + ["npm:0.5.6", {\ + "packageLocation": "./.yarn/cache/mkdirp-npm-0.5.6-dcd5a6b97b-0c91b721bb.zip/node_modules/mkdirp/",\ "packageDependencies": [\ - ["mkdirp", "npm:0.5.5"],\ - ["minimist", "npm:1.2.6"]\ + ["mkdirp", "npm:0.5.6"],\ + ["minimist", "npm:1.2.8"]\ ],\ "linkType": "HARD"\ }],\ @@ -10020,10 +10420,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["negotiator", [\ - ["npm:0.6.2", {\ - "packageLocation": "./.yarn/cache/negotiator-npm-0.6.2-ba538e167a-dfddaff6c0.zip/node_modules/negotiator/",\ + ["npm:0.6.3", {\ + "packageLocation": "./.yarn/cache/negotiator-npm-0.6.3-9d50e36171-b8ffeb1e26.zip/node_modules/negotiator/",\ "packageDependencies": [\ - ["negotiator", "npm:0.6.2"]\ + ["negotiator", "npm:0.6.3"]\ ],\ "linkType": "HARD"\ }]\ @@ -10038,21 +10438,21 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["node-abi", [\ - ["npm:2.26.0", {\ - "packageLocation": "./.yarn/cache/node-abi-npm-2.26.0-3cef53dbb6-a405ee1917.zip/node_modules/node-abi/",\ + ["npm:2.30.1", {\ + "packageLocation": "./.yarn/cache/node-abi-npm-2.30.1-36a2c4e28a-3f4b0c912c.zip/node_modules/node-abi/",\ "packageDependencies": [\ - ["node-abi", "npm:2.26.0"],\ - ["semver", "npm:5.7.1"]\ + ["node-abi", "npm:2.30.1"],\ + ["semver", "npm:5.7.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["node-addon-api", [\ - ["npm:3.2.0", {\ - "packageLocation": "./.yarn/unplugged/node-addon-api-npm-3.2.0-061ff0dbab/node_modules/node-addon-api/",\ + ["npm:3.2.1", {\ + "packageLocation": "./.yarn/unplugged/node-addon-api-npm-3.2.1-a29528f81d/node_modules/node-addon-api/",\ "packageDependencies": [\ - ["node-addon-api", "npm:3.2.0"],\ - ["node-gyp", "npm:8.0.0"]\ + ["node-addon-api", "npm:3.2.1"],\ + ["node-gyp", "npm:9.4.0"]\ ],\ "linkType": "HARD"\ }],\ @@ -10060,35 +10460,36 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/unplugged/node-addon-api-npm-4.3.0-a07a1232df/node_modules/node-addon-api/",\ "packageDependencies": [\ ["node-addon-api", "npm:4.3.0"],\ - ["node-gyp", "npm:8.0.0"]\ + ["node-gyp", "npm:9.4.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["node-gyp", [\ - ["npm:8.0.0", {\ - "packageLocation": "./.yarn/unplugged/node-gyp-npm-8.0.0-a27599670d/node_modules/node-gyp/",\ + ["npm:9.4.0", {\ + "packageLocation": "./.yarn/unplugged/node-gyp-npm-9.4.0-ebf5f5573e/node_modules/node-gyp/",\ "packageDependencies": [\ - ["node-gyp", "npm:8.0.0"],\ + ["node-gyp", "npm:9.4.0"],\ ["env-paths", "npm:2.2.1"],\ - ["glob", "npm:7.2.0"],\ - ["graceful-fs", "npm:4.2.6"],\ - ["make-fetch-happen", "npm:8.0.14"],\ - ["nopt", "npm:5.0.0"],\ - ["npmlog", "npm:4.1.2"],\ + ["exponential-backoff", "npm:3.1.1"],\ + ["glob", "npm:7.2.3"],\ + ["graceful-fs", "npm:4.2.11"],\ + ["make-fetch-happen", "npm:11.1.1"],\ + ["nopt", "npm:6.0.0"],\ + ["npmlog", "npm:6.0.2"],\ ["rimraf", "npm:3.0.2"],\ - ["semver", "npm:7.5.3"],\ - ["tar", "npm:6.1.11"],\ + ["semver", "npm:7.5.4"],\ + ["tar", "npm:6.1.15"],\ ["which", "npm:2.0.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["node-gyp-build", [\ - ["npm:4.5.0", {\ - "packageLocation": "./.yarn/cache/node-gyp-build-npm-4.5.0-2538da6152-d888bae0fb.zip/node_modules/node-gyp-build/",\ + ["npm:4.6.0", {\ + "packageLocation": "./.yarn/cache/node-gyp-build-npm-4.6.0-5434aac3e5-25d78c5ef1.zip/node_modules/node-gyp-build/",\ "packageDependencies": [\ - ["node-gyp-build", "npm:4.5.0"]\ + ["node-gyp-build", "npm:4.6.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -10099,9 +10500,9 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["node-hid", "npm:2.1.1"],\ ["bindings", "npm:1.5.0"],\ - ["node-addon-api", "npm:3.2.0"],\ - ["node-gyp", "npm:8.0.0"],\ - ["prebuild-install", "npm:6.1.2"]\ + ["node-addon-api", "npm:3.2.1"],\ + ["node-gyp", "npm:9.4.0"],\ + ["prebuild-install", "npm:6.1.4"]\ ],\ "linkType": "HARD"\ }]\ @@ -10117,55 +10518,25 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["node-releases", [\ - ["npm:1.1.72", {\ - "packageLocation": "./.yarn/cache/node-releases-npm-1.1.72-662e905d8e-84dacd44e6.zip/node_modules/node-releases/",\ - "packageDependencies": [\ - ["node-releases", "npm:1.1.72"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["noop-logger", [\ - ["npm:0.1.1", {\ - "packageLocation": "./.yarn/cache/noop-logger-npm-0.1.1-c88441172d-9f99da270d.zip/node_modules/noop-logger/",\ + ["npm:2.0.13", {\ + "packageLocation": "./.yarn/cache/node-releases-npm-2.0.13-1f2e177887-17ec8f315d.zip/node_modules/node-releases/",\ "packageDependencies": [\ - ["noop-logger", "npm:0.1.1"]\ + ["node-releases", "npm:2.0.13"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["nopt", [\ - ["npm:5.0.0", {\ - "packageLocation": "./.yarn/cache/nopt-npm-5.0.0-304b40fbfe-d35fdec187.zip/node_modules/nopt/",\ + ["npm:6.0.0", {\ + "packageLocation": "./.yarn/cache/nopt-npm-6.0.0-5ea8050815-82149371f8.zip/node_modules/nopt/",\ "packageDependencies": [\ - ["nopt", "npm:5.0.0"],\ + ["nopt", "npm:6.0.0"],\ ["abbrev", "npm:1.1.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["normalize-package-data", [\ - ["npm:2.5.0", {\ - "packageLocation": "./.yarn/cache/normalize-package-data-npm-2.5.0-af0345deed-7999112efc.zip/node_modules/normalize-package-data/",\ - "packageDependencies": [\ - ["normalize-package-data", "npm:2.5.0"],\ - ["hosted-git-info", "npm:2.8.9"],\ - ["resolve", "patch:resolve@npm%3A1.20.0#~builtin::version=1.20.0&hash=c3c19d"],\ - ["semver", "npm:5.7.1"],\ - ["validate-npm-package-license", "npm:3.0.4"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ ["normalize-path", [\ - ["npm:2.1.1", {\ - "packageLocation": "./.yarn/cache/normalize-path-npm-2.1.1-65c4766716-7e9cbdcf7f.zip/node_modules/normalize-path/",\ - "packageDependencies": [\ - ["normalize-path", "npm:2.1.1"],\ - ["remove-trailing-separator", "npm:1.1.0"]\ - ],\ - "linkType": "HARD"\ - }],\ ["npm:3.0.0", {\ "packageLocation": "./.yarn/cache/normalize-path-npm-3.0.0-658ba7d77f-88eeb4da89.zip/node_modules/normalize-path/",\ "packageDependencies": [\ @@ -10174,27 +10545,28 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ - ["npm-run-path", [\ - ["npm:4.0.1", {\ - "packageLocation": "./.yarn/cache/npm-run-path-npm-4.0.1-7aebd8bab3-5374c0cea4.zip/node_modules/npm-run-path/",\ - "packageDependencies": [\ - ["npm-run-path", "npm:4.0.1"],\ - ["path-key", "npm:3.1.1"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ ["npmlog", [\ ["npm:4.1.2", {\ "packageLocation": "./.yarn/cache/npmlog-npm-4.1.2-cfb32957b5-edbda9f95e.zip/node_modules/npmlog/",\ "packageDependencies": [\ ["npmlog", "npm:4.1.2"],\ - ["are-we-there-yet", "npm:1.1.5"],\ + ["are-we-there-yet", "npm:1.1.7"],\ ["console-control-strings", "npm:1.1.0"],\ ["gauge", "npm:2.7.4"],\ ["set-blocking", "npm:2.0.0"]\ ],\ "linkType": "HARD"\ + }],\ + ["npm:6.0.2", {\ + "packageLocation": "./.yarn/cache/npmlog-npm-6.0.2-e0e69455c7-ae238cd264.zip/node_modules/npmlog/",\ + "packageDependencies": [\ + ["npmlog", "npm:6.0.2"],\ + ["are-we-there-yet", "npm:3.0.1"],\ + ["console-control-strings", "npm:1.1.0"],\ + ["gauge", "npm:4.0.4"],\ + ["set-blocking", "npm:2.0.0"]\ + ],\ + "linkType": "HARD"\ }]\ ]],\ ["number-is-nan", [\ @@ -10214,27 +10586,27 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@istanbuljs/load-nyc-config", "npm:1.1.0"],\ ["@istanbuljs/schema", "npm:0.1.3"],\ ["caching-transform", "npm:4.0.0"],\ - ["convert-source-map", "npm:1.7.0"],\ + ["convert-source-map", "npm:1.9.0"],\ ["decamelize", "npm:1.2.0"],\ - ["find-cache-dir", "npm:3.3.1"],\ + ["find-cache-dir", "npm:3.3.2"],\ ["find-up", "npm:4.1.0"],\ ["foreground-child", "npm:2.0.0"],\ ["get-package-type", "npm:0.1.0"],\ - ["glob", "npm:7.2.0"],\ - ["istanbul-lib-coverage", "npm:3.0.0"],\ + ["glob", "npm:7.2.3"],\ + ["istanbul-lib-coverage", "npm:3.2.0"],\ ["istanbul-lib-hook", "npm:3.0.0"],\ ["istanbul-lib-instrument", "npm:4.0.3"],\ - ["istanbul-lib-processinfo", "npm:2.0.2"],\ - ["istanbul-lib-report", "npm:3.0.0"],\ - ["istanbul-lib-source-maps", "npm:4.0.0"],\ - ["istanbul-reports", "npm:3.0.2"],\ + ["istanbul-lib-processinfo", "npm:2.0.3"],\ + ["istanbul-lib-report", "npm:3.0.1"],\ + ["istanbul-lib-source-maps", "npm:4.0.1"],\ + ["istanbul-reports", "npm:3.1.6"],\ ["make-dir", "npm:3.1.0"],\ ["node-preload", "npm:0.2.1"],\ ["p-map", "npm:3.0.0"],\ ["process-on-spawn", "npm:1.0.0"],\ ["resolve-from", "npm:5.0.0"],\ ["rimraf", "npm:3.0.2"],\ - ["signal-exit", "npm:3.0.3"],\ + ["signal-exit", "npm:3.0.7"],\ ["spawn-wrap", "npm:2.0.0"],\ ["test-exclude", "npm:6.0.0"],\ ["yargs", "npm:15.4.1"]\ @@ -10252,10 +10624,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["object-inspect", [\ - ["npm:1.10.3", {\ - "packageLocation": "./.yarn/cache/object-inspect-npm-1.10.3-5aa499f036-9a56db2e01.zip/node_modules/object-inspect/",\ + ["npm:1.12.3", {\ + "packageLocation": "./.yarn/cache/object-inspect-npm-1.12.3-1e7d20f5ff-dabfd824d9.zip/node_modules/object-inspect/",\ "packageDependencies": [\ - ["object-inspect", "npm:1.10.3"]\ + ["object-inspect", "npm:1.12.3"]\ ],\ "linkType": "HARD"\ }]\ @@ -10270,27 +10642,51 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["object.assign", [\ - ["npm:4.1.2", {\ - "packageLocation": "./.yarn/cache/object.assign-npm-4.1.2-d52edada1c-d621d832ed.zip/node_modules/object.assign/",\ + ["npm:4.1.4", {\ + "packageLocation": "./.yarn/cache/object.assign-npm-4.1.4-fb3deb1c3a-76cab513a5.zip/node_modules/object.assign/",\ "packageDependencies": [\ - ["object.assign", "npm:4.1.2"],\ + ["object.assign", "npm:4.1.4"],\ ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.1.3"],\ - ["has-symbols", "npm:1.0.2"],\ + ["define-properties", "npm:1.2.0"],\ + ["has-symbols", "npm:1.0.3"],\ ["object-keys", "npm:1.1.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ + ["object.fromentries", [\ + ["npm:2.0.6", {\ + "packageLocation": "./.yarn/cache/object.fromentries-npm-2.0.6-424cf4cd3c-453c6d6941.zip/node_modules/object.fromentries/",\ + "packageDependencies": [\ + ["object.fromentries", "npm:2.0.6"],\ + ["call-bind", "npm:1.0.2"],\ + ["define-properties", "npm:1.2.0"],\ + ["es-abstract", "npm:1.22.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["object.groupby", [\ + ["npm:1.0.0", {\ + "packageLocation": "./.yarn/cache/object.groupby-npm-1.0.0-b360bea3aa-64b00b287d.zip/node_modules/object.groupby/",\ + "packageDependencies": [\ + ["object.groupby", "npm:1.0.0"],\ + ["call-bind", "npm:1.0.2"],\ + ["define-properties", "npm:1.2.0"],\ + ["es-abstract", "npm:1.22.1"],\ + ["get-intrinsic", "npm:1.2.1"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["object.values", [\ - ["npm:1.1.3", {\ - "packageLocation": "./.yarn/cache/object.values-npm-1.1.3-dd86635500-8b29bd0936.zip/node_modules/object.values/",\ + ["npm:1.1.6", {\ + "packageLocation": "./.yarn/cache/object.values-npm-1.1.6-ab9b67ccd3-f6fff9fd81.zip/node_modules/object.values/",\ "packageDependencies": [\ - ["object.values", "npm:1.1.3"],\ + ["object.values", "npm:1.1.6"],\ ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.1.3"],\ - ["es-abstract", "npm:1.18.0"],\ - ["has", "npm:1.0.3"]\ + ["define-properties", "npm:1.2.0"],\ + ["es-abstract", "npm:1.22.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -10303,6 +10699,14 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["ee-first", "npm:1.1.1"]\ ],\ "linkType": "HARD"\ + }],\ + ["npm:2.4.1", {\ + "packageLocation": "./.yarn/cache/on-finished-npm-2.4.1-907af70f88-d20929a25e.zip/node_modules/on-finished/",\ + "packageDependencies": [\ + ["on-finished", "npm:2.4.1"],\ + ["ee-first", "npm:1.1.1"]\ + ],\ + "linkType": "HARD"\ }]\ ]],\ ["once", [\ @@ -10315,16 +10719,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ - ["onetime", [\ - ["npm:5.1.2", {\ - "packageLocation": "./.yarn/cache/onetime-npm-5.1.2-3ed148fa42-2478859ef8.zip/node_modules/onetime/",\ - "packageDependencies": [\ - ["onetime", "npm:5.1.2"],\ - ["mimic-fn", "npm:2.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ ["only", [\ ["npm:0.0.2", {\ "packageLocation": "./.yarn/cache/only-npm-0.0.2-122402a3f9-d399710db8.zip/node_modules/only/",\ @@ -10335,29 +10729,21 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["optionator", [\ - ["npm:0.9.1", {\ - "packageLocation": "./.yarn/cache/optionator-npm-0.9.1-577e397aae-dbc6fa0656.zip/node_modules/optionator/",\ + ["npm:0.9.3", {\ + "packageLocation": "./.yarn/cache/optionator-npm-0.9.3-56c3a4bf80-0928199944.zip/node_modules/optionator/",\ "packageDependencies": [\ - ["optionator", "npm:0.9.1"],\ - ["deep-is", "npm:0.1.3"],\ + ["optionator", "npm:0.9.3"],\ + ["@aashutoshrathi/word-wrap", "npm:1.2.6"],\ + ["deep-is", "npm:0.1.4"],\ ["fast-levenshtein", "npm:2.0.6"],\ ["levn", "npm:0.4.1"],\ ["prelude-ls", "npm:1.2.1"],\ - ["type-check", "npm:0.4.0"],\ - ["word-wrap", "npm:1.2.3"]\ + ["type-check", "npm:0.4.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["p-limit", [\ - ["npm:1.3.0", {\ - "packageLocation": "./.yarn/cache/p-limit-npm-1.3.0-fdb471d864-281c1c0b8c.zip/node_modules/p-limit/",\ - "packageDependencies": [\ - ["p-limit", "npm:1.3.0"],\ - ["p-try", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ ["npm:2.3.0", {\ "packageLocation": "./.yarn/cache/p-limit-npm-2.3.0-94a0310039-84ff17f1a3.zip/node_modules/p-limit/",\ "packageDependencies": [\ @@ -10368,14 +10754,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["p-locate", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/p-locate-npm-2.0.0-3a2ee263dd-e2dceb9b49.zip/node_modules/p-locate/",\ - "packageDependencies": [\ - ["p-locate", "npm:2.0.0"],\ - ["p-limit", "npm:1.3.0"]\ - ],\ - "linkType": "HARD"\ - }],\ ["npm:4.1.0", {\ "packageLocation": "./.yarn/cache/p-locate-npm-4.1.0-eec6872537-513bd14a45.zip/node_modules/p-locate/",\ "packageDependencies": [\ @@ -10404,13 +10782,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["p-try", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/p-try-npm-1.0.0-7373139e40-3b5303f77e.zip/node_modules/p-try/",\ - "packageDependencies": [\ - ["p-try", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ ["npm:2.2.0", {\ "packageLocation": "./.yarn/cache/p-try-npm-2.2.0-e0390dbaf8-f8a8e9a769.zip/node_modules/p-try/",\ "packageDependencies": [\ @@ -10424,7 +10795,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/package-hash-npm-4.0.0-1e83d2429d-32c49e3a0e.zip/node_modules/package-hash/",\ "packageDependencies": [\ ["package-hash", "npm:4.0.0"],\ - ["graceful-fs", "npm:4.2.6"],\ + ["graceful-fs", "npm:4.2.11"],\ ["hasha", "npm:5.2.2"],\ ["lodash.flattendeep", "npm:4.4.0"],\ ["release-zalgo", "npm:1.0.0"]\ @@ -10433,10 +10804,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["pako", [\ - ["npm:2.0.3", {\ - "packageLocation": "./.yarn/cache/pako-npm-2.0.3-92007e2210-7008da1379.zip/node_modules/pako/",\ + ["npm:2.1.0", {\ + "packageLocation": "./.yarn/cache/pako-npm-2.1.0-78df11948c-7166654864.zip/node_modules/pako/",\ "packageDependencies": [\ - ["pako", "npm:2.0.3"]\ + ["pako", "npm:2.1.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -10451,17 +10822,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ - ["parse-json", [\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/parse-json-npm-4.0.0-a6f7771010-0fe227d410.zip/node_modules/parse-json/",\ - "packageDependencies": [\ - ["parse-json", "npm:4.0.0"],\ - ["error-ex", "npm:1.3.2"],\ - ["json-parse-better-errors", "npm:1.0.2"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ ["parseurl", [\ ["npm:1.3.3", {\ "packageLocation": "./.yarn/cache/parseurl-npm-1.3.3-1542397e00-407cee8e0a.zip/node_modules/parseurl/",\ @@ -10472,13 +10832,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["path-exists", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/path-exists-npm-3.0.0-e80371aa68-96e92643aa.zip/node_modules/path-exists/",\ - "packageDependencies": [\ - ["path-exists", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ ["npm:4.0.0", {\ "packageLocation": "./.yarn/cache/path-exists-npm-4.0.0-e9e4f63eb0-505807199d.zip/node_modules/path-exists/",\ "packageDependencies": [\ @@ -10514,25 +10867,18 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ - ["path-starts-with", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/path-starts-with-npm-1.0.0-87a7241209-15b120d3f7.zip/node_modules/path-starts-with/",\ + ["path-scurry", [\ + ["npm:1.10.1", {\ + "packageLocation": "./.yarn/cache/path-scurry-npm-1.10.1-52bd946f2e-e2557cff3a.zip/node_modules/path-scurry/",\ "packageDependencies": [\ - ["path-starts-with", "npm:1.0.0"],\ - ["normalize-path", "npm:2.1.1"]\ + ["path-scurry", "npm:1.10.1"],\ + ["lru-cache", "npm:10.0.1"],\ + ["minipass", "npm:7.0.3"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["path-type", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/path-type-npm-3.0.0-252361a0eb-735b35e256.zip/node_modules/path-type/",\ - "packageDependencies": [\ - ["path-type", "npm:3.0.0"],\ - ["pify", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ ["npm:4.0.0", {\ "packageLocation": "./.yarn/cache/path-type-npm-4.0.0-10d47fc86a-5b1e2daa24.zip/node_modules/path-type/",\ "packageDependencies": [\ @@ -10541,33 +10887,25 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ - ["picomatch", [\ - ["npm:2.2.3", {\ - "packageLocation": "./.yarn/cache/picomatch-npm-2.2.3-3797e21cf0-45e2b882b5.zip/node_modules/picomatch/",\ + ["picocolors", [\ + ["npm:1.0.0", {\ + "packageLocation": "./.yarn/cache/picocolors-npm-1.0.0-d81e0b1927-a2e8092dd8.zip/node_modules/picocolors/",\ "packageDependencies": [\ - ["picomatch", "npm:2.2.3"]\ + ["picocolors", "npm:1.0.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["pify", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/pify-npm-3.0.0-679ee405c8-6cdcbc3567.zip/node_modules/pify/",\ + ["picomatch", [\ + ["npm:2.3.1", {\ + "packageLocation": "./.yarn/cache/picomatch-npm-2.3.1-c782cfd986-050c865ce8.zip/node_modules/picomatch/",\ "packageDependencies": [\ - ["pify", "npm:3.0.0"]\ + ["picomatch", "npm:2.3.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["pkg-dir", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/pkg-dir-npm-2.0.0-2b4bf4abd1-8c72b71230.zip/node_modules/pkg-dir/",\ - "packageDependencies": [\ - ["pkg-dir", "npm:2.0.0"],\ - ["find-up", "npm:2.1.0"]\ - ],\ - "linkType": "HARD"\ - }],\ ["npm:4.2.0", {\ "packageLocation": "./.yarn/cache/pkg-dir-npm-4.2.0-2b5d0a8d32-9863e3f351.zip/node_modules/pkg-dir/",\ "packageDependencies": [\ @@ -10577,29 +10915,18 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ - ["pkg-up", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/pkg-up-npm-2.0.0-d011ba70a4-de4b418175.zip/node_modules/pkg-up/",\ - "packageDependencies": [\ - ["pkg-up", "npm:2.0.0"],\ - ["find-up", "npm:2.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ ["prebuild-install", [\ - ["npm:6.1.2", {\ - "packageLocation": "./.yarn/cache/prebuild-install-npm-6.1.2-5d6abe684c-db205c9f40.zip/node_modules/prebuild-install/",\ + ["npm:6.1.4", {\ + "packageLocation": "./.yarn/cache/prebuild-install-npm-6.1.4-dba03730c6-de4313eda8.zip/node_modules/prebuild-install/",\ "packageDependencies": [\ - ["prebuild-install", "npm:6.1.2"],\ + ["prebuild-install", "npm:6.1.4"],\ ["detect-libc", "npm:1.0.3"],\ ["expand-template", "npm:2.0.3"],\ ["github-from-package", "npm:0.0.0"],\ - ["minimist", "npm:1.2.6"],\ + ["minimist", "npm:1.2.8"],\ ["mkdirp-classic", "npm:0.5.3"],\ ["napi-build-utils", "npm:1.0.2"],\ - ["node-abi", "npm:2.26.0"],\ - ["noop-logger", "npm:0.1.1"],\ + ["node-abi", "npm:2.30.1"],\ ["npmlog", "npm:4.1.2"],\ ["pump", "npm:3.0.0"],\ ["rc", "npm:1.2.8"],\ @@ -10633,7 +10960,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/prettier-linter-helpers-npm-1.0.0-6925131a7e-00ce8011cf.zip/node_modules/prettier-linter-helpers/",\ "packageDependencies": [\ ["prettier-linter-helpers", "npm:1.0.0"],\ - ["fast-diff", "npm:1.2.0"]\ + ["fast-diff", "npm:1.3.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -10659,31 +10986,9 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ]],\ ["progress", [\ ["npm:2.0.3", {\ - "packageLocation": "./.yarn/cache/progress-npm-2.0.3-d1f87e2ac6-f67403fe7b.zip/node_modules/progress/",\ - "packageDependencies": [\ - ["progress", "npm:2.0.3"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["promise-inflight", [\ - ["npm:1.0.1", {\ - "packageLocation": "./.yarn/cache/promise-inflight-npm-1.0.1-5bb925afac-2274948309.zip/node_modules/promise-inflight/",\ - "packageDependencies": [\ - ["promise-inflight", "npm:1.0.1"]\ - ],\ - "linkType": "SOFT"\ - }],\ - ["virtual:8adc312a262cccdf4915241955289bfb26ac0e1ebab1cc568f36b50651793fc358863efdf800291c5b43d0603acbe4f022b374e6efe3a568ff4c9e5cf2f8b099#npm:1.0.1", {\ - "packageLocation": "./.yarn/__virtual__/promise-inflight-virtual-60bd354301/0/cache/promise-inflight-npm-1.0.1-5bb925afac-2274948309.zip/node_modules/promise-inflight/",\ + "packageLocation": "./.yarn/cache/progress-npm-2.0.3-d1f87e2ac6-f67403fe7b.zip/node_modules/progress/",\ "packageDependencies": [\ - ["promise-inflight", "virtual:8adc312a262cccdf4915241955289bfb26ac0e1ebab1cc568f36b50651793fc358863efdf800291c5b43d0603acbe4f022b374e6efe3a568ff4c9e5cf2f8b099#npm:1.0.1"],\ - ["@types/bluebird", null],\ - ["bluebird", null]\ - ],\ - "packagePeers": [\ - "@types/bluebird",\ - "bluebird"\ + ["progress", "npm:2.0.3"]\ ],\ "linkType": "HARD"\ }]\ @@ -10700,10 +11005,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["protobufjs", [\ - ["npm:6.11.3", {\ - "packageLocation": "./.yarn/unplugged/protobufjs-npm-6.11.3-566fb31188/node_modules/protobufjs/",\ + ["npm:6.11.4", {\ + "packageLocation": "./.yarn/unplugged/protobufjs-npm-6.11.4-af11968b80/node_modules/protobufjs/",\ "packageDependencies": [\ - ["protobufjs", "npm:6.11.3"],\ + ["protobufjs", "npm:6.11.4"],\ ["@protobufjs/aspromise", "npm:1.1.2"],\ ["@protobufjs/base64", "npm:1.1.2"],\ ["@protobufjs/codegen", "npm:2.0.4"],\ @@ -10714,8 +11019,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@protobufjs/path", "npm:1.1.2"],\ ["@protobufjs/pool", "npm:1.1.0"],\ ["@protobufjs/utf8", "npm:1.1.0"],\ - ["@types/long", "npm:4.0.1"],\ - ["@types/node", "npm:18.15.11"],\ + ["@types/long", "npm:4.0.2"],\ + ["@types/node", "npm:20.5.0"],\ ["long", "npm:4.0.0"]\ ],\ "linkType": "HARD"\ @@ -10733,10 +11038,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["punycode", [\ - ["npm:2.1.1", {\ - "packageLocation": "./.yarn/cache/punycode-npm-2.1.1-26eb3e15cf-823bf443c6.zip/node_modules/punycode/",\ + ["npm:2.3.0", {\ + "packageLocation": "./.yarn/cache/punycode-npm-2.3.0-df4bdce06b-39f760e09a.zip/node_modules/punycode/",\ "packageDependencies": [\ - ["punycode", "npm:2.1.1"]\ + ["punycode", "npm:2.3.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -10751,18 +11056,19 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["qs", [\ - ["npm:6.10.1", {\ - "packageLocation": "./.yarn/cache/qs-npm-6.10.1-12d3ab7795-00e390dbf9.zip/node_modules/qs/",\ + ["npm:6.11.0", {\ + "packageLocation": "./.yarn/cache/qs-npm-6.11.0-caf1bc9dea-6e1f29dd53.zip/node_modules/qs/",\ "packageDependencies": [\ - ["qs", "npm:6.10.1"],\ + ["qs", "npm:6.11.0"],\ ["side-channel", "npm:1.0.4"]\ ],\ "linkType": "HARD"\ }],\ - ["npm:6.7.0", {\ - "packageLocation": "./.yarn/cache/qs-npm-6.7.0-15161a344c-dfd5f6adef.zip/node_modules/qs/",\ + ["npm:6.11.2", {\ + "packageLocation": "./.yarn/cache/qs-npm-6.11.2-b118bc1c6f-e812f3c590.zip/node_modules/qs/",\ "packageDependencies": [\ - ["qs", "npm:6.7.0"]\ + ["qs", "npm:6.11.2"],\ + ["side-channel", "npm:1.0.4"]\ ],\ "linkType": "HARD"\ }]\ @@ -10796,23 +11102,12 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["raw-body", [\ - ["npm:2.4.0", {\ - "packageLocation": "./.yarn/cache/raw-body-npm-2.4.0-14d9d633af-6343906939.zip/node_modules/raw-body/",\ - "packageDependencies": [\ - ["raw-body", "npm:2.4.0"],\ - ["bytes", "npm:3.1.0"],\ - ["http-errors", "npm:1.7.2"],\ - ["iconv-lite", "npm:0.4.24"],\ - ["unpipe", "npm:1.0.0"]\ - ],\ - "linkType": "HARD"\ - }],\ - ["npm:2.4.1", {\ - "packageLocation": "./.yarn/cache/raw-body-npm-2.4.1-e6e30ccf94-d5e9179d2f.zip/node_modules/raw-body/",\ + ["npm:2.5.2", {\ + "packageLocation": "./.yarn/cache/raw-body-npm-2.5.2-5cb9dfebc1-ba1583c8d8.zip/node_modules/raw-body/",\ "packageDependencies": [\ - ["raw-body", "npm:2.4.1"],\ - ["bytes", "npm:3.1.0"],\ - ["http-errors", "npm:1.7.3"],\ + ["raw-body", "npm:2.5.2"],\ + ["bytes", "npm:3.1.2"],\ + ["http-errors", "npm:2.0.0"],\ ["iconv-lite", "npm:0.4.24"],\ ["unpipe", "npm:1.0.0"]\ ],\ @@ -10826,41 +11121,18 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["rc", "npm:1.2.8"],\ ["deep-extend", "npm:0.6.0"],\ ["ini", "npm:1.3.8"],\ - ["minimist", "npm:1.2.6"],\ + ["minimist", "npm:1.2.8"],\ ["strip-json-comments", "npm:2.0.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["read-pkg", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/read-pkg-npm-3.0.0-41471436cb-398903ebae.zip/node_modules/read-pkg/",\ - "packageDependencies": [\ - ["read-pkg", "npm:3.0.0"],\ - ["load-json-file", "npm:4.0.0"],\ - ["normalize-package-data", "npm:2.5.0"],\ - ["path-type", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["read-pkg-up", [\ - ["npm:3.0.0", {\ - "packageLocation": "./.yarn/cache/read-pkg-up-npm-3.0.0-3d7faf047f-16175573f2.zip/node_modules/read-pkg-up/",\ - "packageDependencies": [\ - ["read-pkg-up", "npm:3.0.0"],\ - ["find-up", "npm:2.1.0"],\ - ["read-pkg", "npm:3.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ ["readable-stream", [\ - ["npm:2.3.7", {\ - "packageLocation": "./.yarn/cache/readable-stream-npm-2.3.7-77b22a9818-e4920cf754.zip/node_modules/readable-stream/",\ + ["npm:2.3.8", {\ + "packageLocation": "./.yarn/cache/readable-stream-npm-2.3.8-67a94c2cb1-6564546703.zip/node_modules/readable-stream/",\ "packageDependencies": [\ - ["readable-stream", "npm:2.3.7"],\ - ["core-util-is", "npm:1.0.2"],\ + ["readable-stream", "npm:2.3.8"],\ + ["core-util-is", "npm:1.0.3"],\ ["inherits", "npm:2.0.4"],\ ["isarray", "npm:1.0.0"],\ ["process-nextick-args", "npm:2.0.1"],\ @@ -10870,10 +11142,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:3.6.0", {\ - "packageLocation": "./.yarn/cache/readable-stream-npm-3.6.0-23a4a5eb56-d4ea81502d.zip/node_modules/readable-stream/",\ + ["npm:3.6.2", {\ + "packageLocation": "./.yarn/cache/readable-stream-npm-3.6.2-d2a6069158-bdcbe6c22e.zip/node_modules/readable-stream/",\ "packageDependencies": [\ - ["readable-stream", "npm:3.6.0"],\ + ["readable-stream", "npm:3.6.2"],\ ["inherits", "npm:2.0.4"],\ ["string_decoder", "npm:1.3.0"],\ ["util-deprecate", "npm:1.0.2"]\ @@ -10886,7 +11158,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/readdirp-npm-3.6.0-f950cc74ab-1ced032e6e.zip/node_modules/readdirp/",\ "packageDependencies": [\ ["readdirp", "npm:3.6.0"],\ - ["picomatch", "npm:2.2.3"]\ + ["picomatch", "npm:2.3.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -10901,33 +11173,45 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["recast", [\ - ["npm:0.20.4", {\ - "packageLocation": "./.yarn/cache/recast-npm-0.20.4-b1c06811bf-d858095cbd.zip/node_modules/recast/",\ + ["npm:0.20.5", {\ + "packageLocation": "./.yarn/cache/recast-npm-0.20.5-35a50e82d9-14c35115cd.zip/node_modules/recast/",\ "packageDependencies": [\ - ["recast", "npm:0.20.4"],\ + ["recast", "npm:0.20.5"],\ ["ast-types", "npm:0.14.2"],\ ["esprima", "npm:4.0.1"],\ ["source-map", "npm:0.6.1"],\ - ["tslib", "npm:2.2.0"]\ + ["tslib", "npm:2.6.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["rechoir", [\ - ["npm:0.7.0", {\ - "packageLocation": "./.yarn/cache/rechoir-npm-0.7.0-9bea79bab8-15f55f55e0.zip/node_modules/rechoir/",\ + ["npm:0.7.1", {\ + "packageLocation": "./.yarn/cache/rechoir-npm-0.7.1-0c7e5c1201-2a04aab4e2.zip/node_modules/rechoir/",\ "packageDependencies": [\ - ["rechoir", "npm:0.7.0"],\ - ["resolve", "patch:resolve@npm%3A1.20.0#~builtin::version=1.20.0&hash=c3c19d"]\ + ["rechoir", "npm:0.7.1"],\ + ["resolve", "patch:resolve@npm%3A1.22.4#~builtin::version=1.22.4&hash=c3c19d"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["regenerator-runtime", [\ - ["npm:0.13.8", {\ - "packageLocation": "./.yarn/cache/regenerator-runtime-npm-0.13.8-0450f887d6-5f89699ab5.zip/node_modules/regenerator-runtime/",\ + ["npm:0.14.0", {\ + "packageLocation": "./.yarn/cache/regenerator-runtime-npm-0.14.0-e060897cf7-1c977ad82a.zip/node_modules/regenerator-runtime/",\ + "packageDependencies": [\ + ["regenerator-runtime", "npm:0.14.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["regexp.prototype.flags", [\ + ["npm:1.5.0", {\ + "packageLocation": "./.yarn/cache/regexp.prototype.flags-npm-1.5.0-5623b9e07f-c541687cdb.zip/node_modules/regexp.prototype.flags/",\ "packageDependencies": [\ - ["regenerator-runtime", "npm:0.13.8"]\ + ["regexp.prototype.flags", "npm:1.5.0"],\ + ["call-bind", "npm:1.0.2"],\ + ["define-properties", "npm:1.2.0"],\ + ["functions-have-names", "npm:1.2.3"]\ ],\ "linkType": "HARD"\ }]\ @@ -10951,15 +11235,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ - ["remove-trailing-separator", [\ - ["npm:1.1.0", {\ - "packageLocation": "./.yarn/cache/remove-trailing-separator-npm-1.1.0-16d7231316-d3c20b5a2d.zip/node_modules/remove-trailing-separator/",\ - "packageDependencies": [\ - ["remove-trailing-separator", "npm:1.1.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ ["require-directory", [\ ["npm:2.1.1", {\ "packageLocation": "./.yarn/cache/require-directory-npm-2.1.1-8608aee50b-fb47e70bf0.zip/node_modules/require-directory/",\ @@ -10997,12 +11272,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["resolve", [\ - ["patch:resolve@npm%3A1.20.0#~builtin::version=1.20.0&hash=c3c19d", {\ - "packageLocation": "./.yarn/cache/resolve-patch-020719249b-a0dd7d16a8.zip/node_modules/resolve/",\ + ["patch:resolve@npm%3A1.22.4#~builtin::version=1.22.4&hash=c3c19d", {\ + "packageLocation": "./.yarn/cache/resolve-patch-efbbaf0edd-c45f2545fd.zip/node_modules/resolve/",\ "packageDependencies": [\ - ["resolve", "patch:resolve@npm%3A1.20.0#~builtin::version=1.20.0&hash=c3c19d"],\ - ["is-core-module", "npm:2.4.0"],\ - ["path-parse", "npm:1.0.7"]\ + ["resolve", "patch:resolve@npm%3A1.22.4#~builtin::version=1.22.4&hash=c3c19d"],\ + ["is-core-module", "npm:2.13.0"],\ + ["path-parse", "npm:1.0.7"],\ + ["supports-preserve-symlinks-flag", "npm:1.0.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -11065,7 +11341,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/rimraf-npm-3.0.2-2cb7dac69a-87f4164e39.zip/node_modules/rimraf/",\ "packageDependencies": [\ ["rimraf", "npm:3.0.2"],\ - ["glob", "npm:7.2.0"]\ + ["glob", "npm:7.2.3"]\ ],\ "linkType": "HARD"\ }]\ @@ -11101,6 +11377,19 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["safe-array-concat", [\ + ["npm:1.0.0", {\ + "packageLocation": "./.yarn/cache/safe-array-concat-npm-1.0.0-897b2c630a-f43cb98fe3.zip/node_modules/safe-array-concat/",\ + "packageDependencies": [\ + ["safe-array-concat", "npm:1.0.0"],\ + ["call-bind", "npm:1.0.2"],\ + ["get-intrinsic", "npm:1.2.1"],\ + ["has-symbols", "npm:1.0.3"],\ + ["isarray", "npm:2.0.5"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["safe-buffer", [\ ["npm:5.1.2", {\ "packageLocation": "./.yarn/cache/safe-buffer-npm-5.1.2-c27fedf6c4-f2f1f7943c.zip/node_modules/safe-buffer/",\ @@ -11117,6 +11406,18 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["safe-regex-test", [\ + ["npm:1.0.0", {\ + "packageLocation": "./.yarn/cache/safe-regex-test-npm-1.0.0-e94a09b84e-bc566d8beb.zip/node_modules/safe-regex-test/",\ + "packageDependencies": [\ + ["safe-regex-test", "npm:1.0.0"],\ + ["call-bind", "npm:1.0.2"],\ + ["get-intrinsic", "npm:1.2.1"],\ + ["is-regex", "npm:1.1.4"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["safer-buffer", [\ ["npm:2.1.2", {\ "packageLocation": "./.yarn/cache/safer-buffer-npm-2.1.2-8d5c0b705e-cab8f25ae6.zip/node_modules/safer-buffer/",\ @@ -11127,36 +11428,36 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["schema-utils", [\ - ["npm:3.1.1", {\ - "packageLocation": "./.yarn/cache/schema-utils-npm-3.1.1-8704647575-fb73f3d759.zip/node_modules/schema-utils/",\ + ["npm:3.3.0", {\ + "packageLocation": "./.yarn/cache/schema-utils-npm-3.3.0-f2b36937f1-ea56971926.zip/node_modules/schema-utils/",\ "packageDependencies": [\ - ["schema-utils", "npm:3.1.1"],\ - ["@types/json-schema", "npm:7.0.11"],\ + ["schema-utils", "npm:3.3.0"],\ + ["@types/json-schema", "npm:7.0.12"],\ ["ajv", "npm:6.12.6"],\ - ["ajv-keywords", "virtual:8704647575acf2f5b19fccfcb0acebacd9c94259ebe9afcfaf4c053812fd896f10775930ee5a5949e20833a61503d2cd22aa259cbe69729f6a192de4bf43dc00#npm:3.5.2"]\ + ["ajv-keywords", "virtual:f2b36937f163b579815d3163513b3330d7a31aaf0599eea66346382b8838395c613f4204e9809cc2ff6bba09c17ab0c34b37deadcb147de7e2f5e535d6ccc245#npm:3.5.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["semver", [\ - ["npm:5.7.1", {\ - "packageLocation": "./.yarn/cache/semver-npm-5.7.1-40bcea106b-57fd0acfd0.zip/node_modules/semver/",\ + ["npm:5.7.2", {\ + "packageLocation": "./.yarn/cache/semver-npm-5.7.2-938ee91eaa-fb4ab5e0dd.zip/node_modules/semver/",\ "packageDependencies": [\ - ["semver", "npm:5.7.1"]\ + ["semver", "npm:5.7.2"]\ ],\ "linkType": "HARD"\ }],\ - ["npm:6.3.0", {\ - "packageLocation": "./.yarn/cache/semver-npm-6.3.0-b3eace8bfd-1b26ecf6db.zip/node_modules/semver/",\ + ["npm:6.3.1", {\ + "packageLocation": "./.yarn/cache/semver-npm-6.3.1-bcba31fdbe-ae47d06de2.zip/node_modules/semver/",\ "packageDependencies": [\ - ["semver", "npm:6.3.0"]\ + ["semver", "npm:6.3.1"]\ ],\ "linkType": "HARD"\ }],\ - ["npm:7.5.3", {\ - "packageLocation": "./.yarn/cache/semver-npm-7.5.3-275095dbf3-9d58db1652.zip/node_modules/semver/",\ + ["npm:7.5.4", {\ + "packageLocation": "./.yarn/cache/semver-npm-7.5.4-c4ad957fcd-12d8ad952f.zip/node_modules/semver/",\ "packageDependencies": [\ - ["semver", "npm:7.5.3"],\ + ["semver", "npm:7.5.4"],\ ["lru-cache", "npm:6.0.0"]\ ],\ "linkType": "HARD"\ @@ -11177,7 +11478,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/ses-npm-0.11.1-82b4f2a77b-e79577a9cf.zip/node_modules/ses/",\ "packageDependencies": [\ ["ses", "npm:0.11.1"],\ - ["@agoric/babel-standalone", "npm:7.9.5"],\ + ["@agoric/babel-standalone", "npm:7.17.7"],\ ["@agoric/make-hardener", "npm:0.1.3"],\ ["@agoric/transform-module", "npm:0.4.1"]\ ],\ @@ -11194,13 +11495,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["setprototypeof", [\ - ["npm:1.1.1", {\ - "packageLocation": "./.yarn/cache/setprototypeof-npm-1.1.1-706b6318ec-a8bee29c1c.zip/node_modules/setprototypeof/",\ - "packageDependencies": [\ - ["setprototypeof", "npm:1.1.1"]\ - ],\ - "linkType": "HARD"\ - }],\ ["npm:1.2.0", {\ "packageLocation": "./.yarn/cache/setprototypeof-npm-1.2.0-0fedbdcd3a-be18cbbf70.zip/node_modules/setprototypeof/",\ "packageDependencies": [\ @@ -11239,11 +11533,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["shiki", [\ - ["npm:0.14.1", {\ - "packageLocation": "./.yarn/cache/shiki-npm-0.14.1-f41a21e5be-b19ea337cc.zip/node_modules/shiki/",\ + ["npm:0.14.3", {\ + "packageLocation": "./.yarn/cache/shiki-npm-0.14.3-bbc09f85cf-a4dd98e3b2.zip/node_modules/shiki/",\ "packageDependencies": [\ - ["shiki", "npm:0.14.1"],\ - ["ansi-sequence-parser", "npm:1.1.0"],\ + ["shiki", "npm:0.14.3"],\ + ["ansi-sequence-parser", "npm:1.1.1"],\ ["jsonc-parser", "npm:3.2.0"],\ ["vscode-oniguruma", "npm:1.7.0"],\ ["vscode-textmate", "npm:8.0.0"]\ @@ -11257,17 +11551,24 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["side-channel", "npm:1.0.4"],\ ["call-bind", "npm:1.0.2"],\ - ["get-intrinsic", "npm:1.1.1"],\ - ["object-inspect", "npm:1.10.3"]\ + ["get-intrinsic", "npm:1.2.1"],\ + ["object-inspect", "npm:1.12.3"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["signal-exit", [\ - ["npm:3.0.3", {\ - "packageLocation": "./.yarn/cache/signal-exit-npm-3.0.3-5a2d797648-f0169d3f12.zip/node_modules/signal-exit/",\ + ["npm:3.0.7", {\ + "packageLocation": "./.yarn/cache/signal-exit-npm-3.0.7-bd270458a3-a2f098f247.zip/node_modules/signal-exit/",\ + "packageDependencies": [\ + ["signal-exit", "npm:3.0.7"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:4.1.0", {\ + "packageLocation": "./.yarn/cache/signal-exit-npm-4.1.0-61fb957687-64c757b498.zip/node_modules/signal-exit/",\ "packageDependencies": [\ - ["signal-exit", "npm:3.0.3"]\ + ["signal-exit", "npm:4.1.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -11315,80 +11616,75 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["smart-buffer", [\ - ["npm:4.1.0", {\ - "packageLocation": "./.yarn/cache/smart-buffer-npm-4.1.0-2a8829a5b4-1db847dcf9.zip/node_modules/smart-buffer/",\ + ["npm:4.2.0", {\ + "packageLocation": "./.yarn/cache/smart-buffer-npm-4.2.0-5ac3f668bb-b5167a7142.zip/node_modules/smart-buffer/",\ "packageDependencies": [\ - ["smart-buffer", "npm:4.1.0"]\ + ["smart-buffer", "npm:4.2.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["socket.io", [\ - ["npm:4.5.3", {\ - "packageLocation": "./.yarn/cache/socket.io-npm-4.5.3-30385c9144-2a7e4c64bb.zip/node_modules/socket.io/",\ + ["npm:4.7.2", {\ + "packageLocation": "./.yarn/cache/socket.io-npm-4.7.2-c35c68fbd6-2dfac8983a.zip/node_modules/socket.io/",\ "packageDependencies": [\ - ["socket.io", "npm:4.5.3"],\ - ["accepts", "npm:1.3.7"],\ + ["socket.io", "npm:4.7.2"],\ + ["accepts", "npm:1.3.8"],\ ["base64id", "npm:2.0.0"],\ - ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"],\ - ["engine.io", "npm:6.2.0"],\ - ["socket.io-adapter", "npm:2.4.0"],\ - ["socket.io-parser", "npm:4.2.1"]\ + ["cors", "npm:2.8.5"],\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"],\ + ["engine.io", "npm:6.5.2"],\ + ["socket.io-adapter", "npm:2.5.2"],\ + ["socket.io-parser", "npm:4.2.4"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["socket.io-adapter", [\ - ["npm:2.4.0", {\ - "packageLocation": "./.yarn/cache/socket.io-adapter-npm-2.4.0-36a74a6ea1-a84639946d.zip/node_modules/socket.io-adapter/",\ + ["npm:2.5.2", {\ + "packageLocation": "./.yarn/cache/socket.io-adapter-npm-2.5.2-3456682203-481251c354.zip/node_modules/socket.io-adapter/",\ "packageDependencies": [\ - ["socket.io-adapter", "npm:2.4.0"]\ + ["socket.io-adapter", "npm:2.5.2"],\ + ["ws", "virtual:ee531cd7dfd5026f7bba8760172e4108567cb8fc1127e57365281be51439b691f6dd1c82e657a9e658d51419256a96685c3291cee11b82603df44b409613475b#npm:8.11.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["socket.io-parser", [\ - ["npm:4.2.1", {\ - "packageLocation": "./.yarn/cache/socket.io-parser-npm-4.2.1-7ef513b498-2582202f22.zip/node_modules/socket.io-parser/",\ + ["npm:4.2.4", {\ + "packageLocation": "./.yarn/cache/socket.io-parser-npm-4.2.4-bf87f78bcd-61540ef99a.zip/node_modules/socket.io-parser/",\ "packageDependencies": [\ - ["socket.io-parser", "npm:4.2.1"],\ + ["socket.io-parser", "npm:4.2.4"],\ ["@socket.io/component-emitter", "npm:3.1.0"],\ - ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"]\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["socks", [\ - ["npm:2.6.1", {\ - "packageLocation": "./.yarn/cache/socks-npm-2.6.1-09133d0d22-2ca9d616e4.zip/node_modules/socks/",\ + ["npm:2.7.1", {\ + "packageLocation": "./.yarn/cache/socks-npm-2.7.1-17f2b53052-259d9e3e8e.zip/node_modules/socks/",\ "packageDependencies": [\ - ["socks", "npm:2.6.1"],\ - ["ip", "npm:1.1.5"],\ - ["smart-buffer", "npm:4.1.0"]\ + ["socks", "npm:2.7.1"],\ + ["ip", "npm:2.0.0"],\ + ["smart-buffer", "npm:4.2.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["socks-proxy-agent", [\ - ["npm:5.0.0", {\ - "packageLocation": "./.yarn/cache/socks-proxy-agent-npm-5.0.0-0416dc71b7-1dd30d1cc3.zip/node_modules/socks-proxy-agent/",\ + ["npm:7.0.0", {\ + "packageLocation": "./.yarn/cache/socks-proxy-agent-npm-7.0.0-7aacf32ea0-7205543701.zip/node_modules/socks-proxy-agent/",\ "packageDependencies": [\ - ["socks-proxy-agent", "npm:5.0.0"],\ + ["socks-proxy-agent", "npm:7.0.0"],\ ["agent-base", "npm:6.0.2"],\ - ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"],\ - ["socks", "npm:2.6.1"]\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"],\ + ["socks", "npm:2.7.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["source-map", [\ - ["npm:0.5.7", {\ - "packageLocation": "./.yarn/cache/source-map-npm-0.5.7-7c3f035429-5dc2043b93.zip/node_modules/source-map/",\ - "packageDependencies": [\ - ["source-map", "npm:0.5.7"]\ - ],\ - "linkType": "HARD"\ - }],\ ["npm:0.6.1", {\ "packageLocation": "./.yarn/cache/source-map-npm-0.6.1-1a3621db16-59ce8640cf.zip/node_modules/source-map/",\ "packageDependencies": [\ @@ -11402,7 +11698,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/source-map-support-npm-0.5.21-09ca99e250-43e98d700d.zip/node_modules/source-map-support/",\ "packageDependencies": [\ ["source-map-support", "npm:0.5.21"],\ - ["buffer-from", "npm:1.1.1"],\ + ["buffer-from", "npm:1.1.2"],\ ["source-map", "npm:0.6.1"]\ ],\ "linkType": "HARD"\ @@ -11417,52 +11713,12 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["is-windows", "npm:1.0.2"],\ ["make-dir", "npm:3.1.0"],\ ["rimraf", "npm:3.0.2"],\ - ["signal-exit", "npm:3.0.3"],\ + ["signal-exit", "npm:3.0.7"],\ ["which", "npm:2.0.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["spdx-correct", [\ - ["npm:3.1.1", {\ - "packageLocation": "./.yarn/cache/spdx-correct-npm-3.1.1-47f574c27a-77ce438344.zip/node_modules/spdx-correct/",\ - "packageDependencies": [\ - ["spdx-correct", "npm:3.1.1"],\ - ["spdx-expression-parse", "npm:3.0.1"],\ - ["spdx-license-ids", "npm:3.0.8"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["spdx-exceptions", [\ - ["npm:2.3.0", {\ - "packageLocation": "./.yarn/cache/spdx-exceptions-npm-2.3.0-2b68dad75a-cb69a26fa3.zip/node_modules/spdx-exceptions/",\ - "packageDependencies": [\ - ["spdx-exceptions", "npm:2.3.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["spdx-expression-parse", [\ - ["npm:3.0.1", {\ - "packageLocation": "./.yarn/cache/spdx-expression-parse-npm-3.0.1-b718cbb35a-a1c6e104a2.zip/node_modules/spdx-expression-parse/",\ - "packageDependencies": [\ - ["spdx-expression-parse", "npm:3.0.1"],\ - ["spdx-exceptions", "npm:2.3.0"],\ - ["spdx-license-ids", "npm:3.0.8"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["spdx-license-ids", [\ - ["npm:3.0.8", {\ - "packageLocation": "./.yarn/cache/spdx-license-ids-npm-3.0.8-1b3b627cc1-fb9ed29f99.zip/node_modules/spdx-license-ids/",\ - "packageDependencies": [\ - ["spdx-license-ids", "npm:3.0.8"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ ["sprintf-js", [\ ["npm:1.0.3", {\ "packageLocation": "./.yarn/cache/sprintf-js-npm-1.0.3-73f0a322fa-19d79aec21.zip/node_modules/sprintf-js/",\ @@ -11473,11 +11729,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["ssri", [\ - ["npm:8.0.1", {\ - "packageLocation": "./.yarn/cache/ssri-npm-8.0.1-a369e72ce2-bc447f5af8.zip/node_modules/ssri/",\ + ["npm:10.0.5", {\ + "packageLocation": "./.yarn/cache/ssri-npm-10.0.5-1a7557d04d-0a31b65f21.zip/node_modules/ssri/",\ "packageDependencies": [\ - ["ssri", "npm:8.0.1"],\ - ["minipass", "npm:3.1.3"]\ + ["ssri", "npm:10.0.5"],\ + ["minipass", "npm:7.0.3"]\ ],\ "linkType": "HARD"\ }]\ @@ -11489,16 +11745,23 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["statuses", "npm:1.5.0"]\ ],\ "linkType": "HARD"\ + }],\ + ["npm:2.0.1", {\ + "packageLocation": "./.yarn/cache/statuses-npm-2.0.1-81d2b97fee-18c7623fdb.zip/node_modules/statuses/",\ + "packageDependencies": [\ + ["statuses", "npm:2.0.1"]\ + ],\ + "linkType": "HARD"\ }]\ ]],\ ["streamroller", [\ - ["npm:3.0.2", {\ - "packageLocation": "./.yarn/cache/streamroller-npm-3.0.2-6d7ba8035a-1f323824f0.zip/node_modules/streamroller/",\ + ["npm:3.1.5", {\ + "packageLocation": "./.yarn/cache/streamroller-npm-3.1.5-2fe0f7e85a-c1df5612b7.zip/node_modules/streamroller/",\ "packageDependencies": [\ - ["streamroller", "npm:3.0.2"],\ - ["date-format", "npm:4.0.3"],\ - ["debug", "virtual:6d7ba8035a34a8cbc48e227f3e803dbc3acaabbab2521c3cd66a45a2853fa6bda5b3ccb3ab1942c8a738927bc0e228ea8d5baa6461d73e2cf6a345db629c4f47#npm:4.3.3"],\ - ["fs-extra", "npm:10.0.0"]\ + ["streamroller", "npm:3.1.5"],\ + ["date-format", "npm:4.0.14"],\ + ["debug", "virtual:2fe0f7e85abed84e4b1b02b5228ef820a4fe52fa21a4887a96a3b2e3f04fc14b145017ec5de0bd10db73107b63f7e0a171fa6762d76b98842b6af0fccaa9aec3#npm:4.3.4"],\ + ["fs-extra", "npm:8.1.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -11514,44 +11777,59 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:2.1.1", {\ - "packageLocation": "./.yarn/cache/string-width-npm-2.1.1-0c2c6ae53f-d6173abe08.zip/node_modules/string-width/",\ + ["npm:4.2.3", {\ + "packageLocation": "./.yarn/cache/string-width-npm-4.2.3-2c27177bae-e52c10dc3f.zip/node_modules/string-width/",\ "packageDependencies": [\ - ["string-width", "npm:2.1.1"],\ - ["is-fullwidth-code-point", "npm:2.0.0"],\ - ["strip-ansi", "npm:4.0.0"]\ + ["string-width", "npm:4.2.3"],\ + ["emoji-regex", "npm:8.0.0"],\ + ["is-fullwidth-code-point", "npm:3.0.0"],\ + ["strip-ansi", "npm:6.0.1"]\ ],\ "linkType": "HARD"\ }],\ - ["npm:4.2.2", {\ - "packageLocation": "./.yarn/cache/string-width-npm-4.2.2-aa12d6b759-343e089b0e.zip/node_modules/string-width/",\ + ["npm:5.1.2", {\ + "packageLocation": "./.yarn/cache/string-width-npm-5.1.2-bf60531341-7369deaa29.zip/node_modules/string-width/",\ "packageDependencies": [\ - ["string-width", "npm:4.2.2"],\ - ["emoji-regex", "npm:8.0.0"],\ - ["is-fullwidth-code-point", "npm:3.0.0"],\ - ["strip-ansi", "npm:6.0.0"]\ + ["string-width", "npm:5.1.2"],\ + ["eastasianwidth", "npm:0.2.0"],\ + ["emoji-regex", "npm:9.2.2"],\ + ["strip-ansi", "npm:7.1.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["string.prototype.trim", [\ + ["npm:1.2.7", {\ + "packageLocation": "./.yarn/cache/string.prototype.trim-npm-1.2.7-3fbaf3b9d2-05b7b2d6af.zip/node_modules/string.prototype.trim/",\ + "packageDependencies": [\ + ["string.prototype.trim", "npm:1.2.7"],\ + ["call-bind", "npm:1.0.2"],\ + ["define-properties", "npm:1.2.0"],\ + ["es-abstract", "npm:1.22.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["string.prototype.trimend", [\ - ["npm:1.0.4", {\ - "packageLocation": "./.yarn/cache/string.prototype.trimend-npm-1.0.4-a656b8fe24-17e5aa45c3.zip/node_modules/string.prototype.trimend/",\ + ["npm:1.0.6", {\ + "packageLocation": "./.yarn/cache/string.prototype.trimend-npm-1.0.6-304246ecc1-0fdc34645a.zip/node_modules/string.prototype.trimend/",\ "packageDependencies": [\ - ["string.prototype.trimend", "npm:1.0.4"],\ + ["string.prototype.trimend", "npm:1.0.6"],\ ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.1.3"]\ + ["define-properties", "npm:1.2.0"],\ + ["es-abstract", "npm:1.22.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["string.prototype.trimstart", [\ - ["npm:1.0.4", {\ - "packageLocation": "./.yarn/cache/string.prototype.trimstart-npm-1.0.4-b31f5e7c85-3fb06818d3.zip/node_modules/string.prototype.trimstart/",\ + ["npm:1.0.6", {\ + "packageLocation": "./.yarn/cache/string.prototype.trimstart-npm-1.0.6-0926caea6c-89080feef4.zip/node_modules/string.prototype.trimstart/",\ "packageDependencies": [\ - ["string.prototype.trimstart", "npm:1.0.4"],\ + ["string.prototype.trimstart", "npm:1.0.6"],\ ["call-bind", "npm:1.0.2"],\ - ["define-properties", "npm:1.1.3"]\ + ["define-properties", "npm:1.2.0"],\ + ["es-abstract", "npm:1.22.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -11583,19 +11861,19 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:4.0.0", {\ - "packageLocation": "./.yarn/cache/strip-ansi-npm-4.0.0-d4de985014-d9186e6c0c.zip/node_modules/strip-ansi/",\ + ["npm:6.0.1", {\ + "packageLocation": "./.yarn/cache/strip-ansi-npm-6.0.1-caddc7cb40-f3cd25890a.zip/node_modules/strip-ansi/",\ "packageDependencies": [\ - ["strip-ansi", "npm:4.0.0"],\ - ["ansi-regex", "npm:3.0.1"]\ + ["strip-ansi", "npm:6.0.1"],\ + ["ansi-regex", "npm:5.0.1"]\ ],\ "linkType": "HARD"\ }],\ - ["npm:6.0.0", {\ - "packageLocation": "./.yarn/cache/strip-ansi-npm-6.0.0-904613e9eb-04c3239ede.zip/node_modules/strip-ansi/",\ + ["npm:7.1.0", {\ + "packageLocation": "./.yarn/cache/strip-ansi-npm-7.1.0-7453b80b79-859c73fcf2.zip/node_modules/strip-ansi/",\ "packageDependencies": [\ - ["strip-ansi", "npm:6.0.0"],\ - ["ansi-regex", "npm:5.0.1"]\ + ["strip-ansi", "npm:7.1.0"],\ + ["ansi-regex", "npm:6.0.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -11616,15 +11894,6 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ - ["strip-final-newline", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/strip-final-newline-npm-2.0.0-340c4f7c66-69412b5e25.zip/node_modules/strip-final-newline/",\ - "packageDependencies": [\ - ["strip-final-newline", "npm:2.0.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ ["strip-json-comments", [\ ["npm:2.0.1", {\ "packageLocation": "./.yarn/cache/strip-json-comments-npm-2.0.1-e7883b2d04-1074ccb632.zip/node_modules/strip-json-comments/",\ @@ -11667,6 +11936,15 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["supports-preserve-symlinks-flag", [\ + ["npm:1.0.0", {\ + "packageLocation": "./.yarn/cache/supports-preserve-symlinks-flag-npm-1.0.0-f17c4d0028-53b1e247e6.zip/node_modules/supports-preserve-symlinks-flag/",\ + "packageDependencies": [\ + ["supports-preserve-symlinks-flag", "npm:1.0.0"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["symbol-observable", [\ ["npm:2.0.3", {\ "packageLocation": "./.yarn/cache/symbol-observable-npm-2.0.3-d54dcee558-533dcf7a79.zip/node_modules/symbol-observable/",\ @@ -11677,37 +11955,36 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["table", [\ - ["npm:6.7.1", {\ - "packageLocation": "./.yarn/cache/table-npm-6.7.1-7d70e55c6d-053b61fa4e.zip/node_modules/table/",\ + ["npm:6.8.1", {\ + "packageLocation": "./.yarn/cache/table-npm-6.8.1-83abb79e20-08249c7046.zip/node_modules/table/",\ "packageDependencies": [\ - ["table", "npm:6.7.1"],\ - ["ajv", "npm:8.4.0"],\ - ["lodash.clonedeep", "npm:4.5.0"],\ + ["table", "npm:6.8.1"],\ + ["ajv", "npm:8.12.0"],\ ["lodash.truncate", "npm:4.4.2"],\ ["slice-ansi", "npm:4.0.0"],\ - ["string-width", "npm:4.2.2"],\ - ["strip-ansi", "npm:6.0.0"]\ + ["string-width", "npm:4.2.3"],\ + ["strip-ansi", "npm:6.0.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["tapable", [\ - ["npm:2.2.0", {\ - "packageLocation": "./.yarn/cache/tapable-npm-2.2.0-516ee6aa5b-5a7e31ddd2.zip/node_modules/tapable/",\ + ["npm:2.2.1", {\ + "packageLocation": "./.yarn/cache/tapable-npm-2.2.1-8cf5ff3039-3b7a1b4d86.zip/node_modules/tapable/",\ "packageDependencies": [\ - ["tapable", "npm:2.2.0"]\ + ["tapable", "npm:2.2.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["tar", [\ - ["npm:6.1.11", {\ - "packageLocation": "./.yarn/cache/tar-npm-6.1.11-e6ac3cba9c-a04c07bb9e.zip/node_modules/tar/",\ + ["npm:6.1.15", {\ + "packageLocation": "./.yarn/cache/tar-npm-6.1.15-44c3e71720-f23832fcee.zip/node_modules/tar/",\ "packageDependencies": [\ - ["tar", "npm:6.1.11"],\ + ["tar", "npm:6.1.15"],\ ["chownr", "npm:2.0.0"],\ ["fs-minipass", "npm:2.1.0"],\ - ["minipass", "npm:3.1.3"],\ + ["minipass", "npm:5.0.0"],\ ["minizlib", "npm:2.1.2"],\ ["mkdirp", "npm:1.0.4"],\ ["yallist", "npm:4.0.0"]\ @@ -11737,18 +12014,18 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["end-of-stream", "npm:1.4.4"],\ ["fs-constants", "npm:1.0.0"],\ ["inherits", "npm:2.0.4"],\ - ["readable-stream", "npm:3.6.0"]\ + ["readable-stream", "npm:3.6.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["terser", [\ - ["npm:5.16.6", {\ - "packageLocation": "./.yarn/cache/terser-npm-5.16.6-261a5df329-f763a7bcc7.zip/node_modules/terser/",\ + ["npm:5.19.2", {\ + "packageLocation": "./.yarn/cache/terser-npm-5.19.2-91391d2f00-e059177775.zip/node_modules/terser/",\ "packageDependencies": [\ - ["terser", "npm:5.16.6"],\ - ["@jridgewell/source-map", "npm:0.3.2"],\ - ["acorn", "npm:8.7.1"],\ + ["terser", "npm:5.19.2"],\ + ["@jridgewell/source-map", "npm:0.3.5"],\ + ["acorn", "npm:8.10.0"],\ ["commander", "npm:2.20.3"],\ ["source-map-support", "npm:0.5.21"]\ ],\ @@ -11756,18 +12033,18 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["terser-webpack-plugin", [\ - ["npm:5.3.7", {\ - "packageLocation": "./.yarn/cache/terser-webpack-plugin-npm-5.3.7-4bfad49798-095e699fde.zip/node_modules/terser-webpack-plugin/",\ + ["npm:5.3.9", {\ + "packageLocation": "./.yarn/cache/terser-webpack-plugin-npm-5.3.9-7ba1eb45f4-41705713d6.zip/node_modules/terser-webpack-plugin/",\ "packageDependencies": [\ - ["terser-webpack-plugin", "npm:5.3.7"]\ + ["terser-webpack-plugin", "npm:5.3.9"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:0662612366a9fc70de6be81b05ab78b7d0d99b92c76f42fb9e68951bc6838f1ecdf4cc9fae49f79f3007608f8dd21a8f47f379d77b51c7a77bc9c9910a8234dc#npm:5.3.7", {\ - "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-78fd1ce4ea/0/cache/terser-webpack-plugin-npm-5.3.7-4bfad49798-095e699fde.zip/node_modules/terser-webpack-plugin/",\ + ["virtual:1d0ae89f4172f59f7896321b64f2836bd7b882a87abd185dd6c94ae34ac78047bed0d7b4551c3ca2c51f8a510cbee6bfa50fbc13e96ab15944b5036f7ba6d264#npm:5.3.9", {\ + "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-3a92b27ad6/0/cache/terser-webpack-plugin-npm-5.3.9-7ba1eb45f4-41705713d6.zip/node_modules/terser-webpack-plugin/",\ "packageDependencies": [\ - ["terser-webpack-plugin", "virtual:0662612366a9fc70de6be81b05ab78b7d0d99b92c76f42fb9e68951bc6838f1ecdf4cc9fae49f79f3007608f8dd21a8f47f379d77b51c7a77bc9c9910a8234dc#npm:5.3.7"],\ - ["@jridgewell/trace-mapping", "npm:0.3.17"],\ + ["terser-webpack-plugin", "virtual:1d0ae89f4172f59f7896321b64f2836bd7b882a87abd185dd6c94ae34ac78047bed0d7b4551c3ca2c51f8a510cbee6bfa50fbc13e96ab15944b5036f7ba6d264#npm:5.3.9"],\ + ["@jridgewell/trace-mapping", "npm:0.3.19"],\ ["@swc/core", null],\ ["@types/esbuild", null],\ ["@types/swc__core", null],\ @@ -11775,11 +12052,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/webpack", null],\ ["esbuild", null],\ ["jest-worker", "npm:27.5.1"],\ - ["schema-utils", "npm:3.1.1"],\ + ["schema-utils", "npm:3.3.0"],\ ["serialize-javascript", "npm:6.0.1"],\ - ["terser", "npm:5.16.6"],\ + ["terser", "npm:5.19.2"],\ ["uglify-js", null],\ - ["webpack", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:5.76.1"]\ + ["webpack", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:5.88.2"]\ ],\ "packagePeers": [\ "@swc/core",\ @@ -11793,11 +12070,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:3b1b950ea2d2eb9c09964a95e03eab52605dce1d1921a15527656f6bb5c01b805f1b7aa2f9fab3d4d07b398c78baaf8a2923e30f6a80b1ed8010370ee6935a78#npm:5.3.7", {\ - "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-270fd91a3d/0/cache/terser-webpack-plugin-npm-5.3.7-4bfad49798-095e699fde.zip/node_modules/terser-webpack-plugin/",\ + ["virtual:2dcedf9f4383e849e9178e7301a489c4116f3e477a824ecc76c0c3aa23c6a684897917491d433899ecb93ad4a4bc770cd34bd4eac871b92e23dc9e014dd198f4#npm:5.3.9", {\ + "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-06ba4435d6/0/cache/terser-webpack-plugin-npm-5.3.9-7ba1eb45f4-41705713d6.zip/node_modules/terser-webpack-plugin/",\ "packageDependencies": [\ - ["terser-webpack-plugin", "virtual:3b1b950ea2d2eb9c09964a95e03eab52605dce1d1921a15527656f6bb5c01b805f1b7aa2f9fab3d4d07b398c78baaf8a2923e30f6a80b1ed8010370ee6935a78#npm:5.3.7"],\ - ["@jridgewell/trace-mapping", "npm:0.3.17"],\ + ["terser-webpack-plugin", "virtual:2dcedf9f4383e849e9178e7301a489c4116f3e477a824ecc76c0c3aa23c6a684897917491d433899ecb93ad4a4bc770cd34bd4eac871b92e23dc9e014dd198f4#npm:5.3.9"],\ + ["@jridgewell/trace-mapping", "npm:0.3.19"],\ ["@swc/core", null],\ ["@types/esbuild", null],\ ["@types/swc__core", null],\ @@ -11805,11 +12082,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/webpack", null],\ ["esbuild", null],\ ["jest-worker", "npm:27.5.1"],\ - ["schema-utils", "npm:3.1.1"],\ + ["schema-utils", "npm:3.3.0"],\ ["serialize-javascript", "npm:6.0.1"],\ - ["terser", "npm:5.16.6"],\ + ["terser", "npm:5.19.2"],\ ["uglify-js", null],\ - ["webpack", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:5.76.1"]\ + ["webpack", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:5.88.2"]\ ],\ "packagePeers": [\ "@swc/core",\ @@ -11823,11 +12100,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:3f73d94a4e7b4017fe46fcb13e1230afc5477e41f4a94ff126cb62a7baf6086e76402944b9cb923bbc56ab6073ccf0399248044fd7fa9da8aa9c51a7d4645e13#npm:5.3.7", {\ - "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-dd70f1e751/0/cache/terser-webpack-plugin-npm-5.3.7-4bfad49798-095e699fde.zip/node_modules/terser-webpack-plugin/",\ + ["virtual:35dfd154e19b17da5d43de68b1f4c75880fc13c175008fe287f94d7802e12e94e62d6ef6df51d558cce448ea2a25157929e3fad9e05614e2d99ef7effb0bcdfc#npm:5.3.9", {\ + "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-7398b23e94/0/cache/terser-webpack-plugin-npm-5.3.9-7ba1eb45f4-41705713d6.zip/node_modules/terser-webpack-plugin/",\ "packageDependencies": [\ - ["terser-webpack-plugin", "virtual:3f73d94a4e7b4017fe46fcb13e1230afc5477e41f4a94ff126cb62a7baf6086e76402944b9cb923bbc56ab6073ccf0399248044fd7fa9da8aa9c51a7d4645e13#npm:5.3.7"],\ - ["@jridgewell/trace-mapping", "npm:0.3.17"],\ + ["terser-webpack-plugin", "virtual:35dfd154e19b17da5d43de68b1f4c75880fc13c175008fe287f94d7802e12e94e62d6ef6df51d558cce448ea2a25157929e3fad9e05614e2d99ef7effb0bcdfc#npm:5.3.9"],\ + ["@jridgewell/trace-mapping", "npm:0.3.19"],\ ["@swc/core", null],\ ["@types/esbuild", null],\ ["@types/swc__core", null],\ @@ -11835,11 +12112,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/webpack", null],\ ["esbuild", null],\ ["jest-worker", "npm:27.5.1"],\ - ["schema-utils", "npm:3.1.1"],\ + ["schema-utils", "npm:3.3.0"],\ ["serialize-javascript", "npm:6.0.1"],\ - ["terser", "npm:5.16.6"],\ + ["terser", "npm:5.19.2"],\ ["uglify-js", null],\ - ["webpack", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:5.76.1"]\ + ["webpack", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:5.88.2"]\ ],\ "packagePeers": [\ "@swc/core",\ @@ -11853,11 +12130,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:5.3.7", {\ - "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-41fd5593a0/0/cache/terser-webpack-plugin-npm-5.3.7-4bfad49798-095e699fde.zip/node_modules/terser-webpack-plugin/",\ + ["virtual:4e4283b4aaa15cf8b08f03b74d0ade0676db836d21d0a3c351603b9be114a096015f33bfe026d11ad892eeb3da6357656b93baa2a42d3311f4a14e0720e8072a#npm:5.3.9", {\ + "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-a1c7a448e2/0/cache/terser-webpack-plugin-npm-5.3.9-7ba1eb45f4-41705713d6.zip/node_modules/terser-webpack-plugin/",\ "packageDependencies": [\ - ["terser-webpack-plugin", "virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:5.3.7"],\ - ["@jridgewell/trace-mapping", "npm:0.3.17"],\ + ["terser-webpack-plugin", "virtual:4e4283b4aaa15cf8b08f03b74d0ade0676db836d21d0a3c351603b9be114a096015f33bfe026d11ad892eeb3da6357656b93baa2a42d3311f4a14e0720e8072a#npm:5.3.9"],\ + ["@jridgewell/trace-mapping", "npm:0.3.19"],\ ["@swc/core", null],\ ["@types/esbuild", null],\ ["@types/swc__core", null],\ @@ -11865,11 +12142,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/webpack", null],\ ["esbuild", null],\ ["jest-worker", "npm:27.5.1"],\ - ["schema-utils", "npm:3.1.1"],\ + ["schema-utils", "npm:3.3.0"],\ ["serialize-javascript", "npm:6.0.1"],\ - ["terser", "npm:5.16.6"],\ + ["terser", "npm:5.19.2"],\ ["uglify-js", null],\ - ["webpack", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.76.1"]\ + ["webpack", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:5.88.2"]\ ],\ "packagePeers": [\ "@swc/core",\ @@ -11883,11 +12160,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:65df4d354ba56fe9f2dd66829a980d1fb69ada9b74b398818c5d8d049e48d745d84dc8030d6898692d5c031c3473449bd4966c642ff455b4a7bafd75fbaa4e5d#npm:5.3.7", {\ - "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-5d0037aa84/0/cache/terser-webpack-plugin-npm-5.3.7-4bfad49798-095e699fde.zip/node_modules/terser-webpack-plugin/",\ + ["virtual:5b833390d75d42b34d47b29b0fba8a5dbb313974abe0806ba68caa1888c35b5a6b7039b99423b05b5ee60157292129d0e30ea61ee6c1164505499ec4bf891871#npm:5.3.9", {\ + "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-f174cdc936/0/cache/terser-webpack-plugin-npm-5.3.9-7ba1eb45f4-41705713d6.zip/node_modules/terser-webpack-plugin/",\ "packageDependencies": [\ - ["terser-webpack-plugin", "virtual:65df4d354ba56fe9f2dd66829a980d1fb69ada9b74b398818c5d8d049e48d745d84dc8030d6898692d5c031c3473449bd4966c642ff455b4a7bafd75fbaa4e5d#npm:5.3.7"],\ - ["@jridgewell/trace-mapping", "npm:0.3.17"],\ + ["terser-webpack-plugin", "virtual:5b833390d75d42b34d47b29b0fba8a5dbb313974abe0806ba68caa1888c35b5a6b7039b99423b05b5ee60157292129d0e30ea61ee6c1164505499ec4bf891871#npm:5.3.9"],\ + ["@jridgewell/trace-mapping", "npm:0.3.19"],\ ["@swc/core", null],\ ["@types/esbuild", null],\ ["@types/swc__core", null],\ @@ -11895,11 +12172,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/webpack", null],\ ["esbuild", null],\ ["jest-worker", "npm:27.5.1"],\ - ["schema-utils", "npm:3.1.1"],\ + ["schema-utils", "npm:3.3.0"],\ ["serialize-javascript", "npm:6.0.1"],\ - ["terser", "npm:5.16.6"],\ + ["terser", "npm:5.19.2"],\ ["uglify-js", null],\ - ["webpack", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:5.76.1"]\ + ["webpack", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:5.88.2"]\ ],\ "packagePeers": [\ "@swc/core",\ @@ -11913,11 +12190,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:6dd9ef9ba412285d844eea5c4fccba6103d0c67c04c085e3ba986d19470739c21f7cf0f362f84328b4736346bc7372bcc47bce824181bc2a21e79457bb367fb7#npm:5.3.7", {\ - "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-3c74d01583/0/cache/terser-webpack-plugin-npm-5.3.7-4bfad49798-095e699fde.zip/node_modules/terser-webpack-plugin/",\ + ["virtual:667362991a730e28c275bf270c9837a0f247b9cf25b73b5de208e1b9743245da37aa8c98f540b07ffb7b5411788020261746477edb5e531a448ff46360f4dc37#npm:5.3.9", {\ + "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-45d91177bd/0/cache/terser-webpack-plugin-npm-5.3.9-7ba1eb45f4-41705713d6.zip/node_modules/terser-webpack-plugin/",\ "packageDependencies": [\ - ["terser-webpack-plugin", "virtual:6dd9ef9ba412285d844eea5c4fccba6103d0c67c04c085e3ba986d19470739c21f7cf0f362f84328b4736346bc7372bcc47bce824181bc2a21e79457bb367fb7#npm:5.3.7"],\ - ["@jridgewell/trace-mapping", "npm:0.3.17"],\ + ["terser-webpack-plugin", "virtual:667362991a730e28c275bf270c9837a0f247b9cf25b73b5de208e1b9743245da37aa8c98f540b07ffb7b5411788020261746477edb5e531a448ff46360f4dc37#npm:5.3.9"],\ + ["@jridgewell/trace-mapping", "npm:0.3.19"],\ ["@swc/core", null],\ ["@types/esbuild", null],\ ["@types/swc__core", null],\ @@ -11925,11 +12202,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/webpack", null],\ ["esbuild", null],\ ["jest-worker", "npm:27.5.1"],\ - ["schema-utils", "npm:3.1.1"],\ + ["schema-utils", "npm:3.3.0"],\ ["serialize-javascript", "npm:6.0.1"],\ - ["terser", "npm:5.16.6"],\ + ["terser", "npm:5.19.2"],\ ["uglify-js", null],\ - ["webpack", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:5.76.1"]\ + ["webpack", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:5.88.2"]\ ],\ "packagePeers": [\ "@swc/core",\ @@ -11943,11 +12220,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:737f7b2a101da8f397a9cc9cffaf45c84266648d374574dac02268af2b50ff63ee0c90d5bc5a2015e2638ae78c60d3ed087b73bb162209661606b18d9854aac6#npm:5.3.7", {\ - "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-220ed9f002/0/cache/terser-webpack-plugin-npm-5.3.7-4bfad49798-095e699fde.zip/node_modules/terser-webpack-plugin/",\ + ["virtual:9876ea10d559e8a01a7e291ced4a3366303a1ac9520d52343b481816e31623638577fdf6ef19fc1dc96f09250cdf3c1610754b17b6c6fdd91f758ae054ef66c7#npm:5.3.9", {\ + "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-1eefddcefa/0/cache/terser-webpack-plugin-npm-5.3.9-7ba1eb45f4-41705713d6.zip/node_modules/terser-webpack-plugin/",\ "packageDependencies": [\ - ["terser-webpack-plugin", "virtual:737f7b2a101da8f397a9cc9cffaf45c84266648d374574dac02268af2b50ff63ee0c90d5bc5a2015e2638ae78c60d3ed087b73bb162209661606b18d9854aac6#npm:5.3.7"],\ - ["@jridgewell/trace-mapping", "npm:0.3.17"],\ + ["terser-webpack-plugin", "virtual:9876ea10d559e8a01a7e291ced4a3366303a1ac9520d52343b481816e31623638577fdf6ef19fc1dc96f09250cdf3c1610754b17b6c6fdd91f758ae054ef66c7#npm:5.3.9"],\ + ["@jridgewell/trace-mapping", "npm:0.3.19"],\ ["@swc/core", null],\ ["@types/esbuild", null],\ ["@types/swc__core", null],\ @@ -11955,11 +12232,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/webpack", null],\ ["esbuild", null],\ ["jest-worker", "npm:27.5.1"],\ - ["schema-utils", "npm:3.1.1"],\ + ["schema-utils", "npm:3.3.0"],\ ["serialize-javascript", "npm:6.0.1"],\ - ["terser", "npm:5.16.6"],\ + ["terser", "npm:5.19.2"],\ ["uglify-js", null],\ - ["webpack", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:5.76.1"]\ + ["webpack", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:5.88.2"]\ ],\ "packagePeers": [\ "@swc/core",\ @@ -11973,11 +12250,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:c23a86d3a300373e452d0dc4d05b75c3154a99093a695551d0312d503e21e65bec2bf5894283bef1d7b52cfc385febc5760fc7e1f7d51b11c1ec7511d0a403f7#npm:5.3.7", {\ - "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-75d6a43b78/0/cache/terser-webpack-plugin-npm-5.3.7-4bfad49798-095e699fde.zip/node_modules/terser-webpack-plugin/",\ + ["virtual:a0f8565b7934977bf950d2189bf67a66d031077b3266a1cefc16ccdd8eedb76dd42af2cad547b437d8cd875e678cf45863b5980b808f2505ec071cb4dc7ca48d#npm:5.3.9", {\ + "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-c639da3078/0/cache/terser-webpack-plugin-npm-5.3.9-7ba1eb45f4-41705713d6.zip/node_modules/terser-webpack-plugin/",\ "packageDependencies": [\ - ["terser-webpack-plugin", "virtual:c23a86d3a300373e452d0dc4d05b75c3154a99093a695551d0312d503e21e65bec2bf5894283bef1d7b52cfc385febc5760fc7e1f7d51b11c1ec7511d0a403f7#npm:5.3.7"],\ - ["@jridgewell/trace-mapping", "npm:0.3.17"],\ + ["terser-webpack-plugin", "virtual:a0f8565b7934977bf950d2189bf67a66d031077b3266a1cefc16ccdd8eedb76dd42af2cad547b437d8cd875e678cf45863b5980b808f2505ec071cb4dc7ca48d#npm:5.3.9"],\ + ["@jridgewell/trace-mapping", "npm:0.3.19"],\ ["@swc/core", null],\ ["@types/esbuild", null],\ ["@types/swc__core", null],\ @@ -11985,11 +12262,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/webpack", null],\ ["esbuild", null],\ ["jest-worker", "npm:27.5.1"],\ - ["schema-utils", "npm:3.1.1"],\ + ["schema-utils", "npm:3.3.0"],\ ["serialize-javascript", "npm:6.0.1"],\ - ["terser", "npm:5.16.6"],\ + ["terser", "npm:5.19.2"],\ ["uglify-js", null],\ - ["webpack", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:5.76.1"]\ + ["webpack", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:5.88.2"]\ ],\ "packagePeers": [\ "@swc/core",\ @@ -12003,11 +12280,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:c4cca31a5877e6082d28cb201512711848dd509d0adf69f2ace22735b87c8a47657f6b9d67b7d4f174ec5041782924b3c103cd74b92a733de32695bed8c96c25#npm:5.3.7", {\ - "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-b6e344075c/0/cache/terser-webpack-plugin-npm-5.3.7-4bfad49798-095e699fde.zip/node_modules/terser-webpack-plugin/",\ + ["virtual:aef7fa557dea52b1d24c3b42b61c8326389f398aecddda1efd9a03d2cbf46b4df33d65b83baebf8a0c860f3cd5264a0cc6a7e2e0ad80f5ff51e613f00c637118#npm:5.3.9", {\ + "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-a671b4e06d/0/cache/terser-webpack-plugin-npm-5.3.9-7ba1eb45f4-41705713d6.zip/node_modules/terser-webpack-plugin/",\ "packageDependencies": [\ - ["terser-webpack-plugin", "virtual:c4cca31a5877e6082d28cb201512711848dd509d0adf69f2ace22735b87c8a47657f6b9d67b7d4f174ec5041782924b3c103cd74b92a733de32695bed8c96c25#npm:5.3.7"],\ - ["@jridgewell/trace-mapping", "npm:0.3.17"],\ + ["terser-webpack-plugin", "virtual:aef7fa557dea52b1d24c3b42b61c8326389f398aecddda1efd9a03d2cbf46b4df33d65b83baebf8a0c860f3cd5264a0cc6a7e2e0ad80f5ff51e613f00c637118#npm:5.3.9"],\ + ["@jridgewell/trace-mapping", "npm:0.3.19"],\ ["@swc/core", null],\ ["@types/esbuild", null],\ ["@types/swc__core", null],\ @@ -12015,11 +12292,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/webpack", null],\ ["esbuild", null],\ ["jest-worker", "npm:27.5.1"],\ - ["schema-utils", "npm:3.1.1"],\ + ["schema-utils", "npm:3.3.0"],\ ["serialize-javascript", "npm:6.0.1"],\ - ["terser", "npm:5.16.6"],\ + ["terser", "npm:5.19.2"],\ ["uglify-js", null],\ - ["webpack", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:5.76.1"]\ + ["webpack", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:5.88.2"]\ ],\ "packagePeers": [\ "@swc/core",\ @@ -12033,11 +12310,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:d0d42397e00ceb3da6f175faac56d7875843e7df4d9a1b68408b424925a15e2f6818550e883f12b045733d216feadb9c1505068afb96a10dd02d20f67b125397#npm:5.3.7", {\ - "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-acae1fc8c8/0/cache/terser-webpack-plugin-npm-5.3.7-4bfad49798-095e699fde.zip/node_modules/terser-webpack-plugin/",\ + ["virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:5.3.9", {\ + "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-bc5a3500a0/0/cache/terser-webpack-plugin-npm-5.3.9-7ba1eb45f4-41705713d6.zip/node_modules/terser-webpack-plugin/",\ "packageDependencies": [\ - ["terser-webpack-plugin", "virtual:d0d42397e00ceb3da6f175faac56d7875843e7df4d9a1b68408b424925a15e2f6818550e883f12b045733d216feadb9c1505068afb96a10dd02d20f67b125397#npm:5.3.7"],\ - ["@jridgewell/trace-mapping", "npm:0.3.17"],\ + ["terser-webpack-plugin", "virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:5.3.9"],\ + ["@jridgewell/trace-mapping", "npm:0.3.19"],\ ["@swc/core", null],\ ["@types/esbuild", null],\ ["@types/swc__core", null],\ @@ -12045,11 +12322,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/webpack", null],\ ["esbuild", null],\ ["jest-worker", "npm:27.5.1"],\ - ["schema-utils", "npm:3.1.1"],\ + ["schema-utils", "npm:3.3.0"],\ ["serialize-javascript", "npm:6.0.1"],\ - ["terser", "npm:5.16.6"],\ + ["terser", "npm:5.19.2"],\ ["uglify-js", null],\ - ["webpack", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:5.76.1"]\ + ["webpack", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.88.2"]\ ],\ "packagePeers": [\ "@swc/core",\ @@ -12063,11 +12340,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:d4501ad5dd2ed242d57b7931f06f7c858f026c413f33fe525943b22a3c436facc6816d7653741b37654004aa4bec55738b903a2631d3cec702851b2f3dac9694#npm:5.3.7", {\ - "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-a573cf65dd/0/cache/terser-webpack-plugin-npm-5.3.7-4bfad49798-095e699fde.zip/node_modules/terser-webpack-plugin/",\ + ["virtual:c005b4b4363cfa10acf716d2b46e07283371c04ca6adfba560194cf3f76c3553991195a74da21b5e691f63fe293e642848b480f612bce22028af8b724ce8d580#npm:5.3.9", {\ + "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-723cd82e82/0/cache/terser-webpack-plugin-npm-5.3.9-7ba1eb45f4-41705713d6.zip/node_modules/terser-webpack-plugin/",\ "packageDependencies": [\ - ["terser-webpack-plugin", "virtual:d4501ad5dd2ed242d57b7931f06f7c858f026c413f33fe525943b22a3c436facc6816d7653741b37654004aa4bec55738b903a2631d3cec702851b2f3dac9694#npm:5.3.7"],\ - ["@jridgewell/trace-mapping", "npm:0.3.17"],\ + ["terser-webpack-plugin", "virtual:c005b4b4363cfa10acf716d2b46e07283371c04ca6adfba560194cf3f76c3553991195a74da21b5e691f63fe293e642848b480f612bce22028af8b724ce8d580#npm:5.3.9"],\ + ["@jridgewell/trace-mapping", "npm:0.3.19"],\ ["@swc/core", null],\ ["@types/esbuild", null],\ ["@types/swc__core", null],\ @@ -12075,11 +12352,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/webpack", null],\ ["esbuild", null],\ ["jest-worker", "npm:27.5.1"],\ - ["schema-utils", "npm:3.1.1"],\ + ["schema-utils", "npm:3.3.0"],\ ["serialize-javascript", "npm:6.0.1"],\ - ["terser", "npm:5.16.6"],\ + ["terser", "npm:5.19.2"],\ ["uglify-js", null],\ - ["webpack", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:5.76.1"]\ + ["webpack", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:5.88.2"]\ ],\ "packagePeers": [\ "@swc/core",\ @@ -12093,11 +12370,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:d9e1c3a46815bc6a120a6869e99e91068d27087fd4e0e06f6e455e08a9c561113317622bcc85b900f84a70577ddd26e9172afe2a4ec9dcb076df02905a55ff54#npm:5.3.7", {\ - "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-d505109541/0/cache/terser-webpack-plugin-npm-5.3.7-4bfad49798-095e699fde.zip/node_modules/terser-webpack-plugin/",\ + ["virtual:cd4d58096d48bf8e291a2ad42f713fb4f707e898329c190b5e03f4977a20fe758576e53d0a90418c461ef3a9c11408ddc6991f4756f2d882ef6cdbf379425394#npm:5.3.9", {\ + "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-e4fb0632be/0/cache/terser-webpack-plugin-npm-5.3.9-7ba1eb45f4-41705713d6.zip/node_modules/terser-webpack-plugin/",\ "packageDependencies": [\ - ["terser-webpack-plugin", "virtual:d9e1c3a46815bc6a120a6869e99e91068d27087fd4e0e06f6e455e08a9c561113317622bcc85b900f84a70577ddd26e9172afe2a4ec9dcb076df02905a55ff54#npm:5.3.7"],\ - ["@jridgewell/trace-mapping", "npm:0.3.17"],\ + ["terser-webpack-plugin", "virtual:cd4d58096d48bf8e291a2ad42f713fb4f707e898329c190b5e03f4977a20fe758576e53d0a90418c461ef3a9c11408ddc6991f4756f2d882ef6cdbf379425394#npm:5.3.9"],\ + ["@jridgewell/trace-mapping", "npm:0.3.19"],\ ["@swc/core", null],\ ["@types/esbuild", null],\ ["@types/swc__core", null],\ @@ -12105,11 +12382,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/webpack", null],\ ["esbuild", null],\ ["jest-worker", "npm:27.5.1"],\ - ["schema-utils", "npm:3.1.1"],\ + ["schema-utils", "npm:3.3.0"],\ ["serialize-javascript", "npm:6.0.1"],\ - ["terser", "npm:5.16.6"],\ + ["terser", "npm:5.19.2"],\ ["uglify-js", null],\ - ["webpack", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:5.76.1"]\ + ["webpack", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:5.88.2"]\ ],\ "packagePeers": [\ "@swc/core",\ @@ -12123,11 +12400,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:e2e06937a9841a0482ead15b3b572be99cc4fe75ff9e11dd7b3736997fa6b4a6bdb37433423ad068b6d6a21c79021f983c3e0c751981e489562c048112c274cf#npm:5.3.7", {\ - "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-e90c20e784/0/cache/terser-webpack-plugin-npm-5.3.7-4bfad49798-095e699fde.zip/node_modules/terser-webpack-plugin/",\ + ["virtual:e0e72c87ada32bc6f98e93ec4b386295d1bb9c0b09b3c99d90149ba7ae3e1564687126782998f070c8e3dd1c6143db23ba420256582ba547c02cf3a92d39b97e#npm:5.3.9", {\ + "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-7486048f8e/0/cache/terser-webpack-plugin-npm-5.3.9-7ba1eb45f4-41705713d6.zip/node_modules/terser-webpack-plugin/",\ "packageDependencies": [\ - ["terser-webpack-plugin", "virtual:e2e06937a9841a0482ead15b3b572be99cc4fe75ff9e11dd7b3736997fa6b4a6bdb37433423ad068b6d6a21c79021f983c3e0c751981e489562c048112c274cf#npm:5.3.7"],\ - ["@jridgewell/trace-mapping", "npm:0.3.17"],\ + ["terser-webpack-plugin", "virtual:e0e72c87ada32bc6f98e93ec4b386295d1bb9c0b09b3c99d90149ba7ae3e1564687126782998f070c8e3dd1c6143db23ba420256582ba547c02cf3a92d39b97e#npm:5.3.9"],\ + ["@jridgewell/trace-mapping", "npm:0.3.19"],\ ["@swc/core", null],\ ["@types/esbuild", null],\ ["@types/swc__core", null],\ @@ -12135,11 +12412,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/webpack", null],\ ["esbuild", null],\ ["jest-worker", "npm:27.5.1"],\ - ["schema-utils", "npm:3.1.1"],\ + ["schema-utils", "npm:3.3.0"],\ ["serialize-javascript", "npm:6.0.1"],\ - ["terser", "npm:5.16.6"],\ + ["terser", "npm:5.19.2"],\ ["uglify-js", null],\ - ["webpack", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:5.76.1"]\ + ["webpack", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:5.88.2"]\ ],\ "packagePeers": [\ "@swc/core",\ @@ -12153,11 +12430,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:eb6818fa4d672d1448b7662dd0e24299b5bd67ce6ff0d2de4cf73d7b096e56a26ca3137903ab0683a0d9e5132289aaee5cb3d0a2a3dfb36d17beea49348ded09#npm:5.3.7", {\ - "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-826f9a69fa/0/cache/terser-webpack-plugin-npm-5.3.7-4bfad49798-095e699fde.zip/node_modules/terser-webpack-plugin/",\ + ["virtual:e3e2f5935156c41c6efc2f06019214ae3d7cb6c901c17e5c5f010c7aea2a9aacb97a3a4f4266f9bead6764d3feeb5876a0a0339f150fc1c8629af7fefeb1777f#npm:5.3.9", {\ + "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-cce59078aa/0/cache/terser-webpack-plugin-npm-5.3.9-7ba1eb45f4-41705713d6.zip/node_modules/terser-webpack-plugin/",\ "packageDependencies": [\ - ["terser-webpack-plugin", "virtual:eb6818fa4d672d1448b7662dd0e24299b5bd67ce6ff0d2de4cf73d7b096e56a26ca3137903ab0683a0d9e5132289aaee5cb3d0a2a3dfb36d17beea49348ded09#npm:5.3.7"],\ - ["@jridgewell/trace-mapping", "npm:0.3.17"],\ + ["terser-webpack-plugin", "virtual:e3e2f5935156c41c6efc2f06019214ae3d7cb6c901c17e5c5f010c7aea2a9aacb97a3a4f4266f9bead6764d3feeb5876a0a0339f150fc1c8629af7fefeb1777f#npm:5.3.9"],\ + ["@jridgewell/trace-mapping", "npm:0.3.19"],\ ["@swc/core", null],\ ["@types/esbuild", null],\ ["@types/swc__core", null],\ @@ -12165,11 +12442,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/webpack", null],\ ["esbuild", null],\ ["jest-worker", "npm:27.5.1"],\ - ["schema-utils", "npm:3.1.1"],\ + ["schema-utils", "npm:3.3.0"],\ ["serialize-javascript", "npm:6.0.1"],\ - ["terser", "npm:5.16.6"],\ + ["terser", "npm:5.19.2"],\ ["uglify-js", null],\ - ["webpack", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:5.76.1"]\ + ["webpack", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:5.88.2"]\ ],\ "packagePeers": [\ "@swc/core",\ @@ -12183,11 +12460,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:f916aa627a4663cdf35263853c320ab509673f5ee28e20c62f218c251bb7a232dd14930819e175eb3463206b6cb9540a8860e07bc14f7058ce37430831e6dc1b#npm:5.3.7", {\ - "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-6e6431ed46/0/cache/terser-webpack-plugin-npm-5.3.7-4bfad49798-095e699fde.zip/node_modules/terser-webpack-plugin/",\ + ["virtual:eecfa424f8915610c58d7161e678cbcdbd5a270956fb9b8c0f6e5ebb2d876c5a273b5ccd6397719e458984cde0a41cff5af996dfff26540562eadfedb145a789#npm:5.3.9", {\ + "packageLocation": "./.yarn/__virtual__/terser-webpack-plugin-virtual-928d817363/0/cache/terser-webpack-plugin-npm-5.3.9-7ba1eb45f4-41705713d6.zip/node_modules/terser-webpack-plugin/",\ "packageDependencies": [\ - ["terser-webpack-plugin", "virtual:f916aa627a4663cdf35263853c320ab509673f5ee28e20c62f218c251bb7a232dd14930819e175eb3463206b6cb9540a8860e07bc14f7058ce37430831e6dc1b#npm:5.3.7"],\ - ["@jridgewell/trace-mapping", "npm:0.3.17"],\ + ["terser-webpack-plugin", "virtual:eecfa424f8915610c58d7161e678cbcdbd5a270956fb9b8c0f6e5ebb2d876c5a273b5ccd6397719e458984cde0a41cff5af996dfff26540562eadfedb145a789#npm:5.3.9"],\ + ["@jridgewell/trace-mapping", "npm:0.3.19"],\ ["@swc/core", null],\ ["@types/esbuild", null],\ ["@types/swc__core", null],\ @@ -12195,11 +12472,11 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/webpack", null],\ ["esbuild", null],\ ["jest-worker", "npm:27.5.1"],\ - ["schema-utils", "npm:3.1.1"],\ + ["schema-utils", "npm:3.3.0"],\ ["serialize-javascript", "npm:6.0.1"],\ - ["terser", "npm:5.16.6"],\ + ["terser", "npm:5.19.2"],\ ["uglify-js", null],\ - ["webpack", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:5.76.1"]\ + ["webpack", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:5.88.2"]\ ],\ "packagePeers": [\ "@swc/core",\ @@ -12220,7 +12497,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["test-exclude", "npm:6.0.0"],\ ["@istanbuljs/schema", "npm:0.1.3"],\ - ["glob", "npm:7.2.0"],\ + ["glob", "npm:7.2.3"],\ ["minimatch", "npm:3.1.2"]\ ],\ "linkType": "HARD"\ @@ -12265,10 +12542,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["toidentifier", [\ - ["npm:1.0.0", {\ - "packageLocation": "./.yarn/cache/toidentifier-npm-1.0.0-5dad252f90-199e6bfca1.zip/node_modules/toidentifier/",\ + ["npm:1.0.1", {\ + "packageLocation": "./.yarn/cache/toidentifier-npm-1.0.1-f759712599-952c29e2a8.zip/node_modules/toidentifier/",\ "packageDependencies": [\ - ["toidentifier", "npm:1.0.0"]\ + ["toidentifier", "npm:1.0.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -12301,13 +12578,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["tsconfig-paths", [\ - ["npm:3.9.0", {\ - "packageLocation": "./.yarn/cache/tsconfig-paths-npm-3.9.0-92dcbdee37-243b3b098c.zip/node_modules/tsconfig-paths/",\ + ["npm:3.14.2", {\ + "packageLocation": "./.yarn/cache/tsconfig-paths-npm-3.14.2-90ce75420d-a6162eaa1a.zip/node_modules/tsconfig-paths/",\ "packageDependencies": [\ - ["tsconfig-paths", "npm:3.9.0"],\ + ["tsconfig-paths", "npm:3.14.2"],\ ["@types/json5", "npm:0.0.29"],\ - ["json5", "npm:1.0.1"],\ - ["minimist", "npm:1.2.6"],\ + ["json5", "npm:1.0.2"],\ + ["minimist", "npm:1.2.8"],\ ["strip-bom", "npm:3.0.0"]\ ],\ "linkType": "HARD"\ @@ -12321,10 +12598,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:2.2.0", {\ - "packageLocation": "./.yarn/cache/tslib-npm-2.2.0-e83a07daa5-a48c9639f7.zip/node_modules/tslib/",\ + ["npm:2.6.1", {\ + "packageLocation": "./.yarn/cache/tslib-npm-2.6.1-de28eba753-b0d176d176.zip/node_modules/tslib/",\ "packageDependencies": [\ - ["tslib", "npm:2.2.0"]\ + ["tslib", "npm:2.6.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -12346,13 +12623,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "SOFT"\ }],\ - ["virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:3.21.0", {\ - "packageLocation": "./.yarn/__virtual__/tsutils-virtual-f70ca60929/0/cache/tsutils-npm-3.21.0-347e6636c5-1843f4c1b2.zip/node_modules/tsutils/",\ + ["virtual:9efc45d62b42d7b3206f0c521400934faa6a4bceb4fc9c85d7491e50e8ee9fb5438b92eeba72c6c42fc9b957333ea57c253243560d25f99da72ee6fb47d316bf#npm:3.21.0", {\ + "packageLocation": "./.yarn/__virtual__/tsutils-virtual-e92a1141b3/0/cache/tsutils-npm-3.21.0-347e6636c5-1843f4c1b2.zip/node_modules/tsutils/",\ "packageDependencies": [\ - ["tsutils", "virtual:2e8b63b9512ee302c1e69bb1e3512d620971815ee605065d20bed52f3459d2253d5150a129382f41fb46f2eed830a5b8af9f8e7a56e0fbdf246de03604209ab2#npm:3.21.0"],\ + ["tsutils", "virtual:9efc45d62b42d7b3206f0c521400934faa6a4bceb4fc9c85d7491e50e8ee9fb5438b92eeba72c6c42fc9b957333ea57c253243560d25f99da72ee6fb47d316bf#npm:3.21.0"],\ ["@types/typescript", null],\ ["tslib", "npm:1.14.1"],\ - ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"]\ + ["typescript", null]\ ],\ "packagePeers": [\ "@types/typescript",\ @@ -12360,13 +12637,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:838a9315d444a54db96788d2b28a822ef21789df47f5a41ed7f7f2dd34e0a447899fa272d1407402ef6a6b310136ed11ec578f26931b2b84031cd2ba37dba0a0#npm:3.21.0", {\ - "packageLocation": "./.yarn/__virtual__/tsutils-virtual-f32dc97a02/0/cache/tsutils-npm-3.21.0-347e6636c5-1843f4c1b2.zip/node_modules/tsutils/",\ + ["virtual:d57bbf7cb82653932ad4bacddeffa4b6821f4eb6abff5faa16997023759d2ebded0ed9e569ad0f724c028eca007397f1cb9dc80d3544e80680b0c6f1dfa61ec2#npm:3.21.0", {\ + "packageLocation": "./.yarn/__virtual__/tsutils-virtual-1bd20f66e6/0/cache/tsutils-npm-3.21.0-347e6636c5-1843f4c1b2.zip/node_modules/tsutils/",\ "packageDependencies": [\ - ["tsutils", "virtual:838a9315d444a54db96788d2b28a822ef21789df47f5a41ed7f7f2dd34e0a447899fa272d1407402ef6a6b310136ed11ec578f26931b2b84031cd2ba37dba0a0#npm:3.21.0"],\ + ["tsutils", "virtual:d57bbf7cb82653932ad4bacddeffa4b6821f4eb6abff5faa16997023759d2ebded0ed9e569ad0f724c028eca007397f1cb9dc80d3544e80680b0c6f1dfa61ec2#npm:3.21.0"],\ ["@types/typescript", null],\ ["tslib", "npm:1.14.1"],\ - ["typescript", null]\ + ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"]\ ],\ "packagePeers": [\ "@types/typescript",\ @@ -12417,7 +12694,58 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["type-is", "npm:1.6.18"],\ ["media-typer", "npm:0.3.0"],\ - ["mime-types", "npm:2.1.30"]\ + ["mime-types", "npm:2.1.35"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["typed-array-buffer", [\ + ["npm:1.0.0", {\ + "packageLocation": "./.yarn/cache/typed-array-buffer-npm-1.0.0-95cb610310-3e0281c79b.zip/node_modules/typed-array-buffer/",\ + "packageDependencies": [\ + ["typed-array-buffer", "npm:1.0.0"],\ + ["call-bind", "npm:1.0.2"],\ + ["get-intrinsic", "npm:1.2.1"],\ + ["is-typed-array", "npm:1.1.12"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["typed-array-byte-length", [\ + ["npm:1.0.0", {\ + "packageLocation": "./.yarn/cache/typed-array-byte-length-npm-1.0.0-94d79975ca-b03db16458.zip/node_modules/typed-array-byte-length/",\ + "packageDependencies": [\ + ["typed-array-byte-length", "npm:1.0.0"],\ + ["call-bind", "npm:1.0.2"],\ + ["for-each", "npm:0.3.3"],\ + ["has-proto", "npm:1.0.1"],\ + ["is-typed-array", "npm:1.1.12"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["typed-array-byte-offset", [\ + ["npm:1.0.0", {\ + "packageLocation": "./.yarn/cache/typed-array-byte-offset-npm-1.0.0-8cbb911cf5-04f6f02d0e.zip/node_modules/typed-array-byte-offset/",\ + "packageDependencies": [\ + ["typed-array-byte-offset", "npm:1.0.0"],\ + ["available-typed-arrays", "npm:1.0.5"],\ + ["call-bind", "npm:1.0.2"],\ + ["for-each", "npm:0.3.3"],\ + ["has-proto", "npm:1.0.1"],\ + ["is-typed-array", "npm:1.1.12"]\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ + ["typed-array-length", [\ + ["npm:1.0.4", {\ + "packageLocation": "./.yarn/cache/typed-array-length-npm-1.0.4-92771b81fc-2228febc93.zip/node_modules/typed-array-length/",\ + "packageDependencies": [\ + ["typed-array-length", "npm:1.0.4"],\ + ["call-bind", "npm:1.0.2"],\ + ["for-each", "npm:0.3.3"],\ + ["is-typed-array", "npm:1.1.12"]\ ],\ "linkType": "HARD"\ }]\ @@ -12447,8 +12775,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["@types/typescript", null],\ ["lunr", "npm:2.3.9"],\ ["marked", "npm:4.3.0"],\ - ["minimatch", "npm:7.4.4"],\ - ["shiki", "npm:0.14.1"],\ + ["minimatch", "npm:7.4.6"],\ + ["shiki", "npm:0.14.3"],\ ["typescript", "patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587"]\ ],\ "packagePeers": [\ @@ -12468,52 +12796,52 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["ua-parser-js", [\ - ["npm:0.7.31", {\ - "packageLocation": "./.yarn/cache/ua-parser-js-npm-0.7.31-aeb4c9aae9-e2f8324a83.zip/node_modules/ua-parser-js/",\ + ["npm:0.7.35", {\ + "packageLocation": "./.yarn/cache/ua-parser-js-npm-0.7.35-86878e42a4-0a332e8d72.zip/node_modules/ua-parser-js/",\ "packageDependencies": [\ - ["ua-parser-js", "npm:0.7.31"]\ + ["ua-parser-js", "npm:0.7.35"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["unbox-primitive", [\ - ["npm:1.0.1", {\ - "packageLocation": "./.yarn/cache/unbox-primitive-npm-1.0.1-50b9fde246-89d950e18f.zip/node_modules/unbox-primitive/",\ + ["npm:1.0.2", {\ + "packageLocation": "./.yarn/cache/unbox-primitive-npm-1.0.2-cb56a05066-b7a1cf5862.zip/node_modules/unbox-primitive/",\ "packageDependencies": [\ - ["unbox-primitive", "npm:1.0.1"],\ - ["function-bind", "npm:1.1.1"],\ - ["has-bigints", "npm:1.0.1"],\ - ["has-symbols", "npm:1.0.2"],\ + ["unbox-primitive", "npm:1.0.2"],\ + ["call-bind", "npm:1.0.2"],\ + ["has-bigints", "npm:1.0.2"],\ + ["has-symbols", "npm:1.0.3"],\ ["which-boxed-primitive", "npm:1.0.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["unique-filename", [\ - ["npm:1.1.1", {\ - "packageLocation": "./.yarn/cache/unique-filename-npm-1.1.1-c885c5095b-cf4998c922.zip/node_modules/unique-filename/",\ + ["npm:3.0.0", {\ + "packageLocation": "./.yarn/cache/unique-filename-npm-3.0.0-77d68e0a45-8e2f59b356.zip/node_modules/unique-filename/",\ "packageDependencies": [\ - ["unique-filename", "npm:1.1.1"],\ - ["unique-slug", "npm:2.0.2"]\ + ["unique-filename", "npm:3.0.0"],\ + ["unique-slug", "npm:4.0.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["unique-slug", [\ - ["npm:2.0.2", {\ - "packageLocation": "./.yarn/cache/unique-slug-npm-2.0.2-f6ba1ddeb7-5b6876a645.zip/node_modules/unique-slug/",\ + ["npm:4.0.0", {\ + "packageLocation": "./.yarn/cache/unique-slug-npm-4.0.0-e6b08f28aa-0884b58365.zip/node_modules/unique-slug/",\ "packageDependencies": [\ - ["unique-slug", "npm:2.0.2"],\ + ["unique-slug", "npm:4.0.0"],\ ["imurmurhash", "npm:0.1.4"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["universalify", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/universalify-npm-2.0.0-03b8b418a8-2406a4edf4.zip/node_modules/universalify/",\ + ["npm:0.1.2", {\ + "packageLocation": "./.yarn/cache/universalify-npm-0.1.2-9b22d31d2d-40cdc60f6e.zip/node_modules/universalify/",\ "packageDependencies": [\ - ["universalify", "npm:2.0.0"]\ + ["universalify", "npm:0.1.2"]\ ],\ "linkType": "HARD"\ }]\ @@ -12527,12 +12855,36 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "linkType": "HARD"\ }]\ ]],\ + ["update-browserslist-db", [\ + ["npm:1.0.11", {\ + "packageLocation": "./.yarn/cache/update-browserslist-db-npm-1.0.11-2c8e64258f-b98327518f.zip/node_modules/update-browserslist-db/",\ + "packageDependencies": [\ + ["update-browserslist-db", "npm:1.0.11"]\ + ],\ + "linkType": "SOFT"\ + }],\ + ["virtual:e2170a875bba2f8fa9e93e47c65f2f250097e101a59d95ea6fd852f32965e8cd6cef3b5662aa7295279d5bc60c9a612ddb8515c7dd1b7e8fb9984dee1823e7d6#npm:1.0.11", {\ + "packageLocation": "./.yarn/__virtual__/update-browserslist-db-virtual-e6fb63e03d/0/cache/update-browserslist-db-npm-1.0.11-2c8e64258f-b98327518f.zip/node_modules/update-browserslist-db/",\ + "packageDependencies": [\ + ["update-browserslist-db", "virtual:e2170a875bba2f8fa9e93e47c65f2f250097e101a59d95ea6fd852f32965e8cd6cef3b5662aa7295279d5bc60c9a612ddb8515c7dd1b7e8fb9984dee1823e7d6#npm:1.0.11"],\ + ["@types/browserslist", null],\ + ["browserslist", "npm:4.21.10"],\ + ["escalade", "npm:3.1.1"],\ + ["picocolors", "npm:1.0.0"]\ + ],\ + "packagePeers": [\ + "@types/browserslist",\ + "browserslist"\ + ],\ + "linkType": "HARD"\ + }]\ + ]],\ ["uri-js", [\ ["npm:4.4.1", {\ "packageLocation": "./.yarn/cache/uri-js-npm-4.4.1-66d11cbcaf-7167432de6.zip/node_modules/uri-js/",\ "packageDependencies": [\ ["uri-js", "npm:4.4.1"],\ - ["punycode", "npm:2.1.1"]\ + ["punycode", "npm:2.3.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -12543,8 +12895,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["usb", "npm:1.9.2"],\ ["node-addon-api", "npm:4.3.0"],\ - ["node-gyp", "npm:8.0.0"],\ - ["node-gyp-build", "npm:4.5.0"]\ + ["node-gyp", "npm:9.4.0"],\ + ["node-gyp-build", "npm:4.6.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -12568,30 +12920,19 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["uuid", [\ - ["npm:3.4.0", {\ - "packageLocation": "./.yarn/cache/uuid-npm-3.4.0-4fd8ef88ad-58de2feed6.zip/node_modules/uuid/",\ + ["npm:8.3.2", {\ + "packageLocation": "./.yarn/cache/uuid-npm-8.3.2-eca0baba53-5575a8a75c.zip/node_modules/uuid/",\ "packageDependencies": [\ - ["uuid", "npm:3.4.0"]\ + ["uuid", "npm:8.3.2"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["v8-compile-cache", [\ - ["npm:2.3.0", {\ - "packageLocation": "./.yarn/cache/v8-compile-cache-npm-2.3.0-961375f150-adb0a271ea.zip/node_modules/v8-compile-cache/",\ - "packageDependencies": [\ - ["v8-compile-cache", "npm:2.3.0"]\ - ],\ - "linkType": "HARD"\ - }]\ - ]],\ - ["validate-npm-package-license", [\ - ["npm:3.0.4", {\ - "packageLocation": "./.yarn/cache/validate-npm-package-license-npm-3.0.4-7af8adc7a8-35703ac889.zip/node_modules/validate-npm-package-license/",\ + ["npm:2.4.0", {\ + "packageLocation": "./.yarn/cache/v8-compile-cache-npm-2.4.0-5979f8e405-8eb6ddb59d.zip/node_modules/v8-compile-cache/",\ "packageDependencies": [\ - ["validate-npm-package-license", "npm:3.0.4"],\ - ["spdx-correct", "npm:3.1.1"],\ - ["spdx-expression-parse", "npm:3.0.1"]\ + ["v8-compile-cache", "npm:2.4.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -12638,48 +12979,48 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["watchpack", "npm:2.4.0"],\ ["glob-to-regexp", "npm:0.4.1"],\ - ["graceful-fs", "npm:4.2.6"]\ + ["graceful-fs", "npm:4.2.11"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["webpack", [\ - ["npm:5.76.1", {\ - "packageLocation": "./.yarn/cache/webpack-npm-5.76.1-9aeb64c072-b01fe0bc2d.zip/node_modules/webpack/",\ + ["npm:5.88.2", {\ + "packageLocation": "./.yarn/cache/webpack-npm-5.88.2-38717ace6f-79476a782d.zip/node_modules/webpack/",\ "packageDependencies": [\ - ["webpack", "npm:5.76.1"]\ + ["webpack", "npm:5.88.2"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:5.76.1", {\ - "packageLocation": "./.yarn/__virtual__/webpack-virtual-c4cca31a58/0/cache/webpack-npm-5.76.1-9aeb64c072-b01fe0bc2d.zip/node_modules/webpack/",\ + ["virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:5.88.2", {\ + "packageLocation": "./.yarn/__virtual__/webpack-virtual-cd4d58096d/0/cache/webpack-npm-5.88.2-38717ace6f-79476a782d.zip/node_modules/webpack/",\ "packageDependencies": [\ - ["webpack", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:5.76.1"],\ + ["webpack", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:5.88.2"],\ ["@types/eslint-scope", "npm:3.7.4"],\ - ["@types/estree", "npm:0.0.51"],\ + ["@types/estree", "npm:1.0.1"],\ ["@types/webpack-cli", null],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-edit", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-parser", "npm:1.11.1"],\ - ["acorn", "npm:8.8.2"],\ - ["acorn-import-assertions", "virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:1.8.0"],\ - ["browserslist", "npm:4.16.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-edit", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-parser", "npm:1.11.6"],\ + ["acorn", "npm:8.10.0"],\ + ["acorn-import-assertions", "virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:1.9.0"],\ + ["browserslist", "npm:4.21.10"],\ ["chrome-trace-event", "npm:1.0.3"],\ - ["enhanced-resolve", "npm:5.12.0"],\ - ["es-module-lexer", "npm:0.9.3"],\ + ["enhanced-resolve", "npm:5.15.0"],\ + ["es-module-lexer", "npm:1.3.0"],\ ["eslint-scope", "npm:5.1.1"],\ ["events", "npm:3.3.0"],\ ["glob-to-regexp", "npm:0.4.1"],\ - ["graceful-fs", "npm:4.2.10"],\ + ["graceful-fs", "npm:4.2.11"],\ ["json-parse-even-better-errors", "npm:2.3.1"],\ - ["loader-runner", "npm:4.2.0"],\ - ["mime-types", "npm:2.1.30"],\ + ["loader-runner", "npm:4.3.0"],\ + ["mime-types", "npm:2.1.35"],\ ["neo-async", "npm:2.6.2"],\ - ["schema-utils", "npm:3.1.1"],\ - ["tapable", "npm:2.2.0"],\ - ["terser-webpack-plugin", "virtual:c4cca31a5877e6082d28cb201512711848dd509d0adf69f2ace22735b87c8a47657f6b9d67b7d4f174ec5041782924b3c103cd74b92a733de32695bed8c96c25#npm:5.3.7"],\ + ["schema-utils", "npm:3.3.0"],\ + ["tapable", "npm:2.2.1"],\ + ["terser-webpack-plugin", "virtual:cd4d58096d48bf8e291a2ad42f713fb4f707e898329c190b5e03f4977a20fe758576e53d0a90418c461ef3a9c11408ddc6991f4756f2d882ef6cdbf379425394#npm:5.3.9"],\ ["watchpack", "npm:2.4.0"],\ - ["webpack-cli", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:4.7.0"],\ + ["webpack-cli", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:4.10.0"],\ ["webpack-sources", "npm:3.2.3"]\ ],\ "packagePeers": [\ @@ -12688,35 +13029,35 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:5.76.1", {\ - "packageLocation": "./.yarn/__virtual__/webpack-virtual-eb6818fa4d/0/cache/webpack-npm-5.76.1-9aeb64c072-b01fe0bc2d.zip/node_modules/webpack/",\ + ["virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:5.88.2", {\ + "packageLocation": "./.yarn/__virtual__/webpack-virtual-2dcedf9f43/0/cache/webpack-npm-5.88.2-38717ace6f-79476a782d.zip/node_modules/webpack/",\ "packageDependencies": [\ - ["webpack", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:5.76.1"],\ + ["webpack", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:5.88.2"],\ ["@types/eslint-scope", "npm:3.7.4"],\ - ["@types/estree", "npm:0.0.51"],\ + ["@types/estree", "npm:1.0.1"],\ ["@types/webpack-cli", null],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-edit", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-parser", "npm:1.11.1"],\ - ["acorn", "npm:8.8.2"],\ - ["acorn-import-assertions", "virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:1.8.0"],\ - ["browserslist", "npm:4.16.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-edit", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-parser", "npm:1.11.6"],\ + ["acorn", "npm:8.10.0"],\ + ["acorn-import-assertions", "virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:1.9.0"],\ + ["browserslist", "npm:4.21.10"],\ ["chrome-trace-event", "npm:1.0.3"],\ - ["enhanced-resolve", "npm:5.12.0"],\ - ["es-module-lexer", "npm:0.9.3"],\ + ["enhanced-resolve", "npm:5.15.0"],\ + ["es-module-lexer", "npm:1.3.0"],\ ["eslint-scope", "npm:5.1.1"],\ ["events", "npm:3.3.0"],\ ["glob-to-regexp", "npm:0.4.1"],\ - ["graceful-fs", "npm:4.2.10"],\ + ["graceful-fs", "npm:4.2.11"],\ ["json-parse-even-better-errors", "npm:2.3.1"],\ - ["loader-runner", "npm:4.2.0"],\ - ["mime-types", "npm:2.1.30"],\ + ["loader-runner", "npm:4.3.0"],\ + ["mime-types", "npm:2.1.35"],\ ["neo-async", "npm:2.6.2"],\ - ["schema-utils", "npm:3.1.1"],\ - ["tapable", "npm:2.2.0"],\ - ["terser-webpack-plugin", "virtual:eb6818fa4d672d1448b7662dd0e24299b5bd67ce6ff0d2de4cf73d7b096e56a26ca3137903ab0683a0d9e5132289aaee5cb3d0a2a3dfb36d17beea49348ded09#npm:5.3.7"],\ + ["schema-utils", "npm:3.3.0"],\ + ["tapable", "npm:2.2.1"],\ + ["terser-webpack-plugin", "virtual:2dcedf9f4383e849e9178e7301a489c4116f3e477a824ecc76c0c3aa23c6a684897917491d433899ecb93ad4a4bc770cd34bd4eac871b92e23dc9e014dd198f4#npm:5.3.9"],\ ["watchpack", "npm:2.4.0"],\ - ["webpack-cli", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:4.7.0"],\ + ["webpack-cli", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:4.10.0"],\ ["webpack-sources", "npm:3.2.3"]\ ],\ "packagePeers": [\ @@ -12725,35 +13066,35 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:5.76.1", {\ - "packageLocation": "./.yarn/__virtual__/webpack-virtual-d0d42397e0/0/cache/webpack-npm-5.76.1-9aeb64c072-b01fe0bc2d.zip/node_modules/webpack/",\ + ["virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:5.88.2", {\ + "packageLocation": "./.yarn/__virtual__/webpack-virtual-e0e72c87ad/0/cache/webpack-npm-5.88.2-38717ace6f-79476a782d.zip/node_modules/webpack/",\ "packageDependencies": [\ - ["webpack", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:5.76.1"],\ + ["webpack", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:5.88.2"],\ ["@types/eslint-scope", "npm:3.7.4"],\ - ["@types/estree", "npm:0.0.51"],\ + ["@types/estree", "npm:1.0.1"],\ ["@types/webpack-cli", null],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-edit", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-parser", "npm:1.11.1"],\ - ["acorn", "npm:8.8.2"],\ - ["acorn-import-assertions", "virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:1.8.0"],\ - ["browserslist", "npm:4.16.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-edit", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-parser", "npm:1.11.6"],\ + ["acorn", "npm:8.10.0"],\ + ["acorn-import-assertions", "virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:1.9.0"],\ + ["browserslist", "npm:4.21.10"],\ ["chrome-trace-event", "npm:1.0.3"],\ - ["enhanced-resolve", "npm:5.12.0"],\ - ["es-module-lexer", "npm:0.9.3"],\ + ["enhanced-resolve", "npm:5.15.0"],\ + ["es-module-lexer", "npm:1.3.0"],\ ["eslint-scope", "npm:5.1.1"],\ ["events", "npm:3.3.0"],\ ["glob-to-regexp", "npm:0.4.1"],\ - ["graceful-fs", "npm:4.2.10"],\ + ["graceful-fs", "npm:4.2.11"],\ ["json-parse-even-better-errors", "npm:2.3.1"],\ - ["loader-runner", "npm:4.2.0"],\ - ["mime-types", "npm:2.1.30"],\ + ["loader-runner", "npm:4.3.0"],\ + ["mime-types", "npm:2.1.35"],\ ["neo-async", "npm:2.6.2"],\ - ["schema-utils", "npm:3.1.1"],\ - ["tapable", "npm:2.2.0"],\ - ["terser-webpack-plugin", "virtual:d0d42397e00ceb3da6f175faac56d7875843e7df4d9a1b68408b424925a15e2f6818550e883f12b045733d216feadb9c1505068afb96a10dd02d20f67b125397#npm:5.3.7"],\ + ["schema-utils", "npm:3.3.0"],\ + ["tapable", "npm:2.2.1"],\ + ["terser-webpack-plugin", "virtual:e0e72c87ada32bc6f98e93ec4b386295d1bb9c0b09b3c99d90149ba7ae3e1564687126782998f070c8e3dd1c6143db23ba420256582ba547c02cf3a92d39b97e#npm:5.3.9"],\ ["watchpack", "npm:2.4.0"],\ - ["webpack-cli", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:4.7.0"],\ + ["webpack-cli", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:4.10.0"],\ ["webpack-sources", "npm:3.2.3"]\ ],\ "packagePeers": [\ @@ -12762,35 +13103,35 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:5.76.1", {\ - "packageLocation": "./.yarn/__virtual__/webpack-virtual-e2e06937a9/0/cache/webpack-npm-5.76.1-9aeb64c072-b01fe0bc2d.zip/node_modules/webpack/",\ + ["virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:5.88.2", {\ + "packageLocation": "./.yarn/__virtual__/webpack-virtual-35dfd154e1/0/cache/webpack-npm-5.88.2-38717ace6f-79476a782d.zip/node_modules/webpack/",\ "packageDependencies": [\ - ["webpack", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:5.76.1"],\ + ["webpack", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:5.88.2"],\ ["@types/eslint-scope", "npm:3.7.4"],\ - ["@types/estree", "npm:0.0.51"],\ + ["@types/estree", "npm:1.0.1"],\ ["@types/webpack-cli", null],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-edit", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-parser", "npm:1.11.1"],\ - ["acorn", "npm:8.8.2"],\ - ["acorn-import-assertions", "virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:1.8.0"],\ - ["browserslist", "npm:4.16.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-edit", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-parser", "npm:1.11.6"],\ + ["acorn", "npm:8.10.0"],\ + ["acorn-import-assertions", "virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:1.9.0"],\ + ["browserslist", "npm:4.21.10"],\ ["chrome-trace-event", "npm:1.0.3"],\ - ["enhanced-resolve", "npm:5.12.0"],\ - ["es-module-lexer", "npm:0.9.3"],\ + ["enhanced-resolve", "npm:5.15.0"],\ + ["es-module-lexer", "npm:1.3.0"],\ ["eslint-scope", "npm:5.1.1"],\ ["events", "npm:3.3.0"],\ ["glob-to-regexp", "npm:0.4.1"],\ - ["graceful-fs", "npm:4.2.10"],\ + ["graceful-fs", "npm:4.2.11"],\ ["json-parse-even-better-errors", "npm:2.3.1"],\ - ["loader-runner", "npm:4.2.0"],\ - ["mime-types", "npm:2.1.30"],\ + ["loader-runner", "npm:4.3.0"],\ + ["mime-types", "npm:2.1.35"],\ ["neo-async", "npm:2.6.2"],\ - ["schema-utils", "npm:3.1.1"],\ - ["tapable", "npm:2.2.0"],\ - ["terser-webpack-plugin", "virtual:e2e06937a9841a0482ead15b3b572be99cc4fe75ff9e11dd7b3736997fa6b4a6bdb37433423ad068b6d6a21c79021f983c3e0c751981e489562c048112c274cf#npm:5.3.7"],\ + ["schema-utils", "npm:3.3.0"],\ + ["tapable", "npm:2.2.1"],\ + ["terser-webpack-plugin", "virtual:35dfd154e19b17da5d43de68b1f4c75880fc13c175008fe287f94d7802e12e94e62d6ef6df51d558cce448ea2a25157929e3fad9e05614e2d99ef7effb0bcdfc#npm:5.3.9"],\ ["watchpack", "npm:2.4.0"],\ - ["webpack-cli", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:4.7.0"],\ + ["webpack-cli", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:4.10.0"],\ ["webpack-sources", "npm:3.2.3"]\ ],\ "packagePeers": [\ @@ -12799,35 +13140,35 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.76.1", {\ - "packageLocation": "./.yarn/__virtual__/webpack-virtual-649d43d628/0/cache/webpack-npm-5.76.1-9aeb64c072-b01fe0bc2d.zip/node_modules/webpack/",\ + ["virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.88.2", {\ + "packageLocation": "./.yarn/__virtual__/webpack-virtual-bb5fd202b7/0/cache/webpack-npm-5.88.2-38717ace6f-79476a782d.zip/node_modules/webpack/",\ "packageDependencies": [\ - ["webpack", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.76.1"],\ + ["webpack", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.88.2"],\ ["@types/eslint-scope", "npm:3.7.4"],\ - ["@types/estree", "npm:0.0.51"],\ + ["@types/estree", "npm:1.0.1"],\ ["@types/webpack-cli", null],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-edit", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-parser", "npm:1.11.1"],\ - ["acorn", "npm:8.8.2"],\ - ["acorn-import-assertions", "virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:1.8.0"],\ - ["browserslist", "npm:4.16.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-edit", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-parser", "npm:1.11.6"],\ + ["acorn", "npm:8.10.0"],\ + ["acorn-import-assertions", "virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:1.9.0"],\ + ["browserslist", "npm:4.21.10"],\ ["chrome-trace-event", "npm:1.0.3"],\ - ["enhanced-resolve", "npm:5.12.0"],\ - ["es-module-lexer", "npm:0.9.3"],\ + ["enhanced-resolve", "npm:5.15.0"],\ + ["es-module-lexer", "npm:1.3.0"],\ ["eslint-scope", "npm:5.1.1"],\ ["events", "npm:3.3.0"],\ ["glob-to-regexp", "npm:0.4.1"],\ - ["graceful-fs", "npm:4.2.10"],\ + ["graceful-fs", "npm:4.2.11"],\ ["json-parse-even-better-errors", "npm:2.3.1"],\ - ["loader-runner", "npm:4.2.0"],\ - ["mime-types", "npm:2.1.30"],\ + ["loader-runner", "npm:4.3.0"],\ + ["mime-types", "npm:2.1.35"],\ ["neo-async", "npm:2.6.2"],\ - ["schema-utils", "npm:3.1.1"],\ - ["tapable", "npm:2.2.0"],\ - ["terser-webpack-plugin", "virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:5.3.7"],\ + ["schema-utils", "npm:3.3.0"],\ + ["tapable", "npm:2.2.1"],\ + ["terser-webpack-plugin", "virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:5.3.9"],\ ["watchpack", "npm:2.4.0"],\ - ["webpack-cli", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:4.7.0"],\ + ["webpack-cli", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:4.10.0"],\ ["webpack-sources", "npm:3.2.3"]\ ],\ "packagePeers": [\ @@ -12836,35 +13177,35 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:5.76.1", {\ - "packageLocation": "./.yarn/__virtual__/webpack-virtual-f916aa627a/0/cache/webpack-npm-5.76.1-9aeb64c072-b01fe0bc2d.zip/node_modules/webpack/",\ + ["virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:5.88.2", {\ + "packageLocation": "./.yarn/__virtual__/webpack-virtual-e3e2f59351/0/cache/webpack-npm-5.88.2-38717ace6f-79476a782d.zip/node_modules/webpack/",\ "packageDependencies": [\ - ["webpack", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:5.76.1"],\ + ["webpack", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:5.88.2"],\ ["@types/eslint-scope", "npm:3.7.4"],\ - ["@types/estree", "npm:0.0.51"],\ + ["@types/estree", "npm:1.0.1"],\ ["@types/webpack-cli", null],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-edit", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-parser", "npm:1.11.1"],\ - ["acorn", "npm:8.8.2"],\ - ["acorn-import-assertions", "virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:1.8.0"],\ - ["browserslist", "npm:4.16.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-edit", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-parser", "npm:1.11.6"],\ + ["acorn", "npm:8.10.0"],\ + ["acorn-import-assertions", "virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:1.9.0"],\ + ["browserslist", "npm:4.21.10"],\ ["chrome-trace-event", "npm:1.0.3"],\ - ["enhanced-resolve", "npm:5.12.0"],\ - ["es-module-lexer", "npm:0.9.3"],\ + ["enhanced-resolve", "npm:5.15.0"],\ + ["es-module-lexer", "npm:1.3.0"],\ ["eslint-scope", "npm:5.1.1"],\ ["events", "npm:3.3.0"],\ ["glob-to-regexp", "npm:0.4.1"],\ - ["graceful-fs", "npm:4.2.10"],\ + ["graceful-fs", "npm:4.2.11"],\ ["json-parse-even-better-errors", "npm:2.3.1"],\ - ["loader-runner", "npm:4.2.0"],\ - ["mime-types", "npm:2.1.30"],\ + ["loader-runner", "npm:4.3.0"],\ + ["mime-types", "npm:2.1.35"],\ ["neo-async", "npm:2.6.2"],\ - ["schema-utils", "npm:3.1.1"],\ - ["tapable", "npm:2.2.0"],\ - ["terser-webpack-plugin", "virtual:f916aa627a4663cdf35263853c320ab509673f5ee28e20c62f218c251bb7a232dd14930819e175eb3463206b6cb9540a8860e07bc14f7058ce37430831e6dc1b#npm:5.3.7"],\ + ["schema-utils", "npm:3.3.0"],\ + ["tapable", "npm:2.2.1"],\ + ["terser-webpack-plugin", "virtual:e3e2f5935156c41c6efc2f06019214ae3d7cb6c901c17e5c5f010c7aea2a9aacb97a3a4f4266f9bead6764d3feeb5876a0a0339f150fc1c8629af7fefeb1777f#npm:5.3.9"],\ ["watchpack", "npm:2.4.0"],\ - ["webpack-cli", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:4.7.0"],\ + ["webpack-cli", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:4.10.0"],\ ["webpack-sources", "npm:3.2.3"]\ ],\ "packagePeers": [\ @@ -12873,35 +13214,35 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:5.76.1", {\ - "packageLocation": "./.yarn/__virtual__/webpack-virtual-d4501ad5dd/0/cache/webpack-npm-5.76.1-9aeb64c072-b01fe0bc2d.zip/node_modules/webpack/",\ + ["virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:5.88.2", {\ + "packageLocation": "./.yarn/__virtual__/webpack-virtual-5b833390d7/0/cache/webpack-npm-5.88.2-38717ace6f-79476a782d.zip/node_modules/webpack/",\ "packageDependencies": [\ - ["webpack", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:5.76.1"],\ + ["webpack", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:5.88.2"],\ ["@types/eslint-scope", "npm:3.7.4"],\ - ["@types/estree", "npm:0.0.51"],\ + ["@types/estree", "npm:1.0.1"],\ ["@types/webpack-cli", null],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-edit", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-parser", "npm:1.11.1"],\ - ["acorn", "npm:8.8.2"],\ - ["acorn-import-assertions", "virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:1.8.0"],\ - ["browserslist", "npm:4.16.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-edit", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-parser", "npm:1.11.6"],\ + ["acorn", "npm:8.10.0"],\ + ["acorn-import-assertions", "virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:1.9.0"],\ + ["browserslist", "npm:4.21.10"],\ ["chrome-trace-event", "npm:1.0.3"],\ - ["enhanced-resolve", "npm:5.12.0"],\ - ["es-module-lexer", "npm:0.9.3"],\ + ["enhanced-resolve", "npm:5.15.0"],\ + ["es-module-lexer", "npm:1.3.0"],\ ["eslint-scope", "npm:5.1.1"],\ ["events", "npm:3.3.0"],\ ["glob-to-regexp", "npm:0.4.1"],\ - ["graceful-fs", "npm:4.2.10"],\ + ["graceful-fs", "npm:4.2.11"],\ ["json-parse-even-better-errors", "npm:2.3.1"],\ - ["loader-runner", "npm:4.2.0"],\ - ["mime-types", "npm:2.1.30"],\ + ["loader-runner", "npm:4.3.0"],\ + ["mime-types", "npm:2.1.35"],\ ["neo-async", "npm:2.6.2"],\ - ["schema-utils", "npm:3.1.1"],\ - ["tapable", "npm:2.2.0"],\ - ["terser-webpack-plugin", "virtual:d4501ad5dd2ed242d57b7931f06f7c858f026c413f33fe525943b22a3c436facc6816d7653741b37654004aa4bec55738b903a2631d3cec702851b2f3dac9694#npm:5.3.7"],\ + ["schema-utils", "npm:3.3.0"],\ + ["tapable", "npm:2.2.1"],\ + ["terser-webpack-plugin", "virtual:5b833390d75d42b34d47b29b0fba8a5dbb313974abe0806ba68caa1888c35b5a6b7039b99423b05b5ee60157292129d0e30ea61ee6c1164505499ec4bf891871#npm:5.3.9"],\ ["watchpack", "npm:2.4.0"],\ - ["webpack-cli", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:4.7.0"],\ + ["webpack-cli", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:4.10.0"],\ ["webpack-sources", "npm:3.2.3"]\ ],\ "packagePeers": [\ @@ -12910,35 +13251,35 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:5.76.1", {\ - "packageLocation": "./.yarn/__virtual__/webpack-virtual-c23a86d3a3/0/cache/webpack-npm-5.76.1-9aeb64c072-b01fe0bc2d.zip/node_modules/webpack/",\ + ["virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:5.88.2", {\ + "packageLocation": "./.yarn/__virtual__/webpack-virtual-c005b4b436/0/cache/webpack-npm-5.88.2-38717ace6f-79476a782d.zip/node_modules/webpack/",\ "packageDependencies": [\ - ["webpack", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:5.76.1"],\ + ["webpack", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:5.88.2"],\ ["@types/eslint-scope", "npm:3.7.4"],\ - ["@types/estree", "npm:0.0.51"],\ + ["@types/estree", "npm:1.0.1"],\ ["@types/webpack-cli", null],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-edit", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-parser", "npm:1.11.1"],\ - ["acorn", "npm:8.8.2"],\ - ["acorn-import-assertions", "virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:1.8.0"],\ - ["browserslist", "npm:4.16.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-edit", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-parser", "npm:1.11.6"],\ + ["acorn", "npm:8.10.0"],\ + ["acorn-import-assertions", "virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:1.9.0"],\ + ["browserslist", "npm:4.21.10"],\ ["chrome-trace-event", "npm:1.0.3"],\ - ["enhanced-resolve", "npm:5.12.0"],\ - ["es-module-lexer", "npm:0.9.3"],\ + ["enhanced-resolve", "npm:5.15.0"],\ + ["es-module-lexer", "npm:1.3.0"],\ ["eslint-scope", "npm:5.1.1"],\ ["events", "npm:3.3.0"],\ ["glob-to-regexp", "npm:0.4.1"],\ - ["graceful-fs", "npm:4.2.10"],\ + ["graceful-fs", "npm:4.2.11"],\ ["json-parse-even-better-errors", "npm:2.3.1"],\ - ["loader-runner", "npm:4.2.0"],\ - ["mime-types", "npm:2.1.30"],\ + ["loader-runner", "npm:4.3.0"],\ + ["mime-types", "npm:2.1.35"],\ ["neo-async", "npm:2.6.2"],\ - ["schema-utils", "npm:3.1.1"],\ - ["tapable", "npm:2.2.0"],\ - ["terser-webpack-plugin", "virtual:c23a86d3a300373e452d0dc4d05b75c3154a99093a695551d0312d503e21e65bec2bf5894283bef1d7b52cfc385febc5760fc7e1f7d51b11c1ec7511d0a403f7#npm:5.3.7"],\ + ["schema-utils", "npm:3.3.0"],\ + ["tapable", "npm:2.2.1"],\ + ["terser-webpack-plugin", "virtual:c005b4b4363cfa10acf716d2b46e07283371c04ca6adfba560194cf3f76c3553991195a74da21b5e691f63fe293e642848b480f612bce22028af8b724ce8d580#npm:5.3.9"],\ ["watchpack", "npm:2.4.0"],\ - ["webpack-cli", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:4.7.0"],\ + ["webpack-cli", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:4.10.0"],\ ["webpack-sources", "npm:3.2.3"]\ ],\ "packagePeers": [\ @@ -12947,35 +13288,35 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:5.76.1", {\ - "packageLocation": "./.yarn/__virtual__/webpack-virtual-65df4d354b/0/cache/webpack-npm-5.76.1-9aeb64c072-b01fe0bc2d.zip/node_modules/webpack/",\ + ["virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:5.88.2", {\ + "packageLocation": "./.yarn/__virtual__/webpack-virtual-aef7fa557d/0/cache/webpack-npm-5.88.2-38717ace6f-79476a782d.zip/node_modules/webpack/",\ "packageDependencies": [\ - ["webpack", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:5.76.1"],\ + ["webpack", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:5.88.2"],\ ["@types/eslint-scope", "npm:3.7.4"],\ - ["@types/estree", "npm:0.0.51"],\ + ["@types/estree", "npm:1.0.1"],\ ["@types/webpack-cli", null],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-edit", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-parser", "npm:1.11.1"],\ - ["acorn", "npm:8.8.2"],\ - ["acorn-import-assertions", "virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:1.8.0"],\ - ["browserslist", "npm:4.16.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-edit", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-parser", "npm:1.11.6"],\ + ["acorn", "npm:8.10.0"],\ + ["acorn-import-assertions", "virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:1.9.0"],\ + ["browserslist", "npm:4.21.10"],\ ["chrome-trace-event", "npm:1.0.3"],\ - ["enhanced-resolve", "npm:5.12.0"],\ - ["es-module-lexer", "npm:0.9.3"],\ + ["enhanced-resolve", "npm:5.15.0"],\ + ["es-module-lexer", "npm:1.3.0"],\ ["eslint-scope", "npm:5.1.1"],\ ["events", "npm:3.3.0"],\ ["glob-to-regexp", "npm:0.4.1"],\ - ["graceful-fs", "npm:4.2.10"],\ + ["graceful-fs", "npm:4.2.11"],\ ["json-parse-even-better-errors", "npm:2.3.1"],\ - ["loader-runner", "npm:4.2.0"],\ - ["mime-types", "npm:2.1.30"],\ + ["loader-runner", "npm:4.3.0"],\ + ["mime-types", "npm:2.1.35"],\ ["neo-async", "npm:2.6.2"],\ - ["schema-utils", "npm:3.1.1"],\ - ["tapable", "npm:2.2.0"],\ - ["terser-webpack-plugin", "virtual:65df4d354ba56fe9f2dd66829a980d1fb69ada9b74b398818c5d8d049e48d745d84dc8030d6898692d5c031c3473449bd4966c642ff455b4a7bafd75fbaa4e5d#npm:5.3.7"],\ + ["schema-utils", "npm:3.3.0"],\ + ["tapable", "npm:2.2.1"],\ + ["terser-webpack-plugin", "virtual:aef7fa557dea52b1d24c3b42b61c8326389f398aecddda1efd9a03d2cbf46b4df33d65b83baebf8a0c860f3cd5264a0cc6a7e2e0ad80f5ff51e613f00c637118#npm:5.3.9"],\ ["watchpack", "npm:2.4.0"],\ - ["webpack-cli", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:4.7.0"],\ + ["webpack-cli", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:4.10.0"],\ ["webpack-sources", "npm:3.2.3"]\ ],\ "packagePeers": [\ @@ -12984,35 +13325,35 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:5.76.1", {\ - "packageLocation": "./.yarn/__virtual__/webpack-virtual-6dd9ef9ba4/0/cache/webpack-npm-5.76.1-9aeb64c072-b01fe0bc2d.zip/node_modules/webpack/",\ + ["virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:5.88.2", {\ + "packageLocation": "./.yarn/__virtual__/webpack-virtual-1d0ae89f41/0/cache/webpack-npm-5.88.2-38717ace6f-79476a782d.zip/node_modules/webpack/",\ "packageDependencies": [\ - ["webpack", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:5.76.1"],\ + ["webpack", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:5.88.2"],\ ["@types/eslint-scope", "npm:3.7.4"],\ - ["@types/estree", "npm:0.0.51"],\ + ["@types/estree", "npm:1.0.1"],\ ["@types/webpack-cli", null],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-edit", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-parser", "npm:1.11.1"],\ - ["acorn", "npm:8.8.2"],\ - ["acorn-import-assertions", "virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:1.8.0"],\ - ["browserslist", "npm:4.16.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-edit", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-parser", "npm:1.11.6"],\ + ["acorn", "npm:8.10.0"],\ + ["acorn-import-assertions", "virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:1.9.0"],\ + ["browserslist", "npm:4.21.10"],\ ["chrome-trace-event", "npm:1.0.3"],\ - ["enhanced-resolve", "npm:5.12.0"],\ - ["es-module-lexer", "npm:0.9.3"],\ + ["enhanced-resolve", "npm:5.15.0"],\ + ["es-module-lexer", "npm:1.3.0"],\ ["eslint-scope", "npm:5.1.1"],\ ["events", "npm:3.3.0"],\ ["glob-to-regexp", "npm:0.4.1"],\ - ["graceful-fs", "npm:4.2.10"],\ + ["graceful-fs", "npm:4.2.11"],\ ["json-parse-even-better-errors", "npm:2.3.1"],\ - ["loader-runner", "npm:4.2.0"],\ - ["mime-types", "npm:2.1.30"],\ + ["loader-runner", "npm:4.3.0"],\ + ["mime-types", "npm:2.1.35"],\ ["neo-async", "npm:2.6.2"],\ - ["schema-utils", "npm:3.1.1"],\ - ["tapable", "npm:2.2.0"],\ - ["terser-webpack-plugin", "virtual:6dd9ef9ba412285d844eea5c4fccba6103d0c67c04c085e3ba986d19470739c21f7cf0f362f84328b4736346bc7372bcc47bce824181bc2a21e79457bb367fb7#npm:5.3.7"],\ + ["schema-utils", "npm:3.3.0"],\ + ["tapable", "npm:2.2.1"],\ + ["terser-webpack-plugin", "virtual:1d0ae89f4172f59f7896321b64f2836bd7b882a87abd185dd6c94ae34ac78047bed0d7b4551c3ca2c51f8a510cbee6bfa50fbc13e96ab15944b5036f7ba6d264#npm:5.3.9"],\ ["watchpack", "npm:2.4.0"],\ - ["webpack-cli", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:4.7.0"],\ + ["webpack-cli", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:4.10.0"],\ ["webpack-sources", "npm:3.2.3"]\ ],\ "packagePeers": [\ @@ -13021,35 +13362,35 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:5.76.1", {\ - "packageLocation": "./.yarn/__virtual__/webpack-virtual-3f73d94a4e/0/cache/webpack-npm-5.76.1-9aeb64c072-b01fe0bc2d.zip/node_modules/webpack/",\ + ["virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:5.88.2", {\ + "packageLocation": "./.yarn/__virtual__/webpack-virtual-a0f8565b79/0/cache/webpack-npm-5.88.2-38717ace6f-79476a782d.zip/node_modules/webpack/",\ "packageDependencies": [\ - ["webpack", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:5.76.1"],\ + ["webpack", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:5.88.2"],\ ["@types/eslint-scope", "npm:3.7.4"],\ - ["@types/estree", "npm:0.0.51"],\ + ["@types/estree", "npm:1.0.1"],\ ["@types/webpack-cli", null],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-edit", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-parser", "npm:1.11.1"],\ - ["acorn", "npm:8.8.2"],\ - ["acorn-import-assertions", "virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:1.8.0"],\ - ["browserslist", "npm:4.16.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-edit", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-parser", "npm:1.11.6"],\ + ["acorn", "npm:8.10.0"],\ + ["acorn-import-assertions", "virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:1.9.0"],\ + ["browserslist", "npm:4.21.10"],\ ["chrome-trace-event", "npm:1.0.3"],\ - ["enhanced-resolve", "npm:5.12.0"],\ - ["es-module-lexer", "npm:0.9.3"],\ + ["enhanced-resolve", "npm:5.15.0"],\ + ["es-module-lexer", "npm:1.3.0"],\ ["eslint-scope", "npm:5.1.1"],\ ["events", "npm:3.3.0"],\ ["glob-to-regexp", "npm:0.4.1"],\ - ["graceful-fs", "npm:4.2.10"],\ + ["graceful-fs", "npm:4.2.11"],\ ["json-parse-even-better-errors", "npm:2.3.1"],\ - ["loader-runner", "npm:4.2.0"],\ - ["mime-types", "npm:2.1.30"],\ + ["loader-runner", "npm:4.3.0"],\ + ["mime-types", "npm:2.1.35"],\ ["neo-async", "npm:2.6.2"],\ - ["schema-utils", "npm:3.1.1"],\ - ["tapable", "npm:2.2.0"],\ - ["terser-webpack-plugin", "virtual:3f73d94a4e7b4017fe46fcb13e1230afc5477e41f4a94ff126cb62a7baf6086e76402944b9cb923bbc56ab6073ccf0399248044fd7fa9da8aa9c51a7d4645e13#npm:5.3.7"],\ + ["schema-utils", "npm:3.3.0"],\ + ["tapable", "npm:2.2.1"],\ + ["terser-webpack-plugin", "virtual:a0f8565b7934977bf950d2189bf67a66d031077b3266a1cefc16ccdd8eedb76dd42af2cad547b437d8cd875e678cf45863b5980b808f2505ec071cb4dc7ca48d#npm:5.3.9"],\ ["watchpack", "npm:2.4.0"],\ - ["webpack-cli", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:4.7.0"],\ + ["webpack-cli", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:4.10.0"],\ ["webpack-sources", "npm:3.2.3"]\ ],\ "packagePeers": [\ @@ -13058,35 +13399,35 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:5.76.1", {\ - "packageLocation": "./.yarn/__virtual__/webpack-virtual-3b1b950ea2/0/cache/webpack-npm-5.76.1-9aeb64c072-b01fe0bc2d.zip/node_modules/webpack/",\ + ["virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:5.88.2", {\ + "packageLocation": "./.yarn/__virtual__/webpack-virtual-4e4283b4aa/0/cache/webpack-npm-5.88.2-38717ace6f-79476a782d.zip/node_modules/webpack/",\ "packageDependencies": [\ - ["webpack", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:5.76.1"],\ + ["webpack", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:5.88.2"],\ ["@types/eslint-scope", "npm:3.7.4"],\ - ["@types/estree", "npm:0.0.51"],\ + ["@types/estree", "npm:1.0.1"],\ ["@types/webpack-cli", null],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-edit", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-parser", "npm:1.11.1"],\ - ["acorn", "npm:8.8.2"],\ - ["acorn-import-assertions", "virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:1.8.0"],\ - ["browserslist", "npm:4.16.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-edit", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-parser", "npm:1.11.6"],\ + ["acorn", "npm:8.10.0"],\ + ["acorn-import-assertions", "virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:1.9.0"],\ + ["browserslist", "npm:4.21.10"],\ ["chrome-trace-event", "npm:1.0.3"],\ - ["enhanced-resolve", "npm:5.12.0"],\ - ["es-module-lexer", "npm:0.9.3"],\ + ["enhanced-resolve", "npm:5.15.0"],\ + ["es-module-lexer", "npm:1.3.0"],\ ["eslint-scope", "npm:5.1.1"],\ ["events", "npm:3.3.0"],\ ["glob-to-regexp", "npm:0.4.1"],\ - ["graceful-fs", "npm:4.2.10"],\ + ["graceful-fs", "npm:4.2.11"],\ ["json-parse-even-better-errors", "npm:2.3.1"],\ - ["loader-runner", "npm:4.2.0"],\ - ["mime-types", "npm:2.1.30"],\ + ["loader-runner", "npm:4.3.0"],\ + ["mime-types", "npm:2.1.35"],\ ["neo-async", "npm:2.6.2"],\ - ["schema-utils", "npm:3.1.1"],\ - ["tapable", "npm:2.2.0"],\ - ["terser-webpack-plugin", "virtual:3b1b950ea2d2eb9c09964a95e03eab52605dce1d1921a15527656f6bb5c01b805f1b7aa2f9fab3d4d07b398c78baaf8a2923e30f6a80b1ed8010370ee6935a78#npm:5.3.7"],\ + ["schema-utils", "npm:3.3.0"],\ + ["tapable", "npm:2.2.1"],\ + ["terser-webpack-plugin", "virtual:4e4283b4aaa15cf8b08f03b74d0ade0676db836d21d0a3c351603b9be114a096015f33bfe026d11ad892eeb3da6357656b93baa2a42d3311f4a14e0720e8072a#npm:5.3.9"],\ ["watchpack", "npm:2.4.0"],\ - ["webpack-cli", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:4.7.0"],\ + ["webpack-cli", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:4.10.0"],\ ["webpack-sources", "npm:3.2.3"]\ ],\ "packagePeers": [\ @@ -13095,35 +13436,35 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:5.76.1", {\ - "packageLocation": "./.yarn/__virtual__/webpack-virtual-d9e1c3a468/0/cache/webpack-npm-5.76.1-9aeb64c072-b01fe0bc2d.zip/node_modules/webpack/",\ + ["virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:5.88.2", {\ + "packageLocation": "./.yarn/__virtual__/webpack-virtual-667362991a/0/cache/webpack-npm-5.88.2-38717ace6f-79476a782d.zip/node_modules/webpack/",\ "packageDependencies": [\ - ["webpack", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:5.76.1"],\ + ["webpack", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:5.88.2"],\ ["@types/eslint-scope", "npm:3.7.4"],\ - ["@types/estree", "npm:0.0.51"],\ + ["@types/estree", "npm:1.0.1"],\ ["@types/webpack-cli", null],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-edit", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-parser", "npm:1.11.1"],\ - ["acorn", "npm:8.8.2"],\ - ["acorn-import-assertions", "virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:1.8.0"],\ - ["browserslist", "npm:4.16.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-edit", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-parser", "npm:1.11.6"],\ + ["acorn", "npm:8.10.0"],\ + ["acorn-import-assertions", "virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:1.9.0"],\ + ["browserslist", "npm:4.21.10"],\ ["chrome-trace-event", "npm:1.0.3"],\ - ["enhanced-resolve", "npm:5.12.0"],\ - ["es-module-lexer", "npm:0.9.3"],\ + ["enhanced-resolve", "npm:5.15.0"],\ + ["es-module-lexer", "npm:1.3.0"],\ ["eslint-scope", "npm:5.1.1"],\ ["events", "npm:3.3.0"],\ ["glob-to-regexp", "npm:0.4.1"],\ - ["graceful-fs", "npm:4.2.10"],\ + ["graceful-fs", "npm:4.2.11"],\ ["json-parse-even-better-errors", "npm:2.3.1"],\ - ["loader-runner", "npm:4.2.0"],\ - ["mime-types", "npm:2.1.30"],\ + ["loader-runner", "npm:4.3.0"],\ + ["mime-types", "npm:2.1.35"],\ ["neo-async", "npm:2.6.2"],\ - ["schema-utils", "npm:3.1.1"],\ - ["tapable", "npm:2.2.0"],\ - ["terser-webpack-plugin", "virtual:d9e1c3a46815bc6a120a6869e99e91068d27087fd4e0e06f6e455e08a9c561113317622bcc85b900f84a70577ddd26e9172afe2a4ec9dcb076df02905a55ff54#npm:5.3.7"],\ + ["schema-utils", "npm:3.3.0"],\ + ["tapable", "npm:2.2.1"],\ + ["terser-webpack-plugin", "virtual:667362991a730e28c275bf270c9837a0f247b9cf25b73b5de208e1b9743245da37aa8c98f540b07ffb7b5411788020261746477edb5e531a448ff46360f4dc37#npm:5.3.9"],\ ["watchpack", "npm:2.4.0"],\ - ["webpack-cli", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:4.7.0"],\ + ["webpack-cli", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:4.10.0"],\ ["webpack-sources", "npm:3.2.3"]\ ],\ "packagePeers": [\ @@ -13132,35 +13473,35 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:5.76.1", {\ - "packageLocation": "./.yarn/__virtual__/webpack-virtual-0662612366/0/cache/webpack-npm-5.76.1-9aeb64c072-b01fe0bc2d.zip/node_modules/webpack/",\ + ["virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:5.88.2", {\ + "packageLocation": "./.yarn/__virtual__/webpack-virtual-eecfa424f8/0/cache/webpack-npm-5.88.2-38717ace6f-79476a782d.zip/node_modules/webpack/",\ "packageDependencies": [\ - ["webpack", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:5.76.1"],\ + ["webpack", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:5.88.2"],\ ["@types/eslint-scope", "npm:3.7.4"],\ - ["@types/estree", "npm:0.0.51"],\ + ["@types/estree", "npm:1.0.1"],\ ["@types/webpack-cli", null],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-edit", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-parser", "npm:1.11.1"],\ - ["acorn", "npm:8.8.2"],\ - ["acorn-import-assertions", "virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:1.8.0"],\ - ["browserslist", "npm:4.16.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-edit", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-parser", "npm:1.11.6"],\ + ["acorn", "npm:8.10.0"],\ + ["acorn-import-assertions", "virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:1.9.0"],\ + ["browserslist", "npm:4.21.10"],\ ["chrome-trace-event", "npm:1.0.3"],\ - ["enhanced-resolve", "npm:5.12.0"],\ - ["es-module-lexer", "npm:0.9.3"],\ + ["enhanced-resolve", "npm:5.15.0"],\ + ["es-module-lexer", "npm:1.3.0"],\ ["eslint-scope", "npm:5.1.1"],\ ["events", "npm:3.3.0"],\ ["glob-to-regexp", "npm:0.4.1"],\ - ["graceful-fs", "npm:4.2.10"],\ + ["graceful-fs", "npm:4.2.11"],\ ["json-parse-even-better-errors", "npm:2.3.1"],\ - ["loader-runner", "npm:4.2.0"],\ - ["mime-types", "npm:2.1.30"],\ + ["loader-runner", "npm:4.3.0"],\ + ["mime-types", "npm:2.1.35"],\ ["neo-async", "npm:2.6.2"],\ - ["schema-utils", "npm:3.1.1"],\ - ["tapable", "npm:2.2.0"],\ - ["terser-webpack-plugin", "virtual:0662612366a9fc70de6be81b05ab78b7d0d99b92c76f42fb9e68951bc6838f1ecdf4cc9fae49f79f3007608f8dd21a8f47f379d77b51c7a77bc9c9910a8234dc#npm:5.3.7"],\ + ["schema-utils", "npm:3.3.0"],\ + ["tapable", "npm:2.2.1"],\ + ["terser-webpack-plugin", "virtual:eecfa424f8915610c58d7161e678cbcdbd5a270956fb9b8c0f6e5ebb2d876c5a273b5ccd6397719e458984cde0a41cff5af996dfff26540562eadfedb145a789#npm:5.3.9"],\ ["watchpack", "npm:2.4.0"],\ - ["webpack-cli", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:4.7.0"],\ + ["webpack-cli", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:4.10.0"],\ ["webpack-sources", "npm:3.2.3"]\ ],\ "packagePeers": [\ @@ -13169,35 +13510,35 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:5.76.1", {\ - "packageLocation": "./.yarn/__virtual__/webpack-virtual-737f7b2a10/0/cache/webpack-npm-5.76.1-9aeb64c072-b01fe0bc2d.zip/node_modules/webpack/",\ + ["virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:5.88.2", {\ + "packageLocation": "./.yarn/__virtual__/webpack-virtual-9876ea10d5/0/cache/webpack-npm-5.88.2-38717ace6f-79476a782d.zip/node_modules/webpack/",\ "packageDependencies": [\ - ["webpack", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:5.76.1"],\ + ["webpack", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:5.88.2"],\ ["@types/eslint-scope", "npm:3.7.4"],\ - ["@types/estree", "npm:0.0.51"],\ + ["@types/estree", "npm:1.0.1"],\ ["@types/webpack-cli", null],\ - ["@webassemblyjs/ast", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-edit", "npm:1.11.1"],\ - ["@webassemblyjs/wasm-parser", "npm:1.11.1"],\ - ["acorn", "npm:8.8.2"],\ - ["acorn-import-assertions", "virtual:649d43d628b038ec7515d6cd55a1f205f1f9be957775bab1051fa892d7134eacd3953dc17b1e5afabc029e0704f7c6d1987d40053443b0fc03cf0d54d13f3a36#npm:1.8.0"],\ - ["browserslist", "npm:4.16.6"],\ + ["@webassemblyjs/ast", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-edit", "npm:1.11.6"],\ + ["@webassemblyjs/wasm-parser", "npm:1.11.6"],\ + ["acorn", "npm:8.10.0"],\ + ["acorn-import-assertions", "virtual:bb5fd202b79ebd4ad2d1e4c3a3dc34884ce42c6178461bbe03583f806cfc85396e1e5a8d2eecbba9bcf092251dca6b10bf3317b1d9e74319a888d5f96290cb14#npm:1.9.0"],\ + ["browserslist", "npm:4.21.10"],\ ["chrome-trace-event", "npm:1.0.3"],\ - ["enhanced-resolve", "npm:5.12.0"],\ - ["es-module-lexer", "npm:0.9.3"],\ + ["enhanced-resolve", "npm:5.15.0"],\ + ["es-module-lexer", "npm:1.3.0"],\ ["eslint-scope", "npm:5.1.1"],\ ["events", "npm:3.3.0"],\ ["glob-to-regexp", "npm:0.4.1"],\ - ["graceful-fs", "npm:4.2.10"],\ + ["graceful-fs", "npm:4.2.11"],\ ["json-parse-even-better-errors", "npm:2.3.1"],\ - ["loader-runner", "npm:4.2.0"],\ - ["mime-types", "npm:2.1.30"],\ + ["loader-runner", "npm:4.3.0"],\ + ["mime-types", "npm:2.1.35"],\ ["neo-async", "npm:2.6.2"],\ - ["schema-utils", "npm:3.1.1"],\ - ["tapable", "npm:2.2.0"],\ - ["terser-webpack-plugin", "virtual:737f7b2a101da8f397a9cc9cffaf45c84266648d374574dac02268af2b50ff63ee0c90d5bc5a2015e2638ae78c60d3ed087b73bb162209661606b18d9854aac6#npm:5.3.7"],\ + ["schema-utils", "npm:3.3.0"],\ + ["tapable", "npm:2.2.1"],\ + ["terser-webpack-plugin", "virtual:9876ea10d559e8a01a7e291ced4a3366303a1ac9520d52343b481816e31623638577fdf6ef19fc1dc96f09250cdf3c1610754b17b6c6fdd91f758ae054ef66c7#npm:5.3.9"],\ ["watchpack", "npm:2.4.0"],\ - ["webpack-cli", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:4.7.0"],\ + ["webpack-cli", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:4.10.0"],\ ["webpack-sources", "npm:3.2.3"]\ ],\ "packagePeers": [\ @@ -13208,40 +13549,39 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["webpack-cli", [\ - ["npm:4.7.0", {\ - "packageLocation": "./.yarn/cache/webpack-cli-npm-4.7.0-cb3d7c34ff-cecfb321b9.zip/node_modules/webpack-cli/",\ + ["npm:4.10.0", {\ + "packageLocation": "./.yarn/cache/webpack-cli-npm-4.10.0-09cee8c457-2ff5355ac3.zip/node_modules/webpack-cli/",\ "packageDependencies": [\ - ["webpack-cli", "npm:4.7.0"]\ + ["webpack-cli", "npm:4.10.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:4.7.0", {\ - "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-98bf358c50/0/cache/webpack-cli-npm-4.7.0-cb3d7c34ff-cecfb321b9.zip/node_modules/webpack-cli/",\ + ["virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:4.10.0", {\ + "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-935dc59173/0/cache/webpack-cli-npm-4.10.0-09cee8c457-2ff5355ac3.zip/node_modules/webpack-cli/",\ "packageDependencies": [\ - ["webpack-cli", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:4.7.0"],\ - ["@discoveryjs/json-ext", "npm:0.5.3"],\ + ["webpack-cli", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:4.10.0"],\ + ["@discoveryjs/json-ext", "npm:0.5.7"],\ ["@types/webpack", null],\ ["@types/webpack-bundle-analyzer", null],\ ["@types/webpack-cli__generators", null],\ ["@types/webpack-cli__migrate", null],\ ["@types/webpack-dev-server", null],\ - ["@webpack-cli/configtest", "virtual:98bf358c501855e8743ae991de414e6a786f1298755a0a8602d82cdaa5173e33d864020ac1fdf90829f00b3737844455215343b73ce27125126e9a2bb0f78747#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:935dc59173fdc03ca4670c486f0c76a1eef433310cbe7b1946b7172abe7735de2cd4dd871bcb7833611c302a79129aa183ee43d22cd1b106b3d354eb878f34db#npm:1.2.0"],\ ["@webpack-cli/generators", null],\ - ["@webpack-cli/info", "virtual:98bf358c501855e8743ae991de414e6a786f1298755a0a8602d82cdaa5173e33d864020ac1fdf90829f00b3737844455215343b73ce27125126e9a2bb0f78747#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:935dc59173fdc03ca4670c486f0c76a1eef433310cbe7b1946b7172abe7735de2cd4dd871bcb7833611c302a79129aa183ee43d22cd1b106b3d354eb878f34db#npm:1.5.0"],\ ["@webpack-cli/migrate", null],\ - ["@webpack-cli/serve", "virtual:98bf358c501855e8743ae991de414e6a786f1298755a0a8602d82cdaa5173e33d864020ac1fdf90829f00b3737844455215343b73ce27125126e9a2bb0f78747#npm:1.4.0"],\ - ["colorette", "npm:1.2.2"],\ + ["@webpack-cli/serve", "virtual:935dc59173fdc03ca4670c486f0c76a1eef433310cbe7b1946b7172abe7735de2cd4dd871bcb7833611c302a79129aa183ee43d22cd1b106b3d354eb878f34db#npm:1.7.0"],\ + ["colorette", "npm:2.0.20"],\ ["commander", "npm:7.2.0"],\ - ["execa", "npm:5.0.0"],\ - ["fastest-levenshtein", "npm:1.0.12"],\ - ["import-local", "npm:3.0.2"],\ + ["cross-spawn", "npm:7.0.3"],\ + ["fastest-levenshtein", "npm:1.0.16"],\ + ["import-local", "npm:3.1.0"],\ ["interpret", "npm:2.2.0"],\ - ["rechoir", "npm:0.7.0"],\ - ["v8-compile-cache", "npm:2.3.0"],\ - ["webpack", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:5.76.1"],\ + ["rechoir", "npm:0.7.1"],\ + ["webpack", "virtual:14e834828d065c83a62d939f78f867dca06a99ef32e4048b15b8f9e3433169eca01f5c29b8d8692cae8f8109cda402ac498149ee584b3d3b9e10e5ef4428aaa9#npm:5.88.2"],\ ["webpack-bundle-analyzer", null],\ ["webpack-dev-server", null],\ - ["webpack-merge", "npm:5.7.3"]\ + ["webpack-merge", "npm:5.9.0"]\ ],\ "packagePeers": [\ "@types/webpack-bundle-analyzer",\ @@ -13257,33 +13597,32 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:4.7.0", {\ - "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-a52c57a2f2/0/cache/webpack-cli-npm-4.7.0-cb3d7c34ff-cecfb321b9.zip/node_modules/webpack-cli/",\ + ["virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:4.10.0", {\ + "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-4175a1998b/0/cache/webpack-cli-npm-4.10.0-09cee8c457-2ff5355ac3.zip/node_modules/webpack-cli/",\ "packageDependencies": [\ - ["webpack-cli", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:4.7.0"],\ - ["@discoveryjs/json-ext", "npm:0.5.3"],\ + ["webpack-cli", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:4.10.0"],\ + ["@discoveryjs/json-ext", "npm:0.5.7"],\ ["@types/webpack", null],\ ["@types/webpack-bundle-analyzer", null],\ ["@types/webpack-cli__generators", null],\ ["@types/webpack-cli__migrate", null],\ ["@types/webpack-dev-server", null],\ - ["@webpack-cli/configtest", "virtual:a52c57a2f219548b55c02cd38ccc5537df09cd5a76db0d2f06e70fdb8f2b0fc85a32f0e5a3a1b9f0e85d1c648d8aa7c8c60819690b44741a49cb4f5689f81e0f#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:4175a1998bebcd57dbc55293cf336c1b31641f8ecd4870002ac7eb174c7b40cff0ab57ef6eb206c3bd0d8c5bd888361a5de2f5977db4fb35da02c81fca87988d#npm:1.2.0"],\ ["@webpack-cli/generators", null],\ - ["@webpack-cli/info", "virtual:a52c57a2f219548b55c02cd38ccc5537df09cd5a76db0d2f06e70fdb8f2b0fc85a32f0e5a3a1b9f0e85d1c648d8aa7c8c60819690b44741a49cb4f5689f81e0f#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:4175a1998bebcd57dbc55293cf336c1b31641f8ecd4870002ac7eb174c7b40cff0ab57ef6eb206c3bd0d8c5bd888361a5de2f5977db4fb35da02c81fca87988d#npm:1.5.0"],\ ["@webpack-cli/migrate", null],\ - ["@webpack-cli/serve", "virtual:a52c57a2f219548b55c02cd38ccc5537df09cd5a76db0d2f06e70fdb8f2b0fc85a32f0e5a3a1b9f0e85d1c648d8aa7c8c60819690b44741a49cb4f5689f81e0f#npm:1.4.0"],\ - ["colorette", "npm:1.2.2"],\ + ["@webpack-cli/serve", "virtual:4175a1998bebcd57dbc55293cf336c1b31641f8ecd4870002ac7eb174c7b40cff0ab57ef6eb206c3bd0d8c5bd888361a5de2f5977db4fb35da02c81fca87988d#npm:1.7.0"],\ + ["colorette", "npm:2.0.20"],\ ["commander", "npm:7.2.0"],\ - ["execa", "npm:5.0.0"],\ - ["fastest-levenshtein", "npm:1.0.12"],\ - ["import-local", "npm:3.0.2"],\ + ["cross-spawn", "npm:7.0.3"],\ + ["fastest-levenshtein", "npm:1.0.16"],\ + ["import-local", "npm:3.1.0"],\ ["interpret", "npm:2.2.0"],\ - ["rechoir", "npm:0.7.0"],\ - ["v8-compile-cache", "npm:2.3.0"],\ - ["webpack", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:5.76.1"],\ + ["rechoir", "npm:0.7.1"],\ + ["webpack", "virtual:1a72a83ae6f92c6f3e756c713a9a31ccfa711e7e2f1243788a7cf7ade4d78c0c1ff62213d9b07eaa19d318c078695418641698a55516ba18eae8be3fd315083a#npm:5.88.2"],\ ["webpack-bundle-analyzer", null],\ ["webpack-dev-server", null],\ - ["webpack-merge", "npm:5.7.3"]\ + ["webpack-merge", "npm:5.9.0"]\ ],\ "packagePeers": [\ "@types/webpack-bundle-analyzer",\ @@ -13299,33 +13638,32 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:4.7.0", {\ - "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-3f317c00d6/0/cache/webpack-cli-npm-4.7.0-cb3d7c34ff-cecfb321b9.zip/node_modules/webpack-cli/",\ + ["virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:4.10.0", {\ + "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-34efed012b/0/cache/webpack-cli-npm-4.10.0-09cee8c457-2ff5355ac3.zip/node_modules/webpack-cli/",\ "packageDependencies": [\ - ["webpack-cli", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:4.7.0"],\ - ["@discoveryjs/json-ext", "npm:0.5.3"],\ + ["webpack-cli", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:4.10.0"],\ + ["@discoveryjs/json-ext", "npm:0.5.7"],\ ["@types/webpack", null],\ ["@types/webpack-bundle-analyzer", null],\ ["@types/webpack-cli__generators", null],\ ["@types/webpack-cli__migrate", null],\ ["@types/webpack-dev-server", null],\ - ["@webpack-cli/configtest", "virtual:3f317c00d6f5d4b597361fb23682c53767cae5897bd1a69b65d898f86e2e08dd74b2ebcc074d1f7c1982b7964d3e381749811b4553c03a4dac0923648c98cf5f#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:34efed012b94a6b85252453a92078909c7936bbac75dcf08c080bc5f149cfaf3b39611684067792df3401adf2ace2739eecc5c4437cbe28efb1e96965a318737#npm:1.2.0"],\ ["@webpack-cli/generators", null],\ - ["@webpack-cli/info", "virtual:3f317c00d6f5d4b597361fb23682c53767cae5897bd1a69b65d898f86e2e08dd74b2ebcc074d1f7c1982b7964d3e381749811b4553c03a4dac0923648c98cf5f#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:34efed012b94a6b85252453a92078909c7936bbac75dcf08c080bc5f149cfaf3b39611684067792df3401adf2ace2739eecc5c4437cbe28efb1e96965a318737#npm:1.5.0"],\ ["@webpack-cli/migrate", null],\ - ["@webpack-cli/serve", "virtual:3f317c00d6f5d4b597361fb23682c53767cae5897bd1a69b65d898f86e2e08dd74b2ebcc074d1f7c1982b7964d3e381749811b4553c03a4dac0923648c98cf5f#npm:1.4.0"],\ - ["colorette", "npm:1.2.2"],\ + ["@webpack-cli/serve", "virtual:34efed012b94a6b85252453a92078909c7936bbac75dcf08c080bc5f149cfaf3b39611684067792df3401adf2ace2739eecc5c4437cbe28efb1e96965a318737#npm:1.7.0"],\ + ["colorette", "npm:2.0.20"],\ ["commander", "npm:7.2.0"],\ - ["execa", "npm:5.0.0"],\ - ["fastest-levenshtein", "npm:1.0.12"],\ - ["import-local", "npm:3.0.2"],\ + ["cross-spawn", "npm:7.0.3"],\ + ["fastest-levenshtein", "npm:1.0.16"],\ + ["import-local", "npm:3.1.0"],\ ["interpret", "npm:2.2.0"],\ - ["rechoir", "npm:0.7.0"],\ - ["v8-compile-cache", "npm:2.3.0"],\ - ["webpack", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:5.76.1"],\ + ["rechoir", "npm:0.7.1"],\ + ["webpack", "virtual:32bdce0525b6fd38c0ffab310007869ff277762ac809c2d2b6ac7a63bc1b80e6f56e6507ed75fd8459648eb5d0172adc064466a9729b1d8c49e093b697f760e1#npm:5.88.2"],\ ["webpack-bundle-analyzer", null],\ ["webpack-dev-server", null],\ - ["webpack-merge", "npm:5.7.3"]\ + ["webpack-merge", "npm:5.9.0"]\ ],\ "packagePeers": [\ "@types/webpack-bundle-analyzer",\ @@ -13341,33 +13679,32 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:4.7.0", {\ - "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-3ea0c3d01a/0/cache/webpack-cli-npm-4.7.0-cb3d7c34ff-cecfb321b9.zip/node_modules/webpack-cli/",\ + ["virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:4.10.0", {\ + "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-c84bbba271/0/cache/webpack-cli-npm-4.10.0-09cee8c457-2ff5355ac3.zip/node_modules/webpack-cli/",\ "packageDependencies": [\ - ["webpack-cli", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:4.7.0"],\ - ["@discoveryjs/json-ext", "npm:0.5.3"],\ + ["webpack-cli", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:4.10.0"],\ + ["@discoveryjs/json-ext", "npm:0.5.7"],\ ["@types/webpack", null],\ ["@types/webpack-bundle-analyzer", null],\ ["@types/webpack-cli__generators", null],\ ["@types/webpack-cli__migrate", null],\ ["@types/webpack-dev-server", null],\ - ["@webpack-cli/configtest", "virtual:3ea0c3d01a91f33f2b24b3c62295ba50dc5ef053f064cdf07af43c620c6676ffb7047384e94d8051c46c3fcde0c51e60e90f847a877a41fe8c439f2527308476#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:c84bbba271a142106fa43a6c30918bcb68b8ffe40ec8ec9fbbdf912c234bd9b4c0c245b7482459805420f66dbff2a3f45ac32c99fc211976094e5aa37e775d04#npm:1.2.0"],\ ["@webpack-cli/generators", null],\ - ["@webpack-cli/info", "virtual:3ea0c3d01a91f33f2b24b3c62295ba50dc5ef053f064cdf07af43c620c6676ffb7047384e94d8051c46c3fcde0c51e60e90f847a877a41fe8c439f2527308476#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:c84bbba271a142106fa43a6c30918bcb68b8ffe40ec8ec9fbbdf912c234bd9b4c0c245b7482459805420f66dbff2a3f45ac32c99fc211976094e5aa37e775d04#npm:1.5.0"],\ ["@webpack-cli/migrate", null],\ - ["@webpack-cli/serve", "virtual:3ea0c3d01a91f33f2b24b3c62295ba50dc5ef053f064cdf07af43c620c6676ffb7047384e94d8051c46c3fcde0c51e60e90f847a877a41fe8c439f2527308476#npm:1.4.0"],\ - ["colorette", "npm:1.2.2"],\ + ["@webpack-cli/serve", "virtual:c84bbba271a142106fa43a6c30918bcb68b8ffe40ec8ec9fbbdf912c234bd9b4c0c245b7482459805420f66dbff2a3f45ac32c99fc211976094e5aa37e775d04#npm:1.7.0"],\ + ["colorette", "npm:2.0.20"],\ ["commander", "npm:7.2.0"],\ - ["execa", "npm:5.0.0"],\ - ["fastest-levenshtein", "npm:1.0.12"],\ - ["import-local", "npm:3.0.2"],\ + ["cross-spawn", "npm:7.0.3"],\ + ["fastest-levenshtein", "npm:1.0.16"],\ + ["import-local", "npm:3.1.0"],\ ["interpret", "npm:2.2.0"],\ - ["rechoir", "npm:0.7.0"],\ - ["v8-compile-cache", "npm:2.3.0"],\ - ["webpack", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:5.76.1"],\ + ["rechoir", "npm:0.7.1"],\ + ["webpack", "virtual:45dc8d177c5463b02ae2b62c45461f6704449bac45b0b4bf10ceca81013a617a6fa5aaf2547e43076d50ac57cad5c9979a6da6e8adf35b42d844e73e8c014613#npm:5.88.2"],\ ["webpack-bundle-analyzer", null],\ ["webpack-dev-server", null],\ - ["webpack-merge", "npm:5.7.3"]\ + ["webpack-merge", "npm:5.9.0"]\ ],\ "packagePeers": [\ "@types/webpack-bundle-analyzer",\ @@ -13383,33 +13720,32 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:4.7.0", {\ - "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-0dffb89908/0/cache/webpack-cli-npm-4.7.0-cb3d7c34ff-cecfb321b9.zip/node_modules/webpack-cli/",\ + ["virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:4.10.0", {\ + "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-e77654db5e/0/cache/webpack-cli-npm-4.10.0-09cee8c457-2ff5355ac3.zip/node_modules/webpack-cli/",\ "packageDependencies": [\ - ["webpack-cli", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:4.7.0"],\ - ["@discoveryjs/json-ext", "npm:0.5.3"],\ + ["webpack-cli", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:4.10.0"],\ + ["@discoveryjs/json-ext", "npm:0.5.7"],\ ["@types/webpack", null],\ ["@types/webpack-bundle-analyzer", null],\ ["@types/webpack-cli__generators", null],\ ["@types/webpack-cli__migrate", null],\ ["@types/webpack-dev-server", null],\ - ["@webpack-cli/configtest", "virtual:0dffb8990811e5c397885e163b3d6c3a962e214d8c54600fce976052ec938b6bf73c0d4710c1ae94feb6a13cd1ef2dcf6a2703b948ea0ab44ded996e8903eca9#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:e77654db5e06aa7acc2ccb39bbe42ad01d4f84b5fa2c4b2f2b2f3f98b8f1431cefd61c15272506c621d0e3e3811a908ef41a296de87a4f13fb33d3b6bda5c641#npm:1.2.0"],\ ["@webpack-cli/generators", null],\ - ["@webpack-cli/info", "virtual:0dffb8990811e5c397885e163b3d6c3a962e214d8c54600fce976052ec938b6bf73c0d4710c1ae94feb6a13cd1ef2dcf6a2703b948ea0ab44ded996e8903eca9#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:e77654db5e06aa7acc2ccb39bbe42ad01d4f84b5fa2c4b2f2b2f3f98b8f1431cefd61c15272506c621d0e3e3811a908ef41a296de87a4f13fb33d3b6bda5c641#npm:1.5.0"],\ ["@webpack-cli/migrate", null],\ - ["@webpack-cli/serve", "virtual:0dffb8990811e5c397885e163b3d6c3a962e214d8c54600fce976052ec938b6bf73c0d4710c1ae94feb6a13cd1ef2dcf6a2703b948ea0ab44ded996e8903eca9#npm:1.4.0"],\ - ["colorette", "npm:1.2.2"],\ + ["@webpack-cli/serve", "virtual:e77654db5e06aa7acc2ccb39bbe42ad01d4f84b5fa2c4b2f2b2f3f98b8f1431cefd61c15272506c621d0e3e3811a908ef41a296de87a4f13fb33d3b6bda5c641#npm:1.7.0"],\ + ["colorette", "npm:2.0.20"],\ ["commander", "npm:7.2.0"],\ - ["execa", "npm:5.0.0"],\ - ["fastest-levenshtein", "npm:1.0.12"],\ - ["import-local", "npm:3.0.2"],\ + ["cross-spawn", "npm:7.0.3"],\ + ["fastest-levenshtein", "npm:1.0.16"],\ + ["import-local", "npm:3.1.0"],\ ["interpret", "npm:2.2.0"],\ - ["rechoir", "npm:0.7.0"],\ - ["v8-compile-cache", "npm:2.3.0"],\ - ["webpack", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.76.1"],\ + ["rechoir", "npm:0.7.1"],\ + ["webpack", "virtual:4f1584ad4aba8733a24be7c8aebbffafef25607f2d00f4b314cf96717145c692763628a31c2b85d4686fbb091ff21ebffa3cc337399c042c19a32b9bdb786464#npm:5.88.2"],\ ["webpack-bundle-analyzer", null],\ ["webpack-dev-server", null],\ - ["webpack-merge", "npm:5.7.3"]\ + ["webpack-merge", "npm:5.9.0"]\ ],\ "packagePeers": [\ "@types/webpack-bundle-analyzer",\ @@ -13425,33 +13761,32 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:4.7.0", {\ - "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-1a6414db5d/0/cache/webpack-cli-npm-4.7.0-cb3d7c34ff-cecfb321b9.zip/node_modules/webpack-cli/",\ + ["virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:4.10.0", {\ + "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-1115deaf0c/0/cache/webpack-cli-npm-4.10.0-09cee8c457-2ff5355ac3.zip/node_modules/webpack-cli/",\ "packageDependencies": [\ - ["webpack-cli", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:4.7.0"],\ - ["@discoveryjs/json-ext", "npm:0.5.3"],\ + ["webpack-cli", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:4.10.0"],\ + ["@discoveryjs/json-ext", "npm:0.5.7"],\ ["@types/webpack", null],\ ["@types/webpack-bundle-analyzer", null],\ ["@types/webpack-cli__generators", null],\ ["@types/webpack-cli__migrate", null],\ ["@types/webpack-dev-server", null],\ - ["@webpack-cli/configtest", "virtual:1a6414db5d72e5953d80806e633b46faad6e5f2c7ad2c1288bd98b3a164f8f43066dc78438f2e5f9fa1fcb8ec7e3c46a8c1d103b486aff4adfc1ae573b2864e2#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:1115deaf0cc2aaaddb9832fb5599cc0547a37f2deeb7d03662ed193684a3a1dcf2d97590c070bb4aa39cbefc14a8b9499d004749aa200c99650b82b7ad02d3c4#npm:1.2.0"],\ ["@webpack-cli/generators", null],\ - ["@webpack-cli/info", "virtual:1a6414db5d72e5953d80806e633b46faad6e5f2c7ad2c1288bd98b3a164f8f43066dc78438f2e5f9fa1fcb8ec7e3c46a8c1d103b486aff4adfc1ae573b2864e2#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:1115deaf0cc2aaaddb9832fb5599cc0547a37f2deeb7d03662ed193684a3a1dcf2d97590c070bb4aa39cbefc14a8b9499d004749aa200c99650b82b7ad02d3c4#npm:1.5.0"],\ ["@webpack-cli/migrate", null],\ - ["@webpack-cli/serve", "virtual:1a6414db5d72e5953d80806e633b46faad6e5f2c7ad2c1288bd98b3a164f8f43066dc78438f2e5f9fa1fcb8ec7e3c46a8c1d103b486aff4adfc1ae573b2864e2#npm:1.4.0"],\ - ["colorette", "npm:1.2.2"],\ + ["@webpack-cli/serve", "virtual:1115deaf0cc2aaaddb9832fb5599cc0547a37f2deeb7d03662ed193684a3a1dcf2d97590c070bb4aa39cbefc14a8b9499d004749aa200c99650b82b7ad02d3c4#npm:1.7.0"],\ + ["colorette", "npm:2.0.20"],\ ["commander", "npm:7.2.0"],\ - ["execa", "npm:5.0.0"],\ - ["fastest-levenshtein", "npm:1.0.12"],\ - ["import-local", "npm:3.0.2"],\ + ["cross-spawn", "npm:7.0.3"],\ + ["fastest-levenshtein", "npm:1.0.16"],\ + ["import-local", "npm:3.1.0"],\ ["interpret", "npm:2.2.0"],\ - ["rechoir", "npm:0.7.0"],\ - ["v8-compile-cache", "npm:2.3.0"],\ - ["webpack", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:5.76.1"],\ + ["rechoir", "npm:0.7.1"],\ + ["webpack", "virtual:59dbf28df0b44553f74b7f3dd446a5bd2c11faf0a1518276fd6f945187079c5efd2da665c225efeaf92e186ce2ab9d524adc7b7b39eb091a0f2fb60aac3cbe9f#npm:5.88.2"],\ ["webpack-bundle-analyzer", null],\ ["webpack-dev-server", null],\ - ["webpack-merge", "npm:5.7.3"]\ + ["webpack-merge", "npm:5.9.0"]\ ],\ "packagePeers": [\ "@types/webpack-bundle-analyzer",\ @@ -13467,33 +13802,32 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:4.7.0", {\ - "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-3f2095d1b1/0/cache/webpack-cli-npm-4.7.0-cb3d7c34ff-cecfb321b9.zip/node_modules/webpack-cli/",\ + ["virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:4.10.0", {\ + "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-acdb8e14ef/0/cache/webpack-cli-npm-4.10.0-09cee8c457-2ff5355ac3.zip/node_modules/webpack-cli/",\ "packageDependencies": [\ - ["webpack-cli", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:4.7.0"],\ - ["@discoveryjs/json-ext", "npm:0.5.3"],\ + ["webpack-cli", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:4.10.0"],\ + ["@discoveryjs/json-ext", "npm:0.5.7"],\ ["@types/webpack", null],\ ["@types/webpack-bundle-analyzer", null],\ ["@types/webpack-cli__generators", null],\ ["@types/webpack-cli__migrate", null],\ ["@types/webpack-dev-server", null],\ - ["@webpack-cli/configtest", "virtual:3f2095d1b1ae86c3528b28bd8410f4d8bf5f6047b5402e111275cdabf96cfed69de5749998e5371b82993388087e5eee4fbc64b5a88b9a1f7cccaf495cab5b18#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:acdb8e14ef9eb9196d4af13197cbc00f56a0cfa91ffcfca23f74f2df718d36224ab880b4d106f1456e3bf1849ded71fe70916933ad9358ab636241d7b8027984#npm:1.2.0"],\ ["@webpack-cli/generators", null],\ - ["@webpack-cli/info", "virtual:3f2095d1b1ae86c3528b28bd8410f4d8bf5f6047b5402e111275cdabf96cfed69de5749998e5371b82993388087e5eee4fbc64b5a88b9a1f7cccaf495cab5b18#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:acdb8e14ef9eb9196d4af13197cbc00f56a0cfa91ffcfca23f74f2df718d36224ab880b4d106f1456e3bf1849ded71fe70916933ad9358ab636241d7b8027984#npm:1.5.0"],\ ["@webpack-cli/migrate", null],\ - ["@webpack-cli/serve", "virtual:3f2095d1b1ae86c3528b28bd8410f4d8bf5f6047b5402e111275cdabf96cfed69de5749998e5371b82993388087e5eee4fbc64b5a88b9a1f7cccaf495cab5b18#npm:1.4.0"],\ - ["colorette", "npm:1.2.2"],\ + ["@webpack-cli/serve", "virtual:acdb8e14ef9eb9196d4af13197cbc00f56a0cfa91ffcfca23f74f2df718d36224ab880b4d106f1456e3bf1849ded71fe70916933ad9358ab636241d7b8027984#npm:1.7.0"],\ + ["colorette", "npm:2.0.20"],\ ["commander", "npm:7.2.0"],\ - ["execa", "npm:5.0.0"],\ - ["fastest-levenshtein", "npm:1.0.12"],\ - ["import-local", "npm:3.0.2"],\ + ["cross-spawn", "npm:7.0.3"],\ + ["fastest-levenshtein", "npm:1.0.16"],\ + ["import-local", "npm:3.1.0"],\ ["interpret", "npm:2.2.0"],\ - ["rechoir", "npm:0.7.0"],\ - ["v8-compile-cache", "npm:2.3.0"],\ - ["webpack", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:5.76.1"],\ + ["rechoir", "npm:0.7.1"],\ + ["webpack", "virtual:7bcfa345571c06768a3dbc91a42526f0822237866e2d9cb58705577be6cb39fb02f8c1251069bcf70d11a05dfde2de19f521968b6f5d0f6652f231deb4bdab09#npm:5.88.2"],\ ["webpack-bundle-analyzer", null],\ ["webpack-dev-server", null],\ - ["webpack-merge", "npm:5.7.3"]\ + ["webpack-merge", "npm:5.9.0"]\ ],\ "packagePeers": [\ "@types/webpack-bundle-analyzer",\ @@ -13509,33 +13843,32 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:4.7.0", {\ - "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-19b2f12781/0/cache/webpack-cli-npm-4.7.0-cb3d7c34ff-cecfb321b9.zip/node_modules/webpack-cli/",\ + ["virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:4.10.0", {\ + "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-d238eb575f/0/cache/webpack-cli-npm-4.10.0-09cee8c457-2ff5355ac3.zip/node_modules/webpack-cli/",\ "packageDependencies": [\ - ["webpack-cli", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:4.7.0"],\ - ["@discoveryjs/json-ext", "npm:0.5.3"],\ + ["webpack-cli", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:4.10.0"],\ + ["@discoveryjs/json-ext", "npm:0.5.7"],\ ["@types/webpack", null],\ ["@types/webpack-bundle-analyzer", null],\ ["@types/webpack-cli__generators", null],\ ["@types/webpack-cli__migrate", null],\ ["@types/webpack-dev-server", null],\ - ["@webpack-cli/configtest", "virtual:19b2f127812c1907b1a38c9a09197f204b62fe7eef6532a842d9e5edd0b340137d9842e41494462fa7a7e7606b2c2e959ccd71fd984fd23865c8a0d5c45bdc93#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:d238eb575f4cd9a888aa4eb2917d8fae65e681e5369648dbb5b122f52d88ccaa3442afd93636e31c7d7eddf83592b2d556886bd920ef1fb49d5e1fdc01bdb65a#npm:1.2.0"],\ ["@webpack-cli/generators", null],\ - ["@webpack-cli/info", "virtual:19b2f127812c1907b1a38c9a09197f204b62fe7eef6532a842d9e5edd0b340137d9842e41494462fa7a7e7606b2c2e959ccd71fd984fd23865c8a0d5c45bdc93#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:d238eb575f4cd9a888aa4eb2917d8fae65e681e5369648dbb5b122f52d88ccaa3442afd93636e31c7d7eddf83592b2d556886bd920ef1fb49d5e1fdc01bdb65a#npm:1.5.0"],\ ["@webpack-cli/migrate", null],\ - ["@webpack-cli/serve", "virtual:19b2f127812c1907b1a38c9a09197f204b62fe7eef6532a842d9e5edd0b340137d9842e41494462fa7a7e7606b2c2e959ccd71fd984fd23865c8a0d5c45bdc93#npm:1.4.0"],\ - ["colorette", "npm:1.2.2"],\ + ["@webpack-cli/serve", "virtual:d238eb575f4cd9a888aa4eb2917d8fae65e681e5369648dbb5b122f52d88ccaa3442afd93636e31c7d7eddf83592b2d556886bd920ef1fb49d5e1fdc01bdb65a#npm:1.7.0"],\ + ["colorette", "npm:2.0.20"],\ ["commander", "npm:7.2.0"],\ - ["execa", "npm:5.0.0"],\ - ["fastest-levenshtein", "npm:1.0.12"],\ - ["import-local", "npm:3.0.2"],\ + ["cross-spawn", "npm:7.0.3"],\ + ["fastest-levenshtein", "npm:1.0.16"],\ + ["import-local", "npm:3.1.0"],\ ["interpret", "npm:2.2.0"],\ - ["rechoir", "npm:0.7.0"],\ - ["v8-compile-cache", "npm:2.3.0"],\ - ["webpack", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:5.76.1"],\ + ["rechoir", "npm:0.7.1"],\ + ["webpack", "virtual:8b096e2a9a434b4277d6f02b903bdce7d29a5d4c50de89707a93f84c84c73759c4741dd158307f1c75ce3c1e2c05b0da1b938a114cc37854c89c2bd2552c9236#npm:5.88.2"],\ ["webpack-bundle-analyzer", null],\ ["webpack-dev-server", null],\ - ["webpack-merge", "npm:5.7.3"]\ + ["webpack-merge", "npm:5.9.0"]\ ],\ "packagePeers": [\ "@types/webpack-bundle-analyzer",\ @@ -13551,33 +13884,32 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:4.7.0", {\ - "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-8aa70e5ddf/0/cache/webpack-cli-npm-4.7.0-cb3d7c34ff-cecfb321b9.zip/node_modules/webpack-cli/",\ + ["virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:4.10.0", {\ + "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-9d0dcc8aee/0/cache/webpack-cli-npm-4.10.0-09cee8c457-2ff5355ac3.zip/node_modules/webpack-cli/",\ "packageDependencies": [\ - ["webpack-cli", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:4.7.0"],\ - ["@discoveryjs/json-ext", "npm:0.5.3"],\ + ["webpack-cli", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:4.10.0"],\ + ["@discoveryjs/json-ext", "npm:0.5.7"],\ ["@types/webpack", null],\ ["@types/webpack-bundle-analyzer", null],\ ["@types/webpack-cli__generators", null],\ ["@types/webpack-cli__migrate", null],\ ["@types/webpack-dev-server", null],\ - ["@webpack-cli/configtest", "virtual:8aa70e5ddf4bf177ef358ddf514e31e5ae37328cf6140c50a8bf949f5e5058766ef80c00056d13489dc3eb71d291591fef5996e6062a700bbf7c95a98b6e50c2#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:9d0dcc8aee65ed745256a364f8e36ac9dbc5e6d5b9445277593171982a7d13a3d36086a6e47d37500ac199aacb3e258f9831aaeb7cddcb15c7e9639642fcacbd#npm:1.2.0"],\ ["@webpack-cli/generators", null],\ - ["@webpack-cli/info", "virtual:8aa70e5ddf4bf177ef358ddf514e31e5ae37328cf6140c50a8bf949f5e5058766ef80c00056d13489dc3eb71d291591fef5996e6062a700bbf7c95a98b6e50c2#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:9d0dcc8aee65ed745256a364f8e36ac9dbc5e6d5b9445277593171982a7d13a3d36086a6e47d37500ac199aacb3e258f9831aaeb7cddcb15c7e9639642fcacbd#npm:1.5.0"],\ ["@webpack-cli/migrate", null],\ - ["@webpack-cli/serve", "virtual:8aa70e5ddf4bf177ef358ddf514e31e5ae37328cf6140c50a8bf949f5e5058766ef80c00056d13489dc3eb71d291591fef5996e6062a700bbf7c95a98b6e50c2#npm:1.4.0"],\ - ["colorette", "npm:1.2.2"],\ + ["@webpack-cli/serve", "virtual:9d0dcc8aee65ed745256a364f8e36ac9dbc5e6d5b9445277593171982a7d13a3d36086a6e47d37500ac199aacb3e258f9831aaeb7cddcb15c7e9639642fcacbd#npm:1.7.0"],\ + ["colorette", "npm:2.0.20"],\ ["commander", "npm:7.2.0"],\ - ["execa", "npm:5.0.0"],\ - ["fastest-levenshtein", "npm:1.0.12"],\ - ["import-local", "npm:3.0.2"],\ + ["cross-spawn", "npm:7.0.3"],\ + ["fastest-levenshtein", "npm:1.0.16"],\ + ["import-local", "npm:3.1.0"],\ ["interpret", "npm:2.2.0"],\ - ["rechoir", "npm:0.7.0"],\ - ["v8-compile-cache", "npm:2.3.0"],\ - ["webpack", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:5.76.1"],\ + ["rechoir", "npm:0.7.1"],\ + ["webpack", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:5.88.2"],\ ["webpack-bundle-analyzer", null],\ ["webpack-dev-server", null],\ - ["webpack-merge", "npm:5.7.3"]\ + ["webpack-merge", "npm:5.9.0"]\ ],\ "packagePeers": [\ "@types/webpack-bundle-analyzer",\ @@ -13593,33 +13925,32 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:4.7.0", {\ - "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-6aa2f0205c/0/cache/webpack-cli-npm-4.7.0-cb3d7c34ff-cecfb321b9.zip/node_modules/webpack-cli/",\ + ["virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:4.10.0", {\ + "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-74811ee2a4/0/cache/webpack-cli-npm-4.10.0-09cee8c457-2ff5355ac3.zip/node_modules/webpack-cli/",\ "packageDependencies": [\ - ["webpack-cli", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:4.7.0"],\ - ["@discoveryjs/json-ext", "npm:0.5.3"],\ + ["webpack-cli", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:4.10.0"],\ + ["@discoveryjs/json-ext", "npm:0.5.7"],\ ["@types/webpack", null],\ ["@types/webpack-bundle-analyzer", null],\ ["@types/webpack-cli__generators", null],\ ["@types/webpack-cli__migrate", null],\ ["@types/webpack-dev-server", null],\ - ["@webpack-cli/configtest", "virtual:6aa2f0205c2e84475d560e84447d4ad5469ae4a696d3c5fd04b106f0acfd3605d22dce182c31de5f85d3ce85becb1071c029b25e06429fdf284beed8e1f7b1be#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:74811ee2a4f4a044bbc3384892ec003917f77ffd3ba4a0a4a4976566e3d3a9892dae17c2a376c3754bc8a2b5905a0bf7b68afdc6745c4e4b30393ad52e7c218f#npm:1.2.0"],\ ["@webpack-cli/generators", null],\ - ["@webpack-cli/info", "virtual:6aa2f0205c2e84475d560e84447d4ad5469ae4a696d3c5fd04b106f0acfd3605d22dce182c31de5f85d3ce85becb1071c029b25e06429fdf284beed8e1f7b1be#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:74811ee2a4f4a044bbc3384892ec003917f77ffd3ba4a0a4a4976566e3d3a9892dae17c2a376c3754bc8a2b5905a0bf7b68afdc6745c4e4b30393ad52e7c218f#npm:1.5.0"],\ ["@webpack-cli/migrate", null],\ - ["@webpack-cli/serve", "virtual:6aa2f0205c2e84475d560e84447d4ad5469ae4a696d3c5fd04b106f0acfd3605d22dce182c31de5f85d3ce85becb1071c029b25e06429fdf284beed8e1f7b1be#npm:1.4.0"],\ - ["colorette", "npm:1.2.2"],\ + ["@webpack-cli/serve", "virtual:74811ee2a4f4a044bbc3384892ec003917f77ffd3ba4a0a4a4976566e3d3a9892dae17c2a376c3754bc8a2b5905a0bf7b68afdc6745c4e4b30393ad52e7c218f#npm:1.7.0"],\ + ["colorette", "npm:2.0.20"],\ ["commander", "npm:7.2.0"],\ - ["execa", "npm:5.0.0"],\ - ["fastest-levenshtein", "npm:1.0.12"],\ - ["import-local", "npm:3.0.2"],\ + ["cross-spawn", "npm:7.0.3"],\ + ["fastest-levenshtein", "npm:1.0.16"],\ + ["import-local", "npm:3.1.0"],\ ["interpret", "npm:2.2.0"],\ - ["rechoir", "npm:0.7.0"],\ - ["v8-compile-cache", "npm:2.3.0"],\ - ["webpack", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:5.76.1"],\ + ["rechoir", "npm:0.7.1"],\ + ["webpack", "virtual:a1fa79937af15b1c91e93bc5d3d31ca355b63338661e2fdb0dcf118caae9fc0800b2363f4e1f737165df645622f04072fe0e111167d7652cb3d8623eb7548b9c#npm:5.88.2"],\ ["webpack-bundle-analyzer", null],\ ["webpack-dev-server", null],\ - ["webpack-merge", "npm:5.7.3"]\ + ["webpack-merge", "npm:5.9.0"]\ ],\ "packagePeers": [\ "@types/webpack-bundle-analyzer",\ @@ -13635,33 +13966,32 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:4.7.0", {\ - "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-f163430d48/0/cache/webpack-cli-npm-4.7.0-cb3d7c34ff-cecfb321b9.zip/node_modules/webpack-cli/",\ + ["virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:4.10.0", {\ + "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-985f09af5c/0/cache/webpack-cli-npm-4.10.0-09cee8c457-2ff5355ac3.zip/node_modules/webpack-cli/",\ "packageDependencies": [\ - ["webpack-cli", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:4.7.0"],\ - ["@discoveryjs/json-ext", "npm:0.5.3"],\ + ["webpack-cli", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:4.10.0"],\ + ["@discoveryjs/json-ext", "npm:0.5.7"],\ ["@types/webpack", null],\ ["@types/webpack-bundle-analyzer", null],\ ["@types/webpack-cli__generators", null],\ ["@types/webpack-cli__migrate", null],\ ["@types/webpack-dev-server", null],\ - ["@webpack-cli/configtest", "virtual:f163430d480c7d1a43ed44430ddc1d3b80854df746309b4d16766c3a534976b48dd4c8639aa68947f16c23f4b2d63d59f83ad577265bf920b9b42be9085d01c7#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:985f09af5cb428469830ec62dabd454c0015dd70acc17890be6a6d0ea98dbf659373b79717401755d1983f2c532b6532b7fb2dc71863897de70aa5f14f9d0d04#npm:1.2.0"],\ ["@webpack-cli/generators", null],\ - ["@webpack-cli/info", "virtual:f163430d480c7d1a43ed44430ddc1d3b80854df746309b4d16766c3a534976b48dd4c8639aa68947f16c23f4b2d63d59f83ad577265bf920b9b42be9085d01c7#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:985f09af5cb428469830ec62dabd454c0015dd70acc17890be6a6d0ea98dbf659373b79717401755d1983f2c532b6532b7fb2dc71863897de70aa5f14f9d0d04#npm:1.5.0"],\ ["@webpack-cli/migrate", null],\ - ["@webpack-cli/serve", "virtual:f163430d480c7d1a43ed44430ddc1d3b80854df746309b4d16766c3a534976b48dd4c8639aa68947f16c23f4b2d63d59f83ad577265bf920b9b42be9085d01c7#npm:1.4.0"],\ - ["colorette", "npm:1.2.2"],\ + ["@webpack-cli/serve", "virtual:985f09af5cb428469830ec62dabd454c0015dd70acc17890be6a6d0ea98dbf659373b79717401755d1983f2c532b6532b7fb2dc71863897de70aa5f14f9d0d04#npm:1.7.0"],\ + ["colorette", "npm:2.0.20"],\ ["commander", "npm:7.2.0"],\ - ["execa", "npm:5.0.0"],\ - ["fastest-levenshtein", "npm:1.0.12"],\ - ["import-local", "npm:3.0.2"],\ + ["cross-spawn", "npm:7.0.3"],\ + ["fastest-levenshtein", "npm:1.0.16"],\ + ["import-local", "npm:3.1.0"],\ ["interpret", "npm:2.2.0"],\ - ["rechoir", "npm:0.7.0"],\ - ["v8-compile-cache", "npm:2.3.0"],\ - ["webpack", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:5.76.1"],\ + ["rechoir", "npm:0.7.1"],\ + ["webpack", "virtual:a31700cf86cea838c0f4917245e51b30d6c0a2e667770fb31e497ee0a2d898d5608fba085ac0c1f38177dd8e390865bebffdc50954bc24bc1fb6d5c42bbd51cc#npm:5.88.2"],\ ["webpack-bundle-analyzer", null],\ ["webpack-dev-server", null],\ - ["webpack-merge", "npm:5.7.3"]\ + ["webpack-merge", "npm:5.9.0"]\ ],\ "packagePeers": [\ "@types/webpack-bundle-analyzer",\ @@ -13677,33 +14007,32 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:4.7.0", {\ - "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-712183b825/0/cache/webpack-cli-npm-4.7.0-cb3d7c34ff-cecfb321b9.zip/node_modules/webpack-cli/",\ + ["virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:4.10.0", {\ + "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-f5022bce7a/0/cache/webpack-cli-npm-4.10.0-09cee8c457-2ff5355ac3.zip/node_modules/webpack-cli/",\ "packageDependencies": [\ - ["webpack-cli", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:4.7.0"],\ - ["@discoveryjs/json-ext", "npm:0.5.3"],\ + ["webpack-cli", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:4.10.0"],\ + ["@discoveryjs/json-ext", "npm:0.5.7"],\ ["@types/webpack", null],\ ["@types/webpack-bundle-analyzer", null],\ ["@types/webpack-cli__generators", null],\ ["@types/webpack-cli__migrate", null],\ ["@types/webpack-dev-server", null],\ - ["@webpack-cli/configtest", "virtual:712183b8256b1ad2b955dfd65392300c7ccc5ef7a8fe0263558a47bb329e60ecc3e2c46c83fde3173db60fa97b8e7ca90b297c7aee52a2ca3bece0c7577ba565#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:f5022bce7a2b84ada5f5e52d05e3565059aa737acfdbe305e0c6acf0a9f5fac16e8895490aed61cec2224735c77717e171688a7425b8ec7bbb276a9954dfcbbb#npm:1.2.0"],\ ["@webpack-cli/generators", null],\ - ["@webpack-cli/info", "virtual:712183b8256b1ad2b955dfd65392300c7ccc5ef7a8fe0263558a47bb329e60ecc3e2c46c83fde3173db60fa97b8e7ca90b297c7aee52a2ca3bece0c7577ba565#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:f5022bce7a2b84ada5f5e52d05e3565059aa737acfdbe305e0c6acf0a9f5fac16e8895490aed61cec2224735c77717e171688a7425b8ec7bbb276a9954dfcbbb#npm:1.5.0"],\ ["@webpack-cli/migrate", null],\ - ["@webpack-cli/serve", "virtual:712183b8256b1ad2b955dfd65392300c7ccc5ef7a8fe0263558a47bb329e60ecc3e2c46c83fde3173db60fa97b8e7ca90b297c7aee52a2ca3bece0c7577ba565#npm:1.4.0"],\ - ["colorette", "npm:1.2.2"],\ + ["@webpack-cli/serve", "virtual:f5022bce7a2b84ada5f5e52d05e3565059aa737acfdbe305e0c6acf0a9f5fac16e8895490aed61cec2224735c77717e171688a7425b8ec7bbb276a9954dfcbbb#npm:1.7.0"],\ + ["colorette", "npm:2.0.20"],\ ["commander", "npm:7.2.0"],\ - ["execa", "npm:5.0.0"],\ - ["fastest-levenshtein", "npm:1.0.12"],\ - ["import-local", "npm:3.0.2"],\ + ["cross-spawn", "npm:7.0.3"],\ + ["fastest-levenshtein", "npm:1.0.16"],\ + ["import-local", "npm:3.1.0"],\ ["interpret", "npm:2.2.0"],\ - ["rechoir", "npm:0.7.0"],\ - ["v8-compile-cache", "npm:2.3.0"],\ - ["webpack", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:5.76.1"],\ + ["rechoir", "npm:0.7.1"],\ + ["webpack", "virtual:c246025b363fcdd286d19223b9e5c9d41d6b4e10c1ac203d049eef0026c6c6fd3d893f42665b20a1dc263af14f7698c498822f02ba3cc068bddabeaf6d4b98ea#npm:5.88.2"],\ ["webpack-bundle-analyzer", null],\ ["webpack-dev-server", null],\ - ["webpack-merge", "npm:5.7.3"]\ + ["webpack-merge", "npm:5.9.0"]\ ],\ "packagePeers": [\ "@types/webpack-bundle-analyzer",\ @@ -13719,33 +14048,32 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:4.7.0", {\ - "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-87e4e29d0a/0/cache/webpack-cli-npm-4.7.0-cb3d7c34ff-cecfb321b9.zip/node_modules/webpack-cli/",\ + ["virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:4.10.0", {\ + "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-9df3d55096/0/cache/webpack-cli-npm-4.10.0-09cee8c457-2ff5355ac3.zip/node_modules/webpack-cli/",\ "packageDependencies": [\ - ["webpack-cli", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:4.7.0"],\ - ["@discoveryjs/json-ext", "npm:0.5.3"],\ + ["webpack-cli", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:4.10.0"],\ + ["@discoveryjs/json-ext", "npm:0.5.7"],\ ["@types/webpack", null],\ ["@types/webpack-bundle-analyzer", null],\ ["@types/webpack-cli__generators", null],\ ["@types/webpack-cli__migrate", null],\ ["@types/webpack-dev-server", null],\ - ["@webpack-cli/configtest", "virtual:87e4e29d0a073486e83efd3fb6ccb7905fedbae979a2f77544c4e7ebf5a6bf9cb2ec8ed5b3be875e151cdf6e30b7c3d3d2c148a069709cbac3edecc2314b098d#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:9df3d550965966985c859dffeb145ff415e8fcb2873896d25632c194894a378def26f584691c0ca0ca8104e26903e02b9c92099ca226e0ccb3457a368fd255ef#npm:1.2.0"],\ ["@webpack-cli/generators", null],\ - ["@webpack-cli/info", "virtual:87e4e29d0a073486e83efd3fb6ccb7905fedbae979a2f77544c4e7ebf5a6bf9cb2ec8ed5b3be875e151cdf6e30b7c3d3d2c148a069709cbac3edecc2314b098d#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:9df3d550965966985c859dffeb145ff415e8fcb2873896d25632c194894a378def26f584691c0ca0ca8104e26903e02b9c92099ca226e0ccb3457a368fd255ef#npm:1.5.0"],\ ["@webpack-cli/migrate", null],\ - ["@webpack-cli/serve", "virtual:87e4e29d0a073486e83efd3fb6ccb7905fedbae979a2f77544c4e7ebf5a6bf9cb2ec8ed5b3be875e151cdf6e30b7c3d3d2c148a069709cbac3edecc2314b098d#npm:1.4.0"],\ - ["colorette", "npm:1.2.2"],\ + ["@webpack-cli/serve", "virtual:9df3d550965966985c859dffeb145ff415e8fcb2873896d25632c194894a378def26f584691c0ca0ca8104e26903e02b9c92099ca226e0ccb3457a368fd255ef#npm:1.7.0"],\ + ["colorette", "npm:2.0.20"],\ ["commander", "npm:7.2.0"],\ - ["execa", "npm:5.0.0"],\ - ["fastest-levenshtein", "npm:1.0.12"],\ - ["import-local", "npm:3.0.2"],\ + ["cross-spawn", "npm:7.0.3"],\ + ["fastest-levenshtein", "npm:1.0.16"],\ + ["import-local", "npm:3.1.0"],\ ["interpret", "npm:2.2.0"],\ - ["rechoir", "npm:0.7.0"],\ - ["v8-compile-cache", "npm:2.3.0"],\ - ["webpack", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:5.76.1"],\ + ["rechoir", "npm:0.7.1"],\ + ["webpack", "virtual:ccd7bdb71649037a1a0a4683a969c7a445e96784e6e17fdf2248fd29ab34e212b967e8a3bd2e3bd9d02ee048b1b3b3d74219a50fdbee85a0178c2c53fbd58c3c#npm:5.88.2"],\ ["webpack-bundle-analyzer", null],\ ["webpack-dev-server", null],\ - ["webpack-merge", "npm:5.7.3"]\ + ["webpack-merge", "npm:5.9.0"]\ ],\ "packagePeers": [\ "@types/webpack-bundle-analyzer",\ @@ -13761,33 +14089,32 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:4.7.0", {\ - "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-ef44dbe4a0/0/cache/webpack-cli-npm-4.7.0-cb3d7c34ff-cecfb321b9.zip/node_modules/webpack-cli/",\ + ["virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:4.10.0", {\ + "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-ef491f5c01/0/cache/webpack-cli-npm-4.10.0-09cee8c457-2ff5355ac3.zip/node_modules/webpack-cli/",\ "packageDependencies": [\ - ["webpack-cli", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:4.7.0"],\ - ["@discoveryjs/json-ext", "npm:0.5.3"],\ + ["webpack-cli", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:4.10.0"],\ + ["@discoveryjs/json-ext", "npm:0.5.7"],\ ["@types/webpack", null],\ ["@types/webpack-bundle-analyzer", null],\ ["@types/webpack-cli__generators", null],\ ["@types/webpack-cli__migrate", null],\ ["@types/webpack-dev-server", null],\ - ["@webpack-cli/configtest", "virtual:ef44dbe4a0887b3ad14f09b6347c15d0db82a8927990a2da2fd639dc590694850b3df878dd3cbc868013c58ae6dcaeda4d5d16b96817c60d1a31ea77f0c0c1a2#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:ef491f5c015f28129e937195e1c6fa23d14e66ca4df07e6709daefe0a2f0d86f1a5fe1c68a62002dc1b1e37a622490e05c98ff741f00256cb04373b854063ae6#npm:1.2.0"],\ ["@webpack-cli/generators", null],\ - ["@webpack-cli/info", "virtual:ef44dbe4a0887b3ad14f09b6347c15d0db82a8927990a2da2fd639dc590694850b3df878dd3cbc868013c58ae6dcaeda4d5d16b96817c60d1a31ea77f0c0c1a2#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:ef491f5c015f28129e937195e1c6fa23d14e66ca4df07e6709daefe0a2f0d86f1a5fe1c68a62002dc1b1e37a622490e05c98ff741f00256cb04373b854063ae6#npm:1.5.0"],\ ["@webpack-cli/migrate", null],\ - ["@webpack-cli/serve", "virtual:ef44dbe4a0887b3ad14f09b6347c15d0db82a8927990a2da2fd639dc590694850b3df878dd3cbc868013c58ae6dcaeda4d5d16b96817c60d1a31ea77f0c0c1a2#npm:1.4.0"],\ - ["colorette", "npm:1.2.2"],\ + ["@webpack-cli/serve", "virtual:ef491f5c015f28129e937195e1c6fa23d14e66ca4df07e6709daefe0a2f0d86f1a5fe1c68a62002dc1b1e37a622490e05c98ff741f00256cb04373b854063ae6#npm:1.7.0"],\ + ["colorette", "npm:2.0.20"],\ ["commander", "npm:7.2.0"],\ - ["execa", "npm:5.0.0"],\ - ["fastest-levenshtein", "npm:1.0.12"],\ - ["import-local", "npm:3.0.2"],\ + ["cross-spawn", "npm:7.0.3"],\ + ["fastest-levenshtein", "npm:1.0.16"],\ + ["import-local", "npm:3.1.0"],\ ["interpret", "npm:2.2.0"],\ - ["rechoir", "npm:0.7.0"],\ - ["v8-compile-cache", "npm:2.3.0"],\ - ["webpack", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:5.76.1"],\ + ["rechoir", "npm:0.7.1"],\ + ["webpack", "virtual:d5037fb6cb5ae0ea3e1abfa18c6b0b09006e3ee27af43c076bb3eab879c3679bba8a5c55c42f03ddd47ae58ceabbf7a06477ca582879ac7623c7c140cfd0449f#npm:5.88.2"],\ ["webpack-bundle-analyzer", null],\ ["webpack-dev-server", null],\ - ["webpack-merge", "npm:5.7.3"]\ + ["webpack-merge", "npm:5.9.0"]\ ],\ "packagePeers": [\ "@types/webpack-bundle-analyzer",\ @@ -13803,33 +14130,32 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:4.7.0", {\ - "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-e545141db9/0/cache/webpack-cli-npm-4.7.0-cb3d7c34ff-cecfb321b9.zip/node_modules/webpack-cli/",\ + ["virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:4.10.0", {\ + "packageLocation": "./.yarn/__virtual__/webpack-cli-virtual-6ece23f624/0/cache/webpack-cli-npm-4.10.0-09cee8c457-2ff5355ac3.zip/node_modules/webpack-cli/",\ "packageDependencies": [\ - ["webpack-cli", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:4.7.0"],\ - ["@discoveryjs/json-ext", "npm:0.5.3"],\ + ["webpack-cli", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:4.10.0"],\ + ["@discoveryjs/json-ext", "npm:0.5.7"],\ ["@types/webpack", null],\ ["@types/webpack-bundle-analyzer", null],\ ["@types/webpack-cli__generators", null],\ ["@types/webpack-cli__migrate", null],\ ["@types/webpack-dev-server", null],\ - ["@webpack-cli/configtest", "virtual:e545141db94d121e901ffbb09d6c54f53f485ecdf99f9847aaf0f186594082f8121d89d8183c7bf05b17673cbb64c358037fbd69d06a0ad71096f07b595a2385#npm:1.0.3"],\ + ["@webpack-cli/configtest", "virtual:6ece23f624e19111012ab576f39c4a472e20eed34986fb51bd7f0fae3354bdbed57785b6a87ec3abdddea1300ef03566e7b501328d2855bdfae78bb45afd999a#npm:1.2.0"],\ ["@webpack-cli/generators", null],\ - ["@webpack-cli/info", "virtual:e545141db94d121e901ffbb09d6c54f53f485ecdf99f9847aaf0f186594082f8121d89d8183c7bf05b17673cbb64c358037fbd69d06a0ad71096f07b595a2385#npm:1.2.4"],\ + ["@webpack-cli/info", "virtual:6ece23f624e19111012ab576f39c4a472e20eed34986fb51bd7f0fae3354bdbed57785b6a87ec3abdddea1300ef03566e7b501328d2855bdfae78bb45afd999a#npm:1.5.0"],\ ["@webpack-cli/migrate", null],\ - ["@webpack-cli/serve", "virtual:e545141db94d121e901ffbb09d6c54f53f485ecdf99f9847aaf0f186594082f8121d89d8183c7bf05b17673cbb64c358037fbd69d06a0ad71096f07b595a2385#npm:1.4.0"],\ - ["colorette", "npm:1.2.2"],\ + ["@webpack-cli/serve", "virtual:6ece23f624e19111012ab576f39c4a472e20eed34986fb51bd7f0fae3354bdbed57785b6a87ec3abdddea1300ef03566e7b501328d2855bdfae78bb45afd999a#npm:1.7.0"],\ + ["colorette", "npm:2.0.20"],\ ["commander", "npm:7.2.0"],\ - ["execa", "npm:5.0.0"],\ - ["fastest-levenshtein", "npm:1.0.12"],\ - ["import-local", "npm:3.0.2"],\ + ["cross-spawn", "npm:7.0.3"],\ + ["fastest-levenshtein", "npm:1.0.16"],\ + ["import-local", "npm:3.1.0"],\ ["interpret", "npm:2.2.0"],\ - ["rechoir", "npm:0.7.0"],\ - ["v8-compile-cache", "npm:2.3.0"],\ - ["webpack", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:5.76.1"],\ + ["rechoir", "npm:0.7.1"],\ + ["webpack", "virtual:d9e325cc72640bcdd8c0595d77f162dd82bcc03bb06facad45b0fa8fc5bf522b30e1f0b4591f9923a0022943ddb750feb3eac78ddc29663f277c3567f21d9aba#npm:5.88.2"],\ ["webpack-bundle-analyzer", null],\ ["webpack-dev-server", null],\ - ["webpack-merge", "npm:5.7.3"]\ + ["webpack-merge", "npm:5.9.0"]\ ],\ "packagePeers": [\ "@types/webpack-bundle-analyzer",\ @@ -13847,12 +14173,12 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["webpack-merge", [\ - ["npm:5.7.3", {\ - "packageLocation": "./.yarn/cache/webpack-merge-npm-5.7.3-f596ce4401-09608c3a49.zip/node_modules/webpack-merge/",\ + ["npm:5.9.0", {\ + "packageLocation": "./.yarn/cache/webpack-merge-npm-5.9.0-9110e650de-64fe2c23aa.zip/node_modules/webpack-merge/",\ "packageDependencies": [\ - ["webpack-merge", "npm:5.7.3"],\ + ["webpack-merge", "npm:5.9.0"],\ ["clone-deep", "npm:4.0.1"],\ - ["wildcard", "npm:2.0.0"]\ + ["wildcard", "npm:2.0.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -13889,48 +14215,53 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/which-boxed-primitive-npm-1.0.2-e214f9ae5a-53ce774c73.zip/node_modules/which-boxed-primitive/",\ "packageDependencies": [\ ["which-boxed-primitive", "npm:1.0.2"],\ - ["is-bigint", "npm:1.0.2"],\ - ["is-boolean-object", "npm:1.1.1"],\ - ["is-number-object", "npm:1.0.5"],\ - ["is-string", "npm:1.0.6"],\ + ["is-bigint", "npm:1.0.4"],\ + ["is-boolean-object", "npm:1.1.2"],\ + ["is-number-object", "npm:1.0.7"],\ + ["is-string", "npm:1.0.7"],\ ["is-symbol", "npm:1.0.4"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["which-module", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/which-module-npm-2.0.0-daf3daa08d-809f7fd3df.zip/node_modules/which-module/",\ + ["npm:2.0.1", {\ + "packageLocation": "./.yarn/cache/which-module-npm-2.0.1-90f889f6f6-1967b7ce17.zip/node_modules/which-module/",\ "packageDependencies": [\ - ["which-module", "npm:2.0.0"]\ + ["which-module", "npm:2.0.1"]\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["wide-align", [\ - ["npm:1.1.3", {\ - "packageLocation": "./.yarn/cache/wide-align-npm-1.1.3-48c7d4953c-d09c801265.zip/node_modules/wide-align/",\ + ["which-typed-array", [\ + ["npm:1.1.11", {\ + "packageLocation": "./.yarn/cache/which-typed-array-npm-1.1.11-f37f0cefe2-711ffc8ef8.zip/node_modules/which-typed-array/",\ "packageDependencies": [\ - ["wide-align", "npm:1.1.3"],\ - ["string-width", "npm:2.1.1"]\ + ["which-typed-array", "npm:1.1.11"],\ + ["available-typed-arrays", "npm:1.0.5"],\ + ["call-bind", "npm:1.0.2"],\ + ["for-each", "npm:0.3.3"],\ + ["gopd", "npm:1.0.1"],\ + ["has-tostringtag", "npm:1.0.0"]\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["wildcard", [\ - ["npm:2.0.0", {\ - "packageLocation": "./.yarn/cache/wildcard-npm-2.0.0-baedca033a-1f4fe4c03d.zip/node_modules/wildcard/",\ + ["wide-align", [\ + ["npm:1.1.5", {\ + "packageLocation": "./.yarn/cache/wide-align-npm-1.1.5-889d77e592-d5fc37cd56.zip/node_modules/wide-align/",\ "packageDependencies": [\ - ["wildcard", "npm:2.0.0"]\ + ["wide-align", "npm:1.1.5"],\ + ["string-width", "npm:4.2.3"]\ ],\ "linkType": "HARD"\ }]\ ]],\ - ["word-wrap", [\ - ["npm:1.2.3", {\ - "packageLocation": "./.yarn/cache/word-wrap-npm-1.2.3-7fb15ab002-30b48f91fc.zip/node_modules/word-wrap/",\ + ["wildcard", [\ + ["npm:2.0.1", {\ + "packageLocation": "./.yarn/cache/wildcard-npm-2.0.1-7c6a3a3365-e0c60a12a2.zip/node_modules/wildcard/",\ "packageDependencies": [\ - ["word-wrap", "npm:1.2.3"]\ + ["wildcard", "npm:2.0.1"]\ ],\ "linkType": "HARD"\ }]\ @@ -13941,8 +14272,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["wrap-ansi", "npm:6.2.0"],\ ["ansi-styles", "npm:4.3.0"],\ - ["string-width", "npm:4.2.2"],\ - ["strip-ansi", "npm:6.0.0"]\ + ["string-width", "npm:4.2.3"],\ + ["strip-ansi", "npm:6.0.1"]\ ],\ "linkType": "HARD"\ }],\ @@ -13951,8 +14282,18 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageDependencies": [\ ["wrap-ansi", "npm:7.0.0"],\ ["ansi-styles", "npm:4.3.0"],\ - ["string-width", "npm:4.2.2"],\ - ["strip-ansi", "npm:6.0.0"]\ + ["string-width", "npm:4.2.3"],\ + ["strip-ansi", "npm:6.0.1"]\ + ],\ + "linkType": "HARD"\ + }],\ + ["npm:8.1.0", {\ + "packageLocation": "./.yarn/cache/wrap-ansi-npm-8.1.0-26a4e6ae28-371733296d.zip/node_modules/wrap-ansi/",\ + "packageDependencies": [\ + ["wrap-ansi", "npm:8.1.0"],\ + ["ansi-styles", "npm:6.2.1"],\ + ["string-width", "npm:5.1.2"],\ + ["strip-ansi", "npm:7.1.0"]\ ],\ "linkType": "HARD"\ }]\ @@ -13973,31 +14314,31 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["write-file-atomic", "npm:3.0.3"],\ ["imurmurhash", "npm:0.1.4"],\ ["is-typedarray", "npm:1.0.0"],\ - ["signal-exit", "npm:3.0.3"],\ + ["signal-exit", "npm:3.0.7"],\ ["typedarray-to-buffer", "npm:3.1.5"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["ws", [\ - ["npm:7.4.6", {\ - "packageLocation": "./.yarn/cache/ws-npm-7.4.6-9c9a725604-3a990b32ed.zip/node_modules/ws/",\ + ["npm:7.5.9", {\ + "packageLocation": "./.yarn/cache/ws-npm-7.5.9-26f12a5ed6-c3c100a181.zip/node_modules/ws/",\ "packageDependencies": [\ - ["ws", "npm:7.4.6"]\ + ["ws", "npm:7.5.9"]\ ],\ "linkType": "SOFT"\ }],\ - ["npm:8.2.3", {\ - "packageLocation": "./.yarn/cache/ws-npm-8.2.3-03a35b8ad7-c869296ccb.zip/node_modules/ws/",\ + ["npm:8.11.0", {\ + "packageLocation": "./.yarn/cache/ws-npm-8.11.0-ab72116a01-316b33aba3.zip/node_modules/ws/",\ "packageDependencies": [\ - ["ws", "npm:8.2.3"]\ + ["ws", "npm:8.11.0"]\ ],\ "linkType": "SOFT"\ }],\ - ["virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:7.4.6", {\ - "packageLocation": "./.yarn/__virtual__/ws-virtual-271fa5cbbc/0/cache/ws-npm-7.4.6-9c9a725604-3a990b32ed.zip/node_modules/ws/",\ + ["virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:7.5.9", {\ + "packageLocation": "./.yarn/__virtual__/ws-virtual-e09ea3009f/0/cache/ws-npm-7.5.9-26f12a5ed6-c3c100a181.zip/node_modules/ws/",\ "packageDependencies": [\ - ["ws", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:7.4.6"],\ + ["ws", "virtual:992e8a49329af27dec1603ba7ec6f83173fb73e1d5752e95d78d0bec9ff8e148a218f65e20742125a49b958677fd4d6119ec35f9c56f9b4ea72f0e32f53b591b#npm:7.5.9"],\ ["@types/bufferutil", null],\ ["@types/utf-8-validate", null],\ ["bufferutil", null],\ @@ -14011,10 +14352,10 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["virtual:a0c0d83e66563f51d601c822567e6d79b2ed7475481445e29115ee78d98a1ad5241e9e0cbf0e0eb707d80a4db444175061b5c5627b6aa1262f0868dc9ad1e7a1#npm:8.2.3", {\ - "packageLocation": "./.yarn/__virtual__/ws-virtual-d4fe871b31/0/cache/ws-npm-8.2.3-03a35b8ad7-c869296ccb.zip/node_modules/ws/",\ + ["virtual:ee531cd7dfd5026f7bba8760172e4108567cb8fc1127e57365281be51439b691f6dd1c82e657a9e658d51419256a96685c3291cee11b82603df44b409613475b#npm:8.11.0", {\ + "packageLocation": "./.yarn/__virtual__/ws-virtual-4b8d49934d/0/cache/ws-npm-8.11.0-ab72116a01-316b33aba3.zip/node_modules/ws/",\ "packageDependencies": [\ - ["ws", "virtual:a0c0d83e66563f51d601c822567e6d79b2ed7475481445e29115ee78d98a1ad5241e9e0cbf0e0eb707d80a4db444175061b5c5627b6aa1262f0868dc9ad1e7a1#npm:8.2.3"],\ + ["ws", "virtual:ee531cd7dfd5026f7bba8760172e4108567cb8fc1127e57365281be51439b691f6dd1c82e657a9e658d51419256a96685c3291cee11b82603df44b409613475b#npm:8.11.0"],\ ["@types/bufferutil", null],\ ["@types/utf-8-validate", null],\ ["bufferutil", null],\ @@ -14034,7 +14375,7 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { "packageLocation": "./.yarn/cache/xstream-npm-11.14.0-cb67d59ee0-eb96b5f9cd.zip/node_modules/xstream/",\ "packageDependencies": [\ ["xstream", "npm:11.14.0"],\ - ["globalthis", "npm:1.0.2"],\ + ["globalthis", "npm:1.0.3"],\ ["symbol-observable", "npm:2.0.3"]\ ],\ "linkType": "HARD"\ @@ -14057,6 +14398,13 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { }]\ ]],\ ["yallist", [\ + ["npm:3.1.1", {\ + "packageLocation": "./.yarn/cache/yallist-npm-3.1.1-a568a556b4-48f7bb00dc.zip/node_modules/yallist/",\ + "packageDependencies": [\ + ["yallist", "npm:3.1.1"]\ + ],\ + "linkType": "HARD"\ + }],\ ["npm:4.0.0", {\ "packageLocation": "./.yarn/cache/yallist-npm-4.0.0-b493d9e907-343617202a.zip/node_modules/yallist/",\ "packageDependencies": [\ @@ -14077,8 +14425,8 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["require-directory", "npm:2.1.1"],\ ["require-main-filename", "npm:2.0.0"],\ ["set-blocking", "npm:2.0.0"],\ - ["string-width", "npm:4.2.2"],\ - ["which-module", "npm:2.0.0"],\ + ["string-width", "npm:4.2.3"],\ + ["which-module", "npm:2.0.1"],\ ["y18n", "npm:4.0.3"],\ ["yargs-parser", "npm:18.1.3"]\ ],\ @@ -14092,9 +14440,9 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ["escalade", "npm:3.1.1"],\ ["get-caller-file", "npm:2.0.5"],\ ["require-directory", "npm:2.1.1"],\ - ["string-width", "npm:4.2.2"],\ + ["string-width", "npm:4.2.3"],\ ["y18n", "npm:5.0.8"],\ - ["yargs-parser", "npm:20.2.7"]\ + ["yargs-parser", "npm:20.2.9"]\ ],\ "linkType": "HARD"\ }]\ @@ -14109,19 +14457,19 @@ function $$SETUP_STATE(hydrateRuntimeState, basePath) { ],\ "linkType": "HARD"\ }],\ - ["npm:20.2.7", {\ - "packageLocation": "./.yarn/cache/yargs-parser-npm-20.2.7-5ab0b83136-ec0ea9e1b5.zip/node_modules/yargs-parser/",\ + ["npm:20.2.9", {\ + "packageLocation": "./.yarn/cache/yargs-parser-npm-20.2.9-a1d19e598d-8bb69015f2.zip/node_modules/yargs-parser/",\ "packageDependencies": [\ - ["yargs-parser", "npm:20.2.7"]\ + ["yargs-parser", "npm:20.2.9"]\ ],\ "linkType": "HARD"\ }]\ ]],\ ["ylru", [\ - ["npm:1.2.1", {\ - "packageLocation": "./.yarn/cache/ylru-npm-1.2.1-4471986a45-33c45248be.zip/node_modules/ylru/",\ + ["npm:1.3.2", {\ + "packageLocation": "./.yarn/cache/ylru-npm-1.3.2-81969d097f-b6bb393114.zip/node_modules/ylru/",\ "packageDependencies": [\ - ["ylru", "npm:1.2.1"]\ + ["ylru", "npm:1.3.2"]\ ],\ "linkType": "HARD"\ }]\ diff --git a/packages/amino/src/index.ts b/packages/amino/src/index.ts index 837c031128..95e9dce93d 100644 --- a/packages/amino/src/index.ts +++ b/packages/amino/src/index.ts @@ -32,7 +32,7 @@ export { } from "./pubkeys"; export { extractKdfConfiguration, Secp256k1HdWallet, Secp256k1HdWalletOptions } from "./secp256k1hdwallet"; export { Secp256k1Wallet } from "./secp256k1wallet"; -export { decodeSignature, encodeSecp256k1Signature, StdSignature } from "./signature"; +export { decodeSignature, encodeSecp256k1Signature, encodeEthSecp256k1Signature, StdSignature } from "./signature"; export { AminoMsg, makeSignDoc, serializeSignDoc, StdFee, StdSignDoc } from "./signdoc"; export { AccountData, Algo, AminoSignResponse, OfflineAminoSigner } from "./signer"; export { isStdTx, makeStdTx, StdTx } from "./stdtx"; diff --git a/packages/amino/src/signature.ts b/packages/amino/src/signature.ts index cea95b014b..31094a7984 100644 --- a/packages/amino/src/signature.ts +++ b/packages/amino/src/signature.ts @@ -1,7 +1,7 @@ /* eslint-disable @typescript-eslint/naming-convention */ import { fromBase64, toBase64 } from "@cosmjs/encoding"; -import { encodeSecp256k1Pubkey } from "./encoding"; +import { encodeSecp256k1Pubkey, encodeEthSecp256k1Pubkey } from "./encoding"; import { Pubkey, pubkeyType } from "./pubkeys"; export interface StdSignature { @@ -28,6 +28,19 @@ export function encodeSecp256k1Signature(pubkey: Uint8Array, signature: Uint8Arr }; } +export function encodeEthSecp256k1Signature(pubkey: Uint8Array, signature: Uint8Array): StdSignature { + if (signature.length !== 64) { + throw new Error( + "Signature must be 64 bytes long. Cosmos SDK uses a 2x32 byte fixed length encoding for the secp256k1 signature integers r and s.", + ); + } + + return { + pub_key: encodeEthSecp256k1Pubkey(pubkey), + signature: toBase64(signature), + }; +} + export function decodeSignature(signature: StdSignature): { readonly pubkey: Uint8Array; readonly signature: Uint8Array; diff --git a/packages/proto-signing/src/directsecp256k1hdwallet.spec.ts b/packages/proto-signing/src/directsecp256k1hdwallet.spec.ts index 24757783c2..fc30d39323 100644 --- a/packages/proto-signing/src/directsecp256k1hdwallet.spec.ts +++ b/packages/proto-signing/src/directsecp256k1hdwallet.spec.ts @@ -74,6 +74,7 @@ describe("DirectSecp256k1HdWallet", () => { { algo: "secp256k1", address: defaultAddress, + coinType: "1", pubkey: defaultPubkey, }, ]); @@ -99,26 +100,31 @@ describe("DirectSecp256k1HdWallet", () => { expect(accounts).toEqual([ { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("A08EGB7ro1ORuFhjOnZcSgwYlpe0DSFjVNUIkNNQxwKQ"), address: "wasm1pkptre7fdkl6gfrzlesjjvhxhlc3r4gm32kke3", }, { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("AiDosfIbBi54XJ1QjCeApumcy/FjdtF+YhywPf3DKTx7"), address: "wasm10dyr9899g6t0pelew4nvf4j5c3jcgv0r5d3a5l", }, { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("AzQg33JZqH7vSsm09esZY5bZvmzYwE/SY78cA0iLxpD7"), address: "wasm1xy4yqngt0nlkdcenxymg8tenrghmek4n3u2lwa", }, { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("A3gOAlB6aiRTCPvWMQg2+ZbGYNsLd8qlvV28m8p2UhY2"), address: "wasm142u9fgcjdlycfcez3lw8x6x5h7rfjlnfaallkd", }, { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("Aum2063ub/ErUnIUB36sK55LktGUStgcbSiaAnL1wadu"), address: "wasm1hsm76p4ahyhl5yh3ve9ur49r5kemhp2r93f89d", }, @@ -156,6 +162,7 @@ describe("DirectSecp256k1HdWallet", () => { { algo: "secp256k1", address: defaultAddress, + coinType: "1", pubkey: defaultPubkey, }, ]); @@ -202,26 +209,31 @@ describe("DirectSecp256k1HdWallet", () => { expect(accounts).toEqual([ { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("A08EGB7ro1ORuFhjOnZcSgwYlpe0DSFjVNUIkNNQxwKQ"), address: "wasm1pkptre7fdkl6gfrzlesjjvhxhlc3r4gm32kke3", }, { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("AiDosfIbBi54XJ1QjCeApumcy/FjdtF+YhywPf3DKTx7"), address: "wasm10dyr9899g6t0pelew4nvf4j5c3jcgv0r5d3a5l", }, { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("AzQg33JZqH7vSsm09esZY5bZvmzYwE/SY78cA0iLxpD7"), address: "wasm1xy4yqngt0nlkdcenxymg8tenrghmek4n3u2lwa", }, { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("A3gOAlB6aiRTCPvWMQg2+ZbGYNsLd8qlvV28m8p2UhY2"), address: "wasm142u9fgcjdlycfcez3lw8x6x5h7rfjlnfaallkd", }, { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("Aum2063ub/ErUnIUB36sK55LktGUStgcbSiaAnL1wadu"), address: "wasm1hsm76p4ahyhl5yh3ve9ur49r5kemhp2r93f89d", }, @@ -238,6 +250,7 @@ describe("DirectSecp256k1HdWallet", () => { expect(accounts[0]).toEqual({ address: defaultAddress, algo: "secp256k1", + coinType: "1", pubkey: defaultPubkey, }); }); diff --git a/packages/proto-signing/src/directsecp256k1hdwallet.ts b/packages/proto-signing/src/directsecp256k1hdwallet.ts index 326f9ab80a..da5191241d 100644 --- a/packages/proto-signing/src/directsecp256k1hdwallet.ts +++ b/packages/proto-signing/src/directsecp256k1hdwallet.ts @@ -1,4 +1,4 @@ -import { encodeSecp256k1Signature, makeCosmoshubPath, rawSecp256k1PubkeyToRawAddress } from "@cosmjs/amino"; +import { encodeSecp256k1Signature, encodeEthSecp256k1Signature, makeCosmoshubPath, rawSecp256k1PubkeyToRawAddress } from "@cosmjs/amino"; import { Bip39, EnglishMnemonic, @@ -11,8 +11,9 @@ import { Slip10, Slip10Curve, stringToPath, + Keccak256, } from "@cosmjs/crypto"; -import { fromBase64, fromUtf8, toBase64, toBech32, toUtf8 } from "@cosmjs/encoding"; +import { fromBase64, fromUtf8, toBase64, toBech32, toUtf8, fromHex, toHex, toAscii } from "@cosmjs/encoding"; import { assert, isNonNullObject } from "@cosmjs/utils"; import { SignDoc } from "cosmjs-types/cosmos/tx/v1beta1/tx"; @@ -260,8 +261,9 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { public async getAccounts(): Promise { const accountsWithPrivkeys = await this.getAccountsWithPrivkeys(); - return accountsWithPrivkeys.map(({ algo, pubkey, address }) => ({ + return accountsWithPrivkeys.map(({ algo, coinType, pubkey, address }) => ({ algo: algo, + coinType: coinType, pubkey: pubkey, address: address, })); @@ -275,14 +277,32 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { } const { privkey, pubkey } = account; const signBytes = makeSignBytes(signDoc); - const hashedMessage = sha256(signBytes); - const signature = await Secp256k1.createSignature(hashedMessage, privkey); - const signatureBytes = new Uint8Array([...signature.r(32), ...signature.s(32)]); - const stdSignature = encodeSecp256k1Signature(pubkey, signatureBytes); - return { - signed: signDoc, - signature: stdSignature, - }; + + + + if (account.coinType === "60'") { + // eth signing + const hashedMessage = new Keccak256(signBytes).digest() + const signature = await Secp256k1.createSignature(hashedMessage, privkey); + const signatureBytes = new Uint8Array([...signature.r(32), ...signature.s(32)]); + const stdSignature = encodeEthSecp256k1Signature(pubkey, signatureBytes); + + return { + signed: signDoc, + signature: stdSignature + }; + } else { + // cosmos sigining + const hashedMessage = sha256(signBytes); + const signature = await Secp256k1.createSignature(hashedMessage, privkey); + const signatureBytes = new Uint8Array([...signature.r(32), ...signature.s(32)]); + const stdSignature = encodeSecp256k1Signature(pubkey, signatureBytes); + + return { + signed: signDoc, + signature: stdSignature, + }; + } } /** @@ -336,24 +356,98 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { private async getKeyPair(hdPath: HdPath): Promise { const { privkey } = Slip10.derivePath(Slip10Curve.Secp256k1, this.seed, hdPath); const { pubkey } = await Secp256k1.makeKeypair(privkey); - return { - privkey: privkey, - pubkey: Secp256k1.compressPubkey(pubkey), - }; + + const coinType = pathToString(hdPath).split('/')[2] + switch (coinType) { + case "60'": + return { + privkey: privkey, + pubkey: pubkey, + }; + default: + return { + privkey: privkey, + pubkey: Secp256k1.compressPubkey(pubkey), + }; + } } private async getAccountsWithPrivkeys(): Promise { return Promise.all( this.accounts.map(async ({ hdPath, prefix }) => { const { privkey, pubkey } = await this.getKeyPair(hdPath); - const address = toBech32(prefix, rawSecp256k1PubkeyToRawAddress(pubkey)); - return { - algo: "secp256k1" as const, - privkey: privkey, - pubkey: pubkey, - address: address, - }; + + const coinType = pathToString(hdPath).split('/')[2] + switch (coinType) { + case "60'": + const hash = new Keccak256(pubkey.slice(1)).digest() + const lastTwentyBytes = toHex(hash.slice(-20)); + // EVM address + const address = DirectSecp256k1HdWallet.toChecksummedAddress('0x' + lastTwentyBytes) + + return { + algo: "secp256k1" as const, + coinType: coinType, + privkey: privkey, + pubkey: Secp256k1.compressPubkey(pubkey), + address: await DirectSecp256k1HdWallet.getBech32AddressFromEVMAddress(address, prefix) + }; + default: + return { + algo: "secp256k1" as const, + coinType: coinType, + privkey: privkey, + pubkey: pubkey, + address: toBech32(prefix, rawSecp256k1PubkeyToRawAddress(pubkey)), + }; + } }), ); } + private static async getBech32AddressFromEVMAddress(evmAddress: string, bech32Prefix: string): Promise { + if (!DirectSecp256k1HdWallet.isAddress(evmAddress.toLowerCase())) { + throw new TypeError('Please provide a valid EVM compatible address.'); + } + + var evmAddrWithoutHexPrefix = evmAddress.replace(/^(-)?0x/i, '$1'); + var evmAddressBytes = fromHex(evmAddrWithoutHexPrefix); + var evmToBech32Address = toBech32(bech32Prefix, evmAddressBytes); + return evmToBech32Address; + }; + private static isValidAddress(address: string): boolean { + if (!address.match(/^0x[a-fA-F0-9]{40}$/)) { + return false; + } + return true + } + private static toChecksummedAddress(address: string): string { + // 40 low hex characters + let addressLower; + if (typeof address === "string") { + if (!DirectSecp256k1HdWallet.isValidAddress(address)) { + throw new Error("Input is not a valid Ethereum address"); + } + addressLower = address.toLowerCase().replace("0x", ""); + } else { + addressLower = toHex(address); + } + + const addressHash = toHex(new Keccak256(toAscii(addressLower)).digest()); + let checksumAddress = "0x"; + for (let i = 0; i < 40; i++) { + checksumAddress += parseInt(addressHash[i], 16) > 7 ? addressLower[i].toUpperCase() : addressLower[i]; + } + return checksumAddress; + } + private static isAddress (address: string): boolean { + // check if it has the basic requirements of an address + if (!/^(0x)?[0-9a-f]{40}$/i.test(address)) { + return false; + // If it's ALL lowercase or ALL upppercase + } else if (/^(0x|0X)?[0-9a-f]{40}$/.test(address) || /^(0x|0X)?[0-9A-F]{40}$/.test(address)) { + return true; + // Otherwise check each case + } + return false + }; } diff --git a/packages/proto-signing/src/directsecp256k1wallet.spec.ts b/packages/proto-signing/src/directsecp256k1wallet.spec.ts index 58af6c3ace..e2adb3f39e 100644 --- a/packages/proto-signing/src/directsecp256k1wallet.spec.ts +++ b/packages/proto-signing/src/directsecp256k1wallet.spec.ts @@ -27,6 +27,7 @@ describe("DirectSecp256k1Wallet", () => { expect(accounts[0]).toEqual({ address: defaultAddress, algo: "secp256k1", + coinType: "118", pubkey: defaultPubkey, }); }); diff --git a/packages/proto-signing/src/directsecp256k1wallet.ts b/packages/proto-signing/src/directsecp256k1wallet.ts index 183d480bf2..e0e59f5afd 100644 --- a/packages/proto-signing/src/directsecp256k1wallet.ts +++ b/packages/proto-signing/src/directsecp256k1wallet.ts @@ -41,6 +41,7 @@ export class DirectSecp256k1Wallet implements OfflineDirectSigner { return [ { algo: "secp256k1", + coinType: "1", address: this.address, pubkey: this.pubkey, }, diff --git a/packages/proto-signing/src/signer.ts b/packages/proto-signing/src/signer.ts index 42ff2a8b46..7e7e560fd6 100644 --- a/packages/proto-signing/src/signer.ts +++ b/packages/proto-signing/src/signer.ts @@ -6,6 +6,7 @@ export interface AccountData { /** A printable address (typically bech32 encoded) */ readonly address: string; readonly algo: Algo; + readonly coinType: string; readonly pubkey: Uint8Array; } diff --git a/packages/stargate/src/signingstargateclient.ts b/packages/stargate/src/signingstargateclient.ts index 3106cbfbdc..5aca619e65 100644 --- a/packages/stargate/src/signingstargateclient.ts +++ b/packages/stargate/src/signingstargateclient.ts @@ -19,6 +19,7 @@ import { TendermintClient, } from "@cosmjs/tendermint-rpc"; import { assert, assertDefined } from "@cosmjs/utils"; +import { pathToString } from "@cosmjs/crypto"; import { Coin } from "cosmjs-types/cosmos/base/v1beta1/coin"; import { MsgWithdrawDelegatorReward } from "cosmjs-types/cosmos/distribution/v1beta1/tx"; import { MsgDelegate, MsgUndelegate } from "cosmjs-types/cosmos/staking/v1beta1/tx"; @@ -404,8 +405,7 @@ export class SigningStargateClient extends StargateClient { throw new Error("Failed to retrieve account from signer"); } - - const pubkey = encodePubkey (chainId.startsWith("evmos_9001-") ? encodeEthSecp256k1Pubkey(accountFromSigner.pubkey): encodeSecp256k1Pubkey(accountFromSigner.pubkey)); + const pubkey = encodePubkey (accountFromSigner.coinType === "60'" ? encodeEthSecp256k1Pubkey(accountFromSigner.pubkey): encodeSecp256k1Pubkey(accountFromSigner.pubkey)); const signMode = SignMode.SIGN_MODE_LEGACY_AMINO_JSON; const msgs = messages.map((msg) => this.aminoTypes.toAmino(msg)); const signDoc = makeSignDocAmino(msgs, fee, chainId, memo, accountNumber, sequence); @@ -450,7 +450,8 @@ export class SigningStargateClient extends StargateClient { if (!accountFromSigner) { throw new Error("Failed to retrieve account from signer"); } - const pubkey = encodePubkey (chainId.startsWith("evmos_9001-") ? encodeEthSecp256k1Pubkey(accountFromSigner.pubkey): encodeSecp256k1Pubkey(accountFromSigner.pubkey)); + + const pubkey = encodePubkey (accountFromSigner.coinType == "60'" ? encodeEthSecp256k1Pubkey(accountFromSigner.pubkey): encodeSecp256k1Pubkey(accountFromSigner.pubkey)); const txBodyEncodeObject: TxBodyEncodeObject = { typeUrl: "/cosmos.tx.v1beta1.TxBody", value: { diff --git a/yarn.lock b/yarn.lock index 9a683431cc..d08cb09c3b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5,10 +5,17 @@ __metadata: version: 6 cacheKey: 8 +"@aashutoshrathi/word-wrap@npm:^1.2.3": + version: 1.2.6 + resolution: "@aashutoshrathi/word-wrap@npm:1.2.6" + checksum: ada901b9e7c680d190f1d012c84217ce0063d8f5c5a7725bb91ec3c5ed99bb7572680eb2d2938a531ccbaec39a95422fcd8a6b4a13110c7d98dd75402f66a0cd + languageName: node + linkType: hard + "@agoric/babel-standalone@npm:^7.9.5": - version: 7.9.5 - resolution: "@agoric/babel-standalone@npm:7.9.5" - checksum: 19c459bc5cb723b1fd0e18a2a39a1f5302554991de05ac28f261bb59314a07b6477768f58c64c8104121a0278596fc29fda2651dcefd2c6678adc811085511eb + version: 7.17.7 + resolution: "@agoric/babel-standalone@npm:7.17.7" + checksum: a935c35fa80f4dfd1ed60459333bfce47fab252a9387f7cd5c7f589d698fc4aa81d457a38de7a7762708b385cb0cf01f9badf9481c2c2e7378a0d9f89ea3b93b languageName: node linkType: hard @@ -26,6 +33,16 @@ __metadata: languageName: node linkType: hard +"@ampproject/remapping@npm:^2.2.0": + version: 2.2.1 + resolution: "@ampproject/remapping@npm:2.2.1" + dependencies: + "@jridgewell/gen-mapping": ^0.3.0 + "@jridgewell/trace-mapping": ^0.3.9 + checksum: 03c04fd526acc64a1f4df22651186f3e5ef0a9d6d6530ce4482ec9841269cf7a11dbb8af79237c282d721c5312024ff17529cd72cc4768c11e999b58e2302079 + languageName: node + linkType: hard + "@babel/code-frame@npm:7.12.11": version: 7.12.11 resolution: "@babel/code-frame@npm:7.12.11" @@ -35,251 +52,244 @@ __metadata: languageName: node linkType: hard -"@babel/code-frame@npm:^7.12.13": - version: 7.12.13 - resolution: "@babel/code-frame@npm:7.12.13" +"@babel/code-frame@npm:^7.22.10, @babel/code-frame@npm:^7.22.5": + version: 7.22.10 + resolution: "@babel/code-frame@npm:7.22.10" dependencies: - "@babel/highlight": ^7.12.13 - checksum: d0491bb59fb8d7a763cb175c5504818cfd3647321d8eedb9173336d5c47dccce248628ee68b3ed3586c5efc753d8d990ceafe956f707dcf92572a1661b92b1ef + "@babel/highlight": ^7.22.10 + chalk: ^2.4.2 + checksum: 89a06534ad19759da6203a71bad120b1d7b2ddc016c8e07d4c56b35dea25e7396c6da60a754e8532a86733092b131ae7f661dbe6ba5d165ea777555daa2ed3c9 languageName: node linkType: hard -"@babel/compat-data@npm:^7.13.15": - version: 7.14.0 - resolution: "@babel/compat-data@npm:7.14.0" - checksum: 24a9ce6d2588ad9e5d07450bf47178c2dea97b51f1f2b1a37c2aa4d04e6413b91b3c8b2be2b97275244d2353560a9a99d1209c4ac0a995ff6b2d6fa747d96883 +"@babel/compat-data@npm:^7.22.9": + version: 7.22.9 + resolution: "@babel/compat-data@npm:7.22.9" + checksum: bed77d9044ce948b4327b30dd0de0779fa9f3a7ed1f2d31638714ed00229fa71fc4d1617ae0eb1fad419338d3658d0e9a5a083297451e09e73e078d0347ff808 languageName: node linkType: hard "@babel/core@npm:^7.7.5": - version: 7.14.3 - resolution: "@babel/core@npm:7.14.3" - dependencies: - "@babel/code-frame": ^7.12.13 - "@babel/generator": ^7.14.3 - "@babel/helper-compilation-targets": ^7.13.16 - "@babel/helper-module-transforms": ^7.14.2 - "@babel/helpers": ^7.14.0 - "@babel/parser": ^7.14.3 - "@babel/template": ^7.12.13 - "@babel/traverse": ^7.14.2 - "@babel/types": ^7.14.2 + version: 7.22.10 + resolution: "@babel/core@npm:7.22.10" + dependencies: + "@ampproject/remapping": ^2.2.0 + "@babel/code-frame": ^7.22.10 + "@babel/generator": ^7.22.10 + "@babel/helper-compilation-targets": ^7.22.10 + "@babel/helper-module-transforms": ^7.22.9 + "@babel/helpers": ^7.22.10 + "@babel/parser": ^7.22.10 + "@babel/template": ^7.22.5 + "@babel/traverse": ^7.22.10 + "@babel/types": ^7.22.10 convert-source-map: ^1.7.0 debug: ^4.1.0 gensync: ^1.0.0-beta.2 - json5: ^2.1.2 - semver: ^6.3.0 - source-map: ^0.5.0 - checksum: b91ed6adc790428966e134b9b8bfa1f2d54d8867877057ed9f9fcc354475a26d267afd6b0c84ac1a7ac7805bffc7b3353fdd9d894e58ef52c7c7e06f17044fd0 + json5: ^2.2.2 + semver: ^6.3.1 + checksum: cc4efa09209fe1f733cf512e9e4bb50870b191ab2dee8014e34cd6e731f204e48476cc53b4bbd0825d4d342304d577ae43ff5fd8ab3896080673c343321acb32 languageName: node linkType: hard -"@babel/generator@npm:^7.14.2, @babel/generator@npm:^7.14.3": - version: 7.14.3 - resolution: "@babel/generator@npm:7.14.3" +"@babel/generator@npm:^7.22.10": + version: 7.22.10 + resolution: "@babel/generator@npm:7.22.10" dependencies: - "@babel/types": ^7.14.2 + "@babel/types": ^7.22.10 + "@jridgewell/gen-mapping": ^0.3.2 + "@jridgewell/trace-mapping": ^0.3.17 jsesc: ^2.5.1 - source-map: ^0.5.0 - checksum: 2c104bbe531935d73a66b6c1370da2e986e94154e7e574bd081fe6abe0d493e39d94a38a4c07c415aa90281047f858a51967b74eed83fec17cbca98a657e864a - languageName: node - linkType: hard - -"@babel/helper-compilation-targets@npm:^7.13.16": - version: 7.13.16 - resolution: "@babel/helper-compilation-targets@npm:7.13.16" - dependencies: - "@babel/compat-data": ^7.13.15 - "@babel/helper-validator-option": ^7.12.17 - browserslist: ^4.14.5 - semver: ^6.3.0 - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 08c8fcd99808c07a357910ab0933a60a5269ee628f24e5fbfad6394646e5d38294e33835659b8556cde09a2a3afecf1235d9381cff4b433ad77cca7230502ce3 + checksum: 59a79730abdff9070692834bd3af179e7a9413fa2ff7f83dff3eb888765aeaeb2bfc7b0238a49613ed56e1af05956eff303cc139f2407eda8df974813e486074 languageName: node linkType: hard -"@babel/helper-function-name@npm:^7.14.2": - version: 7.14.2 - resolution: "@babel/helper-function-name@npm:7.14.2" +"@babel/helper-compilation-targets@npm:^7.22.10": + version: 7.22.10 + resolution: "@babel/helper-compilation-targets@npm:7.22.10" dependencies: - "@babel/helper-get-function-arity": ^7.12.13 - "@babel/template": ^7.12.13 - "@babel/types": ^7.14.2 - checksum: 70365d36ad1707e240916e160ced4bc1b3a57a0f4a1dfe7da3fd5c53afd1527610b53097c39deb72e63893bf5ad7d1676c7d546710043d24573347936103a9f0 + "@babel/compat-data": ^7.22.9 + "@babel/helper-validator-option": ^7.22.5 + browserslist: ^4.21.9 + lru-cache: ^5.1.1 + semver: ^6.3.1 + checksum: f6f1896816392bcff671bbe6e277307729aee53befb4a66ea126e2a91eda78d819a70d06fa384c74ef46c1595544b94dca50bef6c78438d9ffd31776dafbd435 languageName: node linkType: hard -"@babel/helper-get-function-arity@npm:^7.12.13": - version: 7.12.13 - resolution: "@babel/helper-get-function-arity@npm:7.12.13" - dependencies: - "@babel/types": ^7.12.13 - checksum: 847ef9f4d4b2dc38574db6b0732c3add1cd65d54bab94c24d319188f2066c9b9ab2b0dda539cae7281d12ec302e3335b11ca3dcfb555566138d213905d00f711 +"@babel/helper-environment-visitor@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-environment-visitor@npm:7.22.5" + checksum: 248532077d732a34cd0844eb7b078ff917c3a8ec81a7f133593f71a860a582f05b60f818dc5049c2212e5baa12289c27889a4b81d56ef409b4863db49646c4b1 languageName: node linkType: hard -"@babel/helper-member-expression-to-functions@npm:^7.13.12": - version: 7.13.12 - resolution: "@babel/helper-member-expression-to-functions@npm:7.13.12" +"@babel/helper-function-name@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-function-name@npm:7.22.5" dependencies: - "@babel/types": ^7.13.12 - checksum: 76a5ad6ae60bec5cbef56dc2ef0e08269a985c41137e50bce642dd6c1d228c5454f656ba0de4ec819dfcbced007ec516f3c1ceaffff8d17c3957e4608be0fc8c + "@babel/template": ^7.22.5 + "@babel/types": ^7.22.5 + checksum: 6b1f6ce1b1f4e513bf2c8385a557ea0dd7fa37971b9002ad19268ca4384bbe90c09681fe4c076013f33deabc63a53b341ed91e792de741b4b35e01c00238177a languageName: node linkType: hard -"@babel/helper-module-imports@npm:^7.13.12": - version: 7.13.12 - resolution: "@babel/helper-module-imports@npm:7.13.12" +"@babel/helper-hoist-variables@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-hoist-variables@npm:7.22.5" dependencies: - "@babel/types": ^7.13.12 - checksum: 9abb5e3acb5630bf519b4205b7784947b64f93d573ed13579d894611392e48cac40b598f67b34c7b342fc6ac6d2262dcdecf125cac8806888328e914b2775c43 + "@babel/types": ^7.22.5 + checksum: 394ca191b4ac908a76e7c50ab52102669efe3a1c277033e49467913c7ed6f7c64d7eacbeabf3bed39ea1f41731e22993f763b1edce0f74ff8563fd1f380d92cc languageName: node linkType: hard -"@babel/helper-module-transforms@npm:^7.14.2": - version: 7.14.2 - resolution: "@babel/helper-module-transforms@npm:7.14.2" +"@babel/helper-module-imports@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-module-imports@npm:7.22.5" dependencies: - "@babel/helper-module-imports": ^7.13.12 - "@babel/helper-replace-supers": ^7.13.12 - "@babel/helper-simple-access": ^7.13.12 - "@babel/helper-split-export-declaration": ^7.12.13 - "@babel/helper-validator-identifier": ^7.14.0 - "@babel/template": ^7.12.13 - "@babel/traverse": ^7.14.2 - "@babel/types": ^7.14.2 - checksum: cb6930cb45cf078c3057f60769ad5f6ec3e6bbbcfc6ea069aa4b1ead15642fe43ada1bb1c13bed66bcde74c0c4ca12be818aff3067562494429b7688e6a3ea16 + "@babel/types": ^7.22.5 + checksum: 9ac2b0404fa38b80bdf2653fbeaf8e8a43ccb41bd505f9741d820ed95d3c4e037c62a1bcdcb6c9527d7798d2e595924c4d025daed73283badc180ada2c9c49ad languageName: node linkType: hard -"@babel/helper-optimise-call-expression@npm:^7.12.13": - version: 7.12.13 - resolution: "@babel/helper-optimise-call-expression@npm:7.12.13" +"@babel/helper-module-transforms@npm:^7.22.9": + version: 7.22.9 + resolution: "@babel/helper-module-transforms@npm:7.22.9" dependencies: - "@babel/types": ^7.12.13 - checksum: 9925679d67a809c42b990825ee31f5f02787f385e27301da3343487f6a84482c7e2ebdd2b6d1ed066c309218750f2b7f78ab44dbb25ea6152f71d22839962a35 + "@babel/helper-environment-visitor": ^7.22.5 + "@babel/helper-module-imports": ^7.22.5 + "@babel/helper-simple-access": ^7.22.5 + "@babel/helper-split-export-declaration": ^7.22.6 + "@babel/helper-validator-identifier": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 2751f77660518cf4ff027514d6f4794f04598c6393be7b04b8e46c6e21606e11c19f3f57ab6129a9c21bacdf8b3ffe3af87bb401d972f34af2d0ffde02ac3001 languageName: node linkType: hard -"@babel/helper-replace-supers@npm:^7.13.12": - version: 7.14.3 - resolution: "@babel/helper-replace-supers@npm:7.14.3" +"@babel/helper-simple-access@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-simple-access@npm:7.22.5" dependencies: - "@babel/helper-member-expression-to-functions": ^7.13.12 - "@babel/helper-optimise-call-expression": ^7.12.13 - "@babel/traverse": ^7.14.2 - "@babel/types": ^7.14.2 - checksum: c01363c502951e9b2714e2b7fd56a59c3a5680af710e43384d9a494e0e822599d30fabeeca4373ae84e3d9e34e9f73c88a3f240f3aaeefbc6cea24da117ef776 + "@babel/types": ^7.22.5 + checksum: fe9686714caf7d70aedb46c3cce090f8b915b206e09225f1e4dbc416786c2fdbbee40b38b23c268b7ccef749dd2db35f255338fb4f2444429874d900dede5ad2 languageName: node linkType: hard -"@babel/helper-simple-access@npm:^7.13.12": - version: 7.13.12 - resolution: "@babel/helper-simple-access@npm:7.13.12" +"@babel/helper-split-export-declaration@npm:^7.22.6": + version: 7.22.6 + resolution: "@babel/helper-split-export-declaration@npm:7.22.6" dependencies: - "@babel/types": ^7.13.12 - checksum: afd0a8d1c7530a5184cd6fc23175d765a3eeb16f35c83090a90cec1010fcca684d238287c2e0f7ea9c0939d52235603986bd73c61e689d600f5dd1d1ef0ca204 + "@babel/types": ^7.22.5 + checksum: e141cace583b19d9195f9c2b8e17a3ae913b7ee9b8120246d0f9ca349ca6f03cb2c001fd5ec57488c544347c0bb584afec66c936511e447fd20a360e591ac921 languageName: node linkType: hard -"@babel/helper-split-export-declaration@npm:^7.12.13": - version: 7.12.13 - resolution: "@babel/helper-split-export-declaration@npm:7.12.13" - dependencies: - "@babel/types": ^7.12.13 - checksum: adc8954a0b7e44548425f62ce4dc865d3efa288f016852539d3eddaeec13cf4baff3f397b494dc0f609aab51942480891cbe1adc955e05fe048b7f92db2bcf20 +"@babel/helper-string-parser@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-string-parser@npm:7.22.5" + checksum: 836851ca5ec813077bbb303acc992d75a360267aa3b5de7134d220411c852a6f17de7c0d0b8c8dcc0f567f67874c00f4528672b2a4f1bc978a3ada64c8c78467 languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.14.0": - version: 7.14.0 - resolution: "@babel/helper-validator-identifier@npm:7.14.0" - checksum: 6276d57677bac403dd2e99176b4c7bc38ecdf757ac845c4339a2bf2f6f1003203caaa5af24880bcc7084ee59b6687a897263592cab21f49da29eb8c246f2a0d8 +"@babel/helper-validator-identifier@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-validator-identifier@npm:7.22.5" + checksum: 7f0f30113474a28298c12161763b49de5018732290ca4de13cdaefd4fd0d635a6fe3f6686c37a02905fb1e64f21a5ee2b55140cf7b070e729f1bd66866506aea languageName: node linkType: hard -"@babel/helper-validator-option@npm:^7.12.17": - version: 7.12.17 - resolution: "@babel/helper-validator-option@npm:7.12.17" - checksum: 940e7b78dc05508d726b721e06dfdbfd56fd8a56522ee37e9d6f3ed9bef6df5dba82a1d74434e7670b0e5e5caa699f1454a63254199df3cddc2a0829acf75e36 +"@babel/helper-validator-option@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-validator-option@npm:7.22.5" + checksum: bbeca8a85ee86990215c0424997438b388b8d642d69b9f86c375a174d3cdeb270efafd1ff128bc7a1d370923d13b6e45829ba8581c027620e83e3a80c5c414b3 languageName: node linkType: hard -"@babel/helpers@npm:^7.14.0": - version: 7.14.0 - resolution: "@babel/helpers@npm:7.14.0" +"@babel/helpers@npm:^7.22.10": + version: 7.22.10 + resolution: "@babel/helpers@npm:7.22.10" dependencies: - "@babel/template": ^7.12.13 - "@babel/traverse": ^7.14.0 - "@babel/types": ^7.14.0 - checksum: 276716f77cd5e439543e446bed25c1b541b855bb94ffe6f6193335653e17c044503fa194de25cc2f9208dbfa6b406c2cb77e4e0382f2ca4241bd6bf773dcd091 + "@babel/template": ^7.22.5 + "@babel/traverse": ^7.22.10 + "@babel/types": ^7.22.10 + checksum: 3b1219e362df390b6c5d94b75a53fc1c2eb42927ced0b8022d6a29b833a839696206b9bdad45b4805d05591df49fc16b6fb7db758c9c2ecfe99e3e94cb13020f languageName: node linkType: hard -"@babel/highlight@npm:^7.10.4, @babel/highlight@npm:^7.12.13": - version: 7.14.0 - resolution: "@babel/highlight@npm:7.14.0" +"@babel/highlight@npm:^7.10.4, @babel/highlight@npm:^7.22.10": + version: 7.22.10 + resolution: "@babel/highlight@npm:7.22.10" dependencies: - "@babel/helper-validator-identifier": ^7.14.0 - chalk: ^2.0.0 + "@babel/helper-validator-identifier": ^7.22.5 + chalk: ^2.4.2 js-tokens: ^4.0.0 - checksum: 5aae226c0d4caf66bbb2d11e961449b470eb952aa827b06da5921d845a5dc233789e2537aa1e7b0f567d1cae93feca3976d6b52c9d6d87481ed9ded0bebf13a2 + checksum: f714a1e1a72dd9d72f6383f4f30fd342e21a8df32d984a4ea8f5eab691bb6ba6db2f8823d4b4cf135d98869e7a98925b81306aa32ee3c429f8cfa52c75889e1b languageName: node linkType: hard -"@babel/parser@npm:^7.12.13, @babel/parser@npm:^7.14.2, @babel/parser@npm:^7.14.3": - version: 7.14.3 - resolution: "@babel/parser@npm:7.14.3" +"@babel/parser@npm:^7.22.10, @babel/parser@npm:^7.22.5": + version: 7.22.10 + resolution: "@babel/parser@npm:7.22.10" bin: parser: ./bin/babel-parser.js - checksum: 39653900d3a76fba8891fbe3e799f6619d2286dc57be0b95ce8d93e667eec4c52df58603d03fbdc11edcbd0b4110a5f7393538315e02a234178581033dbcb881 + checksum: af51567b7d3cdf523bc608eae057397486c7fa6c2e5753027c01fe5c36f0767b2d01ce3049b222841326cc5b8c7fda1d810ac1a01af0a97bb04679e2ef9f7049 languageName: node linkType: hard "@babel/runtime@npm:^7.11.2": - version: 7.14.0 - resolution: "@babel/runtime@npm:7.14.0" + version: 7.22.10 + resolution: "@babel/runtime@npm:7.22.10" dependencies: - regenerator-runtime: ^0.13.4 - checksum: 257dc2594355dd8798455f25b6f2f9a00f162b427391265752933e0e3337b3b14661d09283187d5039ae3764f723890ffe767e995c73d662f1d515bdf48e5ade + regenerator-runtime: ^0.14.0 + checksum: 524d41517e68953dbc73a4f3616b8475e5813f64e28ba89ff5fca2c044d535c2ea1a3f310df1e5bb06162e1f0b401b5c4af73fe6e2519ca2450d9d8c44cf268d languageName: node linkType: hard -"@babel/template@npm:^7.12.13": - version: 7.12.13 - resolution: "@babel/template@npm:7.12.13" +"@babel/template@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/template@npm:7.22.5" dependencies: - "@babel/code-frame": ^7.12.13 - "@babel/parser": ^7.12.13 - "@babel/types": ^7.12.13 - checksum: e0377316317ff55c794ec79f70d8f27b5cd3323ce76278ade525c264af669952b09613288221c76ee4abd49626a5f014a60ec4a637694c9121a1b77f820792d0 + "@babel/code-frame": ^7.22.5 + "@babel/parser": ^7.22.5 + "@babel/types": ^7.22.5 + checksum: c5746410164039aca61829cdb42e9a55410f43cace6f51ca443313f3d0bdfa9a5a330d0b0df73dc17ef885c72104234ae05efede37c1cc8a72dc9f93425977a3 languageName: node linkType: hard -"@babel/traverse@npm:^7.14.0, @babel/traverse@npm:^7.14.2": - version: 7.14.2 - resolution: "@babel/traverse@npm:7.14.2" +"@babel/traverse@npm:^7.22.10": + version: 7.22.10 + resolution: "@babel/traverse@npm:7.22.10" dependencies: - "@babel/code-frame": ^7.12.13 - "@babel/generator": ^7.14.2 - "@babel/helper-function-name": ^7.14.2 - "@babel/helper-split-export-declaration": ^7.12.13 - "@babel/parser": ^7.14.2 - "@babel/types": ^7.14.2 + "@babel/code-frame": ^7.22.10 + "@babel/generator": ^7.22.10 + "@babel/helper-environment-visitor": ^7.22.5 + "@babel/helper-function-name": ^7.22.5 + "@babel/helper-hoist-variables": ^7.22.5 + "@babel/helper-split-export-declaration": ^7.22.6 + "@babel/parser": ^7.22.10 + "@babel/types": ^7.22.10 debug: ^4.1.0 globals: ^11.1.0 - checksum: 054d5e44429254e1beade12c40e6fb0ea5a12242d4a17173da2d9c0f76644d0c32f578f3e284f6d8c059cea8f4c3c1a1e45a021ee4233dcf047341252d1022a3 + checksum: 9f7b358563bfb0f57ac4ed639f50e5c29a36b821a1ce1eea0c7db084f5b925e3275846d0de63bde01ca407c85d9804e0efbe370d92cd2baaafde3bd13b0f4cdb languageName: node linkType: hard -"@babel/types@npm:^7.12.13, @babel/types@npm:^7.13.12, @babel/types@npm:^7.14.0, @babel/types@npm:^7.14.2, @babel/types@npm:^7.8.3": - version: 7.14.2 - resolution: "@babel/types@npm:7.14.2" +"@babel/types@npm:^7.22.10, @babel/types@npm:^7.22.5, @babel/types@npm:^7.8.3": + version: 7.22.10 + resolution: "@babel/types@npm:7.22.10" dependencies: - "@babel/helper-validator-identifier": ^7.14.0 + "@babel/helper-string-parser": ^7.22.5 + "@babel/helper-validator-identifier": ^7.22.5 to-fast-properties: ^2.0.0 - checksum: b8e4796ba859e038c05b2cab20f029a017e881a97eaf53be431b617c4e4c5370d8a4701950866e526b8177053fa943db1b2d6e6c7269ad869e5a0c62e67e1274 + checksum: 095c4f4b7503fa816e4094113f0ec2351ef96ff32012010b771693066ff628c7c664b21c6bd3fb93aeb46fe7c61f6b3a3c9e4ed0034d6a2481201c417371c8af + languageName: node + linkType: hard + +"@colors/colors@npm:1.5.0": + version: 1.5.0 + resolution: "@colors/colors@npm:1.5.0" + checksum: d64d5260bed1d5012ae3fc617d38d1afc0329fec05342f4e6b838f46998855ba56e0a73833f4a80fa8378c84810da254f76a8a19c39d038260dc06dc4e007425 languageName: node linkType: hard @@ -1029,26 +1039,76 @@ __metadata: linkType: soft "@discoveryjs/json-ext@npm:^0.5.0": - version: 0.5.3 - resolution: "@discoveryjs/json-ext@npm:0.5.3" - checksum: fea319569f9894391ff1ddb5f59f9dfebe611ac202e7e97d9719ff9f7a726388e6a0a7e5ae8e54cf009ae1748269760d5842bfda5b9cbf834ceda28711baf89d + version: 0.5.7 + resolution: "@discoveryjs/json-ext@npm:0.5.7" + checksum: 2176d301cc258ea5c2324402997cf8134ebb212469c0d397591636cea8d3c02f2b3cf9fd58dcb748c7a0dade77ebdc1b10284fa63e608c033a1db52fddc69918 languageName: node linkType: hard -"@eslint/eslintrc@npm:^0.4.1": - version: 0.4.1 - resolution: "@eslint/eslintrc@npm:0.4.1" +"@eslint-community/eslint-utils@npm:^4.2.0": + version: 4.4.0 + resolution: "@eslint-community/eslint-utils@npm:4.4.0" + dependencies: + eslint-visitor-keys: ^3.3.0 + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + checksum: cdfe3ae42b4f572cbfb46d20edafe6f36fc5fb52bf2d90875c58aefe226892b9677fef60820e2832caf864a326fe4fc225714c46e8389ccca04d5f9288aabd22 + languageName: node + linkType: hard + +"@eslint-community/regexpp@npm:^4.4.0": + version: 4.6.2 + resolution: "@eslint-community/regexpp@npm:4.6.2" + checksum: a3c341377b46b54fa228f455771b901d1a2717f95d47dcdf40199df30abc000ba020f747f114f08560d119e979d882a94cf46cfc51744544d54b00319c0f2724 + languageName: node + linkType: hard + +"@eslint/eslintrc@npm:^0.4.3": + version: 0.4.3 + resolution: "@eslint/eslintrc@npm:0.4.3" dependencies: ajv: ^6.12.4 debug: ^4.1.1 espree: ^7.3.0 - globals: ^12.1.0 + globals: ^13.9.0 ignore: ^4.0.6 import-fresh: ^3.2.1 js-yaml: ^3.13.1 minimatch: ^3.0.4 strip-json-comments: ^3.1.1 - checksum: 85eeaa022eba510ff093040a66e67bf0b4c5e5aa8c39e3655e4fa6de929d1076e2320858325708b723b367d8aeaddd89e6fa5b34c8676a4d95246d099e1b1759 + checksum: 03a7704150b868c318aab6a94d87a33d30dc2ec579d27374575014f06237ba1370ae11178db772f985ef680d469dc237e7b16a1c5d8edaaeb8c3733e7a95a6d3 + languageName: node + linkType: hard + +"@humanwhocodes/config-array@npm:^0.5.0": + version: 0.5.0 + resolution: "@humanwhocodes/config-array@npm:0.5.0" + dependencies: + "@humanwhocodes/object-schema": ^1.2.0 + debug: ^4.1.1 + minimatch: ^3.0.4 + checksum: 44ee6a9f05d93dd9d5935a006b17572328ba9caff8002442f601736cbda79c580cc0f5a49ce9eb88fbacc5c3a6b62098357c2e95326cd17bb9f1a6c61d6e95e7 + languageName: node + linkType: hard + +"@humanwhocodes/object-schema@npm:^1.2.0": + version: 1.2.1 + resolution: "@humanwhocodes/object-schema@npm:1.2.1" + checksum: a824a1ec31591231e4bad5787641f59e9633827d0a2eaae131a288d33c9ef0290bd16fda8da6f7c0fcb014147865d12118df10db57f27f41e20da92369fcb3f1 + languageName: node + linkType: hard + +"@isaacs/cliui@npm:^8.0.2": + version: 8.0.2 + resolution: "@isaacs/cliui@npm:8.0.2" + dependencies: + string-width: ^5.1.2 + string-width-cjs: "npm:string-width@^4.2.0" + strip-ansi: ^7.0.1 + strip-ansi-cjs: "npm:strip-ansi@^6.0.1" + wrap-ansi: ^8.1.0 + wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0" + checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb languageName: node linkType: hard @@ -1066,15 +1126,13 @@ __metadata: linkType: hard "@istanbuljs/nyc-config-typescript@npm:^1.0.1": - version: 1.0.1 - resolution: "@istanbuljs/nyc-config-typescript@npm:1.0.1" + version: 1.0.2 + resolution: "@istanbuljs/nyc-config-typescript@npm:1.0.2" dependencies: "@istanbuljs/schema": ^0.1.2 peerDependencies: nyc: ">=15" - source-map-support: "*" - ts-node: "*" - checksum: b4106446f88a637a0b168d1fcee73510de0c403584dc2722e507c5fd874b2cb1e513349d63f2cfc6d58aa59f153cd66e910bb3c80c65a37ca01f8aafc484dffd + checksum: df6f9c9b17df8f1d8813f768c11ca31ec125d60bcd82d8273a467022e414d2d686ee80abb7b0f0e3c512b7ed686771fadb7fb5be8881619b9f6cb1f31b86e9f3 languageName: node linkType: hard @@ -1085,21 +1143,21 @@ __metadata: languageName: node linkType: hard -"@jridgewell/gen-mapping@npm:^0.3.0": - version: 0.3.2 - resolution: "@jridgewell/gen-mapping@npm:0.3.2" +"@jridgewell/gen-mapping@npm:^0.3.0, @jridgewell/gen-mapping@npm:^0.3.2": + version: 0.3.3 + resolution: "@jridgewell/gen-mapping@npm:0.3.3" dependencies: "@jridgewell/set-array": ^1.0.1 "@jridgewell/sourcemap-codec": ^1.4.10 "@jridgewell/trace-mapping": ^0.3.9 - checksum: 1832707a1c476afebe4d0fbbd4b9434fdb51a4c3e009ab1e9938648e21b7a97049fa6009393bdf05cab7504108413441df26d8a3c12193996e65493a4efb6882 + checksum: 4a74944bd31f22354fc01c3da32e83c19e519e3bbadafa114f6da4522ea77dd0c2842607e923a591d60a76699d819a2fbb6f3552e277efdb9b58b081390b60ab languageName: node linkType: hard -"@jridgewell/resolve-uri@npm:3.1.0, @jridgewell/resolve-uri@npm:^3.0.3": - version: 3.1.0 - resolution: "@jridgewell/resolve-uri@npm:3.1.0" - checksum: b5ceaaf9a110fcb2780d1d8f8d4a0bfd216702f31c988d8042e5f8fbe353c55d9b0f55a1733afdc64806f8e79c485d2464680ac48a0d9fcadb9548ee6b81d267 +"@jridgewell/resolve-uri@npm:^3.1.0": + version: 3.1.1 + resolution: "@jridgewell/resolve-uri@npm:3.1.1" + checksum: f5b441fe7900eab4f9155b3b93f9800a916257f4e8563afbcd3b5a5337b55e52bd8ae6735453b1b745457d9f6cdb16d74cd6220bbdd98cf153239e13f6cbb653 languageName: node linkType: hard @@ -1110,49 +1168,39 @@ __metadata: languageName: node linkType: hard -"@jridgewell/source-map@npm:^0.3.2": - version: 0.3.2 - resolution: "@jridgewell/source-map@npm:0.3.2" +"@jridgewell/source-map@npm:^0.3.3": + version: 0.3.5 + resolution: "@jridgewell/source-map@npm:0.3.5" dependencies: "@jridgewell/gen-mapping": ^0.3.0 "@jridgewell/trace-mapping": ^0.3.9 - checksum: 1b83f0eb944e77b70559a394d5d3b3f98a81fcc186946aceb3ef42d036762b52ef71493c6c0a3b7c1d2f08785f53ba2df1277fe629a06e6109588ff4cdcf7482 + checksum: 1ad4dec0bdafbade57920a50acec6634f88a0eb735851e0dda906fa9894e7f0549c492678aad1a10f8e144bfe87f238307bf2a914a1bc85b7781d345417e9f6f languageName: node linkType: hard -"@jridgewell/sourcemap-codec@npm:1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.10": - version: 1.4.14 - resolution: "@jridgewell/sourcemap-codec@npm:1.4.14" - checksum: 61100637b6d173d3ba786a5dff019e1a74b1f394f323c1fee337ff390239f053b87266c7a948777f4b1ee68c01a8ad0ab61e5ff4abb5a012a0b091bec391ab97 - languageName: node - linkType: hard - -"@jridgewell/trace-mapping@npm:^0.3.17": - version: 0.3.17 - resolution: "@jridgewell/trace-mapping@npm:0.3.17" - dependencies: - "@jridgewell/resolve-uri": 3.1.0 - "@jridgewell/sourcemap-codec": 1.4.14 - checksum: 9d703b859cff5cd83b7308fd457a431387db5db96bd781a63bf48e183418dd9d3d44e76b9e4ae13237f6abeeb25d739ec9215c1d5bfdd08f66f750a50074a339 +"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14": + version: 1.4.15 + resolution: "@jridgewell/sourcemap-codec@npm:1.4.15" + checksum: b881c7e503db3fc7f3c1f35a1dd2655a188cc51a3612d76efc8a6eb74728bef5606e6758ee77423e564092b4a518aba569bbb21c9bac5ab7a35b0c6ae7e344c8 languageName: node linkType: hard -"@jridgewell/trace-mapping@npm:^0.3.9": - version: 0.3.14 - resolution: "@jridgewell/trace-mapping@npm:0.3.14" +"@jridgewell/trace-mapping@npm:^0.3.17, @jridgewell/trace-mapping@npm:^0.3.9": + version: 0.3.19 + resolution: "@jridgewell/trace-mapping@npm:0.3.19" dependencies: - "@jridgewell/resolve-uri": ^3.0.3 - "@jridgewell/sourcemap-codec": ^1.4.10 - checksum: b9537b9630ffb631aef9651a085fe361881cde1772cd482c257fe3c78c8fd5388d681f504a9c9fe1081b1c05e8f75edf55ee10fdb58d92bbaa8dbf6a7bd6b18c + "@jridgewell/resolve-uri": ^3.1.0 + "@jridgewell/sourcemap-codec": ^1.4.14 + checksum: 956a6f0f6fec060fb48c6bf1f5ec2064e13cd38c8be3873877d4b92b4a27ba58289a34071752671262a3e3c202abcc3fa2aac64d8447b4b0fa1ba3c9047f1c20 languageName: node linkType: hard "@koa/cors@npm:^3.3": - version: 3.3.0 - resolution: "@koa/cors@npm:3.3.0" + version: 3.4.3 + resolution: "@koa/cors@npm:3.4.3" dependencies: vary: ^1.1.2 - checksum: bb49c680e0d151aec1b19c24c14d61b65f430eb379e63d83789602cc7d8e52706ebcd74867cdb60b1d50ddb6f3d59be04e1c46328fae5721aeaf50e0d4fc2d28 + checksum: 51a5b89b4ea19078272ea2702916c90375853b6cfb9b65bf7720653e99b36950c1fd90df66a77fb17839bb130dc7c9f83ccc0bcec40f9d09769f9ed77ced5f23 languageName: node linkType: hard @@ -1205,14 +1253,14 @@ __metadata: linkType: hard "@ledgerhq/hw-transport-webusb@npm:^5.25.0": - version: 5.51.1 - resolution: "@ledgerhq/hw-transport-webusb@npm:5.51.1" + version: 5.53.1 + resolution: "@ledgerhq/hw-transport-webusb@npm:5.53.1" dependencies: "@ledgerhq/devices": ^5.51.1 "@ledgerhq/errors": ^5.50.0 "@ledgerhq/hw-transport": ^5.51.1 "@ledgerhq/logs": ^5.50.0 - checksum: f03bbb38c46653f368cb6cc3b9978c462cf105e62ac86676b767eff07e14a917f830e6b58cbbf1b7b8a124631e779076a7f13430f0a79bd904b4d8054c473a59 + checksum: afdaf05fd215856a81a46ccc55a792d5830543239f8b3b79d65d6753b5714c5dfb07ed1ad337ff508b4cd7e677e49817019eae85fab73f9c1eb0e441dd47030e languageName: node linkType: hard @@ -1235,46 +1283,52 @@ __metadata: linkType: hard "@noble/hashes@npm:^1, @noble/hashes@npm:^1.0.0": - version: 1.0.0 - resolution: "@noble/hashes@npm:1.0.0" - checksum: bdf1c28a4b587e72ec6b0c504903239c6f96680b2c15a6d90d367512f468eeca12f2ee7bd25967a9529be2bedbf3f8d0a50c33368937f8dfef2a973d0661c7b5 + version: 1.3.1 + resolution: "@noble/hashes@npm:1.3.1" + checksum: 7fdefc0f7a0c1ec27acc6ff88841793e3f93ec4ce6b8a6a12bfc0dd70ae6b7c4c82fe305fdfeda1735d5ad4a9eebe761e6693b3d355689c559e91242f4bc95b1 languageName: node linkType: hard -"@nodelib/fs.scandir@npm:2.1.4": - version: 2.1.4 - resolution: "@nodelib/fs.scandir@npm:2.1.4" +"@nodelib/fs.scandir@npm:2.1.5": + version: 2.1.5 + resolution: "@nodelib/fs.scandir@npm:2.1.5" dependencies: - "@nodelib/fs.stat": 2.0.4 + "@nodelib/fs.stat": 2.0.5 run-parallel: ^1.1.9 - checksum: 18c2150ab52a042bd65babe5b70106e6586dc036644131c33d253ff99e5eeef2e65858ab40161530a6f22b512a65e7c7629f0f1e0f35c00ee4c606f960d375ba + checksum: a970d595bd23c66c880e0ef1817791432dbb7acbb8d44b7e7d0e7a22f4521260d4a83f7f9fd61d44fda4610105577f8f58a60718105fb38352baed612fd79e59 languageName: node linkType: hard -"@nodelib/fs.stat@npm:2.0.4, @nodelib/fs.stat@npm:^2.0.2": - version: 2.0.4 - resolution: "@nodelib/fs.stat@npm:2.0.4" - checksum: d0d9745f878816d041a8b36faf5797d88ba961274178f0ad1f7fe0efef8118ca9bd0e43e4d0d85a9af911bd35122ec1580e626a83d7595fc4d60f2c1c70e2665 +"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2": + version: 2.0.5 + resolution: "@nodelib/fs.stat@npm:2.0.5" + checksum: 012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0 languageName: node linkType: hard "@nodelib/fs.walk@npm:^1.2.3": - version: 1.2.6 - resolution: "@nodelib/fs.walk@npm:1.2.6" + version: 1.2.8 + resolution: "@nodelib/fs.walk@npm:1.2.8" dependencies: - "@nodelib/fs.scandir": 2.1.4 + "@nodelib/fs.scandir": 2.1.5 fastq: ^1.6.0 - checksum: d156901823b3d3de368ad68047a964523e0ce5f796c0aa7712443b1f748d8e7fc24ce2c0f18d22a177e1f1c6092bca609ab5e4cb1792c41cdc8a6989bc391139 + checksum: 190c643f156d8f8f277bf2a6078af1ffde1fd43f498f187c2db24d35b4b4b5785c02c7dc52e356497b9a1b65b13edc996de08de0b961c32844364da02986dc53 languageName: node linkType: hard -"@npmcli/move-file@npm:^1.0.1": - version: 1.1.2 - resolution: "@npmcli/move-file@npm:1.1.2" +"@npmcli/fs@npm:^3.1.0": + version: 3.1.0 + resolution: "@npmcli/fs@npm:3.1.0" dependencies: - mkdirp: ^1.0.4 - rimraf: ^3.0.2 - checksum: c96381d4a37448ea280951e46233f7e541058cf57a57d4094dd4bdcaae43fa5872b5f2eb6bfb004591a68e29c5877abe3cdc210cb3588cbf20ab2877f31a7de7 + semver: ^7.3.5 + checksum: a50a6818de5fc557d0b0e6f50ec780a7a02ab8ad07e5ac8b16bf519e0ad60a144ac64f97d05c443c3367235d337182e1d012bbac0eb8dbae8dc7b40b193efd0e + languageName: node + linkType: hard + +"@pkgjs/parseargs@npm:^0.11.0": + version: 0.11.0 + resolution: "@pkgjs/parseargs@npm:0.11.0" + checksum: 6ad6a00fc4f2f2cfc6bff76fb1d88b8ee20bc0601e18ebb01b6d4be583733a860239a521a7fbca73b612e66705078809483549d2b18f370eb346c5155c8e4a0f languageName: node linkType: hard @@ -1358,10 +1412,10 @@ __metadata: languageName: node linkType: hard -"@tootallnate/once@npm:1": - version: 1.1.2 - resolution: "@tootallnate/once@npm:1.1.2" - checksum: e1fb1bbbc12089a0cb9433dc290f97bddd062deadb6178ce9bcb93bb7c1aecde5e60184bc7065aec42fe1663622a213493c48bbd4972d931aae48315f18e1be9 +"@tootallnate/once@npm:2": + version: 2.0.0 + resolution: "@tootallnate/once@npm:2.0.0" + checksum: ad87447820dd3f24825d2d947ebc03072b20a42bfc96cbafec16bff8bbda6c1a81fcb0be56d5b21968560c5359a0af4038a68ba150c3e1694fe4c109a063bed8 languageName: node linkType: hard @@ -1375,18 +1429,18 @@ __metadata: linkType: hard "@types/babel-types@npm:*": - version: 7.0.9 - resolution: "@types/babel-types@npm:7.0.9" - checksum: 2beb83d4e566494e6617dd2d4953b17e704a9ef044fd57b23126ddbb37601c785994bb6d9b370ff8b8c8b814f029af1ef5eab440b06015f6111d37114116af8b + version: 7.0.11 + resolution: "@types/babel-types@npm:7.0.11" + checksum: 9b02719c7cf5062c9ab656a3b4efe3dd79e7a4ab49b5a2ce18d4ec1cb326588a1b40fc03863c24c9dec962f56762c53ed06cdc2a1c241c84e76e54a37a6195fc languageName: node linkType: hard "@types/babylon@npm:^6.16.3": - version: 6.16.5 - resolution: "@types/babylon@npm:6.16.5" + version: 6.16.6 + resolution: "@types/babylon@npm:6.16.6" dependencies: "@types/babel-types": "*" - checksum: e3671fd305515f67f5d94dad971d10f3d9866f21e343383cb6b8a3c10058d1f812441ef8125efbacdb6233f9fb6fd051267f0e4c55cd01f2bd1535ede7b002b4 + checksum: c011e028bc09457b9a488e5ad8bc081b43c0c7919419343eaef95aeda5e5bb825dc93c323af8e60d97373702d94ae006016e7c641a9be24fef0d9f5ecc2e54c0 languageName: node linkType: hard @@ -1398,37 +1452,37 @@ __metadata: linkType: hard "@types/bn.js@npm:*, @types/bn.js@npm:^5": - version: 5.1.0 - resolution: "@types/bn.js@npm:5.1.0" + version: 5.1.1 + resolution: "@types/bn.js@npm:5.1.1" dependencies: "@types/node": "*" - checksum: 1dc1cbbd7a1e8bf3614752e9602f558762a901031f499f3055828b5e3e2bba16e5b88c27b3c4152ad795248fbe4086c731a5c4b0f29bb243f1875beeeabee59c + checksum: e50ed2dd3abe997e047caf90e0352c71e54fc388679735217978b4ceb7e336e51477791b715f49fd77195ac26dd296c7bad08a3be9750e235f9b2e1edb1b51c2 languageName: node linkType: hard "@types/body-parser@npm:*": - version: 1.19.0 - resolution: "@types/body-parser@npm:1.19.0" + version: 1.19.2 + resolution: "@types/body-parser@npm:1.19.2" dependencies: "@types/connect": "*" "@types/node": "*" - checksum: 15043566f1909e2a08dabb0a5d2642f8988545a1369bc5995fc40ee90c95200da2aa66f9240fcb19fc6af6ff4e27ff453f311b49363c14bb308c308c0751ca9b + checksum: e17840c7d747a549f00aebe72c89313d09fbc4b632b949b2470c5cb3b1cb73863901ae84d9335b567a79ec5efcfb8a28ff8e3f36bc8748a9686756b6d5681f40 languageName: node linkType: hard "@types/connect@npm:*": - version: 3.4.34 - resolution: "@types/connect@npm:3.4.34" + version: 3.4.35 + resolution: "@types/connect@npm:3.4.35" dependencies: "@types/node": "*" - checksum: c6e2aa299cf3979c00602f48ce9163700f0cbfec6ba2a8e1506d08f51da0279805a478ea094252fad7c369a563ee033b359c708ab34b1763397c58d7e2df07ad + checksum: fe81351470f2d3165e8b12ce33542eef89ea893e36dd62e8f7d72566dfb7e448376ae962f9f3ea888547ce8b55a40020ca0e01d637fab5d99567673084542641 languageName: node linkType: hard "@types/content-disposition@npm:*": - version: 0.5.3 - resolution: "@types/content-disposition@npm:0.5.3" - checksum: 1b15b7af33619b2f2360501f6a4ecd68f03a70a138b28a0e2c02b7da7718cbfbf53256bc082ae161fd050358aff904f7c8ddf8b9dd96afe8a3c77ca581f9bc0a + version: 0.5.5 + resolution: "@types/content-disposition@npm:0.5.5" + checksum: fdf7379db1d509990bcf9a21d85f05aad878596f28b1418f9179f6436cb22513262c670ce88c6055054a7f5804a9303eeacb70aa59a5e11ffdc1434559db9692 languageName: node linkType: hard @@ -1440,21 +1494,23 @@ __metadata: linkType: hard "@types/cookies@npm:*": - version: 0.7.6 - resolution: "@types/cookies@npm:0.7.6" + version: 0.7.7 + resolution: "@types/cookies@npm:0.7.7" dependencies: "@types/connect": "*" "@types/express": "*" "@types/keygrip": "*" "@types/node": "*" - checksum: dffad49174d63798d34d922241480eb3a14f9d78427e601fa5be2d8bcc733fdddb9f66c52f3d3d43fc651d77c66d8111bc3005bb375ce83fdbd5b375761bd50d + checksum: d3759efc1182cb0651808570ae13638677b67b0ea724eef7b174e58ffe6ea044b62c7c2715e532f76f88fce4dd8101ed32ac6fbb73226db654017924e8a2a1e6 languageName: node linkType: hard "@types/cors@npm:^2.8.12": - version: 2.8.12 - resolution: "@types/cors@npm:2.8.12" - checksum: 8c45f112c7d1d2d831b4b266f2e6ed33a1887a35dcbfe2a18b28370751fababb7cd045e745ef84a523c33a25932678097bf79afaa367c6cb3fa0daa7a6438257 + version: 2.8.13 + resolution: "@types/cors@npm:2.8.13" + dependencies: + "@types/node": "*" + checksum: 7ef197ea19d2e5bf1313b8416baa6f3fd6dd887fd70191da1f804f557395357dafd8bc8bed0ac60686923406489262a7c8a525b55748f7b2b8afa686700de907 languageName: node linkType: hard @@ -1494,84 +1550,71 @@ __metadata: linkType: hard "@types/eslint@npm:*": - version: 7.2.10 - resolution: "@types/eslint@npm:7.2.10" + version: 8.44.2 + resolution: "@types/eslint@npm:8.44.2" dependencies: "@types/estree": "*" "@types/json-schema": "*" - checksum: 9c82e4733c22d9ebfb55b790985aaca8e7cf407a62deff1db4e7f21ccffee97ce9c0f8014782f8000742d85d1fddfd714ac4133cd92c8d8ae369fa9e865845e8 - languageName: node - linkType: hard - -"@types/estree@npm:*": - version: 0.0.47 - resolution: "@types/estree@npm:0.0.47" - checksum: aed5c940436250c25c5e140aa19e7199ba3452e72e1aecc515621507df9e5ed5076ddba84a1684c36d62be841ff3e2bafce8793f16fe6f69d10884449d4461e7 + checksum: 25b3ef61bae96350026593c9914c8a61ee02fde48ab8d568a73ee45032f13c0028c62e47a5ff78715af488dfe8e8bba913f7d30f859f60c7f9e639d328e80482 languageName: node linkType: hard -"@types/estree@npm:^0.0.51": - version: 0.0.51 - resolution: "@types/estree@npm:0.0.51" - checksum: e56a3bcf759fd9185e992e7fdb3c6a5f81e8ff120e871641607581fb3728d16c811702a7d40fa5f869b7f7b4437ab6a87eb8d98ffafeee51e85bbe955932a189 +"@types/estree@npm:*, @types/estree@npm:^1.0.0": + version: 1.0.1 + resolution: "@types/estree@npm:1.0.1" + checksum: e9aa175eacb797216fafce4d41e8202c7a75555bc55232dee0f9903d7171f8f19f0ae7d5191bb1a88cb90e65468be508c0df850a9fb81b4433b293a5a749899d languageName: node linkType: hard -"@types/express-serve-static-core@npm:^4.17.18": - version: 4.17.30 - resolution: "@types/express-serve-static-core@npm:4.17.30" +"@types/express-serve-static-core@npm:^4.17.33": + version: 4.17.35 + resolution: "@types/express-serve-static-core@npm:4.17.35" dependencies: "@types/node": "*" "@types/qs": "*" "@types/range-parser": "*" - checksum: c40d9027884ab9e97fa29d9d41d1b75a5966109312e26594cf03c61b278b5bf8e095f53589e47899b34a2e224291a44043617695c3e8bd22284f988e48582ee6 + "@types/send": "*" + checksum: cc8995d10c6feda475ec1b3a0e69eb0f35f21ab6b49129ad5c6f279e0bc5de8175bc04ec51304cb79a43eec3ed2f5a1e01472eb6d5f827b8c35c6ca8ad24eb6e languageName: node linkType: hard "@types/express@npm:*": - version: 4.17.13 - resolution: "@types/express@npm:4.17.13" + version: 4.17.17 + resolution: "@types/express@npm:4.17.17" dependencies: "@types/body-parser": "*" - "@types/express-serve-static-core": ^4.17.18 + "@types/express-serve-static-core": ^4.17.33 "@types/qs": "*" "@types/serve-static": "*" - checksum: 12a2a0e6c4b993fc0854bec665906788aea0d8ee4392389d7a98a5de1eefdd33c9e1e40a91f3afd274011119c506f7b4126acb97fae62ae20b654974d44cba12 + checksum: 0196dacc275ac3ce89d7364885cb08e7fb61f53ca101f65886dbf1daf9b7eb05c0943e2e4bbd01b0cc5e50f37e0eea7e4cbe97d0304094411ac73e1b7998f4da languageName: node linkType: hard "@types/http-assert@npm:*": - version: 1.5.1 - resolution: "@types/http-assert@npm:1.5.1" - checksum: 803633eeca6b2d043565960a891718a7632ad89a38959b67f40ad0fd20a639664b19332c6a9bae203ed0e7679b238d0a76d98bc68ba076cfcf450bbf244aa03b + version: 1.5.3 + resolution: "@types/http-assert@npm:1.5.3" + checksum: 9553e5a0b8bcfdac4b51d3fa3b89a91b5450171861a667a5b4c47204e0f4a1ca865d97396e6ceaf220e87b64d06b7a8bad7bfba15ef97acb41a87507c9940dbc languageName: node linkType: hard "@types/http-errors@npm:*": - version: 1.8.0 - resolution: "@types/http-errors@npm:1.8.0" - checksum: 72b4721a2894f045202b005833d49afe085dc44cf6abc083a081676f0ec6ff812f150ad40704d1409e268b33d4fe1fd32264d5583e2e3cbb55eb97bb4afd3c13 + version: 2.0.1 + resolution: "@types/http-errors@npm:2.0.1" + checksum: 3bb0c50b0a652e679a84c30cd0340d696c32ef6558518268c238840346c077f899315daaf1c26c09c57ddd5dc80510f2a7f46acd52bf949e339e35ed3ee9654f languageName: node linkType: hard "@types/jasmine@npm:*, @types/jasmine@npm:^4": - version: 4.0.3 - resolution: "@types/jasmine@npm:4.0.3" - checksum: 9d2af9ddb5750667bc9a3b439542fc9457c6eac2ab2c74801f598b03b9bc5cee1338fa8e75e6804dff1856e64539e8b0e3962ed8664a702f362d3db62eb9cd3a + version: 4.3.5 + resolution: "@types/jasmine@npm:4.3.5" + checksum: 33839af6efd42bed948cb49de117821649de952228b3bf4743af09ef9d1736a6e9e9500750f04ffa74e308f00781f697092dadde4e038e2f041e741b087ceb9b languageName: node linkType: hard -"@types/json-schema@npm:*, @types/json-schema@npm:^7.0.9": - version: 7.0.9 - resolution: "@types/json-schema@npm:7.0.9" - checksum: 259d0e25f11a21ba5c708f7ea47196bd396e379fddb79c76f9f4f62c945879dc21657904914313ec2754e443c5018ea8372362f323f30e0792897fdb2098a705 - languageName: node - linkType: hard - -"@types/json-schema@npm:^7.0.8": - version: 7.0.11 - resolution: "@types/json-schema@npm:7.0.11" - checksum: 527bddfe62db9012fccd7627794bd4c71beb77601861055d87e3ee464f2217c85fca7a4b56ae677478367bbd248dbde13553312b7d4dbc702a2f2bbf60c4018d +"@types/json-schema@npm:*, @types/json-schema@npm:^7.0.8, @types/json-schema@npm:^7.0.9": + version: 7.0.12 + resolution: "@types/json-schema@npm:7.0.12" + checksum: 00239e97234eeb5ceefb0c1875d98ade6e922bfec39dd365ec6bd360b5c2f825e612ac4f6e5f1d13601b8b30f378f15e6faa805a3a732f4a1bbe61915163d293 languageName: node linkType: hard @@ -1583,20 +1626,20 @@ __metadata: linkType: hard "@types/karma-firefox-launcher@npm:^2": - version: 2.1.0 - resolution: "@types/karma-firefox-launcher@npm:2.1.0" + version: 2.1.1 + resolution: "@types/karma-firefox-launcher@npm:2.1.1" dependencies: "@types/karma": "*" - checksum: ee4f99a9d43c2706d68e11e8a8ec48f9aa48f8d62430da9e6074468bba7a56c65aab267f9995f1fe93301ed708229ab659f1d671cfc5ba7b558af72440ba1f7b + checksum: a08eb13438e43e636737bd622b11f1473296f9338b2b8d734be57d4007b510fa523110c7bee0940c13aa7062aa5a4cef9a7e101f2ca2d7697c3ee091756dfa5b languageName: node linkType: hard "@types/karma-jasmine-html-reporter@npm:^1": - version: 1.5.1 - resolution: "@types/karma-jasmine-html-reporter@npm:1.5.1" + version: 1.7.0 + resolution: "@types/karma-jasmine-html-reporter@npm:1.7.0" dependencies: "@types/karma": "*" - checksum: d6674efa6433f8b6cf9ff9669f1d2e46ada82d0538be9b45926dcb4c5075617120b0aaddc173efbcc43e885dcb38ac833b0b162512095772fcb4eefbe6cfc723 + checksum: 1cf480183dced8c772c7cf272bf926596e68dd9e4a419a3a15ae8cac066bbf6f64cac5141aa3bdc5f87f3695b9b34d4886f122a299d2daa575cfcd55a6668818 languageName: node linkType: hard @@ -1611,12 +1654,12 @@ __metadata: linkType: hard "@types/karma@npm:*": - version: 6.3.0 - resolution: "@types/karma@npm:6.3.0" + version: 6.3.4 + resolution: "@types/karma@npm:6.3.4" dependencies: "@types/node": "*" - log4js: ^6.2.1 - checksum: 0f4485f9d2a1ec6193a70a4d7a31182cc150268b6c3d9136b7aa0e152a143c99e14e0a5f9b1d972bfe883bacce3230756c33da1063aeb018f3ef19fd4b9ac96c + log4js: ^6.4.1 + checksum: 90fb121d8d0ae941b4a75015e35d6733a8eae857d0fd154bd13dc9b07ff955d3a52111ecc53a50e5901dad0fff44548bfb02a4f9dabf6ac70783a68d4d74889c languageName: node linkType: hard @@ -1628,11 +1671,11 @@ __metadata: linkType: hard "@types/koa-bodyparser@npm:^4.3": - version: 4.3.7 - resolution: "@types/koa-bodyparser@npm:4.3.7" + version: 4.3.10 + resolution: "@types/koa-bodyparser@npm:4.3.10" dependencies: "@types/koa": "*" - checksum: 3a2cac14cb4a720d017d7708fbe9e8a310b5ecebbe62703a2606bb48c775fbeaf9fd601ba9cb7add03c7059f90327d8bcad3d70443eaea383b117b5c020054ec + checksum: 4b4cd176815a6c1fb0d593bfea03de1285e606d3a96e56ad3691144e35061750ed95e4ecf2ff8e25599d360a93646e29dbb167fdfaaa73ccf87ca5b6141ff0db languageName: node linkType: hard @@ -1646,8 +1689,8 @@ __metadata: linkType: hard "@types/koa@npm:*, @types/koa@npm:^2.13": - version: 2.13.4 - resolution: "@types/koa@npm:2.13.4" + version: 2.13.8 + resolution: "@types/koa@npm:2.13.8" dependencies: "@types/accepts": "*" "@types/content-disposition": "*" @@ -1657,16 +1700,16 @@ __metadata: "@types/keygrip": "*" "@types/koa-compose": "*" "@types/node": "*" - checksum: 35a54e68944f74d6763537d55d01f8ed870d0ef816b5f27fce97a317b237540b7c249dc4a54abab44ad0afd0ce010b335122c9efb490b9589affe7929201d707 + checksum: 76a2a6d219c65f242a43efca42970d864701c58319c346a91dd8c3b4df2021786fd0d600a88dfb098358c9085f9f4a2dfe62563641441cf21e11e2bfe04f4fdf languageName: node linkType: hard "@types/koa__cors@npm:^3.3": - version: 3.3.0 - resolution: "@types/koa__cors@npm:3.3.0" + version: 3.3.1 + resolution: "@types/koa__cors@npm:3.3.1" dependencies: "@types/koa": "*" - checksum: c1aeb10b070e72b6c01a2f6abb4b0a936017794ef4eab3469697a4e24ef2054bc371519afa90c8e6c5ea9dbeda58395a64400bd499c3fda207cb593b751b44ca + checksum: 816303d34c1b92627cfaea5327d25cff86d8eb969e5866af4c3769ec158c4575ab5b6fa01145eec0eeb61019648bc165981becf3a13001ec67a83ef9994e0e29 languageName: node linkType: hard @@ -1692,11 +1735,11 @@ __metadata: linkType: hard "@types/ledgerhq__hw-transport@npm:*, @types/ledgerhq__hw-transport@npm:^4.21.3": - version: 4.21.3 - resolution: "@types/ledgerhq__hw-transport@npm:4.21.3" + version: 4.21.4 + resolution: "@types/ledgerhq__hw-transport@npm:4.21.4" dependencies: "@types/node": "*" - checksum: 1f64b4bc4982bc5af80244b10d83ff0ccca7ab40a62464a807066f9f8ceede7489b824da5973e4eccb13261e36e0ceba230d1b3d376eba15b9c07ca76f97fd03 + checksum: f47bb5c1ca339ca3e44dbe2205aed11d22037eb9c071ca2ed99026be99b219170c1f21e07a13c2405d91333846803608cee7fd6f3a91e11d6e32c062da699a22 languageName: node linkType: hard @@ -1717,9 +1760,16 @@ __metadata: linkType: hard "@types/long@npm:^4.0.1": - version: 4.0.1 - resolution: "@types/long@npm:4.0.1" - checksum: ff9653c33f5000d0f131fd98a950a0343e2e33107dd067a97ac4a3b9678e1a2e39ea44772ad920f54ef6e8f107f76bc92c2584ba905a0dc4253282a4101166d0 + version: 4.0.2 + resolution: "@types/long@npm:4.0.2" + checksum: d16cde7240d834cf44ba1eaec49e78ae3180e724cd667052b194a372f350d024cba8dd3f37b0864931683dab09ca935d52f0c4c1687178af5ada9fc85b0635f4 + languageName: node + linkType: hard + +"@types/mime@npm:*": + version: 3.0.1 + resolution: "@types/mime@npm:3.0.1" + checksum: 4040fac73fd0cea2460e29b348c1a6173da747f3a87da0dbce80dd7a9355a3d0e51d6d9a401654f3e5550620e3718b5a899b2ec1debf18424e298a2c605346e7 languageName: node linkType: hard @@ -1731,39 +1781,46 @@ __metadata: linkType: hard "@types/node-hid@npm:*": - version: 1.3.0 - resolution: "@types/node-hid@npm:1.3.0" + version: 1.3.1 + resolution: "@types/node-hid@npm:1.3.1" dependencies: "@types/node": "*" - checksum: 3ef3db887360c1b57ab43bfa7c127dcf61bc9d86babaf62c700d9640623e10ff8bdda11612f2b4b9c0ac4008ea97838f39e5d22087c137226f2896322f85c9df + checksum: 30a01c916ed345ad4bd65d6c7983473df7daa8676e85a0ce56e18cccad908d5941fc261d39047a1995b5d9b9a5e351a625a708d9d58eb59921a0e495b178242c + languageName: node + linkType: hard + +"@types/node@npm:*, @types/node@npm:>=10.0.0, @types/node@npm:>=13.7.0": + version: 20.5.0 + resolution: "@types/node@npm:20.5.0" + checksum: 659bc5fc93b5c02bd88ca4bfae4f6b9dc307d45884d1dd9d69df85819a9943cdc00cd3c87eec3048866df6a67f52297f74d170e47a44f61edb3e8f770d94e85e languageName: node linkType: hard -"@types/node@npm:*, @types/node@npm:>=10.0.0, @types/node@npm:>=13.7.0, @types/node@npm:^18": - version: 18.15.11 - resolution: "@types/node@npm:18.15.11" - checksum: 977b4ad04708897ff0eb049ecf82246d210939c82461922d20f7d2dcfd81bbc661582ba3af28869210f7e8b1934529dcd46bff7d448551400f9d48b9d3bddec3 +"@types/node@npm:^18": + version: 18.17.5 + resolution: "@types/node@npm:18.17.5" + checksum: b8c658a99234b99425243c324b641ed7b9ceb6bee6b06421fdc9bb7c58f9a5552e353225cc549e6982462ac384abe1985022ed76e2e4728797f59b21f659ca2b languageName: node linkType: hard "@types/pako@npm:^1.0.1": - version: 1.0.1 - resolution: "@types/pako@npm:1.0.1" - checksum: 998b8be64d79fc656637adf25526137f582d72eceacb10b5de88c5adcaa3a1da27b061dedf0c9e953002fbe2cac30123dad87344ab6b2ae99463b2846459c67d + version: 1.0.4 + resolution: "@types/pako@npm:1.0.4" + checksum: a7ee316fad8e01b895d97fd6db771624d28d7bab43693db563dba768ca6d563aacf99e6d1045288366fec5cd2cb379bf86ef947848690ea648470b21d9a572c5 languageName: node linkType: hard "@types/qs@npm:*": - version: 6.9.6 - resolution: "@types/qs@npm:6.9.6" - checksum: 01871b1cf7062717ec76fcb9b29ddae1e04fcfadc1c76d86ec2571e72f27bf09ff31b094b295be8d4ca664aeec9b8965563680b31fcab7aba1ed93afac5181cd + version: 6.9.7 + resolution: "@types/qs@npm:6.9.7" + checksum: 7fd6f9c25053e9b5bb6bc9f9f76c1d89e6c04f7707a7ba0e44cc01f17ef5284adb82f230f542c2d5557d69407c9a40f0f3515e8319afd14e1e16b5543ac6cdba languageName: node linkType: hard "@types/range-parser@npm:*": - version: 1.2.3 - resolution: "@types/range-parser@npm:1.2.3" - checksum: a0a4218214d2c599e2128a8965e9183d1f0b8fc614def43a2183cf80534d10fcf86357c823c7907e779df0ab048fd1fa3818b4c8f0f6f99ba150a3f99df7d03d + version: 1.2.4 + resolution: "@types/range-parser@npm:1.2.4" + checksum: b7c0dfd5080a989d6c8bb0b6750fc0933d9acabeb476da6fe71d8bdf1ab65e37c136169d84148034802f48378ab94e3c37bb4ef7656b2bec2cb9c0f8d4146a95 languageName: node linkType: hard @@ -1774,13 +1831,24 @@ __metadata: languageName: node linkType: hard -"@types/serve-static@npm:*": - version: 1.13.9 - resolution: "@types/serve-static@npm:1.13.9" +"@types/send@npm:*": + version: 0.17.1 + resolution: "@types/send@npm:0.17.1" dependencies: "@types/mime": ^1 "@types/node": "*" - checksum: 5c5f3b64e9fe7c51fb428ef70f1f2365b897fc3c8400be6d6afc8db0f152639182b360361ebd3d0cbaeb607b125dee03bf0c50bf7e08642ff150028f05bb7381 + checksum: 10b620a5960058ef009afbc17686f680d6486277c62f640845381ec4baa0ea683fdd77c3afea4803daf5fcddd3fb2972c8aa32e078939f1d4e96f83195c89793 + languageName: node + linkType: hard + +"@types/serve-static@npm:*": + version: 1.15.2 + resolution: "@types/serve-static@npm:1.15.2" + dependencies: + "@types/http-errors": "*" + "@types/mime": "*" + "@types/node": "*" + checksum: 15c261dbfc57890f7cc17c04d5b22b418dfa0330c912b46c5d8ae2064da5d6f844ef7f41b63c7f4bbf07675e97ebe6ac804b032635ec742ae45d6f1274259b3e languageName: node linkType: hard @@ -1794,33 +1862,33 @@ __metadata: linkType: hard "@types/yargs-parser@npm:*": - version: 20.2.0 - resolution: "@types/yargs-parser@npm:20.2.0" - checksum: 54cf3f8d2c7db47e200e8c96e05b3b33ee554e78d29f3db55f04ca4b86dc6b8ff6b1349f5772268ce2d365cde0a0f4fdd92bf5933c2be2c1ea3f19f0b4599e1f + version: 21.0.0 + resolution: "@types/yargs-parser@npm:21.0.0" + checksum: b2f4c8d12ac18a567440379909127cf2cec393daffb73f246d0a25df36ea983b93b7e9e824251f959e9f928cbc7c1aab6728d0a0ff15d6145f66cec2be67d9a2 languageName: node linkType: hard "@types/yargs@npm:^15.0.4": - version: 15.0.13 - resolution: "@types/yargs@npm:15.0.13" + version: 15.0.15 + resolution: "@types/yargs@npm:15.0.15" dependencies: "@types/yargs-parser": "*" - checksum: a6ebb0ec63f168280e02370fcf24ff29c3eb0335e1c46e3b34e04d32eb7c818446e0b7de8badb339b07c0ddba322827ce13ccb604d14a0de422335ae56b2120d + checksum: 3420f6bcc508a895ef91858f8e6de975c710e4498cf6ed293f1174d3f1ad56edb4ab8481219bf6190f64a3d4115fab1d13ab3edc90acd54fba7983144040e446 languageName: node linkType: hard "@typescript-eslint/eslint-plugin@npm:^5.54.0": - version: 5.54.0 - resolution: "@typescript-eslint/eslint-plugin@npm:5.54.0" + version: 5.62.0 + resolution: "@typescript-eslint/eslint-plugin@npm:5.62.0" dependencies: - "@typescript-eslint/scope-manager": 5.54.0 - "@typescript-eslint/type-utils": 5.54.0 - "@typescript-eslint/utils": 5.54.0 + "@eslint-community/regexpp": ^4.4.0 + "@typescript-eslint/scope-manager": 5.62.0 + "@typescript-eslint/type-utils": 5.62.0 + "@typescript-eslint/utils": 5.62.0 debug: ^4.3.4 - grapheme-splitter: ^1.0.4 + graphemer: ^1.4.0 ignore: ^5.2.0 natural-compare-lite: ^1.4.0 - regexpp: ^3.2.0 semver: ^7.3.7 tsutils: ^3.21.0 peerDependencies: @@ -1829,43 +1897,43 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 4fdb520b8e0f6b9eb878206ddfa4212522f170d1507d7aba8a975159a198efa37af6d2d17982dd560317452d0748f2e2da5dd7347b172bc4446d1c5562ce2e94 + checksum: fc104b389c768f9fa7d45a48c86d5c1ad522c1d0512943e782a56b1e3096b2cbcc1eea3fcc590647bf0658eef61aac35120a9c6daf979bf629ad2956deb516a1 languageName: node linkType: hard "@typescript-eslint/parser@npm:^5.54.0": - version: 5.54.0 - resolution: "@typescript-eslint/parser@npm:5.54.0" + version: 5.62.0 + resolution: "@typescript-eslint/parser@npm:5.62.0" dependencies: - "@typescript-eslint/scope-manager": 5.54.0 - "@typescript-eslint/types": 5.54.0 - "@typescript-eslint/typescript-estree": 5.54.0 + "@typescript-eslint/scope-manager": 5.62.0 + "@typescript-eslint/types": 5.62.0 + "@typescript-eslint/typescript-estree": 5.62.0 debug: ^4.3.4 peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 368d6dd85be42c3f518f0ddeed23ecd1d3c9484a77ae291ee4e08e2703ed379bed613bde014cd8ab2a3e06e85dd8aef201112ae5e3d2a07deba29ae80bb1fe06 + checksum: d168f4c7f21a7a63f47002e2d319bcbb6173597af5c60c1cf2de046b46c76b4930a093619e69faf2d30214c29ab27b54dcf1efc7046a6a6bd6f37f59a990e752 languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:5.54.0": - version: 5.54.0 - resolution: "@typescript-eslint/scope-manager@npm:5.54.0" +"@typescript-eslint/scope-manager@npm:5.62.0": + version: 5.62.0 + resolution: "@typescript-eslint/scope-manager@npm:5.62.0" dependencies: - "@typescript-eslint/types": 5.54.0 - "@typescript-eslint/visitor-keys": 5.54.0 - checksum: e50f12396de0ddb94aab119bdd5f4769b80dd2c273e137fd25e5811e25114d7a3d3668cdb3c454aca9537e940744881d62a1fed2ec86f07f60533dc7382ae15c + "@typescript-eslint/types": 5.62.0 + "@typescript-eslint/visitor-keys": 5.62.0 + checksum: 6062d6b797fe1ce4d275bb0d17204c827494af59b5eaf09d8a78cdd39dadddb31074dded4297aaf5d0f839016d601032857698b0e4516c86a41207de606e9573 languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:5.54.0": - version: 5.54.0 - resolution: "@typescript-eslint/type-utils@npm:5.54.0" +"@typescript-eslint/type-utils@npm:5.62.0": + version: 5.62.0 + resolution: "@typescript-eslint/type-utils@npm:5.62.0" dependencies: - "@typescript-eslint/typescript-estree": 5.54.0 - "@typescript-eslint/utils": 5.54.0 + "@typescript-eslint/typescript-estree": 5.62.0 + "@typescript-eslint/utils": 5.62.0 debug: ^4.3.4 tsutils: ^3.21.0 peerDependencies: @@ -1873,23 +1941,23 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 9cb5b52c7277bdf74b9ea3282fc40f41fda90ea4b1d33039044476e43cf05a766b1294e7d45f429594f2776828f7d17729cfa4ea027315f3df883e748ba57514 + checksum: fc41eece5f315dfda14320be0da78d3a971d650ea41300be7196934b9715f3fe1120a80207551eb71d39568275dbbcf359bde540d1ca1439d8be15e9885d2739 languageName: node linkType: hard -"@typescript-eslint/types@npm:5.54.0": - version: 5.54.0 - resolution: "@typescript-eslint/types@npm:5.54.0" - checksum: 0f66b1b93078f3afea6dfcd3d4e2f0abea4f60cd0c613c2cf13f85098e5bf786185484c9846ed80b6c4272de2c31a70c5a8aacb91314cf1b6da7dcb8855cb7ac +"@typescript-eslint/types@npm:5.62.0": + version: 5.62.0 + resolution: "@typescript-eslint/types@npm:5.62.0" + checksum: 48c87117383d1864766486f24de34086155532b070f6264e09d0e6139449270f8a9559cfef3c56d16e3bcfb52d83d42105d61b36743626399c7c2b5e0ac3b670 languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:5.54.0": - version: 5.54.0 - resolution: "@typescript-eslint/typescript-estree@npm:5.54.0" +"@typescript-eslint/typescript-estree@npm:5.62.0": + version: 5.62.0 + resolution: "@typescript-eslint/typescript-estree@npm:5.62.0" dependencies: - "@typescript-eslint/types": 5.54.0 - "@typescript-eslint/visitor-keys": 5.54.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 @@ -1898,219 +1966,219 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 377c75c34c4f95b7ab6218c1d96a6db3ea6ed6727711b6a09354582fe0157861dc1b6fb9e3f7113cd09741f713735d59d5ab5845457f5733a4ebad7470bf600a + checksum: 3624520abb5807ed8f57b1197e61c7b1ed770c56dfcaca66372d584ff50175225798bccb701f7ef129d62c5989070e1ee3a0aa2d84e56d9524dcf011a2bb1a52 languageName: node linkType: hard -"@typescript-eslint/utils@npm:5.54.0": - version: 5.54.0 - resolution: "@typescript-eslint/utils@npm:5.54.0" +"@typescript-eslint/utils@npm:5.62.0": + version: 5.62.0 + resolution: "@typescript-eslint/utils@npm:5.62.0" dependencies: + "@eslint-community/eslint-utils": ^4.2.0 "@types/json-schema": ^7.0.9 "@types/semver": ^7.3.12 - "@typescript-eslint/scope-manager": 5.54.0 - "@typescript-eslint/types": 5.54.0 - "@typescript-eslint/typescript-estree": 5.54.0 + "@typescript-eslint/scope-manager": 5.62.0 + "@typescript-eslint/types": 5.62.0 + "@typescript-eslint/typescript-estree": 5.62.0 eslint-scope: ^5.1.1 - eslint-utils: ^3.0.0 semver: ^7.3.7 peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: b8f344fc2961c7af530b93e53d5a17b5084cdf550b381082e3fb7f349ef16e718d9eebde1b9fc2d8fc4ecf8d60d334b004359977247554265c1afc87323bed37 + checksum: ee9398c8c5db6d1da09463ca7bf36ed134361e20131ea354b2da16a5fdb6df9ba70c62a388d19f6eebb421af1786dbbd79ba95ddd6ab287324fc171c3e28d931 languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:5.54.0": - version: 5.54.0 - resolution: "@typescript-eslint/visitor-keys@npm:5.54.0" +"@typescript-eslint/visitor-keys@npm:5.62.0": + version: 5.62.0 + resolution: "@typescript-eslint/visitor-keys@npm:5.62.0" dependencies: - "@typescript-eslint/types": 5.54.0 + "@typescript-eslint/types": 5.62.0 eslint-visitor-keys: ^3.3.0 - checksum: 17fc323c09e6272b603cdaec30a99916600fbbb737e1fbc8c1727a487753b4363cea112277fa43e0562bff34bdd1de9ad73ff9433118b1fd469b112fad0313ca + checksum: 976b05d103fe8335bef5c93ad3f76d781e3ce50329c0243ee0f00c0fcfb186c81df50e64bfdd34970148113f8ade90887f53e3c4938183afba830b4ba8e30a35 languageName: node linkType: hard -"@webassemblyjs/ast@npm:1.11.1": - version: 1.11.1 - resolution: "@webassemblyjs/ast@npm:1.11.1" +"@webassemblyjs/ast@npm:1.11.6, @webassemblyjs/ast@npm:^1.11.5": + version: 1.11.6 + resolution: "@webassemblyjs/ast@npm:1.11.6" dependencies: - "@webassemblyjs/helper-numbers": 1.11.1 - "@webassemblyjs/helper-wasm-bytecode": 1.11.1 - checksum: 1eee1534adebeece635362f8e834ae03e389281972611408d64be7895fc49f48f98fddbbb5339bf8a72cb101bcb066e8bca3ca1bf1ef47dadf89def0395a8d87 + "@webassemblyjs/helper-numbers": 1.11.6 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + checksum: 38ef1b526ca47c210f30975b06df2faf1a8170b1636ce239fc5738fc231ce28389dd61ecedd1bacfc03cbe95b16d1af848c805652080cb60982836eb4ed2c6cf languageName: node linkType: hard -"@webassemblyjs/floating-point-hex-parser@npm:1.11.1": - version: 1.11.1 - resolution: "@webassemblyjs/floating-point-hex-parser@npm:1.11.1" - checksum: b8efc6fa08e4787b7f8e682182d84dfdf8da9d9c77cae5d293818bc4a55c1f419a87fa265ab85252b3e6c1fd323d799efea68d825d341a7c365c64bc14750e97 +"@webassemblyjs/floating-point-hex-parser@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/floating-point-hex-parser@npm:1.11.6" + checksum: 29b08758841fd8b299c7152eda36b9eb4921e9c584eb4594437b5cd90ed6b920523606eae7316175f89c20628da14326801090167cc7fbffc77af448ac84b7e2 languageName: node linkType: hard -"@webassemblyjs/helper-api-error@npm:1.11.1": - version: 1.11.1 - resolution: "@webassemblyjs/helper-api-error@npm:1.11.1" - checksum: 0792813f0ed4a0e5ee0750e8b5d0c631f08e927f4bdfdd9fe9105dc410c786850b8c61bff7f9f515fdfb149903bec3c976a1310573a4c6866a94d49bc7271959 +"@webassemblyjs/helper-api-error@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/helper-api-error@npm:1.11.6" + checksum: e8563df85161096343008f9161adb138a6e8f3c2cc338d6a36011aa55eabb32f2fd138ffe63bc278d009ada001cc41d263dadd1c0be01be6c2ed99076103689f languageName: node linkType: hard -"@webassemblyjs/helper-buffer@npm:1.11.1": - version: 1.11.1 - resolution: "@webassemblyjs/helper-buffer@npm:1.11.1" - checksum: a337ee44b45590c3a30db5a8b7b68a717526cf967ada9f10253995294dbd70a58b2da2165222e0b9830cd4fc6e4c833bf441a721128d1fe2e9a7ab26b36003ce +"@webassemblyjs/helper-buffer@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/helper-buffer@npm:1.11.6" + checksum: b14d0573bf680d22b2522e8a341ec451fddd645d1f9c6bd9012ccb7e587a2973b86ab7b89fe91e1c79939ba96095f503af04369a3b356c8023c13a5893221644 languageName: node linkType: hard -"@webassemblyjs/helper-numbers@npm:1.11.1": - version: 1.11.1 - resolution: "@webassemblyjs/helper-numbers@npm:1.11.1" +"@webassemblyjs/helper-numbers@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/helper-numbers@npm:1.11.6" dependencies: - "@webassemblyjs/floating-point-hex-parser": 1.11.1 - "@webassemblyjs/helper-api-error": 1.11.1 + "@webassemblyjs/floating-point-hex-parser": 1.11.6 + "@webassemblyjs/helper-api-error": 1.11.6 "@xtuc/long": 4.2.2 - checksum: 44d2905dac2f14d1e9b5765cf1063a0fa3d57295c6d8930f6c59a36462afecc6e763e8a110b97b342a0f13376166c5d41aa928e6ced92e2f06b071fd0db59d3a + checksum: f4b562fa219f84368528339e0f8d273ad44e047a07641ffcaaec6f93e5b76fd86490a009aa91a294584e1436d74b0a01fa9fde45e333a4c657b58168b04da424 languageName: node linkType: hard -"@webassemblyjs/helper-wasm-bytecode@npm:1.11.1": - version: 1.11.1 - resolution: "@webassemblyjs/helper-wasm-bytecode@npm:1.11.1" - checksum: eac400113127832c88f5826bcc3ad1c0db9b3dbd4c51a723cfdb16af6bfcbceb608170fdaac0ab7731a7e18b291be7af68a47fcdb41cfe0260c10857e7413d97 +"@webassemblyjs/helper-wasm-bytecode@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/helper-wasm-bytecode@npm:1.11.6" + checksum: 3535ef4f1fba38de3475e383b3980f4bbf3de72bbb631c2b6584c7df45be4eccd62c6ff48b5edd3f1bcff275cfd605a37679ec199fc91fd0a7705d7f1e3972dc languageName: node linkType: hard -"@webassemblyjs/helper-wasm-section@npm:1.11.1": - version: 1.11.1 - resolution: "@webassemblyjs/helper-wasm-section@npm:1.11.1" +"@webassemblyjs/helper-wasm-section@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/helper-wasm-section@npm:1.11.6" dependencies: - "@webassemblyjs/ast": 1.11.1 - "@webassemblyjs/helper-buffer": 1.11.1 - "@webassemblyjs/helper-wasm-bytecode": 1.11.1 - "@webassemblyjs/wasm-gen": 1.11.1 - checksum: 617696cfe8ecaf0532763162aaf748eb69096fb27950219bb87686c6b2e66e11cd0614d95d319d0ab1904bc14ebe4e29068b12c3e7c5e020281379741fe4bedf + "@webassemblyjs/ast": 1.11.6 + "@webassemblyjs/helper-buffer": 1.11.6 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + "@webassemblyjs/wasm-gen": 1.11.6 + checksum: b2cf751bf4552b5b9999d27bbb7692d0aca75260140195cb58ea6374d7b9c2dc69b61e10b211a0e773f66209c3ddd612137ed66097e3684d7816f854997682e9 languageName: node linkType: hard -"@webassemblyjs/ieee754@npm:1.11.1": - version: 1.11.1 - resolution: "@webassemblyjs/ieee754@npm:1.11.1" +"@webassemblyjs/ieee754@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/ieee754@npm:1.11.6" dependencies: "@xtuc/ieee754": ^1.2.0 - checksum: 23a0ac02a50f244471631802798a816524df17e56b1ef929f0c73e3cde70eaf105a24130105c60aff9d64a24ce3b640dad443d6f86e5967f922943a7115022ec + checksum: 13574b8e41f6ca39b700e292d7edf102577db5650fe8add7066a320aa4b7a7c09a5056feccac7a74eb68c10dea9546d4461412af351f13f6b24b5f32379b49de languageName: node linkType: hard -"@webassemblyjs/leb128@npm:1.11.1": - version: 1.11.1 - resolution: "@webassemblyjs/leb128@npm:1.11.1" +"@webassemblyjs/leb128@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/leb128@npm:1.11.6" dependencies: "@xtuc/long": 4.2.2 - checksum: 33ccc4ade2f24de07bf31690844d0b1ad224304ee2062b0e464a610b0209c79e0b3009ac190efe0e6bd568b0d1578d7c3047fc1f9d0197c92fc061f56224ff4a + checksum: 7ea942dc9777d4b18a5ebfa3a937b30ae9e1d2ce1fee637583ed7f376334dd1d4274f813d2e250056cca803e0952def4b954913f1a3c9068bcd4ab4ee5143bf0 languageName: node linkType: hard -"@webassemblyjs/utf8@npm:1.11.1": - version: 1.11.1 - resolution: "@webassemblyjs/utf8@npm:1.11.1" - checksum: 972c5cfc769d7af79313a6bfb96517253a270a4bf0c33ba486aa43cac43917184fb35e51dfc9e6b5601548cd5931479a42e42c89a13bb591ffabebf30c8a6a0b +"@webassemblyjs/utf8@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/utf8@npm:1.11.6" + checksum: 807fe5b5ce10c390cfdd93e0fb92abda8aebabb5199980681e7c3743ee3306a75729bcd1e56a3903980e96c885ee53ef901fcbaac8efdfa480f9c0dae1d08713 languageName: node linkType: hard -"@webassemblyjs/wasm-edit@npm:1.11.1": - version: 1.11.1 - resolution: "@webassemblyjs/wasm-edit@npm:1.11.1" +"@webassemblyjs/wasm-edit@npm:^1.11.5": + version: 1.11.6 + resolution: "@webassemblyjs/wasm-edit@npm:1.11.6" dependencies: - "@webassemblyjs/ast": 1.11.1 - "@webassemblyjs/helper-buffer": 1.11.1 - "@webassemblyjs/helper-wasm-bytecode": 1.11.1 - "@webassemblyjs/helper-wasm-section": 1.11.1 - "@webassemblyjs/wasm-gen": 1.11.1 - "@webassemblyjs/wasm-opt": 1.11.1 - "@webassemblyjs/wasm-parser": 1.11.1 - "@webassemblyjs/wast-printer": 1.11.1 - checksum: 6d7d9efaec1227e7ef7585a5d7ff0be5f329f7c1c6b6c0e906b18ed2e9a28792a5635e450aca2d136770d0207225f204eff70a4b8fd879d3ac79e1dcc26dbeb9 + "@webassemblyjs/ast": 1.11.6 + "@webassemblyjs/helper-buffer": 1.11.6 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + "@webassemblyjs/helper-wasm-section": 1.11.6 + "@webassemblyjs/wasm-gen": 1.11.6 + "@webassemblyjs/wasm-opt": 1.11.6 + "@webassemblyjs/wasm-parser": 1.11.6 + "@webassemblyjs/wast-printer": 1.11.6 + checksum: 29ce75870496d6fad864d815ebb072395a8a3a04dc9c3f4e1ffdc63fc5fa58b1f34304a1117296d8240054cfdbc38aca88e71fb51483cf29ffab0a61ef27b481 languageName: node linkType: hard -"@webassemblyjs/wasm-gen@npm:1.11.1": - version: 1.11.1 - resolution: "@webassemblyjs/wasm-gen@npm:1.11.1" +"@webassemblyjs/wasm-gen@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/wasm-gen@npm:1.11.6" dependencies: - "@webassemblyjs/ast": 1.11.1 - "@webassemblyjs/helper-wasm-bytecode": 1.11.1 - "@webassemblyjs/ieee754": 1.11.1 - "@webassemblyjs/leb128": 1.11.1 - "@webassemblyjs/utf8": 1.11.1 - checksum: 1f6921e640293bf99fb16b21e09acb59b340a79f986c8f979853a0ae9f0b58557534b81e02ea2b4ef11e929d946708533fd0693c7f3712924128fdafd6465f5b + "@webassemblyjs/ast": 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 + checksum: a645a2eecbea24833c3260a249704a7f554ef4a94c6000984728e94bb2bc9140a68dfd6fd21d5e0bbb09f6dfc98e083a45760a83ae0417b41a0196ff6d45a23a languageName: node linkType: hard -"@webassemblyjs/wasm-opt@npm:1.11.1": - version: 1.11.1 - resolution: "@webassemblyjs/wasm-opt@npm:1.11.1" +"@webassemblyjs/wasm-opt@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/wasm-opt@npm:1.11.6" dependencies: - "@webassemblyjs/ast": 1.11.1 - "@webassemblyjs/helper-buffer": 1.11.1 - "@webassemblyjs/wasm-gen": 1.11.1 - "@webassemblyjs/wasm-parser": 1.11.1 - checksum: 21586883a20009e2b20feb67bdc451bbc6942252e038aae4c3a08e6f67b6bae0f5f88f20bfc7bd0452db5000bacaf5ab42b98cf9aa034a6c70e9fc616142e1db + "@webassemblyjs/ast": 1.11.6 + "@webassemblyjs/helper-buffer": 1.11.6 + "@webassemblyjs/wasm-gen": 1.11.6 + "@webassemblyjs/wasm-parser": 1.11.6 + checksum: b4557f195487f8e97336ddf79f7bef40d788239169aac707f6eaa2fa5fe243557c2d74e550a8e57f2788e70c7ae4e7d32f7be16101afe183d597b747a3bdd528 languageName: node linkType: hard -"@webassemblyjs/wasm-parser@npm:1.11.1": - version: 1.11.1 - resolution: "@webassemblyjs/wasm-parser@npm:1.11.1" +"@webassemblyjs/wasm-parser@npm:1.11.6, @webassemblyjs/wasm-parser@npm:^1.11.5": + version: 1.11.6 + resolution: "@webassemblyjs/wasm-parser@npm:1.11.6" dependencies: - "@webassemblyjs/ast": 1.11.1 - "@webassemblyjs/helper-api-error": 1.11.1 - "@webassemblyjs/helper-wasm-bytecode": 1.11.1 - "@webassemblyjs/ieee754": 1.11.1 - "@webassemblyjs/leb128": 1.11.1 - "@webassemblyjs/utf8": 1.11.1 - checksum: 1521644065c360e7b27fad9f4bb2df1802d134dd62937fa1f601a1975cde56bc31a57b6e26408b9ee0228626ff3ba1131ae6f74ffb7d718415b6528c5a6dbfc2 + "@webassemblyjs/ast": 1.11.6 + "@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 + checksum: 8200a8d77c15621724a23fdabe58d5571415cda98a7058f542e670ea965dd75499f5e34a48675184947c66f3df23adf55df060312e6d72d57908e3f049620d8a languageName: node linkType: hard -"@webassemblyjs/wast-printer@npm:1.11.1": - version: 1.11.1 - resolution: "@webassemblyjs/wast-printer@npm:1.11.1" +"@webassemblyjs/wast-printer@npm:1.11.6": + version: 1.11.6 + resolution: "@webassemblyjs/wast-printer@npm:1.11.6" dependencies: - "@webassemblyjs/ast": 1.11.1 + "@webassemblyjs/ast": 1.11.6 "@xtuc/long": 4.2.2 - checksum: f15ae4c2441b979a3b4fce78f3d83472fb22350c6dc3fd34bfe7c3da108e0b2360718734d961bba20e7716cb8578e964b870da55b035e209e50ec9db0378a3f7 + checksum: d2fa6a4c427325ec81463e9c809aa6572af6d47f619f3091bf4c4a6fc34f1da3df7caddaac50b8e7a457f8784c62cd58c6311b6cb69b0162ccd8d4c072f79cf8 languageName: node linkType: hard -"@webpack-cli/configtest@npm:^1.0.3": - version: 1.0.3 - resolution: "@webpack-cli/configtest@npm:1.0.3" +"@webpack-cli/configtest@npm:^1.2.0": + version: 1.2.0 + resolution: "@webpack-cli/configtest@npm:1.2.0" peerDependencies: webpack: 4.x.x || 5.x.x webpack-cli: 4.x.x - checksum: 4efcca159eb50c515afebbd90220681cb54788114cd9ce5d38273e3a9cd0f098b1afe1b09d007ef87db220cad5fbbec4fc502a973743982f1a45b9f334a2da73 + checksum: a2726cd9ec601d2b57e5fc15e0ebf5200a8892065e735911269ac2038e62be4bfc176ea1f88c2c46ff09b4d05d4c10ae045e87b3679372483d47da625a327e28 languageName: node linkType: hard -"@webpack-cli/info@npm:^1.2.4": - version: 1.2.4 - resolution: "@webpack-cli/info@npm:1.2.4" +"@webpack-cli/info@npm:^1.5.0": + version: 1.5.0 + resolution: "@webpack-cli/info@npm:1.5.0" dependencies: envinfo: ^7.7.3 peerDependencies: webpack-cli: 4.x.x - checksum: 4e27ccd04ce7e4aad4ec5e98a853a7fbbb8e1e3a8d876d8e475795b302cc34c51a0150755003b042c393d8fb44dc92acd9405c98a7f58654a2406621825a5bfc + checksum: 7f56fe037cd7d1fd5c7428588519fbf04a0cad33925ee4202ffbafd00f8ec1f2f67d991245e687d50e0f3e23f7b7814273d56cb9f7da4b05eed47c8d815c6296 languageName: node linkType: hard -"@webpack-cli/serve@npm:^1.4.0": - version: 1.4.0 - resolution: "@webpack-cli/serve@npm:1.4.0" +"@webpack-cli/serve@npm:^1.7.0": + version: 1.7.0 + resolution: "@webpack-cli/serve@npm:1.7.0" peerDependencies: webpack-cli: 4.x.x peerDependenciesMeta: webpack-dev-server: optional: true - checksum: 0b063bed4cdd3463b073457ef81b239261df03cf55551f1fd29df0657f9485b9bf2a56011f1ec1272afb8e13d11704c06e85a4d2718151c0293bfcc1c11f212d + checksum: d475e8effa23eb7ff9a48b14d4de425989fd82f906ce71c210921cc3852327c22873be00c35e181a25a6bd03d424ae2b83e7f3b3f410ac7ee31b128ab4ac7713 languageName: node linkType: hard @@ -2128,7 +2196,7 @@ __metadata: languageName: node linkType: hard -"abbrev@npm:1": +"abbrev@npm:^1.0.0": version: 1.1.1 resolution: "abbrev@npm:1.1.1" checksum: a4a97ec07d7ea112c517036882b2ac22f3109b7b19077dc656316d07d308438aac28e4d9746dc4d84bf6b1e75b4a7b0a5f3cb30592419f128ca9a8cee3bcfa17 @@ -2136,30 +2204,30 @@ __metadata: linkType: hard "accepts@npm:^1.3.5, accepts@npm:~1.3.4": - version: 1.3.7 - resolution: "accepts@npm:1.3.7" + version: 1.3.8 + resolution: "accepts@npm:1.3.8" dependencies: - mime-types: ~2.1.24 - negotiator: 0.6.2 - checksum: 27fc8060ffc69481ff6719cd3ee06387d2b88381cb0ce626f087781bbd02201a645a9febc8e7e7333558354b33b1d2f922ad13560be4ec1b7ba9e76fc1c1241d + mime-types: ~2.1.34 + negotiator: 0.6.3 + checksum: 50c43d32e7b50285ebe84b613ee4a3aa426715a7d131b65b786e2ead0fd76b6b60091b9916d3478a75f11f162628a2139991b6c03ab3f1d9ab7c86075dc8eab4 languageName: node linkType: hard -"acorn-import-assertions@npm:^1.7.6": - version: 1.8.0 - resolution: "acorn-import-assertions@npm:1.8.0" +"acorn-import-assertions@npm:^1.9.0": + version: 1.9.0 + resolution: "acorn-import-assertions@npm:1.9.0" peerDependencies: acorn: ^8 - checksum: 5c4cf7c850102ba7ae0eeae0deb40fb3158c8ca5ff15c0bca43b5c47e307a1de3d8ef761788f881343680ea374631ae9e9615ba8876fee5268dbe068c98bcba6 + checksum: 944fb2659d0845c467066bdcda2e20c05abe3aaf11972116df457ce2627628a81764d800dd55031ba19de513ee0d43bb771bc679cc0eda66dc8b4fade143bc0c languageName: node linkType: hard "acorn-jsx@npm:^5.3.1": - version: 5.3.1 - resolution: "acorn-jsx@npm:5.3.1" + version: 5.3.2 + resolution: "acorn-jsx@npm:5.3.2" peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: daf441a9d7b59c0ea1f7fe2934c48aca604a007455129ce35fa62ec3d4c8363e2efc2d4da636d18ce0049979260ba07d8b42bc002ae95182916d2c90901529c2 + checksum: c3d3b2a89c9a056b205b69530a37b972b404ee46ec8e5b341666f9513d3163e2a4f214a71f4dfc7370f5a9c07472d2fd1c11c91c3f03d093e37637d95da98950 languageName: node linkType: hard @@ -2172,25 +2240,16 @@ __metadata: languageName: node linkType: hard -"acorn@npm:^8.5.0": - version: 8.7.1 - resolution: "acorn@npm:8.7.1" - bin: - acorn: bin/acorn - checksum: aca0aabf98826717920ac2583fdcad0a6fbe4e583fdb6e843af2594e907455aeafe30b1e14f1757cd83ce1776773cf8296ffc3a4acf13f0bd3dfebcf1db6ae80 - languageName: node - linkType: hard - -"acorn@npm:^8.7.1": - version: 8.8.2 - resolution: "acorn@npm:8.8.2" +"acorn@npm:^8.7.1, acorn@npm:^8.8.2": + version: 8.10.0 + resolution: "acorn@npm:8.10.0" bin: acorn: bin/acorn - checksum: f790b99a1bf63ef160c967e23c46feea7787e531292bb827126334612c234ed489a0dc2c7ba33156416f0ffa8d25bf2b0fdb7f35c2ba60eb3e960572bece4001 + checksum: 538ba38af0cc9e5ef983aee196c4b8b4d87c0c94532334fa7e065b2c8a1f85863467bb774231aae91613fcda5e68740c15d97b1967ae3394d20faddddd8af61d languageName: node linkType: hard -"agent-base@npm:6": +"agent-base@npm:6, agent-base@npm:^6.0.2": version: 6.0.2 resolution: "agent-base@npm:6.0.2" dependencies: @@ -2199,14 +2258,12 @@ __metadata: languageName: node linkType: hard -"agentkeepalive@npm:^4.1.3": - version: 4.1.4 - resolution: "agentkeepalive@npm:4.1.4" +"agentkeepalive@npm:^4.2.1": + version: 4.5.0 + resolution: "agentkeepalive@npm:4.5.0" dependencies: - debug: ^4.1.0 - depd: ^1.1.2 humanize-ms: ^1.2.1 - checksum: d49c24d4b333e9507119385895a583872f4f53d62764a89be165926e824056a126955bae4a6d3c6f7cd26f4089621a40f7b27675f7868214d82118f744b9e82d + checksum: 13278cd5b125e51eddd5079f04d6fe0914ac1b8b91c1f3db2c1822f99ac1a7457869068997784342fe455d59daaff22e14fb7b8c3da4e741896e7e31faf92481 languageName: node linkType: hard @@ -2242,21 +2299,21 @@ __metadata: linkType: hard "ajv@npm:^8.0.1": - version: 8.4.0 - resolution: "ajv@npm:8.4.0" + version: 8.12.0 + resolution: "ajv@npm:8.12.0" dependencies: fast-deep-equal: ^3.1.1 json-schema-traverse: ^1.0.0 require-from-string: ^2.0.2 uri-js: ^4.2.2 - checksum: 05d5114c05716e697ba5bf9c529c3c1788291e0f480f1d1cccc78d9097e37dfaf15adf562582372ac178bb07e56df5c6c2a3062654826b8a6466b3ec4f4ed1ab + checksum: 4dc13714e316e67537c8b31bc063f99a1d9d9a497eb4bbd55191ac0dcd5e4985bbb71570352ad6f1e76684fb6d790928f96ba3b2d4fd6e10024be9612fe3f001 languageName: node linkType: hard "ansi-colors@npm:^4.1.1": - version: 4.1.1 - resolution: "ansi-colors@npm:4.1.1" - checksum: 138d04a51076cb085da0a7e2d000c5c0bb09f6e772ed5c65c53cb118d37f6c5f1637506d7155fb5f330f0abcf6f12fa2e489ac3f8cdab9da393bf1bb4f9a32b0 + version: 4.1.3 + resolution: "ansi-colors@npm:4.1.3" + checksum: a9c2ec842038a1fabc7db9ece7d3177e2fe1c5dc6f0c51ecfbf5f39911427b89c00b5dc6b8bd95f82a26e9b16aaae2e83d45f060e98070ce4d1333038edceb0e languageName: node linkType: hard @@ -2267,24 +2324,24 @@ __metadata: languageName: node linkType: hard -"ansi-regex@npm:^3.0.0": - version: 3.0.1 - resolution: "ansi-regex@npm:3.0.1" - checksum: 09daf180c5f59af9850c7ac1bd7fda85ba596cc8cbeb210826e90755f06c818af86d9fa1e6e8322fab2c3b9e9b03f56c537b42241139f824dd75066a1e7257cc - languageName: node - linkType: hard - -"ansi-regex@npm:^5.0.0": +"ansi-regex@npm:^5.0.1": version: 5.0.1 resolution: "ansi-regex@npm:5.0.1" checksum: 2aa4bb54caf2d622f1afdad09441695af2a83aa3fe8b8afa581d205e57ed4261c183c4d3877cee25794443fde5876417d859c108078ab788d6af7e4fe52eb66b languageName: node linkType: hard +"ansi-regex@npm:^6.0.1": + version: 6.0.1 + resolution: "ansi-regex@npm:6.0.1" + checksum: 1ff8b7667cded1de4fa2c9ae283e979fc87036864317da86a2e546725f96406746411d0d85e87a2d12fa5abd715d90006de7fa4fa0477c92321ad3b4c7d4e169 + languageName: node + linkType: hard + "ansi-sequence-parser@npm:^1.1.0": - version: 1.1.0 - resolution: "ansi-sequence-parser@npm:1.1.0" - checksum: 75f4d3a4c555655a698aec05b5763cbddcd16ccccdbfd178fb0aa471ab74fdf98e031b875ef26e64be6a95cf970c89238744b26de6e34af97f316d5186b1df53 + version: 1.1.1 + resolution: "ansi-sequence-parser@npm:1.1.1" + checksum: ead5b15c596e8e85ca02951a844366c6776769dcc9fd1bd3a0db11bb21364554822c6a439877fb599e7e1ffa0b5f039f1e5501423950457f3dcb2f480c30b188 languageName: node linkType: hard @@ -2306,13 +2363,20 @@ __metadata: languageName: node linkType: hard +"ansi-styles@npm:^6.1.0": + version: 6.2.1 + resolution: "ansi-styles@npm:6.2.1" + checksum: ef940f2f0ced1a6347398da88a91da7930c33ecac3c77b72c5905f8b8fe402c52e6fde304ff5347f616e27a742da3f1dc76de98f6866c69251ad0b07a66776d9 + languageName: node + linkType: hard + "anymatch@npm:~3.1.2": - version: 3.1.2 - resolution: "anymatch@npm:3.1.2" + version: 3.1.3 + resolution: "anymatch@npm:3.1.3" dependencies: normalize-path: ^3.0.0 picomatch: ^2.0.4 - checksum: 985163db2292fac9e5a1e072bf99f1b5baccf196e4de25a0b0b81865ebddeb3b3eb4480734ef0a2ac8c002845396b91aa89121f5b84f93981a4658164a9ec6e9 + checksum: 3e044fd6d1d26545f235a9fe4d7a534e2029d8e59fa7fd9f2a6eb21230f6b5380ea1eaf55136e60cbf8e613544b3b766e7a6fa2102e2a3a117505466e3025dc2 languageName: node linkType: hard @@ -2332,6 +2396,13 @@ __metadata: languageName: node linkType: hard +"aproba@npm:^1.0.3 || ^2.0.0": + version: 2.0.0 + resolution: "aproba@npm:2.0.0" + checksum: 5615cadcfb45289eea63f8afd064ab656006361020e1735112e346593856f87435e02d8dcc7ff0d11928bc7d425f27bc7c2a84f6c0b35ab0ff659c814c138a24 + languageName: node + linkType: hard + "archy@npm:^1.0.0": version: 1.0.0 resolution: "archy@npm:1.0.0" @@ -2339,13 +2410,23 @@ __metadata: languageName: node linkType: hard +"are-we-there-yet@npm:^3.0.0": + version: 3.0.1 + resolution: "are-we-there-yet@npm:3.0.1" + dependencies: + delegates: ^1.0.0 + readable-stream: ^3.6.0 + checksum: 52590c24860fa7173bedeb69a4c05fb573473e860197f618b9a28432ee4379049336727ae3a1f9c4cb083114601c1140cee578376164d0e651217a9843f9fe83 + languageName: node + linkType: hard + "are-we-there-yet@npm:~1.1.2": - version: 1.1.5 - resolution: "are-we-there-yet@npm:1.1.5" + version: 1.1.7 + resolution: "are-we-there-yet@npm:1.1.7" dependencies: delegates: ^1.0.0 readable-stream: ^2.0.6 - checksum: 9a746b1dbce4122f44002b0c39fbba5b2c6f52c00e88b6ccba6fc68652323f8a1355a20e8ab94846995626d8de3bf67669a3b4a037dff0885db14607168f2b15 + checksum: 70d251719c969b2745bfe5ddf3ebaefa846a636e90a6d5212573676af5d6670e15457761d4725731e19cbebdce42c4ab0cbedf23ab047f2a08274985aa10a3c7 languageName: node linkType: hard @@ -2365,16 +2446,26 @@ __metadata: languageName: node linkType: hard -"array-includes@npm:^3.1.3": - version: 3.1.3 - resolution: "array-includes@npm:3.1.3" +"array-buffer-byte-length@npm:^1.0.0": + version: 1.0.0 + resolution: "array-buffer-byte-length@npm:1.0.0" dependencies: call-bind: ^1.0.2 - define-properties: ^1.1.3 - es-abstract: ^1.18.0-next.2 - get-intrinsic: ^1.1.1 - is-string: ^1.0.5 - checksum: eaab8812412b5ec921c8fe678a9d61f501b12f6c72e271e0e8652fe7f4145276cc7ad79ff303ac4ed69cbf5135155bfb092b1b6d552e423e75106d1c887da150 + is-array-buffer: ^3.0.1 + checksum: 044e101ce150f4804ad19c51d6c4d4cfa505c5b2577bd179256e4aa3f3f6a0a5e9874c78cd428ee566ac574c8a04d7ce21af9fe52e844abfdccb82b33035a7c3 + languageName: node + linkType: hard + +"array-includes@npm:^3.1.6": + version: 3.1.6 + resolution: "array-includes@npm:3.1.6" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.1.4 + es-abstract: ^1.20.4 + get-intrinsic: ^1.1.3 + is-string: ^1.0.7 + checksum: f22f8cd8ba8a6448d91eebdc69f04e4e55085d09232b5216ee2d476dab3ef59984e8d1889e662c6a0ed939dcb1b57fd05b2c0209c3370942fc41b752c82a2ca5 languageName: node linkType: hard @@ -2385,14 +2476,54 @@ __metadata: languageName: node linkType: hard -"array.prototype.flat@npm:^1.2.4": - version: 1.2.4 - resolution: "array.prototype.flat@npm:1.2.4" +"array.prototype.findlastindex@npm:^1.2.2": + version: 1.2.2 + resolution: "array.prototype.findlastindex@npm:1.2.2" dependencies: - call-bind: ^1.0.0 - define-properties: ^1.1.3 - es-abstract: ^1.18.0-next.1 - checksum: 1ec5d9887ae45e70e4b993e801b440ae5ddcd0d2c6d1dbe214c311e91436152f510916bdac82b066693544b9801a3c510dfbec8a278ababf8de7eb0bde74636f + call-bind: ^1.0.2 + define-properties: ^1.1.4 + es-abstract: ^1.20.4 + es-shim-unscopables: ^1.0.0 + get-intrinsic: ^1.1.3 + checksum: 8a166359f69a2a751c843f26b9c8cd03d0dc396a92cdcb85f4126b5f1cecdae5b2c0c616a71ea8aff026bde68165b44950b3664404bb73db0673e288495ba264 + languageName: node + linkType: hard + +"array.prototype.flat@npm:^1.3.1": + version: 1.3.1 + resolution: "array.prototype.flat@npm:1.3.1" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.1.4 + es-abstract: ^1.20.4 + es-shim-unscopables: ^1.0.0 + checksum: 5a8415949df79bf6e01afd7e8839bbde5a3581300e8ad5d8449dea52639e9e59b26a467665622783697917b43bf39940a6e621877c7dd9b3d1c1f97484b9b88b + languageName: node + linkType: hard + +"array.prototype.flatmap@npm:^1.3.1": + version: 1.3.1 + resolution: "array.prototype.flatmap@npm:1.3.1" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.1.4 + es-abstract: ^1.20.4 + es-shim-unscopables: ^1.0.0 + checksum: 8c1c43a4995f12cf12523436da28515184c753807b3f0bc2ca6c075f71c470b099e2090cc67dba8e5280958fea401c1d0c59e1db0143272aef6cd1103921a987 + languageName: node + linkType: hard + +"arraybuffer.prototype.slice@npm:^1.0.1": + version: 1.0.1 + resolution: "arraybuffer.prototype.slice@npm:1.0.1" + dependencies: + array-buffer-byte-length: ^1.0.0 + call-bind: ^1.0.2 + define-properties: ^1.2.0 + get-intrinsic: ^1.2.1 + is-array-buffer: ^3.0.2 + is-shared-array-buffer: ^1.0.2 + checksum: e3e9b2a3e988ebfeddce4c7e8f69df730c9e48cb04b0d40ff0874ce3d86b3d1339dd520ffde5e39c02610bc172ecfbd4bc93324b1cabd9554c44a56b131ce0ce languageName: node linkType: hard @@ -2412,6 +2543,13 @@ __metadata: languageName: node linkType: hard +"available-typed-arrays@npm:^1.0.5": + version: 1.0.5 + resolution: "available-typed-arrays@npm:1.0.5" + checksum: 20eb47b3cefd7db027b9bbb993c658abd36d4edd3fe1060e83699a03ee275b0c9b216cc076ff3f2db29073225fb70e7613987af14269ac1fe2a19803ccc97f1a + languageName: node + linkType: hard + "axios@npm:^0.21.2": version: 0.21.4 resolution: "axios@npm:0.21.4" @@ -2493,27 +2631,29 @@ __metadata: linkType: hard "bn.js@npm:^5.2.0": - version: 5.2.0 - resolution: "bn.js@npm:5.2.0" - checksum: 6117170393200f68b35a061ecbf55d01dd989302e7b3c798a3012354fa638d124f0b2f79e63f77be5556be80322a09c40339eda6413ba7468524c0b6d4b4cb7a + version: 5.2.1 + resolution: "bn.js@npm:5.2.1" + checksum: 3dd8c8d38055fedfa95c1d5fc3c99f8dd547b36287b37768db0abab3c239711f88ff58d18d155dd8ad902b0b0cee973747b7ae20ea12a09473272b0201c9edd3 languageName: node linkType: hard "body-parser@npm:^1.19.0": - version: 1.19.0 - resolution: "body-parser@npm:1.19.0" + version: 1.20.2 + resolution: "body-parser@npm:1.20.2" dependencies: - bytes: 3.1.0 - content-type: ~1.0.4 + bytes: 3.1.2 + content-type: ~1.0.5 debug: 2.6.9 - depd: ~1.1.2 - http-errors: 1.7.2 + depd: 2.0.0 + destroy: 1.2.0 + http-errors: 2.0.0 iconv-lite: 0.4.24 - on-finished: ~2.3.0 - qs: 6.7.0 - raw-body: 2.4.0 - type-is: ~1.6.17 - checksum: 490231b4c89bbd43112762f7ba8e5342c174a6c9f64284a3b0fcabf63277e332f8316765596f1e5b15e4f3a6cf0422e005f4bb3149ed3a224bb025b7a36b9ac1 + on-finished: 2.4.1 + qs: 6.11.0 + raw-body: 2.5.2 + type-is: ~1.6.18 + unpipe: 1.0.0 + checksum: 14d37ec638ab5c93f6099ecaed7f28f890d222c650c69306872e00b9efa081ff6c596cd9afb9930656aae4d6c4e1c17537bea12bb73c87a217cb3cfea8896737 languageName: node linkType: hard @@ -2536,7 +2676,7 @@ __metadata: languageName: node linkType: hard -"braces@npm:^3.0.1, braces@npm:^3.0.2, braces@npm:~3.0.2": +"braces@npm:^3.0.2, braces@npm:~3.0.2": version: 3.0.2 resolution: "braces@npm:3.0.2" dependencies: @@ -2552,25 +2692,24 @@ __metadata: languageName: node linkType: hard -"browserslist@npm:^4.14.5": - version: 4.16.6 - resolution: "browserslist@npm:4.16.6" +"browserslist@npm:^4.14.5, browserslist@npm:^4.21.9": + version: 4.21.10 + resolution: "browserslist@npm:4.21.10" dependencies: - caniuse-lite: ^1.0.30001219 - colorette: ^1.2.2 - electron-to-chromium: ^1.3.723 - escalade: ^3.1.1 - node-releases: ^1.1.71 + caniuse-lite: ^1.0.30001517 + electron-to-chromium: ^1.4.477 + node-releases: ^2.0.13 + update-browserslist-db: ^1.0.11 bin: browserslist: cli.js - checksum: 3dffc86892d2dcfcfc66b52519b7e5698ae070b4fc92ab047e760efc4cae0474e9e70bbe10d769c8d3491b655ef3a2a885b88e7196c83cc5dc0a46dfdba8b70c + checksum: 1e27c0f111a35d1dd0e8fc2c61781b0daefabc2c9471b0b10537ce54843014bceb2a1ce4571af1a82b2bf1e6e6e05d38865916689a158f03bc2c7a4ec2577db8 languageName: node linkType: hard "buffer-from@npm:^1.0.0": - version: 1.1.1 - resolution: "buffer-from@npm:1.1.1" - checksum: ccc53b69736008bff764497367c4d24879ba7122bc619ee499ff47eef3a5b885ca496e87272e7ebffa0bec3804c83f84041c616f6e3318f40624e27c1d80f045 + version: 1.1.2 + resolution: "buffer-from@npm:1.1.2" + checksum: 0448524a562b37d4d7ed9efd91685a5b77a50672c556ea254ac9a6d30e3403a517d8981f10e565db24e8339413b43c97ca2951f10e399c6125a0d8911f5679bb languageName: node linkType: hard @@ -2594,35 +2733,30 @@ __metadata: languageName: node linkType: hard -"bytes@npm:3.1.0": - version: 3.1.0 - resolution: "bytes@npm:3.1.0" - checksum: 7c3b21c5d9d44ed455460d5d36a31abc6fa2ce3807964ba60a4b03fd44454c8cf07bb0585af83bfde1c5cc2ea4bbe5897bc3d18cd15e0acf25a3615a35aba2df +"bytes@npm:3.1.2": + version: 3.1.2 + resolution: "bytes@npm:3.1.2" + checksum: e4bcd3948d289c5127591fbedf10c0b639ccbf00243504e4e127374a15c3bc8eed0d28d4aaab08ff6f1cf2abc0cce6ba3085ed32f4f90e82a5683ce0014e1b6e languageName: node linkType: hard -"cacache@npm:^15.0.5": - version: 15.1.0 - resolution: "cacache@npm:15.1.0" +"cacache@npm:^17.0.0": + version: 17.1.4 + resolution: "cacache@npm:17.1.4" dependencies: - "@npmcli/move-file": ^1.0.1 - chownr: ^2.0.0 - fs-minipass: ^2.0.0 - glob: ^7.1.4 - infer-owner: ^1.0.4 - lru-cache: ^6.0.0 - minipass: ^3.1.1 + "@npmcli/fs": ^3.1.0 + fs-minipass: ^3.0.0 + glob: ^10.2.2 + lru-cache: ^7.7.1 + minipass: ^7.0.3 minipass-collect: ^1.0.2 minipass-flush: ^1.0.5 - minipass-pipeline: ^1.2.2 - mkdirp: ^1.0.3 + minipass-pipeline: ^1.2.4 p-map: ^4.0.0 - promise-inflight: ^1.0.1 - rimraf: ^3.0.2 - ssri: ^8.0.1 - tar: ^6.0.2 - unique-filename: ^1.1.1 - checksum: e63d1651cf95a23bdc4be9408a2398319c4a549b926a193b3ae368db10de751e47dab607fb20c734d26996a9ed43505baed18257b0c88e140e663611d0bfaad4 + ssri: ^10.0.0 + tar: ^6.1.11 + unique-filename: ^3.0.0 + checksum: b7751df756656954a51201335addced8f63fc53266fa56392c9f5ae83c8d27debffb4458ac2d168a744a4517ec3f2163af05c20097f93d17bdc2dc8a385e14a6 languageName: node linkType: hard @@ -2672,14 +2806,14 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001219": - version: 1.0.30001228 - resolution: "caniuse-lite@npm:1.0.30001228" - checksum: d7ea2234d3ad1841dab6cd0b6ee16e89958f5893ef2e024a7447d6f889f496e40b6dafe000f391b8d4f0c0ef08671dbb5969fd66e6f74d402994865ce5705a53 +"caniuse-lite@npm:^1.0.30001517": + version: 1.0.30001520 + resolution: "caniuse-lite@npm:1.0.30001520" + checksum: 59991ad8f36cf282f81abbcc6074c3097c21914cdd54bd2b3f73ac9462f57fc74e90371cd22bcdff4d085d09da42a07dcea384cb81e4ac260496e1bd79e1fe7c languageName: node linkType: hard -"chalk@npm:^2.0.0": +"chalk@npm:^2.4.2": version: 2.4.2 resolution: "chalk@npm:2.4.2" dependencies: @@ -2838,10 +2972,19 @@ __metadata: languageName: node linkType: hard -"colorette@npm:^1.2.1, colorette@npm:^1.2.2": - version: 1.2.2 - resolution: "colorette@npm:1.2.2" - checksum: 69fec14ddaedd0f5b00e4bae40dc4bc61f7050ebdc82983a595d6fd64e650b9dc3c033fff378775683138e992e0ddd8717ac7c7cec4d089679dcfbe3cd921b04 +"color-support@npm:^1.1.3": + version: 1.1.3 + resolution: "color-support@npm:1.1.3" + bin: + color-support: bin.js + checksum: 9b7356817670b9a13a26ca5af1c21615463b500783b739b7634a0c2047c16cef4b2865d7576875c31c3cddf9dd621fa19285e628f20198b233a5cfdda6d0793b + languageName: node + linkType: hard + +"colorette@npm:^2.0.14": + version: 2.0.20 + resolution: "colorette@npm:2.0.20" + checksum: 0c016fea2b91b733eb9f4bcdb580018f52c0bc0979443dad930e5037a968237ac53d9beb98e218d2e9235834f8eebce7f8e080422d6194e957454255bde71d3d languageName: node linkType: hard @@ -2892,52 +3035,40 @@ __metadata: languageName: node linkType: hard -"console-control-strings@npm:^1.0.0, console-control-strings@npm:~1.1.0": +"console-control-strings@npm:^1.0.0, console-control-strings@npm:^1.1.0, console-control-strings@npm:~1.1.0": version: 1.1.0 resolution: "console-control-strings@npm:1.1.0" checksum: 8755d76787f94e6cf79ce4666f0c5519906d7f5b02d4b884cf41e11dcd759ed69c57da0670afd9236d229a46e0f9cf519db0cd829c6dca820bb5a5c3def584ed languageName: node linkType: hard -"contains-path@npm:^1.0.0": - version: 1.0.0 - resolution: "contains-path@npm:1.0.0" - dependencies: - normalize-path: ^2.1.1 - path-starts-with: ^1.0.0 - checksum: 18c878d65f76039c317cca44c8b480b82e7a6a5eec3084deb3232e54967bba71d58c36e427809c1ae56ade54624aa904cf89d4a678513db3e2567be3f9a235b3 - languageName: node - linkType: hard - "content-disposition@npm:~0.5.2": - version: 0.5.3 - resolution: "content-disposition@npm:0.5.3" + version: 0.5.4 + resolution: "content-disposition@npm:0.5.4" dependencies: - safe-buffer: 5.1.2 - checksum: 95bf164c0b0b8199d3f44b7631e51b37f683c6a90b9baa4315bd3d405a6d1bc81b7346f0981046aa004331fb3d7a28b629514d01fc209a5251573fc7e4d33380 + safe-buffer: 5.2.1 + checksum: afb9d545e296a5171d7574fcad634b2fdf698875f4006a9dd04a3e1333880c5c0c98d47b560d01216fb6505a54a2ba6a843ee3a02ec86d7e911e8315255f56c3 languageName: node linkType: hard -"content-type@npm:^1.0.4, content-type@npm:~1.0.4": - version: 1.0.4 - resolution: "content-type@npm:1.0.4" - checksum: 3d93585fda985d1554eca5ebd251994327608d2e200978fdbfba21c0c679914d5faf266d17027de44b34a72c7b0745b18584ecccaa7e1fdfb6a68ac7114f12e0 +"content-type@npm:^1.0.4, content-type@npm:~1.0.5": + version: 1.0.5 + resolution: "content-type@npm:1.0.5" + checksum: 566271e0a251642254cde0f845f9dd4f9856e52d988f4eb0d0dcffbb7a1f8ec98de7a5215fc628f3bce30fe2fb6fd2bc064b562d721658c59b544e2d34ea2766 languageName: node linkType: hard "convert-source-map@npm:^1.7.0": - version: 1.7.0 - resolution: "convert-source-map@npm:1.7.0" - dependencies: - safe-buffer: ~5.1.1 - checksum: bcd2e3ea7d37f96b85a6e362c8a89402ccc73757256e3ee53aa2c22fe915adb854c66b1f81111be815a3a6a6ce3c58e8001858e883c9d5b4fe08a853fa865967 + version: 1.9.0 + resolution: "convert-source-map@npm:1.9.0" + checksum: dc55a1f28ddd0e9485ef13565f8f756b342f9a46c4ae18b843fe3c30c675d058d6a4823eff86d472f187b176f0adf51ea7b69ea38be34be4a63cbbf91b0593c8 languageName: node linkType: hard "cookie@npm:~0.4.1": - version: 0.4.1 - resolution: "cookie@npm:0.4.1" - checksum: bd7c47f5d94ab70ccdfe8210cde7d725880d2fcda06d8e375afbdd82de0c8d3b73541996e9ce57d35f67f672c4ee6d60208adec06b3c5fc94cebb85196084cf8 + version: 0.4.2 + resolution: "cookie@npm:0.4.2" + checksum: a00833c998bedf8e787b4c342defe5fa419abd96b32f4464f718b91022586b8f1bafbddd499288e75c037642493c83083da426c6a9080d309e3bd90fd11baa9b languageName: node linkType: hard @@ -2959,9 +3090,9 @@ __metadata: linkType: hard "core-util-is@npm:~1.0.0": - version: 1.0.2 - resolution: "core-util-is@npm:1.0.2" - checksum: 7a4c925b497a2c91421e25bf76d6d8190f0b2359a9200dbeed136e63b2931d6294d3b1893eda378883ed363cd950f44a12a401384c609839ea616befb7927dab + version: 1.0.3 + resolution: "core-util-is@npm:1.0.3" + checksum: 9de8597363a8e9b9952491ebe18167e3b36e7707569eed0ebf14f8bba773611376466ae34575bca8cfe3c767890c859c74056084738f09d4e4a6f902b2ad7d99 languageName: node linkType: hard @@ -3019,14 +3150,14 @@ __metadata: languageName: node linkType: hard -"date-format@npm:^4.0.3": - version: 4.0.3 - resolution: "date-format@npm:4.0.3" - checksum: 8ae4d9de3532010169a89bc7b079342051ba3ec88552636aa677bfb53e8eb15113af8394679aea7d41367dc8bb6e9865da17f21ac2802202180b09d6e3f2339e +"date-format@npm:^4.0.14": + version: 4.0.14 + resolution: "date-format@npm:4.0.14" + checksum: dfe5139df6af5759b9dd3c007b899b3f60d45a9240ffeee6314ab74e6ab52e9b519a44ccf285888bdd6b626c66ee9b4c8a523075fa1140617b5beb1cbb9b18d1 languageName: node linkType: hard -"debug@npm:2.6.9, debug@npm:^2.6.9": +"debug@npm:2.6.9": version: 2.6.9 resolution: "debug@npm:2.6.9" dependencies: @@ -3035,15 +3166,15 @@ __metadata: languageName: node linkType: hard -"debug@npm:4, debug@npm:^4.0.1, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:~4.3.1, debug@npm:~4.3.2": - version: 4.3.3 - resolution: "debug@npm:4.3.3" +"debug@npm:4, debug@npm:^4.0.1, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:~4.3.1, debug@npm:~4.3.2": + version: 4.3.4 + resolution: "debug@npm:4.3.4" dependencies: ms: 2.1.2 peerDependenciesMeta: supports-color: optional: true - checksum: 14472d56fe4a94dbcfaa6dbed2dd3849f1d72ba78104a1a328047bb564643ca49df0224c3a17fa63533fd11dd3d4c8636cd861191232a2c6735af00cc2d4de16 + checksum: 3dbad3f94ea64f34431a9cbf0bafb61853eda57bff2880036153438f50fb5a84f27683ba0d8e5426bf41a8c6ff03879488120cf5b3a761e77953169c0600a708 languageName: node linkType: hard @@ -3056,18 +3187,6 @@ __metadata: languageName: node linkType: hard -"debug@npm:^4.3.4": - version: 4.3.4 - resolution: "debug@npm:4.3.4" - dependencies: - ms: 2.1.2 - peerDependenciesMeta: - supports-color: - optional: true - checksum: 3dbad3f94ea64f34431a9cbf0bafb61853eda57bff2880036153438f50fb5a84f27683ba0d8e5426bf41a8c6ff03879488120cf5b3a761e77953169c0600a708 - languageName: node - linkType: hard - "decamelize@npm:^1.2.0": version: 1.2.0 resolution: "decamelize@npm:1.2.0" @@ -3099,27 +3218,28 @@ __metadata: linkType: hard "deep-is@npm:^0.1.3": - version: 0.1.3 - resolution: "deep-is@npm:0.1.3" - checksum: c15b04c3848a89880c94e25b077c19b47d9a30dd99048e70e5f95d943e7b246bee1da0c1376b56b01bc045be2cae7d9b1c856e68e47e9805634327de7c6cb6d5 + version: 0.1.4 + resolution: "deep-is@npm:0.1.4" + checksum: edb65dd0d7d1b9c40b2f50219aef30e116cedd6fc79290e740972c132c09106d2e80aa0bc8826673dd5a00222d4179c84b36a790eef63a4c4bca75a37ef90804 languageName: node linkType: hard "default-require-extensions@npm:^3.0.0": - version: 3.0.0 - resolution: "default-require-extensions@npm:3.0.0" + version: 3.0.1 + resolution: "default-require-extensions@npm:3.0.1" dependencies: strip-bom: ^4.0.0 - checksum: 0b5bdb6786ebb0ff6ef55386f37c8d221963fbbd3009588fe71032c85ca16da05eff2ad01bfe9bfc8bac5ce95a18f66b38c50d454482e3e9d2de1142424a3e7c + checksum: 45882fc971dd157faf6716ced04c15cf252c0a2d6f5c5844b66ca49f46ed03396a26cd940771aa569927aee22923a961bab789e74b25aabc94d90742c9dd1217 languageName: node linkType: hard -"define-properties@npm:^1.1.3": - version: 1.1.3 - resolution: "define-properties@npm:1.1.3" +"define-properties@npm:^1.1.3, define-properties@npm:^1.1.4, define-properties@npm:^1.2.0": + version: 1.2.0 + resolution: "define-properties@npm:1.2.0" dependencies: - object-keys: ^1.0.12 - checksum: da80dba55d0cd76a5a7ab71ef6ea0ebcb7b941f803793e4e0257b384cb772038faa0c31659d244e82c4342edef841c1a1212580006a05a5068ee48223d787317 + has-property-descriptors: ^1.0.0 + object-keys: ^1.1.1 + checksum: e60aee6a19b102df4e2b1f301816804e81ab48bb91f00d0d935f269bf4b3f79c88b39e4f89eaa132890d23267335fd1140dfcd8d5ccd61031a0a2c41a54e33a6 languageName: node linkType: hard @@ -3130,24 +3250,24 @@ __metadata: languageName: node linkType: hard -"depd@npm:^1.1.2, depd@npm:~1.1.2": - version: 1.1.2 - resolution: "depd@npm:1.1.2" - checksum: 6b406620d269619852885ce15965272b829df6f409724415e0002c8632ab6a8c0a08ec1f0bd2add05dc7bd7507606f7e2cc034fa24224ab829580040b835ecd9 - languageName: node - linkType: hard - -"depd@npm:^2.0.0, depd@npm:~2.0.0": +"depd@npm:2.0.0, depd@npm:^2.0.0, depd@npm:~2.0.0": version: 2.0.0 resolution: "depd@npm:2.0.0" checksum: abbe19c768c97ee2eed6282d8ce3031126662252c58d711f646921c9623f9052e3e1906443066beec1095832f534e57c523b7333f8e7e0d93051ab6baef5ab3a languageName: node linkType: hard -"destroy@npm:^1.0.4": - version: 1.0.4 - resolution: "destroy@npm:1.0.4" - checksum: da9ab4961dc61677c709da0c25ef01733042614453924d65636a7db37308fef8a24cd1e07172e61173d471ca175371295fbc984b0af5b2b4ff47cd57bd784c03 +"depd@npm:~1.1.2": + version: 1.1.2 + resolution: "depd@npm:1.1.2" + checksum: 6b406620d269619852885ce15965272b829df6f409724415e0002c8632ab6a8c0a08ec1f0bd2add05dc7bd7507606f7e2cc034fa24224ab829580040b835ecd9 + languageName: node + linkType: hard + +"destroy@npm:1.2.0, destroy@npm:^1.0.4": + version: 1.2.0 + resolution: "destroy@npm:1.2.0" + checksum: 0acb300b7478a08b92d810ab229d5afe0d2f4399272045ab22affa0d99dbaf12637659411530a6fcd597a9bdac718fc94373a61a95b4651bbc7b83684a565e38 languageName: node linkType: hard @@ -3213,6 +3333,13 @@ __metadata: languageName: node linkType: hard +"eastasianwidth@npm:^0.2.0": + version: 0.2.0 + resolution: "eastasianwidth@npm:0.2.0" + checksum: 7d00d7cd8e49b9afa762a813faac332dee781932d6f2c848dc348939c4253f1d4564341b7af1d041853bc3f32c2ef141b58e0a4d9862c17a7f08f68df1e0f1ed + languageName: node + linkType: hard + "ee-first@npm:1.1.1": version: 1.1.1 resolution: "ee-first@npm:1.1.1" @@ -3220,10 +3347,10 @@ __metadata: languageName: node linkType: hard -"electron-to-chromium@npm:^1.3.723": - version: 1.3.734 - resolution: "electron-to-chromium@npm:1.3.734" - checksum: 129a13f372c01fdbf09b5653a299a9c6106889e5850a5101e70faac0a41c466749b283ed6e5338c234203d81a9643bbc8ee446b84c87d218c59815333df431c5 +"electron-to-chromium@npm:^1.4.477": + version: 1.4.491 + resolution: "electron-to-chromium@npm:1.4.491" + checksum: 8d96c720c808a694b907b7a9d63da89f739374f90adb9db3d2b065a8e05de5548caf1b6ab0eade3150947cdefc962d342edc6d69c68ef489ecdd45e92a17677c languageName: node linkType: hard @@ -3249,6 +3376,13 @@ __metadata: languageName: node linkType: hard +"emoji-regex@npm:^9.2.2": + version: 9.2.2 + resolution: "emoji-regex@npm:9.2.2" + checksum: 8487182da74aabd810ac6d6f1994111dfc0e331b01271ae01ec1eb0ad7b5ecc2bbbbd2f053c05cb55a1ac30449527d819bbfbf0e3de1023db308cbcb47f86601 + languageName: node + linkType: hard + "encodeurl@npm:^1.0.2, encodeurl@npm:~1.0.2": version: 1.0.2 resolution: "encodeurl@npm:1.0.2" @@ -3256,7 +3390,7 @@ __metadata: languageName: node linkType: hard -"encoding@npm:^0.1.12": +"encoding@npm:^0.1.13": version: 0.1.13 resolution: "encoding@npm:0.1.13" dependencies: @@ -3274,16 +3408,16 @@ __metadata: languageName: node linkType: hard -"engine.io-parser@npm:~5.0.3": - version: 5.0.4 - resolution: "engine.io-parser@npm:5.0.4" - checksum: d4ad0cef6ff63c350e35696da9bb3dbd180f67b56e93e90375010cc40393e6c0639b780d5680807e1d93a7e2e3d7b4a1c3b27cf75db28eb8cbf605bc1497da03 +"engine.io-parser@npm:~5.2.1": + version: 5.2.1 + resolution: "engine.io-parser@npm:5.2.1" + checksum: 55b0e8e18500f50c1573675c53597c5552554ead08d3f30ff19fde6409e48f882a8e01f84e9772cd155c18a1d653d06f6bf57b4e1f8b834c63c9eaf3b657b88e languageName: node linkType: hard -"engine.io@npm:~6.2.0": - version: 6.2.0 - resolution: "engine.io@npm:6.2.0" +"engine.io@npm:~6.5.2": + version: 6.5.2 + resolution: "engine.io@npm:6.5.2" dependencies: "@types/cookie": ^0.4.1 "@types/cors": ^2.8.12 @@ -3293,28 +3427,29 @@ __metadata: cookie: ~0.4.1 cors: ~2.8.5 debug: ~4.3.1 - engine.io-parser: ~5.0.3 - ws: ~8.2.3 - checksum: cc485c5ba2e0c4f6ca02dcafd192b22f9dad89d01dc815005298780d3fb910db4cebab4696e8615290c473c2eeb259e8bee2a1fb7ab594d9c80f9f3485771911 + engine.io-parser: ~5.2.1 + ws: ~8.11.0 + checksum: 2fb1da39932d526cd5033c399978c65d367cce51e6b511a572bcf4a520b863652e26123d7efceee6cef8c96221585eb953a0e541ae25f6009e9ff5149b067ecd languageName: node linkType: hard -"enhanced-resolve@npm:^5.10.0": - version: 5.12.0 - resolution: "enhanced-resolve@npm:5.12.0" +"enhanced-resolve@npm:^5.15.0": + version: 5.15.0 + resolution: "enhanced-resolve@npm:5.15.0" dependencies: graceful-fs: ^4.2.4 tapable: ^2.2.0 - checksum: bf3f787facaf4ce3439bef59d148646344e372bef5557f0d37ea8aa02c51f50a925cd1f07b8d338f18992c29f544ec235a8c64bcdb56030196c48832a5494174 + checksum: fbd8cdc9263be71cc737aa8a7d6c57b43d6aa38f6cc75dde6fcd3598a130cc465f979d2f4d01bb3bf475acb43817749c79f8eef9be048683602ca91ab52e4f11 languageName: node linkType: hard "enquirer@npm:^2.3.5": - version: 2.3.6 - resolution: "enquirer@npm:2.3.6" + version: 2.4.1 + resolution: "enquirer@npm:2.4.1" dependencies: ansi-colors: ^4.1.1 - checksum: 1c0911e14a6f8d26721c91e01db06092a5f7675159f0261d69c403396a385afd13dd76825e7678f66daffa930cfaa8d45f506fb35f818a2788463d022af1b884 + strip-ansi: ^6.0.1 + checksum: f080f11a74209647dbf347a7c6a83c8a47ae1ebf1e75073a808bc1088eb780aa54075bfecd1bcdb3e3c724520edb8e6ee05da031529436b421b71066fcc48cb5 languageName: node linkType: hard @@ -3333,11 +3468,11 @@ __metadata: linkType: hard "envinfo@npm:^7.7.3": - version: 7.8.1 - resolution: "envinfo@npm:7.8.1" + version: 7.10.0 + resolution: "envinfo@npm:7.10.0" bin: envinfo: dist/cli.js - checksum: de736c98d6311c78523628ff127af138451b162e57af5293c1b984ca821d0aeb9c849537d2fde0434011bed33f6bca5310ca2aab8a51a3f28fc719e89045d648 + checksum: 05e81a5768c42cbd5c580dc3f274db3401facadd53e9bd52e2aa49dfbb5d8b26f6181c25a6652d79618a6994185bd2b1c137673101690b147f758e4e71d42f7d languageName: node linkType: hard @@ -3348,43 +3483,77 @@ __metadata: languageName: node linkType: hard -"error-ex@npm:^1.3.1": - version: 1.3.2 - resolution: "error-ex@npm:1.3.2" +"es-abstract@npm:^1.19.0, es-abstract@npm:^1.20.4, es-abstract@npm:^1.21.2": + version: 1.22.1 + resolution: "es-abstract@npm:1.22.1" dependencies: - is-arrayish: ^0.2.1 - checksum: c1c2b8b65f9c91b0f9d75f0debaa7ec5b35c266c2cac5de412c1a6de86d4cbae04ae44e510378cb14d032d0645a36925d0186f8bb7367bcc629db256b743a001 + array-buffer-byte-length: ^1.0.0 + arraybuffer.prototype.slice: ^1.0.1 + available-typed-arrays: ^1.0.5 + call-bind: ^1.0.2 + es-set-tostringtag: ^2.0.1 + es-to-primitive: ^1.2.1 + function.prototype.name: ^1.1.5 + get-intrinsic: ^1.2.1 + get-symbol-description: ^1.0.0 + globalthis: ^1.0.3 + gopd: ^1.0.1 + has: ^1.0.3 + has-property-descriptors: ^1.0.0 + has-proto: ^1.0.1 + has-symbols: ^1.0.3 + internal-slot: ^1.0.5 + is-array-buffer: ^3.0.2 + is-callable: ^1.2.7 + is-negative-zero: ^2.0.2 + is-regex: ^1.1.4 + is-shared-array-buffer: ^1.0.2 + is-string: ^1.0.7 + is-typed-array: ^1.1.10 + is-weakref: ^1.0.2 + object-inspect: ^1.12.3 + object-keys: ^1.1.1 + object.assign: ^4.1.4 + regexp.prototype.flags: ^1.5.0 + safe-array-concat: ^1.0.0 + safe-regex-test: ^1.0.0 + string.prototype.trim: ^1.2.7 + string.prototype.trimend: ^1.0.6 + string.prototype.trimstart: ^1.0.6 + typed-array-buffer: ^1.0.0 + typed-array-byte-length: ^1.0.0 + typed-array-byte-offset: ^1.0.0 + typed-array-length: ^1.0.4 + unbox-primitive: ^1.0.2 + which-typed-array: ^1.1.10 + checksum: 614e2c1c3717cb8d30b6128ef12ea110e06fd7d75ad77091ca1c5dbfb00da130e62e4bbbbbdda190eada098a22b27fe0f99ae5a1171dac2c8663b1e8be8a3a9b + languageName: node + linkType: hard + +"es-module-lexer@npm:^1.2.1": + version: 1.3.0 + resolution: "es-module-lexer@npm:1.3.0" + checksum: 48fd9f504a9d2a894126f75c8b7ccc6273a289983e9b67255f165bfd9ae765d50100218251e94e702ca567826905ea2f7b3b4a0c4d74d3ce99cce3a2a606a238 languageName: node linkType: hard -"es-abstract@npm:^1.18.0-next.1, es-abstract@npm:^1.18.0-next.2": - version: 1.18.0 - resolution: "es-abstract@npm:1.18.0" +"es-set-tostringtag@npm:^2.0.1": + version: 2.0.1 + resolution: "es-set-tostringtag@npm:2.0.1" dependencies: - call-bind: ^1.0.2 - es-to-primitive: ^1.2.1 - function-bind: ^1.1.1 - get-intrinsic: ^1.1.1 + get-intrinsic: ^1.1.3 has: ^1.0.3 - has-symbols: ^1.0.2 - is-callable: ^1.2.3 - is-negative-zero: ^2.0.1 - is-regex: ^1.1.2 - is-string: ^1.0.5 - object-inspect: ^1.9.0 - object-keys: ^1.1.1 - object.assign: ^4.1.2 - string.prototype.trimend: ^1.0.4 - string.prototype.trimstart: ^1.0.4 - unbox-primitive: ^1.0.0 - checksum: 6783bea97f372fd4f1fc77e4e294d024b9f40559a83b40c46b69565511cf13d462a6189b822228c6bb818bd09d2f23b33500206d39bbdc69f7cc7ffebf6640a1 + has-tostringtag: ^1.0.0 + checksum: ec416a12948cefb4b2a5932e62093a7cf36ddc3efd58d6c58ca7ae7064475ace556434b869b0bbeb0c365f1032a8ccd577211101234b69837ad83ad204fff884 languageName: node linkType: hard -"es-module-lexer@npm:^0.9.0": - version: 0.9.3 - resolution: "es-module-lexer@npm:0.9.3" - checksum: 84bbab23c396281db2c906c766af58b1ae2a1a2599844a504df10b9e8dc77ec800b3211fdaa133ff700f5703d791198807bba25d9667392d27a5e9feda344da8 +"es-shim-unscopables@npm:^1.0.0": + version: 1.0.0 + resolution: "es-shim-unscopables@npm:1.0.0" + dependencies: + has: ^1.0.3 + checksum: 83e95cadbb6ee44d3644dfad60dcad7929edbc42c85e66c3e99aefd68a3a5c5665f2686885cddb47dfeabfd77bd5ea5a7060f2092a955a729bbd8834f0d86fa1 languageName: node linkType: hard @@ -3427,66 +3596,78 @@ __metadata: languageName: node linkType: hard +"escape-string-regexp@npm:^4.0.0": + version: 4.0.0 + resolution: "escape-string-regexp@npm:4.0.0" + checksum: 98b48897d93060f2322108bf29db0feba7dd774be96cd069458d1453347b25ce8682ecc39859d4bca2203cc0ab19c237bcc71755eff49a0f8d90beadeeba5cc5 + languageName: node + linkType: hard + "eslint-config-prettier@npm:^8.3.0": - version: 8.3.0 - resolution: "eslint-config-prettier@npm:8.3.0" + version: 8.10.0 + resolution: "eslint-config-prettier@npm:8.10.0" peerDependencies: eslint: ">=7.0.0" bin: eslint-config-prettier: bin/cli.js - checksum: df4cea3032671995bb5ab07e016169072f7fa59f44a53251664d9ca60951b66cdc872683b5c6a3729c91497c11490ca44a79654b395dd6756beb0c3903a37196 + checksum: 153266badd477e49b0759816246b2132f1dbdb6c7f313ca60a9af5822fd1071c2bc5684a3720d78b725452bbac04bb130878b2513aea5e72b1b792de5a69fec8 languageName: node linkType: hard -"eslint-import-resolver-node@npm:^0.3.4": - version: 0.3.4 - resolution: "eslint-import-resolver-node@npm:0.3.4" +"eslint-import-resolver-node@npm:^0.3.4, eslint-import-resolver-node@npm:^0.3.7": + version: 0.3.9 + resolution: "eslint-import-resolver-node@npm:0.3.9" dependencies: - debug: ^2.6.9 - resolve: ^1.13.1 - checksum: a0db55ec26c5bb385c8681af6b8d6dee16768d5f27dff72c3113407d0f028f28e56dcb1cc3a4689c79396a5f6a9c24bd0cac9a2c9c588c7d7357d24a42bec876 + debug: ^3.2.7 + is-core-module: ^2.13.0 + resolve: ^1.22.4 + checksum: 439b91271236b452d478d0522a44482e8c8540bf9df9bd744062ebb89ab45727a3acd03366a6ba2bdbcde8f9f718bab7fe8db64688aca75acf37e04eafd25e22 languageName: node linkType: hard -"eslint-module-utils@npm:^2.6.1": - version: 2.6.1 - resolution: "eslint-module-utils@npm:2.6.1" +"eslint-module-utils@npm:^2.8.0": + version: 2.8.0 + resolution: "eslint-module-utils@npm:2.8.0" dependencies: debug: ^3.2.7 - pkg-dir: ^2.0.0 - checksum: 3cc43a36a0075d300db6a3946203ec92249b6da1539694ef205a43b4ccfbc2eaf4961475d4b89c24b12c187d6bfd882c7c7d0b2ce02adb40c2dedb7fd022a7e2 + peerDependenciesMeta: + eslint: + optional: true + checksum: 74c6dfea7641ebcfe174be61168541a11a14aa8d72e515f5f09af55cd0d0862686104b0524aa4b8e0ce66418a44aa38a94d2588743db5fd07a6b49ffd16921d2 languageName: node linkType: hard "eslint-plugin-import@npm:^2.22.1": - version: 2.23.2 - resolution: "eslint-plugin-import@npm:2.23.2" + version: 2.28.0 + resolution: "eslint-plugin-import@npm:2.28.0" dependencies: - array-includes: ^3.1.3 - array.prototype.flat: ^1.2.4 - contains-path: ^1.0.0 - debug: ^2.6.9 + array-includes: ^3.1.6 + array.prototype.findlastindex: ^1.2.2 + array.prototype.flat: ^1.3.1 + array.prototype.flatmap: ^1.3.1 + debug: ^3.2.7 doctrine: ^2.1.0 - eslint-import-resolver-node: ^0.3.4 - eslint-module-utils: ^2.6.1 - find-up: ^2.0.0 + eslint-import-resolver-node: ^0.3.7 + eslint-module-utils: ^2.8.0 has: ^1.0.3 - is-core-module: ^2.4.0 - minimatch: ^3.0.4 - object.values: ^1.1.3 - pkg-up: ^2.0.0 - read-pkg-up: ^3.0.0 - resolve: ^1.20.0 - tsconfig-paths: ^3.9.0 + is-core-module: ^2.12.1 + is-glob: ^4.0.3 + minimatch: ^3.1.2 + object.fromentries: ^2.0.6 + object.groupby: ^1.0.0 + object.values: ^1.1.6 + resolve: ^1.22.3 + semver: ^6.3.1 + tsconfig-paths: ^3.14.2 peerDependencies: - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 - checksum: cd8f119266cbf971ac8b90875acd3c971c39744bafbeb1a071a17c0b5042277d46f736ea38d625aa04501909ba835d154926bbb9ba47a5403deac601d9ae3dca + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + checksum: f9eba311b93ca1bb89311856b1f7285bd79e0181d7eb70fe115053ff77e2235fea749b30f538b78927dc65769340b5be61f4c9581d1c82bcdcccb2061f440ad1 languageName: node linkType: hard "eslint-plugin-prettier@npm:^3.4.0": - version: 3.4.0 - resolution: "eslint-plugin-prettier@npm:3.4.0" + version: 3.4.1 + resolution: "eslint-plugin-prettier@npm:3.4.1" dependencies: prettier-linter-helpers: ^1.0.0 peerDependencies: @@ -3495,7 +3676,7 @@ __metadata: peerDependenciesMeta: eslint-config-prettier: optional: true - checksum: 30a07e8d12637d2988e371f6a20ff4c86fd7fdc3596d1d18d62c0367804f38e06a65052d0281234aeb2552e4d1908dcb2de20543413e038251a2717a46400a9d + checksum: fa6a89f0d7cba1cc87064352f5a4a68dc3739448dd279bec2bced1bfa3b704467e603d13b69dcec853f8fa30b286b8b715912898e9da776e1b016cf0ee48bd99 languageName: node linkType: hard @@ -3527,17 +3708,6 @@ __metadata: languageName: node linkType: hard -"eslint-utils@npm:^3.0.0": - version: 3.0.0 - resolution: "eslint-utils@npm:3.0.0" - dependencies: - eslint-visitor-keys: ^2.0.0 - peerDependencies: - eslint: ">=5" - checksum: 0668fe02f5adab2e5a367eee5089f4c39033af20499df88fe4e6aba2015c20720404d8c3d6349b6f716b08fdf91b9da4e5d5481f265049278099c4c836ccb619 - languageName: node - linkType: hard - "eslint-visitor-keys@npm:^1.1.0, eslint-visitor-keys@npm:^1.3.0": version: 1.3.0 resolution: "eslint-visitor-keys@npm:1.3.0" @@ -3553,33 +3723,36 @@ __metadata: linkType: hard "eslint-visitor-keys@npm:^3.3.0": - version: 3.3.0 - resolution: "eslint-visitor-keys@npm:3.3.0" - checksum: d59e68a7c5a6d0146526b0eec16ce87fbf97fe46b8281e0d41384224375c4e52f5ffb9e16d48f4ea50785cde93f766b0c898e31ab89978d88b0e1720fbfb7808 + version: 3.4.3 + resolution: "eslint-visitor-keys@npm:3.4.3" + checksum: 36e9ef87fca698b6fd7ca5ca35d7b2b6eeaaf106572e2f7fd31c12d3bfdaccdb587bba6d3621067e5aece31c8c3a348b93922ab8f7b2cbc6aaab5e1d89040c60 languageName: node linkType: hard "eslint@npm:^7.5": - version: 7.26.0 - resolution: "eslint@npm:7.26.0" + version: 7.32.0 + resolution: "eslint@npm:7.32.0" dependencies: "@babel/code-frame": 7.12.11 - "@eslint/eslintrc": ^0.4.1 + "@eslint/eslintrc": ^0.4.3 + "@humanwhocodes/config-array": ^0.5.0 ajv: ^6.10.0 chalk: ^4.0.0 cross-spawn: ^7.0.2 debug: ^4.0.1 doctrine: ^3.0.0 enquirer: ^2.3.5 + escape-string-regexp: ^4.0.0 eslint-scope: ^5.1.1 eslint-utils: ^2.1.0 eslint-visitor-keys: ^2.0.0 espree: ^7.3.1 esquery: ^1.4.0 esutils: ^2.0.2 + fast-deep-equal: ^3.1.3 file-entry-cache: ^6.0.1 functional-red-black-tree: ^1.0.1 - glob-parent: ^5.0.0 + glob-parent: ^5.1.2 globals: ^13.6.0 ignore: ^4.0.6 import-fresh: ^3.0.0 @@ -3588,7 +3761,7 @@ __metadata: js-yaml: ^3.13.1 json-stable-stringify-without-jsonify: ^1.0.1 levn: ^0.4.1 - lodash: ^4.17.21 + lodash.merge: ^4.6.2 minimatch: ^3.0.4 natural-compare: ^1.4.0 optionator: ^0.9.1 @@ -3597,12 +3770,12 @@ __metadata: semver: ^7.2.1 strip-ansi: ^6.0.0 strip-json-comments: ^3.1.0 - table: ^6.0.4 + table: ^6.0.9 text-table: ^0.2.0 v8-compile-cache: ^2.0.3 bin: eslint: bin/eslint.js - checksum: 6178eeb1bf1161471fd5ecb12b1182f26313482371fb067659cc44095791e80e1e0eba22e543929935f559b2f8066ec128311b35b068bcba10cfada78a1ce91d + checksum: cc85af9985a3a11085c011f3d27abe8111006d34cc274291b3c4d7bea51a4e2ff6135780249becd919ba7f6d6d1ecc38a6b73dacb6a7be08d38453b344dc8d37 languageName: node linkType: hard @@ -3635,11 +3808,11 @@ __metadata: linkType: hard "esquery@npm:^1.4.0": - version: 1.4.0 - resolution: "esquery@npm:1.4.0" + version: 1.5.0 + resolution: "esquery@npm:1.5.0" dependencies: estraverse: ^5.1.0 - checksum: a0807e17abd7fbe5fbd4fab673038d6d8a50675cdae6b04fbaa520c34581be0c5fa24582990e8acd8854f671dd291c78bb2efb9e0ed5b62f33bac4f9cf820210 + checksum: aefb0d2596c230118656cd4ec7532d447333a410a48834d80ea648b1e7b5c9bc9ed8b5e33a89cb04e487b60d622f44cf5713bf4abed7c97343edefdc84a35900 languageName: node linkType: hard @@ -3660,9 +3833,9 @@ __metadata: linkType: hard "estraverse@npm:^5.1.0, estraverse@npm:^5.2.0": - version: 5.2.0 - resolution: "estraverse@npm:5.2.0" - checksum: ec11b70d946bf5d7f76f91db38ef6f08109ac1b36cda293a26e678e58df4719f57f67b9ec87042afdd1f0267cee91865be3aa48d2161765a93defab5431be7b8 + version: 5.3.0 + resolution: "estraverse@npm:5.3.0" + checksum: 072780882dc8416ad144f8fe199628d2b3e7bbc9989d9ed43795d2c90309a2047e6bc5979d7e2322a341163d22cfad9e21f4110597fe487519697389497e4e2b languageName: node linkType: hard @@ -3687,23 +3860,6 @@ __metadata: languageName: node linkType: hard -"execa@npm:^5.0.0": - version: 5.0.0 - resolution: "execa@npm:5.0.0" - dependencies: - cross-spawn: ^7.0.3 - get-stream: ^6.0.0 - human-signals: ^2.1.0 - is-stream: ^2.0.0 - merge-stream: ^2.0.0 - npm-run-path: ^4.0.1 - onetime: ^5.1.2 - signal-exit: ^3.0.3 - strip-final-newline: ^2.0.0 - checksum: a044367ebdcc68ca019810cb134510fc77bbc55c799122258ee0e00e289c132941ab48c2a331a036699c42bc8d479d451ae67c105fce5ce5cc813e7dd92d642b - languageName: node - linkType: hard - "expand-template@npm:^2.0.3": version: 2.0.3 resolution: "expand-template@npm:2.0.3" @@ -3711,6 +3867,13 @@ __metadata: languageName: node linkType: hard +"exponential-backoff@npm:^3.1.1": + version: 3.1.1 + resolution: "exponential-backoff@npm:3.1.1" + checksum: 3d21519a4f8207c99f7457287291316306255a328770d320b401114ec8481986e4e467e854cb9914dd965e0a1ca810a23ccb559c642c88f4c7f55c55778a9b48 + languageName: node + linkType: hard + "extend@npm:^3.0.0": version: 3.0.2 resolution: "extend@npm:3.0.2" @@ -3718,7 +3881,7 @@ __metadata: languageName: node linkType: hard -"fast-deep-equal@npm:^3.1.1": +"fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3": version: 3.1.3 resolution: "fast-deep-equal@npm:3.1.3" checksum: e21a9d8d84f53493b6aa15efc9cfd53dd5b714a1f23f67fb5dc8f574af80df889b3bce25dc081887c6d25457cce704e636395333abad896ccdec03abaf1f3f9d @@ -3726,22 +3889,22 @@ __metadata: linkType: hard "fast-diff@npm:^1.1.2": - version: 1.2.0 - resolution: "fast-diff@npm:1.2.0" - checksum: 1b5306eaa9e826564d9e5ffcd6ebd881eb5f770b3f977fcbf38f05c824e42172b53c79920e8429c54eb742ce15a0caf268b0fdd5b38f6de52234c4a8368131ae + version: 1.3.0 + resolution: "fast-diff@npm:1.3.0" + checksum: d22d371b994fdc8cce9ff510d7b8dc4da70ac327bcba20df607dd5b9cae9f908f4d1028f5fe467650f058d1e7270235ae0b8230809a262b4df587a3b3aa216c3 languageName: node linkType: hard "fast-glob@npm:^3.2.9": - version: 3.2.11 - resolution: "fast-glob@npm:3.2.11" + version: 3.3.1 + resolution: "fast-glob@npm:3.3.1" dependencies: "@nodelib/fs.stat": ^2.0.2 "@nodelib/fs.walk": ^1.2.3 glob-parent: ^5.1.2 merge2: ^1.3.0 micromatch: ^4.0.4 - checksum: f473105324a7780a20c06de842e15ddbb41d3cb7e71d1e4fe6e8373204f22245d54f5ab9e2061e6a1c613047345954d29b022e0e76f5c28b1df9858179a0e6d7 + checksum: b6f3add6403e02cf3a798bfbb1183d0f6da2afd368f27456010c0bc1f9640aea308243d4cb2c0ab142f618276e65ecb8be1661d7c62a7b4e5ba774b9ce5432e5 languageName: node linkType: hard @@ -3760,18 +3923,18 @@ __metadata: linkType: hard "fastest-levenshtein@npm:^1.0.12": - version: 1.0.12 - resolution: "fastest-levenshtein@npm:1.0.12" - checksum: e1a013698dd1d302c7a78150130c7d50bb678c2c2f8839842a796d66cc7cdf50ea6b3d7ca930b0c8e7e8c2cd84fea8ab831023b382f7aab6922c318c1451beab + version: 1.0.16 + resolution: "fastest-levenshtein@npm:1.0.16" + checksum: a78d44285c9e2ae2c25f3ef0f8a73f332c1247b7ea7fb4a191e6bb51aa6ee1ef0dfb3ed113616dcdc7023e18e35a8db41f61c8d88988e877cf510df8edafbc71 languageName: node linkType: hard "fastq@npm:^1.6.0": - version: 1.11.0 - resolution: "fastq@npm:1.11.0" + version: 1.15.0 + resolution: "fastq@npm:1.15.0" dependencies: reusify: ^1.0.4 - checksum: 9db0ceea9280c5f207da40c562a4e574913c18933cd74b880b01bf8e81a9a6e368ec71e89c9c1b9f4066d0275cc22600efd6dde87f713217acbf67076481734b + checksum: 0170e6bfcd5d57a70412440b8ef600da6de3b2a6c5966aeaf0a852d542daff506a0ee92d6de7679d1de82e644bce69d7a574a6c93f0b03964b5337eed75ada1a languageName: node linkType: hard @@ -3816,22 +3979,13 @@ __metadata: linkType: hard "find-cache-dir@npm:^3.2.0": - version: 3.3.1 - resolution: "find-cache-dir@npm:3.3.1" + version: 3.3.2 + resolution: "find-cache-dir@npm:3.3.2" dependencies: commondir: ^1.0.1 make-dir: ^3.0.2 pkg-dir: ^4.1.0 - checksum: 0f7c22b65e07f9b486b4560227d014fab1e79ffbbfbafb87d113a2e878510bd620ef6fdff090e5248bb2846d28851d19e42bfdc7c50687966acc106328e7abf1 - languageName: node - linkType: hard - -"find-up@npm:^2.0.0, find-up@npm:^2.1.0": - version: 2.1.0 - resolution: "find-up@npm:2.1.0" - dependencies: - locate-path: ^2.0.0 - checksum: 43284fe4da09f89011f08e3c32cd38401e786b19226ea440b75386c1b12a4cb738c94969808d53a84f564ede22f732c8409e3cfc3f7fb5b5c32378ad0bbf28bd + checksum: 1e61c2e64f5c0b1c535bd85939ae73b0e5773142713273818cc0b393ee3555fb0fd44e1a5b161b8b6c3e03e98c2fcc9c227d784850a13a90a8ab576869576817 languageName: node linkType: hard @@ -3855,20 +4009,29 @@ __metadata: languageName: node linkType: hard -"flatted@npm:^3.1.0, flatted@npm:^3.2.4": - version: 3.2.4 - resolution: "flatted@npm:3.2.4" - checksum: 7d33846428ab337ec81ef9b8b9103894c1c81f5f67feb32bd4ed106fbc47da60d56edb42efd36c9f1f30a010272aeccd34ec1ffacfe9dfdff19673b1d4df481b +"flatted@npm:^3.1.0, flatted@npm:^3.2.7": + version: 3.2.7 + resolution: "flatted@npm:3.2.7" + checksum: 427633049d55bdb80201c68f7eb1cbd533e03eac541f97d3aecab8c5526f12a20ccecaeede08b57503e772c769e7f8680b37e8d482d1e5f8d7e2194687f9ea35 languageName: node linkType: hard "follow-redirects@npm:^1.0.0, follow-redirects@npm:^1.14.0": - version: 1.14.9 - resolution: "follow-redirects@npm:1.14.9" + version: 1.15.2 + resolution: "follow-redirects@npm:1.15.2" peerDependenciesMeta: debug: optional: true - checksum: f5982e0eb481818642492d3ca35a86989c98af1128b8e1a62911a3410621bc15d2b079e8170b35b19d3bdee770b73ed431a257ed86195af773771145baa57845 + checksum: faa66059b66358ba65c234c2f2a37fcec029dc22775f35d9ad6abac56003268baf41e55f9ee645957b32c7d9f62baf1f0b906e68267276f54ec4b4c597c2b190 + languageName: node + linkType: hard + +"for-each@npm:^0.3.3": + version: 0.3.3 + resolution: "for-each@npm:0.3.3" + dependencies: + is-callable: ^1.1.3 + checksum: 6c48ff2bc63362319c65e2edca4a8e1e3483a2fabc72fbe7feaf8c73db94fc7861bd53bc02c8a66a0c1dd709da6b04eec42e0abdd6b40ce47305ae92a25e5d28 languageName: node linkType: hard @@ -3882,6 +4045,16 @@ __metadata: languageName: node linkType: hard +"foreground-child@npm:^3.1.0": + version: 3.1.1 + resolution: "foreground-child@npm:3.1.1" + dependencies: + cross-spawn: ^7.0.0 + signal-exit: ^4.0.1 + checksum: 139d270bc82dc9e6f8bc045fe2aae4001dc2472157044fdfad376d0a3457f77857fa883c1c8b21b491c6caade9a926a4bed3d3d2e8d3c9202b151a4cbbd0bcd5 + languageName: node + linkType: hard + "fresh@npm:~0.5.2": version: 0.5.2 resolution: "fresh@npm:0.5.2" @@ -3903,14 +4076,14 @@ __metadata: languageName: node linkType: hard -"fs-extra@npm:^10.0.0": - version: 10.0.0 - resolution: "fs-extra@npm:10.0.0" +"fs-extra@npm:^8.1.0": + version: 8.1.0 + resolution: "fs-extra@npm:8.1.0" dependencies: graceful-fs: ^4.2.0 - jsonfile: ^6.0.1 - universalify: ^2.0.0 - checksum: 5285a3d8f34b917cf2b66af8c231a40c1623626e9d701a20051d3337be16c6d7cac94441c8b3732d47a92a2a027886ca93c69b6a4ae6aee3c89650d2a8880c0a + jsonfile: ^4.0.0 + universalify: ^0.1.0 + checksum: bf44f0e6cea59d5ce071bba4c43ca76d216f89e402dc6285c128abc0902e9b8525135aa808adad72c9d5d218e9f4bcc63962815529ff2f684ad532172a284880 languageName: node linkType: hard @@ -3923,6 +4096,15 @@ __metadata: languageName: node linkType: hard +"fs-minipass@npm:^3.0.0": + version: 3.0.3 + resolution: "fs-minipass@npm:3.0.3" + dependencies: + minipass: ^7.0.3 + checksum: 8722a41109130851d979222d3ec88aabaceeaaf8f57b2a8f744ef8bd2d1ce95453b04a61daa0078822bc5cd21e008814f06fe6586f56fef511e71b8d2394d802 + languageName: node + linkType: hard + "fs.realpath@npm:^1.0.0": version: 1.0.0 resolution: "fs.realpath@npm:1.0.0" @@ -3956,6 +4138,18 @@ __metadata: languageName: node linkType: hard +"function.prototype.name@npm:^1.1.5": + version: 1.1.5 + resolution: "function.prototype.name@npm:1.1.5" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.1.3 + es-abstract: ^1.19.0 + functions-have-names: ^1.2.2 + checksum: acd21d733a9b649c2c442f067567743214af5fa248dbeee69d8278ce7df3329ea5abac572be9f7470b4ec1cd4d8f1040e3c5caccf98ebf2bf861a0deab735c27 + languageName: node + linkType: hard + "functional-red-black-tree@npm:^1.0.1": version: 1.0.1 resolution: "functional-red-black-tree@npm:1.0.1" @@ -3963,6 +4157,29 @@ __metadata: languageName: node linkType: hard +"functions-have-names@npm:^1.2.2, functions-have-names@npm:^1.2.3": + version: 1.2.3 + resolution: "functions-have-names@npm:1.2.3" + checksum: c3f1f5ba20f4e962efb71344ce0a40722163e85bee2101ce25f88214e78182d2d2476aa85ef37950c579eb6cf6ee811c17b3101bb84004bb75655f3e33f3fdb5 + languageName: node + linkType: hard + +"gauge@npm:^4.0.3": + version: 4.0.4 + resolution: "gauge@npm:4.0.4" + dependencies: + aproba: ^1.0.3 || ^2.0.0 + color-support: ^1.1.3 + console-control-strings: ^1.1.0 + has-unicode: ^2.0.1 + signal-exit: ^3.0.7 + string-width: ^4.2.3 + strip-ansi: ^6.0.1 + wide-align: ^1.1.5 + checksum: 788b6bfe52f1dd8e263cda800c26ac0ca2ff6de0b6eee2fe0d9e3abf15e149b651bd27bf5226be10e6e3edb5c4e5d5985a5a1a98137e7a892f75eff76467ad2d + languageName: node + linkType: hard + "gauge@npm:~2.7.3": version: 2.7.4 resolution: "gauge@npm:2.7.4" @@ -3993,14 +4210,15 @@ __metadata: languageName: node linkType: hard -"get-intrinsic@npm:^1.0.2, get-intrinsic@npm:^1.1.1": - version: 1.1.1 - resolution: "get-intrinsic@npm:1.1.1" +"get-intrinsic@npm:^1.0.2, get-intrinsic@npm:^1.1.1, get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.0, get-intrinsic@npm:^1.2.1": + version: 1.2.1 + resolution: "get-intrinsic@npm:1.2.1" dependencies: function-bind: ^1.1.1 has: ^1.0.3 - has-symbols: ^1.0.1 - checksum: a9fe2ca8fa3f07f9b0d30fb202bcd01f3d9b9b6b732452e79c48e79f7d6d8d003af3f9e38514250e3553fdc83c61650851cb6870832ac89deaaceb08e3721a17 + has-proto: ^1.0.1 + has-symbols: ^1.0.3 + checksum: 5b61d88552c24b0cf6fa2d1b3bc5459d7306f699de060d76442cce49a4721f52b8c560a33ab392cf5575b7810277d54ded9d4d39a1ea61855619ebc005aa7e5f languageName: node linkType: hard @@ -4011,10 +4229,13 @@ __metadata: languageName: node linkType: hard -"get-stream@npm:^6.0.0": - version: 6.0.1 - resolution: "get-stream@npm:6.0.1" - checksum: e04ecece32c92eebf5b8c940f51468cd53554dcbb0ea725b2748be583c9523d00128137966afce410b9b051eb2ef16d657cd2b120ca8edafcf5a65e81af63cad +"get-symbol-description@npm:^1.0.0": + version: 1.0.0 + resolution: "get-symbol-description@npm:1.0.0" + dependencies: + call-bind: ^1.0.2 + get-intrinsic: ^1.1.1 + checksum: 9ceff8fe968f9270a37a1f73bf3f1f7bda69ca80f4f80850670e0e7b9444ff99323f7ac52f96567f8b5f5fbe7ac717a0d81d3407c7313e82810c6199446a5247 languageName: node linkType: hard @@ -4025,7 +4246,7 @@ __metadata: languageName: node linkType: hard -"glob-parent@npm:^5.0.0, glob-parent@npm:^5.1.2, glob-parent@npm:~5.1.2": +"glob-parent@npm:^5.1.2, glob-parent@npm:~5.1.2": version: 5.1.2 resolution: "glob-parent@npm:5.1.2" dependencies: @@ -4041,17 +4262,32 @@ __metadata: languageName: node linkType: hard +"glob@npm:^10.2.2": + version: 10.3.3 + resolution: "glob@npm:10.3.3" + dependencies: + foreground-child: ^3.1.0 + jackspeak: ^2.0.3 + minimatch: ^9.0.1 + minipass: ^5.0.0 || ^6.0.2 || ^7.0.0 + path-scurry: ^1.10.1 + bin: + glob: dist/cjs/src/bin.js + checksum: 29190d3291f422da0cb40b77a72fc8d2c51a36524e99b8bf412548b7676a6627489528b57250429612b6eec2e6fe7826d328451d3e694a9d15e575389308ec53 + languageName: node + linkType: hard + "glob@npm:^7.1.3, glob@npm:^7.1.4, glob@npm:^7.1.6, glob@npm:^7.1.7": - version: 7.2.0 - resolution: "glob@npm:7.2.0" + version: 7.2.3 + resolution: "glob@npm:7.2.3" dependencies: fs.realpath: ^1.0.0 inflight: ^1.0.4 inherits: 2 - minimatch: ^3.0.4 + minimatch: ^3.1.1 once: ^1.3.0 path-is-absolute: ^1.0.0 - checksum: 78a8ea942331f08ed2e055cb5b9e40fe6f46f579d7fd3d694f3412fe5db23223d29b7fee1575440202e9a7ff9a72ab106a39fee39934c7bedafe5e5f8ae20134 + checksum: 29452e97b38fa704dabb1d1045350fb2467cf0277e155aa9ff7077e90ad81d1ea9d53d3ee63bd37c05b09a065e90f16aec4a65f5b8de401d1dac40bc5605d133 languageName: node linkType: hard @@ -4062,30 +4298,21 @@ __metadata: languageName: node linkType: hard -"globals@npm:^12.1.0": - version: 12.4.0 - resolution: "globals@npm:12.4.0" - dependencies: - type-fest: ^0.8.1 - checksum: 7ae5ee16a96f1e8d71065405f57da0e33267f6b070cd36a5444c7780dd28639b48b92413698ac64f04bf31594f9108878bd8cb158ecdf759c39e05634fefcca6 - languageName: node - linkType: hard - -"globals@npm:^13.6.0": - version: 13.8.0 - resolution: "globals@npm:13.8.0" +"globals@npm:^13.6.0, globals@npm:^13.9.0": + version: 13.21.0 + resolution: "globals@npm:13.21.0" dependencies: type-fest: ^0.20.2 - checksum: acbfcad2b8aeff34d977a2df62bda863d7537e19f5b30cc3452493ce636b5193be9f68da46a53f41875f49052ddd7d550cd2568ecc818ddde3603e30def1fef3 + checksum: 86c92ca8a04efd864c10852cd9abb1ebe6d447dcc72936783e66eaba1087d7dba5c9c3421a48d6ca722c319378754dbcc3f3f732dbe47592d7de908edf58a773 languageName: node linkType: hard -"globalthis@npm:^1.0.1": - version: 1.0.2 - resolution: "globalthis@npm:1.0.2" +"globalthis@npm:^1.0.1, globalthis@npm:^1.0.3": + version: 1.0.3 + resolution: "globalthis@npm:1.0.3" dependencies: define-properties: ^1.1.3 - checksum: 5a5f3c7ab94708260a98106b35946b74bb57f6b2013e39668dc9e8770b80a3418103b63a2b4aa01c31af15fdf6a2940398ffc0a408573c34c2304f928895adff + checksum: fbd7d760dc464c886d0196166d92e5ffb4c84d0730846d6621a39fbbc068aeeb9c8d1421ad330e94b7bca4bb4ea092f5f21f3d36077812af5d098b4dc006c998 languageName: node linkType: hard @@ -4103,31 +4330,33 @@ __metadata: languageName: node linkType: hard -"graceful-fs@npm:^4.1.15, graceful-fs@npm:^4.1.2, graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.4, graceful-fs@npm:^4.2.6": - version: 4.2.6 - resolution: "graceful-fs@npm:4.2.6" - checksum: 792e64aafda05a151289f83eaa16aff34ef259658cefd65393883d959409f5a2389b0ec9ebf28f3d21f1b0ddc8f594a1162ae9b18e2b507a6799a70706ec573d +"gopd@npm:^1.0.1": + version: 1.0.1 + resolution: "gopd@npm:1.0.1" + dependencies: + get-intrinsic: ^1.1.3 + checksum: a5ccfb8806e0917a94e0b3de2af2ea4979c1da920bc381667c260e00e7cafdbe844e2cb9c5bcfef4e5412e8bf73bab837285bc35c7ba73aaaf0134d4583393a6 languageName: node linkType: hard -"graceful-fs@npm:^4.2.9": - version: 4.2.10 - resolution: "graceful-fs@npm:4.2.10" - checksum: 3f109d70ae123951905d85032ebeae3c2a5a7a997430df00ea30df0e3a6c60cf6689b109654d6fdacd28810a053348c4d14642da1d075049e6be1ba5216218da +"graceful-fs@npm:^4.1.15, graceful-fs@npm:^4.1.2, graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.4, graceful-fs@npm:^4.2.6, graceful-fs@npm:^4.2.9": + version: 4.2.11 + resolution: "graceful-fs@npm:4.2.11" + checksum: ac85f94da92d8eb6b7f5a8b20ce65e43d66761c55ce85ac96df6865308390da45a8d3f0296dd3a663de65d30ba497bd46c696cc1e248c72b13d6d567138a4fc7 languageName: node linkType: hard -"grapheme-splitter@npm:^1.0.4": - version: 1.0.4 - resolution: "grapheme-splitter@npm:1.0.4" - checksum: 0c22ec54dee1b05cd480f78cf14f732cb5b108edc073572c4ec205df4cd63f30f8db8025afc5debc8835a8ddeacf648a1c7992fe3dcd6ad38f9a476d84906620 +"graphemer@npm:^1.4.0": + version: 1.4.0 + resolution: "graphemer@npm:1.4.0" + checksum: bab8f0be9b568857c7bec9fda95a89f87b783546d02951c40c33f84d05bb7da3fd10f863a9beb901463669b6583173a8c8cc6d6b306ea2b9b9d5d3d943c3a673 languageName: node linkType: hard -"has-bigints@npm:^1.0.1": - version: 1.0.1 - resolution: "has-bigints@npm:1.0.1" - checksum: 44ab55868174470065d2e0f8f6def1c990d12b82162a8803c679699fa8a39f966e336f2a33c185092fe8aea7e8bf2e85f1c26add5f29d98f2318bd270096b183 +"has-bigints@npm:^1.0.1, has-bigints@npm:^1.0.2": + version: 1.0.2 + resolution: "has-bigints@npm:1.0.2" + checksum: 390e31e7be7e5c6fe68b81babb73dfc35d413604d7ee5f56da101417027a4b4ce6a27e46eff97ad040c835b5d228676eae99a9b5c3bc0e23c8e81a49241ff45b languageName: node linkType: hard @@ -4145,14 +4374,39 @@ __metadata: languageName: node linkType: hard -"has-symbols@npm:^1.0.1, has-symbols@npm:^1.0.2": - version: 1.0.2 - resolution: "has-symbols@npm:1.0.2" - checksum: 2309c426071731be792b5be43b3da6fb4ed7cbe8a9a6bcfca1862587709f01b33d575ce8f5c264c1eaad09fca2f9a8208c0a2be156232629daa2dd0c0740976b +"has-property-descriptors@npm:^1.0.0": + version: 1.0.0 + resolution: "has-property-descriptors@npm:1.0.0" + dependencies: + get-intrinsic: ^1.1.1 + checksum: a6d3f0a266d0294d972e354782e872e2fe1b6495b321e6ef678c9b7a06a40408a6891817350c62e752adced73a94ac903c54734fee05bf65b1905ee1368194bb + languageName: node + linkType: hard + +"has-proto@npm:^1.0.1": + version: 1.0.1 + resolution: "has-proto@npm:1.0.1" + checksum: febc5b5b531de8022806ad7407935e2135f1cc9e64636c3916c6842bd7995994ca3b29871ecd7954bd35f9e2986c17b3b227880484d22259e2f8e6ce63fd383e + languageName: node + linkType: hard + +"has-symbols@npm:^1.0.2, has-symbols@npm:^1.0.3": + version: 1.0.3 + resolution: "has-symbols@npm:1.0.3" + checksum: a054c40c631c0d5741a8285010a0777ea0c068f99ed43e5d6eb12972da223f8af553a455132fdb0801bdcfa0e0f443c0c03a68d8555aa529b3144b446c3f2410 languageName: node linkType: hard -"has-unicode@npm:^2.0.0": +"has-tostringtag@npm:^1.0.0": + version: 1.0.0 + resolution: "has-tostringtag@npm:1.0.0" + dependencies: + has-symbols: ^1.0.2 + checksum: cc12eb28cb6ae22369ebaad3a8ab0799ed61270991be88f208d508076a1e99abe4198c965935ce85ea90b60c94ddda73693b0920b58e7ead048b4a391b502c1c + languageName: node + linkType: hard + +"has-unicode@npm:^2.0.0, has-unicode@npm:^2.0.1": version: 2.0.1 resolution: "has-unicode@npm:2.0.1" checksum: 1eab07a7436512db0be40a710b29b5dc21fa04880b7f63c9980b706683127e3c1b57cb80ea96d47991bdae2dfe479604f6a1ba410106ee1046a41d1bd0814400 @@ -4210,13 +4464,6 @@ __metadata: languageName: node linkType: hard -"hosted-git-info@npm:^2.1.4": - version: 2.8.9 - resolution: "hosted-git-info@npm:2.8.9" - checksum: c955394bdab888a1e9bb10eb33029e0f7ce5a2ac7b3f158099dc8c486c99e73809dca609f5694b223920ca2174db33d32b12f9a2a47141dc59607c29da5a62dd - languageName: node - linkType: hard - "html-escaper@npm:^2.0.0": version: 2.0.2 resolution: "html-escaper@npm:2.0.2" @@ -4225,69 +4472,56 @@ __metadata: linkType: hard "http-assert@npm:^1.3.0": - version: 1.4.1 - resolution: "http-assert@npm:1.4.1" + version: 1.5.0 + resolution: "http-assert@npm:1.5.0" dependencies: deep-equal: ~1.0.1 - http-errors: ~1.7.2 - checksum: dd5d30eb458976572af1d1d72206b47e9194c9828ee0c93db79c802fc2536ec7ce9a0e802e0df8791e89553e51e3272de328f89bbee419a74e648090af36d2fa - languageName: node - linkType: hard - -"http-cache-semantics@npm:^4.1.0": - version: 4.1.0 - resolution: "http-cache-semantics@npm:4.1.0" - checksum: 974de94a81c5474be07f269f9fd8383e92ebb5a448208223bfb39e172a9dbc26feff250192ecc23b9593b3f92098e010406b0f24bd4d588d631f80214648ed42 + http-errors: ~1.8.0 + checksum: 69c9b3c14cf8b2822916360a365089ce936c883c49068f91c365eccba5c141a9964d19fdda589150a480013bf503bf37d8936c732e9635819339e730ab0e7527 languageName: node linkType: hard -"http-errors@npm:1.7.2": - version: 1.7.2 - resolution: "http-errors@npm:1.7.2" - dependencies: - depd: ~1.1.2 - inherits: 2.0.3 - setprototypeof: 1.1.1 - statuses: ">= 1.5.0 < 2" - toidentifier: 1.0.0 - checksum: 5534b0ae08e77f5a45a2380f500e781f6580c4ff75b816cb1f09f99a290b57e78a518be6d866db1b48cca6b052c09da2c75fc91fb16a2fe3da3c44d9acbb9972 +"http-cache-semantics@npm:^4.1.1": + version: 4.1.1 + resolution: "http-cache-semantics@npm:4.1.1" + checksum: 83ac0bc60b17a3a36f9953e7be55e5c8f41acc61b22583060e8dedc9dd5e3607c823a88d0926f9150e571f90946835c7fe150732801010845c72cd8bbff1a236 languageName: node linkType: hard -"http-errors@npm:1.7.3, http-errors@npm:~1.7.2": - version: 1.7.3 - resolution: "http-errors@npm:1.7.3" +"http-errors@npm:2.0.0": + version: 2.0.0 + resolution: "http-errors@npm:2.0.0" dependencies: - depd: ~1.1.2 + depd: 2.0.0 inherits: 2.0.4 - setprototypeof: 1.1.1 - statuses: ">= 1.5.0 < 2" - toidentifier: 1.0.0 - checksum: a59f359473f4b3ea78305beee90d186268d6075432622a46fb7483059068a2dd4c854a20ac8cd438883127e06afb78c1309168bde6cdfeed1e3700eb42487d99 + setprototypeof: 1.2.0 + statuses: 2.0.1 + toidentifier: 1.0.1 + checksum: 9b0a3782665c52ce9dc658a0d1560bcb0214ba5699e4ea15aefb2a496e2ca83db03ebc42e1cce4ac1f413e4e0d2d736a3fd755772c556a9a06853ba2a0b7d920 languageName: node linkType: hard -"http-errors@npm:^1.6.3": - version: 1.8.0 - resolution: "http-errors@npm:1.8.0" +"http-errors@npm:^1.6.3, http-errors@npm:~1.8.0": + version: 1.8.1 + resolution: "http-errors@npm:1.8.1" dependencies: depd: ~1.1.2 inherits: 2.0.4 setprototypeof: 1.2.0 statuses: ">= 1.5.0 < 2" - toidentifier: 1.0.0 - checksum: 873d997bada0340b31cc69cbe8376e47ee142f60375b81447fa3ad7be512dd4026afb3b46ed2257ee59472d43782a34151994b34264b204bcaad02e67ad836cb + toidentifier: 1.0.1 + checksum: d3c7e7e776fd51c0a812baff570bdf06fe49a5dc448b700ab6171b1250e4cf7db8b8f4c0b133e4bfe2451022a5790c1ca6c2cae4094dedd6ac8304a1267f91d2 languageName: node linkType: hard -"http-proxy-agent@npm:^4.0.1": - version: 4.0.1 - resolution: "http-proxy-agent@npm:4.0.1" +"http-proxy-agent@npm:^5.0.0": + version: 5.0.0 + resolution: "http-proxy-agent@npm:5.0.0" dependencies: - "@tootallnate/once": 1 + "@tootallnate/once": 2 agent-base: 6 debug: 4 - checksum: c6a5da5a1929416b6bbdf77b1aca13888013fe7eb9d59fc292e25d18e041bb154a8dfada58e223fc7b76b9b2d155a87e92e608235201f77d34aa258707963a82 + checksum: e2ee1ff1656a131953839b2a19cd1f3a52d97c25ba87bd2559af6ae87114abf60971e498021f9b73f9fd78aea8876d1fb0d4656aac8a03c6caa9fc175f22b786 languageName: node linkType: hard @@ -4303,19 +4537,12 @@ __metadata: linkType: hard "https-proxy-agent@npm:^5.0.0": - version: 5.0.0 - resolution: "https-proxy-agent@npm:5.0.0" + version: 5.0.1 + resolution: "https-proxy-agent@npm:5.0.1" dependencies: agent-base: 6 debug: 4 - checksum: 165bfb090bd26d47693597661298006841ab733d0c7383a8cb2f17373387a94c903a3ac687090aa739de05e379ab6f868bae84ab4eac288ad85c328cd1ec9e53 - languageName: node - linkType: hard - -"human-signals@npm:^2.1.0": - version: 2.1.0 - resolution: "human-signals@npm:2.1.0" - checksum: b87fd89fce72391625271454e70f67fe405277415b48bcc0117ca73d31fa23a4241787afdc8d67f5a116cf37258c052f59ea82daffa72364d61351423848e3b8 + checksum: 571fccdf38184f05943e12d37d6ce38197becdd69e58d03f43637f7fa1269cf303a7d228aa27e5b27bbd3af8f09fd938e1c91dcfefff2df7ba77c20ed8dfc765 languageName: node linkType: hard @@ -4338,11 +4565,11 @@ __metadata: linkType: hard "iconv-lite@npm:^0.6.2": - version: 0.6.2 - resolution: "iconv-lite@npm:0.6.2" + version: 0.6.3 + resolution: "iconv-lite@npm:0.6.3" dependencies: safer-buffer: ">= 2.1.2 < 3.0.0" - checksum: 03e03eb9fc003bc94f7956849f747258e57c162760259d76d1e67483058cad854a4b681b635e21e3ec41f4bd15ceed1b4a350f890565d680343442c5b139fa8a + checksum: 3f60d47a5c8fc3313317edfd29a00a692cc87a19cac0159e2ce711d0ebc9019064108323b5e493625e25594f11c6236647d8e256fbe7a58f4a3b33b89e6d30bf languageName: node linkType: hard @@ -4361,9 +4588,9 @@ __metadata: linkType: hard "ignore@npm:^5.2.0": - version: 5.2.0 - resolution: "ignore@npm:5.2.0" - checksum: 6b1f926792d614f64c6c83da3a1f9c83f6196c2839aa41e1e32dd7b8d174cef2e329d75caabb62cb61ce9dc432f75e67d07d122a037312db7caa73166a1bdb77 + version: 5.2.4 + resolution: "ignore@npm:5.2.4" + checksum: 3d4c309c6006e2621659311783eaea7ebcd41fe4ca1d78c91c473157ad6666a57a2df790fe0d07a12300d9aac2888204d7be8d59f9aaf665b1c7fcdb432517ef languageName: node linkType: hard @@ -4378,14 +4605,14 @@ __metadata: linkType: hard "import-local@npm:^3.0.2": - version: 3.0.2 - resolution: "import-local@npm:3.0.2" + version: 3.1.0 + resolution: "import-local@npm:3.1.0" dependencies: pkg-dir: ^4.2.0 resolve-cwd: ^3.0.0 bin: import-local-fixture: fixtures/cli.js - checksum: c74d9f9484c878cda1de3434613c7ff72d5dadcf20e5482542232d7c2575b713ff88701d6675fcf09a3684cb23fb407c8b333b9cbc59438712723d058d8e976c + checksum: bfcdb63b5e3c0e245e347f3107564035b128a414c4da1172a20dc67db2504e05ede4ac2eee1252359f78b0bfd7b19ef180aec427c2fce6493ae782d73a04cddd languageName: node linkType: hard @@ -4403,13 +4630,6 @@ __metadata: languageName: node linkType: hard -"infer-owner@npm:^1.0.4": - version: 1.0.4 - resolution: "infer-owner@npm:1.0.4" - checksum: 181e732764e4a0611576466b4b87dac338972b839920b2a8cde43642e4ed6bd54dc1fb0b40874728f2a2df9a1b097b8ff83b56d5f8f8e3927f837fdcb47d8a89 - languageName: node - linkType: hard - "inflation@npm:^2.0.0": version: 2.0.0 resolution: "inflation@npm:2.0.0" @@ -4434,13 +4654,6 @@ __metadata: languageName: node linkType: hard -"inherits@npm:2.0.3": - version: 2.0.3 - resolution: "inherits@npm:2.0.3" - checksum: 78cb8d7d850d20a5e9a7f3620db31483aa00ad5f722ce03a55b110e5a723539b3716a3b463e2b96ce3fe286f33afc7c131fa2f91407528ba80cea98a7545d4c0 - languageName: node - linkType: hard - "ini@npm:~1.3.0": version: 1.3.8 resolution: "ini@npm:1.3.8" @@ -4448,6 +4661,17 @@ __metadata: languageName: node linkType: hard +"internal-slot@npm:^1.0.5": + version: 1.0.5 + resolution: "internal-slot@npm:1.0.5" + dependencies: + get-intrinsic: ^1.2.0 + has: ^1.0.3 + side-channel: ^1.0.4 + checksum: 97e84046bf9e7574d0956bd98d7162313ce7057883b6db6c5c7b5e5f05688864b0978ba07610c726d15d66544ffe4b1050107d93f8a39ebc59b15d8b429b497a + languageName: node + linkType: hard + "interpret@npm:^2.2.0": version: 2.2.0 resolution: "interpret@npm:2.2.0" @@ -4455,24 +4679,30 @@ __metadata: languageName: node linkType: hard -"ip@npm:^1.1.5": - version: 1.1.5 - resolution: "ip@npm:1.1.5" - checksum: 30133981f082a060a32644f6a7746e9ba7ac9e2bc07ecc8bbdda3ee8ca9bec1190724c390e45a1ee7695e7edfd2a8f7dda2c104ec5f7ac5068c00648504c7e5a +"ip@npm:^2.0.0": + version: 2.0.0 + resolution: "ip@npm:2.0.0" + checksum: cfcfac6b873b701996d71ec82a7dd27ba92450afdb421e356f44044ed688df04567344c36cbacea7d01b1c39a4c732dc012570ebe9bebfb06f27314bca625349 languageName: node linkType: hard -"is-arrayish@npm:^0.2.1": - version: 0.2.1 - resolution: "is-arrayish@npm:0.2.1" - checksum: eef4417e3c10e60e2c810b6084942b3ead455af16c4509959a27e490e7aee87cfb3f38e01bbde92220b528a0ee1a18d52b787e1458ee86174d8c7f0e58cd488f +"is-array-buffer@npm:^3.0.1, is-array-buffer@npm:^3.0.2": + version: 3.0.2 + resolution: "is-array-buffer@npm:3.0.2" + dependencies: + call-bind: ^1.0.2 + get-intrinsic: ^1.2.0 + is-typed-array: ^1.1.10 + checksum: dcac9dda66ff17df9cabdc58214172bf41082f956eab30bb0d86bc0fab1e44b690fc8e1f855cf2481245caf4e8a5a006a982a71ddccec84032ed41f9d8da8c14 languageName: node linkType: hard "is-bigint@npm:^1.0.1": - version: 1.0.2 - resolution: "is-bigint@npm:1.0.2" - checksum: 5268edbde844583d8d5ce86f8e47669bf9dd9b3d4de0238b25bb2ddfc620b47e0e226171a906f19ac4c10debba160353fb98c134d0309898495e1b691efcfb80 + version: 1.0.4 + resolution: "is-bigint@npm:1.0.4" + dependencies: + has-bigints: ^1.0.1 + checksum: c56edfe09b1154f8668e53ebe8252b6f185ee852a50f9b41e8d921cb2bed425652049fbe438723f6cb48a63ca1aa051e948e7e401e093477c99c84eba244f666 languageName: node linkType: hard @@ -4486,34 +4716,37 @@ __metadata: linkType: hard "is-boolean-object@npm:^1.1.0": - version: 1.1.1 - resolution: "is-boolean-object@npm:1.1.1" + version: 1.1.2 + resolution: "is-boolean-object@npm:1.1.2" dependencies: call-bind: ^1.0.2 - checksum: 95b832242638b8495d012538716761122dfc4a930baf2aa676e0bc344fe39cda2364c739893a6d07d10863ced67cc95e11884732104d7904bd0d896033414d11 + has-tostringtag: ^1.0.0 + checksum: c03b23dbaacadc18940defb12c1c0e3aaece7553ef58b162a0f6bba0c2a7e1551b59f365b91e00d2dbac0522392d576ef322628cb1d036a0fe51eb466db67222 languageName: node linkType: hard -"is-callable@npm:^1.1.4, is-callable@npm:^1.2.3": - version: 1.2.3 - resolution: "is-callable@npm:1.2.3" - checksum: 084a732afd78e14a40cd5f6f34001edd500f43bb542991c1305b88842cab5f2fb6b48f0deed4cd72270b2e71cab3c3a56c69b324e3a02d486f937824bb7de553 +"is-callable@npm:^1.1.3, is-callable@npm:^1.1.4, is-callable@npm:^1.2.7": + version: 1.2.7 + resolution: "is-callable@npm:1.2.7" + checksum: 61fd57d03b0d984e2ed3720fb1c7a897827ea174bd44402878e059542ea8c4aeedee0ea0985998aa5cc2736b2fa6e271c08587addb5b3959ac52cf665173d1ac languageName: node linkType: hard -"is-core-module@npm:^2.2.0, is-core-module@npm:^2.4.0": - version: 2.4.0 - resolution: "is-core-module@npm:2.4.0" +"is-core-module@npm:^2.12.1, is-core-module@npm:^2.13.0": + version: 2.13.0 + resolution: "is-core-module@npm:2.13.0" dependencies: has: ^1.0.3 - checksum: c498902d4c4d0e8eba3a2e8293ccd442158cfe49a71d7cfad136ccf9902b6a41de34ddaa86cdc95c8b7c22f872e59572d8a5d994cbec04c8ecf27ffe75137119 + checksum: 053ab101fb390bfeb2333360fd131387bed54e476b26860dc7f5a700bbf34a0ec4454f7c8c4d43e8a0030957e4b3db6e16d35e1890ea6fb654c833095e040355 languageName: node linkType: hard "is-date-object@npm:^1.0.1": - version: 1.0.4 - resolution: "is-date-object@npm:1.0.4" - checksum: 20ce7b73fda926b4dfad2457e0d6fa04bb0a4cf555456d68918e334cbf80ac30523155adac420be0c8a4bc126fafe0874c4cfc0ffe0d97bac6333a8f02de1b94 + version: 1.0.5 + resolution: "is-date-object@npm:1.0.5" + dependencies: + has-tostringtag: ^1.0.0 + checksum: baa9077cdf15eb7b58c79398604ca57379b2fc4cf9aa7a9b9e295278648f628c9b201400c01c5e0f7afae56507d741185730307cbe7cad3b9f90a77e5ee342fc languageName: node linkType: hard @@ -4542,13 +4775,6 @@ __metadata: languageName: node linkType: hard -"is-fullwidth-code-point@npm:^2.0.0": - version: 2.0.0 - resolution: "is-fullwidth-code-point@npm:2.0.0" - checksum: eef9c6e15f68085fec19ff6a978a6f1b8f48018fd1265035552078ee945573594933b09bbd6f562553e2a241561439f1ef5339276eba68d272001343084cfab8 - languageName: node - linkType: hard - "is-fullwidth-code-point@npm:^3.0.0": version: 3.0.0 resolution: "is-fullwidth-code-point@npm:3.0.0" @@ -4557,9 +4783,11 @@ __metadata: linkType: hard "is-generator-function@npm:^1.0.7": - version: 1.0.9 - resolution: "is-generator-function@npm:1.0.9" - checksum: 78e68709a0f145d2fd442c615db0ae40f542d49a3453f51bffb56409091bd0fa115767e1b61470dcdde45d085974517278c889632800b81a337226b87c397a1e + version: 1.0.10 + resolution: "is-generator-function@npm:1.0.10" + dependencies: + has-tostringtag: ^1.0.0 + checksum: d54644e7dbaccef15ceb1e5d91d680eb5068c9ee9f9eb0a9e04173eb5542c9b51b5ab52c5537f5703e48d5fddfd376817c1ca07a84a407b7115b769d4bdde72b languageName: node linkType: hard @@ -4579,17 +4807,19 @@ __metadata: languageName: node linkType: hard -"is-negative-zero@npm:^2.0.1": - version: 2.0.1 - resolution: "is-negative-zero@npm:2.0.1" - checksum: a46f2e0cb5e16fdb8f2011ed488979386d7e68d381966682e3f4c98fc126efe47f26827912baca2d06a02a644aee458b9cba307fb389f6b161e759125db7a3b8 +"is-negative-zero@npm:^2.0.2": + version: 2.0.2 + resolution: "is-negative-zero@npm:2.0.2" + checksum: f3232194c47a549da60c3d509c9a09be442507616b69454716692e37ae9f37c4dea264fb208ad0c9f3efd15a796a46b79df07c7e53c6227c32170608b809149a languageName: node linkType: hard "is-number-object@npm:^1.0.4": - version: 1.0.5 - resolution: "is-number-object@npm:1.0.5" - checksum: 8c217b4a16632fc3a900121792e4293f2d2d3c73158895deca4593aa4779995203fc6f31b57b47d90df981936a82ea4e8e8a3af2e5ed646cf979287c1d201089 + version: 1.0.7 + resolution: "is-number-object@npm:1.0.7" + dependencies: + has-tostringtag: ^1.0.0 + checksum: d1e8d01bb0a7134c74649c4e62da0c6118a0bfc6771ea3c560914d52a627873e6920dd0fd0ebc0e12ad2ff4687eac4c308f7e80320b973b2c8a2c8f97a7524f7 languageName: node linkType: hard @@ -4609,27 +4839,38 @@ __metadata: languageName: node linkType: hard -"is-regex@npm:^1.1.2": - version: 1.1.3 - resolution: "is-regex@npm:1.1.3" +"is-regex@npm:^1.1.4": + version: 1.1.4 + resolution: "is-regex@npm:1.1.4" dependencies: call-bind: ^1.0.2 - has-symbols: ^1.0.2 - checksum: 19a831a1ba88d09bb43ab30194672e6ae1461caff27254d2c160ed63c95015155ad8784e80995e46a637d0880da8f4ed63b5c3242af1b49c0b5c4666a7a2d3d8 + has-tostringtag: ^1.0.0 + checksum: 362399b33535bc8f386d96c45c9feb04cf7f8b41c182f54174c1a45c9abbbe5e31290bbad09a458583ff6bf3b2048672cdb1881b13289569a7c548370856a652 + languageName: node + linkType: hard + +"is-shared-array-buffer@npm:^1.0.2": + version: 1.0.2 + resolution: "is-shared-array-buffer@npm:1.0.2" + dependencies: + call-bind: ^1.0.2 + checksum: 9508929cf14fdc1afc9d61d723c6e8d34f5e117f0bffda4d97e7a5d88c3a8681f633a74f8e3ad1fe92d5113f9b921dc5ca44356492079612f9a247efbce7032a languageName: node linkType: hard "is-stream@npm:^2.0.0": - version: 2.0.0 - resolution: "is-stream@npm:2.0.0" - checksum: 4dc47738e26bc4f1b3be9070b6b9e39631144f204fc6f87db56961220add87c10a999ba26cf81699f9ef9610426f69cb08a4713feff8deb7d8cadac907826935 + version: 2.0.1 + resolution: "is-stream@npm:2.0.1" + checksum: b8e05ccdf96ac330ea83c12450304d4a591f9958c11fd17bed240af8d5ffe08aedafa4c0f4cfccd4d28dc9d4d129daca1023633d5c11601a6cbc77521f6fae66 languageName: node linkType: hard -"is-string@npm:^1.0.5": - version: 1.0.6 - resolution: "is-string@npm:1.0.6" - checksum: 9990bf0abf2eea6255f0218f82ba1bcfc8d27923af99bcbb2c77ec5eae4ddbe6c23f1f916d6f19f9e9aa57ec7cd8a91a3e026a34e207c51af35fced1ad50bba8 +"is-string@npm:^1.0.5, is-string@npm:^1.0.7": + version: 1.0.7 + resolution: "is-string@npm:1.0.7" + dependencies: + has-tostringtag: ^1.0.0 + checksum: 323b3d04622f78d45077cf89aab783b2f49d24dc641aa89b5ad1a72114cfeff2585efc8c12ef42466dff32bde93d839ad321b26884cf75e5a7892a938b089989 languageName: node linkType: hard @@ -4642,6 +4883,15 @@ __metadata: languageName: node linkType: hard +"is-typed-array@npm:^1.1.10, is-typed-array@npm:^1.1.9": + version: 1.1.12 + resolution: "is-typed-array@npm:1.1.12" + dependencies: + which-typed-array: ^1.1.11 + checksum: 4c89c4a3be07186caddadf92197b17fda663a9d259ea0d44a85f171558270d36059d1c386d34a12cba22dfade5aba497ce22778e866adc9406098c8fc4771796 + languageName: node + linkType: hard + "is-typedarray@npm:^1.0.0": version: 1.0.0 resolution: "is-typedarray@npm:1.0.0" @@ -4649,6 +4899,15 @@ __metadata: languageName: node linkType: hard +"is-weakref@npm:^1.0.2": + version: 1.0.2 + resolution: "is-weakref@npm:1.0.2" + dependencies: + call-bind: ^1.0.2 + checksum: 95bd9a57cdcb58c63b1c401c60a474b0f45b94719c30f548c891860f051bc2231575c290a6b420c6bc6e7ed99459d424c652bd5bf9a1d5259505dc35b4bf83de + languageName: node + linkType: hard + "is-windows@npm:^1.0.2": version: 1.0.2 resolution: "is-windows@npm:1.0.2" @@ -4665,6 +4924,13 @@ __metadata: languageName: node linkType: hard +"isarray@npm:^2.0.5": + version: 2.0.5 + resolution: "isarray@npm:2.0.5" + checksum: bd5bbe4104438c4196ba58a54650116007fa0262eccef13a4c55b2e09a5b36b59f1e75b9fcc49883dd9d4953892e6fc007eef9e9155648ceea036e184b0f930a + languageName: node + linkType: hard + "isarray@npm:~1.0.0": version: 1.0.0 resolution: "isarray@npm:1.0.0" @@ -4673,9 +4939,9 @@ __metadata: linkType: hard "isbinaryfile@npm:^4.0.8": - version: 4.0.8 - resolution: "isbinaryfile@npm:4.0.8" - checksum: 606e3bb648d1a0dee23459d1d937bb2560e66a5281ec7c9ff50e585402d73321ac268d0f34cb7393125b3ebc4c7962d39e50a01cdb8904b52fce08b7ccd2bf9f + version: 4.0.10 + resolution: "isbinaryfile@npm:4.0.10" + checksum: a6b28db7e23ac7a77d3707567cac81356ea18bd602a4f21f424f862a31d0e7ab4f250759c98a559ece35ffe4d99f0d339f1ab884ffa9795172f632ab8f88e686 languageName: node linkType: hard @@ -4702,10 +4968,10 @@ __metadata: languageName: node linkType: hard -"istanbul-lib-coverage@npm:^3.0.0, istanbul-lib-coverage@npm:^3.0.0-alpha.1": - version: 3.0.0 - resolution: "istanbul-lib-coverage@npm:3.0.0" - checksum: ea57c2428858cc5d1e04c0e28b362950bbf6415e8ba1235cdd6f4c8dc3c57cb950db8b4e8a4f7e33abc240aa1eb816dba0d7285bdb8b70bda22bb2082492dbfc +"istanbul-lib-coverage@npm:^3.0.0, istanbul-lib-coverage@npm:^3.2.0": + version: 3.2.0 + resolution: "istanbul-lib-coverage@npm:3.2.0" + checksum: a2a545033b9d56da04a8571ed05c8120bf10e9bce01cf8633a3a2b0d1d83dff4ac4fe78d6d5673c27fc29b7f21a41d75f83a36be09f82a61c367b56aa73c1ff9 languageName: node linkType: hard @@ -4731,56 +4997,68 @@ __metadata: linkType: hard "istanbul-lib-processinfo@npm:^2.0.2": - version: 2.0.2 - resolution: "istanbul-lib-processinfo@npm:2.0.2" + version: 2.0.3 + resolution: "istanbul-lib-processinfo@npm:2.0.3" dependencies: archy: ^1.0.0 - cross-spawn: ^7.0.0 - istanbul-lib-coverage: ^3.0.0-alpha.1 - make-dir: ^3.0.0 + cross-spawn: ^7.0.3 + istanbul-lib-coverage: ^3.2.0 p-map: ^3.0.0 rimraf: ^3.0.0 - uuid: ^3.3.3 - checksum: 400bd0b25b623c172e48d37e5bdda7a58b2fe5beeedfeb03099aed3385223d31e4cfa6f9932be07bbf06cfd039023301bce81d3b70b9a20a79a38b0f12cb261a + uuid: ^8.3.2 + checksum: 501729e809a4e98bbb9f62f89cae924be81655a7ff8118661f8834a10bb89ed5d3a5099ea0b6555e1a8ee15a0099cb64f7170b89aae155ab2afacfe8dd94421a languageName: node linkType: hard "istanbul-lib-report@npm:^3.0.0": - version: 3.0.0 - resolution: "istanbul-lib-report@npm:3.0.0" + version: 3.0.1 + resolution: "istanbul-lib-report@npm:3.0.1" dependencies: istanbul-lib-coverage: ^3.0.0 - make-dir: ^3.0.0 + make-dir: ^4.0.0 supports-color: ^7.1.0 - checksum: 3f29eb3f53c59b987386e07fe772d24c7f58c6897f34c9d7a296f4000de7ae3de9eb95c3de3df91dc65b134c84dee35c54eee572a56243e8907c48064e34ff1b + checksum: fd17a1b879e7faf9bb1dc8f80b2a16e9f5b7b8498fe6ed580a618c34df0bfe53d2abd35bf8a0a00e628fb7405462576427c7df20bbe4148d19c14b431c974b21 languageName: node linkType: hard "istanbul-lib-source-maps@npm:^4.0.0": - version: 4.0.0 - resolution: "istanbul-lib-source-maps@npm:4.0.0" + version: 4.0.1 + resolution: "istanbul-lib-source-maps@npm:4.0.1" dependencies: debug: ^4.1.1 istanbul-lib-coverage: ^3.0.0 source-map: ^0.6.1 - checksum: 292bfb4083e5f8783cdf829a7686b1a377d0c6c2119d4343c8478e948b38146c4827cddc7eee9f57605acd63c291376d67e4a84163d37c5fc78ad0f27f7e2621 + checksum: 21ad3df45db4b81852b662b8d4161f6446cd250c1ddc70ef96a585e2e85c26ed7cd9c2a396a71533cfb981d1a645508bc9618cae431e55d01a0628e7dec62ef2 languageName: node linkType: hard "istanbul-reports@npm:^3.0.2": - version: 3.0.2 - resolution: "istanbul-reports@npm:3.0.2" + version: 3.1.6 + resolution: "istanbul-reports@npm:3.1.6" dependencies: html-escaper: ^2.0.0 istanbul-lib-report: ^3.0.0 - checksum: c5da63f1f4610f47f3015c525a3bc2fb4c87a8791ae452ee3983546d7a2873f0cf5d5fff7c3735ac52943c5b3506f49c294c92f1837df6ec03312625ccd176d7 + checksum: 44c4c0582f287f02341e9720997f9e82c071627e1e862895745d5f52ec72c9b9f38e1d12370015d2a71dcead794f34c7732aaef3fab80a24bc617a21c3d911d6 languageName: node linkType: hard -"jasmine-core@npm:^4.1.0, jasmine-core@npm:^4.2.0": - version: 4.2.0 - resolution: "jasmine-core@npm:4.2.0" - checksum: 86c731bb4d3d1f0149ced89f5b5729dccdeda963c6e844e6ec6ac21a76f46086e9aa47bcb1bd65024b48685af3c8c970368665682deaf81bc01203a3ff9ab03f +"jackspeak@npm:^2.0.3": + version: 2.2.3 + resolution: "jackspeak@npm:2.2.3" + dependencies: + "@isaacs/cliui": ^8.0.2 + "@pkgjs/parseargs": ^0.11.0 + dependenciesMeta: + "@pkgjs/parseargs": + optional: true + checksum: 8add557045eb51f619d247ac9786dbfa7ee4d52a0eb3fb488c2637aecfd15d12c284a4ff7dead2c1aba34d6228d9452e4509fb771daae87793a48786b095ee07 + languageName: node + linkType: hard + +"jasmine-core@npm:^4.1.0, jasmine-core@npm:^4.6.0": + version: 4.6.0 + resolution: "jasmine-core@npm:4.6.0" + checksum: c5c5ce16c512cf0bc8b6b4f2d4f0ac7b23cae90624e0cd9d22da3baab3266e9a4da5a9363fb7937b16e0a4cf550bb79183cd74483ce55cfff4b6678434d599b7 languageName: node linkType: hard @@ -4794,14 +5072,14 @@ __metadata: linkType: hard "jasmine@npm:^4": - version: 4.2.1 - resolution: "jasmine@npm:4.2.1" + version: 4.6.0 + resolution: "jasmine@npm:4.6.0" dependencies: glob: ^7.1.6 - jasmine-core: ^4.2.0 + jasmine-core: ^4.6.0 bin: jasmine: bin/jasmine.js - checksum: 3fe11afeadcccdb7bbdfc8c6436fce649d480ded2af64f8d6d1d297f3b7dda76aa3f104ff161bb374f3ab9ca9480e86a33e7d502524400c686eb91649224c55b + checksum: 1034466aac682b212259cd47f681ca70de02e56bf05c2ed51d3a31f3b4da2a797b281e015fed7d0c218aa849e7496ae7595022c48756ca96952c512b813ae465 languageName: node linkType: hard @@ -4844,13 +5122,6 @@ __metadata: languageName: node linkType: hard -"json-parse-better-errors@npm:^1.0.1": - version: 1.0.2 - resolution: "json-parse-better-errors@npm:1.0.2" - checksum: ff2b5ba2a70e88fd97a3cb28c1840144c5ce8fae9cbeeddba15afa333a5c407cf0e42300cd0a2885dbb055227fe68d405070faad941beeffbfde9cf3b2c78c5d - languageName: node - linkType: hard - "json-parse-even-better-errors@npm:^2.3.1": version: 2.3.1 resolution: "json-parse-even-better-errors@npm:2.3.1" @@ -4879,25 +5150,23 @@ __metadata: languageName: node linkType: hard -"json5@npm:^1.0.1": - version: 1.0.1 - resolution: "json5@npm:1.0.1" +"json5@npm:^1.0.2": + version: 1.0.2 + resolution: "json5@npm:1.0.2" dependencies: minimist: ^1.2.0 bin: json5: lib/cli.js - checksum: e76ea23dbb8fc1348c143da628134a98adf4c5a4e8ea2adaa74a80c455fc2cdf0e2e13e6398ef819bfe92306b610ebb2002668ed9fc1af386d593691ef346fc3 + checksum: 866458a8c58a95a49bef3adba929c625e82532bcff1fe93f01d29cb02cac7c3fe1f4b79951b7792c2da9de0b32871a8401a6e3c5b36778ad852bf5b8a61165d7 languageName: node linkType: hard -"json5@npm:^2.1.2": - version: 2.2.0 - resolution: "json5@npm:2.2.0" - dependencies: - minimist: ^1.2.5 +"json5@npm:^2.2.2": + version: 2.2.3 + resolution: "json5@npm:2.2.3" bin: json5: lib/cli.js - checksum: e88fc5274bb58fc99547baa777886b069d2dd96d9cfc4490b305fd16d711dabd5979e35a4f90873cefbeb552e216b041a304fe56702bedba76e19bc7845f208d + checksum: 2a7436a93393830bce797d4626275152e37e877b265e94ca69c99e3d20c2b9dab021279146a39cdb700e71b2dd32a4cebd1514cd57cee102b1af906ce5040349 languageName: node linkType: hard @@ -4908,46 +5177,45 @@ __metadata: languageName: node linkType: hard -"jsonfile@npm:^6.0.1": - version: 6.1.0 - resolution: "jsonfile@npm:6.1.0" +"jsonfile@npm:^4.0.0": + version: 4.0.0 + resolution: "jsonfile@npm:4.0.0" dependencies: graceful-fs: ^4.1.6 - universalify: ^2.0.0 dependenciesMeta: graceful-fs: optional: true - checksum: 7af3b8e1ac8fe7f1eccc6263c6ca14e1966fcbc74b618d3c78a0a2075579487547b94f72b7a1114e844a1e15bb00d440e5d1720bfc4612d790a6f285d5ea8354 + checksum: 6447d6224f0d31623eef9b51185af03ac328a7553efcee30fa423d98a9e276ca08db87d71e17f2310b0263fd3ffa6c2a90a6308367f661dc21580f9469897c9e languageName: node linkType: hard "karma-chrome-launcher@npm:^3.1.0": - version: 3.1.0 - resolution: "karma-chrome-launcher@npm:3.1.0" + version: 3.2.0 + resolution: "karma-chrome-launcher@npm:3.2.0" dependencies: which: ^1.2.1 - checksum: 63431ddec9aa40e2a0439d9e2bcfa58a6822efd08e2666bdbc3f55dfbe8fcc0b401035b71b1f6f21340339dc56c172edaed8e8c0ddc6949873318ad1666b2dd9 + checksum: e1119e4f95dbcdaec937e5d15a9ffea1b7e5c1d7566f7074ff140161983d4a0821ad274d3dcc34aacfb792caf842a39c459ba9c263723faa6a060cca8692d9b7 languageName: node linkType: hard "karma-firefox-launcher@npm:^2.1.0": - version: 2.1.0 - resolution: "karma-firefox-launcher@npm:2.1.0" + version: 2.1.2 + resolution: "karma-firefox-launcher@npm:2.1.2" dependencies: is-wsl: ^2.2.0 which: ^2.0.1 - checksum: 35d751d1e87759c551f5853eb801454e36f807a6bf06b8907006d9b0cac15f8be2633585d4acbc0075ba00710500da0d66aba82e697d5793e1b4203e40bee479 + checksum: bfd5b35b35949fee50d92def57b32ab9702926ac24c90036583b76beac33fe8100ec601c9e71087b861d6ca7b3d54e8d2f9b62fa1b5115c8b99512dd763cf2ad languageName: node linkType: hard "karma-jasmine-html-reporter@npm:^1.5.4": - version: 1.6.0 - resolution: "karma-jasmine-html-reporter@npm:1.6.0" + version: 1.7.0 + resolution: "karma-jasmine-html-reporter@npm:1.7.0" peerDependencies: - jasmine-core: ">=3.7.1" + jasmine-core: ">=3.8" karma: ">=0.9" karma-jasmine: ">=1.1" - checksum: 18c23a096e1ab30b765aae7b33e62e54ceda7088b1edd0d882353495b0f27875d4df82c08a027ba846a203b1d4e0a389f4ca1ecce24a646e4033ff4cf0242abf + checksum: 926c25858ea45115496524749881837de0091e3f8119e0f81a18c377e69fb82f832836b94e08d2a24fbc49aa21b491ae0bb861f07404f144c92bc84f409ef202 languageName: node linkType: hard @@ -4963,13 +5231,13 @@ __metadata: linkType: hard "karma@npm:^6.3.14": - version: 6.3.16 - resolution: "karma@npm:6.3.16" + version: 6.4.2 + resolution: "karma@npm:6.4.2" dependencies: + "@colors/colors": 1.5.0 body-parser: ^1.19.0 braces: ^3.0.2 chokidar: ^3.5.1 - colors: 1.4.0 connect: ^3.7.0 di: ^0.0.1 dom-serialize: ^2.2.1 @@ -4985,14 +5253,14 @@ __metadata: qjobs: ^1.2.0 range-parser: ^1.2.1 rimraf: ^3.0.2 - socket.io: ^4.2.0 + socket.io: ^4.4.1 source-map: ^0.6.1 tmp: ^0.2.1 ua-parser-js: ^0.7.30 yargs: ^16.1.1 bin: karma: bin/karma - checksum: eb1703d4907ac31a47019e2b6b5f69e1ecd7870dabee1ed8f284d9730f665e02ae9ef1a75733b5d4b6a27fe68069536d0845b9e41747c43507128b3ac645c87f + checksum: e493874729d87955f7c0f1f6c20b2e27184c82a3b33a14607538df9b049077b0263ecb398f5f0ebbba92325cb16f4f43a1461fa486d5a06eabbfdfb5f289f001 languageName: node linkType: hard @@ -5013,12 +5281,13 @@ __metadata: linkType: hard "koa-bodyparser@npm:^4.3": - version: 4.3.0 - resolution: "koa-bodyparser@npm:4.3.0" + version: 4.4.1 + resolution: "koa-bodyparser@npm:4.4.1" dependencies: co-body: ^6.0.0 copy-to: ^2.0.1 - checksum: c227fe0fb5a55b98fc91d865e80229b60178d216d53b732b07833eb38f48a7ed6aa768a083bc06e359db33298547e9a65842fbe9d3f0fdaf5149fe0becafc88f + type-is: ^1.6.18 + checksum: 2b839acc53d6c86558a5faf750ea42527ab0a9f90228abfd559fdae388be1c4789a9c36b178b33883d83701d4d9a5c3e3b55fbadd950a2d9fab32ec4d1e67a75 languageName: node linkType: hard @@ -5040,8 +5309,8 @@ __metadata: linkType: hard "koa@npm:^2.13": - version: 2.13.4 - resolution: "koa@npm:2.13.4" + version: 2.14.2 + resolution: "koa@npm:2.14.2" dependencies: accepts: ^1.3.5 cache-content-type: ^1.0.0 @@ -5066,7 +5335,7 @@ __metadata: statuses: ^1.5.0 type-is: ^1.6.16 vary: ^1.1.2 - checksum: c9a6f9c803433b2d143a0788308048c1432a71c5febcfea2af7f2e8bd732b9bfd75c2c220d553752ee9ab9a3f52490f006cfd521db97cd01d8461d67cc1ccc1f + checksum: 17fe3b8f5e0b4759004a942cc6ba2a9507299943a697dff9766b85f41f45caed4077ca2645ac9ad254d3359fffedfc4c9ebdd7a70493e5df8cdfac159a8ee835 languageName: node linkType: hard @@ -5108,32 +5377,10 @@ __metadata: languageName: node linkType: hard -"load-json-file@npm:^4.0.0": - version: 4.0.0 - resolution: "load-json-file@npm:4.0.0" - dependencies: - graceful-fs: ^4.1.2 - parse-json: ^4.0.0 - pify: ^3.0.0 - strip-bom: ^3.0.0 - checksum: 8f5d6d93ba64a9620445ee9bde4d98b1eac32cf6c8c2d20d44abfa41a6945e7969456ab5f1ca2fb06ee32e206c9769a20eec7002fe290de462e8c884b6b8b356 - languageName: node - linkType: hard - "loader-runner@npm:^4.2.0": - version: 4.2.0 - resolution: "loader-runner@npm:4.2.0" - checksum: e61aea8b6904b8af53d9de6f0484da86c462c0001f4511bedc837cec63deb9475cea813db62f702cd7930420ccb0e75c78112270ca5c8b61b374294f53c0cb3a - languageName: node - linkType: hard - -"locate-path@npm:^2.0.0": - version: 2.0.0 - resolution: "locate-path@npm:2.0.0" - dependencies: - p-locate: ^2.0.0 - path-exists: ^3.0.0 - checksum: 02d581edbbbb0fa292e28d96b7de36b5b62c2fa8b5a7e82638ebb33afa74284acf022d3b1e9ae10e3ffb7658fbc49163fcd5e76e7d1baaa7801c3e05a81da755 + version: 4.3.0 + resolution: "loader-runner@npm:4.3.0" + checksum: a90e00dee9a16be118ea43fec3192d0b491fe03a32ed48a4132eb61d498f5536a03a1315531c19d284392a8726a4ecad71d82044c28d7f22ef62e029bf761569 languageName: node linkType: hard @@ -5146,13 +5393,6 @@ __metadata: languageName: node linkType: hard -"lodash.clonedeep@npm:^4.5.0": - version: 4.5.0 - resolution: "lodash.clonedeep@npm:4.5.0" - checksum: 92c46f094b064e876a23c97f57f81fbffd5d760bf2d8a1c61d85db6d1e488c66b0384c943abee4f6af7debf5ad4e4282e74ff83177c9e63d8ff081a4837c3489 - languageName: node - linkType: hard - "lodash.flattendeep@npm:^4.4.0": version: 4.4.0 resolution: "lodash.flattendeep@npm:4.4.0" @@ -5160,6 +5400,13 @@ __metadata: languageName: node linkType: hard +"lodash.merge@npm:^4.6.2": + version: 4.6.2 + resolution: "lodash.merge@npm:4.6.2" + checksum: ad580b4bdbb7ca1f7abf7e1bce63a9a0b98e370cf40194b03380a46b4ed799c9573029599caebc1b14e3f24b111aef72b96674a56cfa105e0f5ac70546cdc005 + languageName: node + linkType: hard + "lodash.truncate@npm:^4.4.2": version: 4.4.2 resolution: "lodash.truncate@npm:4.4.2" @@ -5174,16 +5421,16 @@ __metadata: languageName: node linkType: hard -"log4js@npm:^6.2.1, log4js@npm:^6.4.1": - version: 6.4.1 - resolution: "log4js@npm:6.4.1" +"log4js@npm:^6.4.1": + version: 6.9.1 + resolution: "log4js@npm:6.9.1" dependencies: - date-format: ^4.0.3 - debug: ^4.3.3 - flatted: ^3.2.4 + date-format: ^4.0.14 + debug: ^4.3.4 + flatted: ^3.2.7 rfdc: ^1.3.0 - streamroller: ^3.0.2 - checksum: 0614949662314573ec7dcd841769a4d23d8cb8268685458a40fcd94f2ae6ec628234cfb9a6bc17821fb6ea6ce3765e779b4966ba1cf918f393dc37155a3615cb + streamroller: ^3.1.5 + checksum: 59d98c37d4163138dab5d9b06ae26965d1353106fece143973d57b1003b3a482791aa21374fd2cca81a953b8837b2f9756ac225404e60cbfa4dd3ab59f082e2e languageName: node linkType: hard @@ -5194,6 +5441,15 @@ __metadata: languageName: node linkType: hard +"lru-cache@npm:^5.1.1": + version: 5.1.1 + resolution: "lru-cache@npm:5.1.1" + dependencies: + yallist: ^3.0.2 + checksum: c154ae1cbb0c2206d1501a0e94df349653c92c8cbb25236d7e85190bcaf4567a03ac6eb43166fabfa36fd35623694da7233e88d9601fbf411a9a481d85dbd2cb + languageName: node + linkType: hard + "lru-cache@npm:^6.0.0": version: 6.0.0 resolution: "lru-cache@npm:6.0.0" @@ -5203,6 +5459,20 @@ __metadata: languageName: node linkType: hard +"lru-cache@npm:^7.7.1": + version: 7.18.3 + resolution: "lru-cache@npm:7.18.3" + checksum: e550d772384709deea3f141af34b6d4fa392e2e418c1498c078de0ee63670f1f46f5eee746e8ef7e69e1c895af0d4224e62ee33e66a543a14763b0f2e74c1356 + languageName: node + linkType: hard + +"lru-cache@npm:^9.1.1 || ^10.0.0": + version: 10.0.1 + resolution: "lru-cache@npm:10.0.1" + checksum: 06f8d0e1ceabd76bb6f644a26dbb0b4c471b79c7b514c13c6856113879b3bf369eb7b497dad4ff2b7e2636db202412394865b33c332100876d838ad1372f0181 + languageName: node + linkType: hard + "lunr@npm:^2.3.9": version: 2.3.9 resolution: "lunr@npm:2.3.9" @@ -5219,6 +5489,15 @@ __metadata: languageName: node linkType: hard +"make-dir@npm:^4.0.0": + version: 4.0.0 + resolution: "make-dir@npm:4.0.0" + dependencies: + semver: ^7.5.3 + checksum: bf0731a2dd3aab4db6f3de1585cea0b746bb73eb5a02e3d8d72757e376e64e6ada190b1eddcde5b2f24a81b688a9897efd5018737d05e02e2a671dda9cff8a8a + languageName: node + linkType: hard + "make-error@npm:^1.1.1": version: 1.3.6 resolution: "make-error@npm:1.3.6" @@ -5226,26 +5505,26 @@ __metadata: languageName: node linkType: hard -"make-fetch-happen@npm:^8.0.14": - version: 8.0.14 - resolution: "make-fetch-happen@npm:8.0.14" +"make-fetch-happen@npm:^11.0.3": + version: 11.1.1 + resolution: "make-fetch-happen@npm:11.1.1" dependencies: - agentkeepalive: ^4.1.3 - cacache: ^15.0.5 - http-cache-semantics: ^4.1.0 - http-proxy-agent: ^4.0.1 + agentkeepalive: ^4.2.1 + cacache: ^17.0.0 + http-cache-semantics: ^4.1.1 + http-proxy-agent: ^5.0.0 https-proxy-agent: ^5.0.0 is-lambda: ^1.0.1 - lru-cache: ^6.0.0 - minipass: ^3.1.3 - minipass-collect: ^1.0.2 - minipass-fetch: ^1.3.2 + lru-cache: ^7.7.1 + minipass: ^5.0.0 + minipass-fetch: ^3.0.0 minipass-flush: ^1.0.5 minipass-pipeline: ^1.2.4 + negotiator: ^0.6.3 promise-retry: ^2.0.1 - socks-proxy-agent: ^5.0.0 - ssri: ^8.0.0 - checksum: 326fefde1aec1f1314e548be74baaaa322208718d1b51c9688a326f73dea70f57767b4f5423230e39408cfe7c6dcf7adcf86ca4798c919c3ea78f54532910434 + socks-proxy-agent: ^7.0.0 + ssri: ^10.0.0 + checksum: 7268bf274a0f6dcf0343829489a4506603ff34bd0649c12058753900b0eb29191dce5dba12680719a5d0a983d3e57810f594a12f3c18494e93a1fbc6348a4540 languageName: node linkType: hard @@ -5280,28 +5559,28 @@ __metadata: linkType: hard "micromatch@npm:^4.0.4": - version: 4.0.4 - resolution: "micromatch@npm:4.0.4" + version: 4.0.5 + resolution: "micromatch@npm:4.0.5" dependencies: - braces: ^3.0.1 - picomatch: ^2.2.3 - checksum: ef3d1c88e79e0a68b0e94a03137676f3324ac18a908c245a9e5936f838079fcc108ac7170a5fadc265a9c2596963462e402841406bda1a4bb7b68805601d631c + braces: ^3.0.2 + picomatch: ^2.3.1 + checksum: 02a17b671c06e8fefeeb6ef996119c1e597c942e632a21ef589154f23898c9c6a9858526246abb14f8bca6e77734aa9dcf65476fca47cedfb80d9577d52843fc languageName: node linkType: hard -"mime-db@npm:1.47.0": - version: 1.47.0 - resolution: "mime-db@npm:1.47.0" - checksum: 6808235243c39b3142e677af86972cf32de8ebbec81178491475a79aa07caf67646cd9b559972d22c3c372ddca4a093e58bb0ba10376d75a1efbd0e07be82de2 +"mime-db@npm:1.52.0": + version: 1.52.0 + resolution: "mime-db@npm:1.52.0" + checksum: 0d99a03585f8b39d68182803b12ac601d9c01abfa28ec56204fa330bc9f3d1c5e14beb049bafadb3dbdf646dfb94b87e24d4ec7b31b7279ef906a8ea9b6a513f languageName: node linkType: hard -"mime-types@npm:^2.1.18, mime-types@npm:^2.1.27, mime-types@npm:~2.1.24": - version: 2.1.30 - resolution: "mime-types@npm:2.1.30" +"mime-types@npm:^2.1.18, mime-types@npm:^2.1.27, mime-types@npm:~2.1.24, mime-types@npm:~2.1.34": + version: 2.1.35 + resolution: "mime-types@npm:2.1.35" dependencies: - mime-db: 1.47.0 - checksum: 53c36729b1c4f6029fd5957d5859e62eff4b86311a6e1dce87937583dc8971fec9f359ffcff4be93d26bb5ddd03f1b5ffc7626912031ce0a63510d7896521b2e + mime-db: 1.52.0 + checksum: 89a5b7f1def9f3af5dad6496c5ed50191ae4331cc5389d7c521c8ad28d5fdad2d06fd81baf38fed813dc4e46bb55c8145bb0ff406330818c9cf712fb2e9b3836 languageName: node linkType: hard @@ -5314,13 +5593,6 @@ __metadata: languageName: node linkType: hard -"mimic-fn@npm:^2.1.0": - version: 2.1.0 - resolution: "mimic-fn@npm:2.1.0" - checksum: d2421a3444848ce7f84bd49115ddacff29c15745db73f54041edc906c14b131a38d05298dae3081667627a59b2eb1ca4b436ff2e1b80f69679522410418b478a - languageName: node - linkType: hard - "mimic-response@npm:^2.0.0": version: 2.1.0 resolution: "mimic-response@npm:2.1.0" @@ -5342,7 +5614,7 @@ __metadata: languageName: node linkType: hard -"minimatch@npm:^3.0.4": +"minimatch@npm:^3.0.4, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": version: 3.1.2 resolution: "minimatch@npm:3.1.2" dependencies: @@ -5352,18 +5624,27 @@ __metadata: linkType: hard "minimatch@npm:^7.1.3": - version: 7.4.4 - resolution: "minimatch@npm:7.4.4" + version: 7.4.6 + resolution: "minimatch@npm:7.4.6" dependencies: brace-expansion: ^2.0.1 - checksum: a96494db558cda25cf2f75c25b136f6c91543d72871d92b8b251691dcf578b5e64b679d64427cee609a1bf6a63cf233e171cb9d04d04c3c9ec3b6100c3b72f8e + checksum: 1a6c8d22618df9d2a88aabeef1de5622eb7b558e9f8010be791cb6b0fa6e102d39b11c28d75b855a1e377b12edc7db8ff12a99c20353441caa6a05e78deb5da9 languageName: node linkType: hard -"minimist@npm:^1.2.0, minimist@npm:^1.2.3, minimist@npm:^1.2.5": - version: 1.2.6 - resolution: "minimist@npm:1.2.6" - checksum: d15428cd1e11eb14e1233bcfb88ae07ed7a147de251441d61158619dfb32c4d7e9061d09cab4825fdee18ecd6fce323228c8c47b5ba7cd20af378ca4048fb3fb +"minimatch@npm:^9.0.1": + version: 9.0.3 + resolution: "minimatch@npm:9.0.3" + dependencies: + brace-expansion: ^2.0.1 + checksum: 253487976bf485b612f16bf57463520a14f512662e592e95c571afdab1442a6a6864b6c88f248ce6fc4ff0b6de04ac7aa6c8bb51e868e99d1d65eb0658a708b5 + languageName: node + linkType: hard + +"minimist@npm:^1.2.0, minimist@npm:^1.2.3, minimist@npm:^1.2.6": + version: 1.2.8 + resolution: "minimist@npm:1.2.8" + checksum: 75a6d645fb122dad29c06a7597bddea977258957ed88d7a6df59b5cd3fe4a527e253e9bbf2e783e4b73657f9098b96a5fe96ab8a113655d4109108577ecf85b0 languageName: node linkType: hard @@ -5376,18 +5657,18 @@ __metadata: languageName: node linkType: hard -"minipass-fetch@npm:^1.3.2": - version: 1.3.3 - resolution: "minipass-fetch@npm:1.3.3" +"minipass-fetch@npm:^3.0.0": + version: 3.0.4 + resolution: "minipass-fetch@npm:3.0.4" dependencies: - encoding: ^0.1.12 - minipass: ^3.1.0 + encoding: ^0.1.13 + minipass: ^7.0.3 minipass-sized: ^1.0.3 - minizlib: ^2.0.0 + minizlib: ^2.1.2 dependenciesMeta: encoding: optional: true - checksum: bd3d825b6b08b9c208b60f5022b12e3be78d01c2fd81bcbe8476e59c5ba2c6133d34c65961c88e1a17042242d99aa6a26a30a3139ccd4c07e536c6952ae72cb9 + checksum: af7aad15d5c128ab1ebe52e043bdf7d62c3c6f0cecb9285b40d7b395e1375b45dcdfd40e63e93d26a0e8249c9efd5c325c65575aceee192883970ff8cb11364a languageName: node linkType: hard @@ -5400,7 +5681,7 @@ __metadata: languageName: node linkType: hard -"minipass-pipeline@npm:^1.2.2, minipass-pipeline@npm:^1.2.4": +"minipass-pipeline@npm:^1.2.4": version: 1.2.4 resolution: "minipass-pipeline@npm:1.2.4" dependencies: @@ -5418,16 +5699,30 @@ __metadata: languageName: node linkType: hard -"minipass@npm:^3.0.0, minipass@npm:^3.1.0, minipass@npm:^3.1.1, minipass@npm:^3.1.3": - version: 3.1.3 - resolution: "minipass@npm:3.1.3" +"minipass@npm:^3.0.0": + version: 3.3.6 + resolution: "minipass@npm:3.3.6" dependencies: yallist: ^4.0.0 - checksum: 74b623c1f996caafa66772301b66a1b634b20270f0d1a731ef86195d5a1a5f9984a773a1e88a6cecfd264d6c471c4c0fc8574cd96488f01c8f74c0b600021e55 + checksum: a30d083c8054cee83cdcdc97f97e4641a3f58ae743970457b1489ce38ee1167b3aaf7d815cd39ec7a99b9c40397fd4f686e83750e73e652b21cb516f6d845e48 languageName: node linkType: hard -"minizlib@npm:^2.0.0, minizlib@npm:^2.1.1": +"minipass@npm:^5.0.0": + version: 5.0.0 + resolution: "minipass@npm:5.0.0" + checksum: 425dab288738853fded43da3314a0b5c035844d6f3097a8e3b5b29b328da8f3c1af6fc70618b32c29ff906284cf6406b6841376f21caaadd0793c1d5a6a620ea + languageName: node + linkType: hard + +"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.3": + version: 7.0.3 + resolution: "minipass@npm:7.0.3" + checksum: 6f1614f5b5b55568a46bca5fec0e7c46dac027691db27d0e1923a8192866903144cd962ac772c0e9f89b608ea818b702709c042bce98e190d258847d85461531 + languageName: node + linkType: hard + +"minizlib@npm:^2.1.1, minizlib@npm:^2.1.2": version: 2.1.2 resolution: "minizlib@npm:2.1.2" dependencies: @@ -5445,17 +5740,17 @@ __metadata: linkType: hard "mkdirp@npm:^0.5.5": - version: 0.5.5 - resolution: "mkdirp@npm:0.5.5" + version: 0.5.6 + resolution: "mkdirp@npm:0.5.6" dependencies: - minimist: ^1.2.5 + minimist: ^1.2.6 bin: mkdirp: bin/cmd.js - checksum: 3bce20ea525f9477befe458ab85284b0b66c8dc3812f94155af07c827175948cdd8114852ac6c6d82009b13c1048c37f6d98743eb019651ee25c39acc8aabe7d + checksum: 0c91b721bb12c3f9af4b77ebf73604baf350e64d80df91754dc509491ae93bf238581e59c7188360cec7cb62fc4100959245a42cfe01834efedc5e9d068376c2 languageName: node linkType: hard -"mkdirp@npm:^1.0.3, mkdirp@npm:^1.0.4": +"mkdirp@npm:^1.0.3": version: 1.0.4 resolution: "mkdirp@npm:1.0.4" bin: @@ -5506,10 +5801,10 @@ __metadata: languageName: node linkType: hard -"negotiator@npm:0.6.2": - version: 0.6.2 - resolution: "negotiator@npm:0.6.2" - checksum: dfddaff6c06792f1c4c3809e29a427b8daef8cd437c83b08dd51d7ee11bbd1c29d9512d66b801144d6c98e910ffd8723f2432e0cbf8b18d41d2a09599c975ab3 +"negotiator@npm:0.6.3, negotiator@npm:^0.6.3": + version: 0.6.3 + resolution: "negotiator@npm:0.6.3" + checksum: b8ffeb1e262eff7968fc90a2b6767b04cfd9842582a9d0ece0af7049537266e7b2506dfb1d107a32f06dd849ab2aea834d5830f7f4d0e5cb7d36e1ae55d021d9 languageName: node linkType: hard @@ -5521,20 +5816,20 @@ __metadata: linkType: hard "node-abi@npm:^2.21.0": - version: 2.26.0 - resolution: "node-abi@npm:2.26.0" + version: 2.30.1 + resolution: "node-abi@npm:2.30.1" dependencies: semver: ^5.4.1 - checksum: a405ee19177c5844d667f4cd3175ed2e397439d0f3049ad8b553f2ccf26895fb0f5143f4fcf97bde5fd94dab446e83e41a9cccd77517d97ab0852f705683684b + checksum: 3f4b0c912ce4befcd7ceab4493ba90b51d60dfcc90f567c93f731d897ef8691add601cb64c181683b800f21d479d68f9a6e15d8ab8acd16a5706333b9e30a881 languageName: node linkType: hard "node-addon-api@npm:^3.0.2": - version: 3.2.0 - resolution: "node-addon-api@npm:3.2.0" + version: 3.2.1 + resolution: "node-addon-api@npm:3.2.1" dependencies: node-gyp: latest - checksum: 538893f075a2f70b659e0ae82bdb2cd627b1b76ddcc9c39e95dc8ff4be786e9f6766ed2aac7d4159f879f0c49a3551636f6d09907865afc5643703e1752e4c3e + checksum: 2369986bb0881ccd9ef6bacdf39550e07e089a9c8ede1cbc5fc7712d8e2faa4d50da0e487e333d4125f8c7a616c730131d1091676c9d499af1d74560756b4a18 languageName: node linkType: hard @@ -5548,33 +5843,34 @@ __metadata: linkType: hard "node-gyp-build@npm:^4.3.0": - version: 4.5.0 - resolution: "node-gyp-build@npm:4.5.0" + version: 4.6.0 + resolution: "node-gyp-build@npm:4.6.0" bin: node-gyp-build: bin.js node-gyp-build-optional: optional.js node-gyp-build-test: build-test.js - checksum: d888bae0fb88335f69af1b57a2294a931c5042f36e413d8d364c992c9ebfa0b96ffe773179a5a2c8f04b73856e8634e09cce108dbb9804396d3cc8c5455ff2db + checksum: 25d78c5ef1f8c24291f4a370c47ba52fcea14f39272041a90a7894cd50d766f7c8cb8fb06c0f42bf6f69b204b49d9be3c8fc344aac09714d5bdb95965499eb15 languageName: node linkType: hard "node-gyp@npm:latest": - version: 8.0.0 - resolution: "node-gyp@npm:8.0.0" + version: 9.4.0 + resolution: "node-gyp@npm:9.4.0" dependencies: env-paths: ^2.2.0 + exponential-backoff: ^3.1.1 glob: ^7.1.4 graceful-fs: ^4.2.6 - make-fetch-happen: ^8.0.14 - nopt: ^5.0.0 - npmlog: ^4.1.2 + make-fetch-happen: ^11.0.3 + nopt: ^6.0.0 + npmlog: ^6.0.0 rimraf: ^3.0.2 semver: ^7.3.5 - tar: ^6.1.0 + tar: ^6.1.2 which: ^2.0.2 bin: node-gyp: bin/node-gyp.js - checksum: 4fbd99af8a0ac1e0c834a693392d23696e945e604ede111c528eb8d4761dfb22492dbd33c4e3730b8aab99a9f156e9e6418ce489f88cbbfc51e0e00eadd51bc8 + checksum: 78b404e2e0639d64e145845f7f5a3cb20c0520cdaf6dda2f6e025e9b644077202ea7de1232396ba5bde3fee84cdc79604feebe6ba3ec84d464c85d407bb5da99 languageName: node linkType: hard @@ -5601,49 +5897,21 @@ __metadata: languageName: node linkType: hard -"node-releases@npm:^1.1.71": - version: 1.1.72 - resolution: "node-releases@npm:1.1.72" - checksum: 84dacd44e6595c76e3097b69051b24bf5c3bdb374efc9bef343200ffa183fce10a31ba1c763af51d897ba0f6d00cd1e10eb34a03146688ce4cb051f1d80c402b - languageName: node - linkType: hard - -"noop-logger@npm:^0.1.1": - version: 0.1.1 - resolution: "noop-logger@npm:0.1.1" - checksum: 9f99da270d074a2f268de2eae3ebcb44f12cc2f7241417c7be9f1e206f614afa632a27b91febab86163f88bb54466d638e49c9f62d899105f18d5ed5bcd51ed1 +"node-releases@npm:^2.0.13": + version: 2.0.13 + resolution: "node-releases@npm:2.0.13" + checksum: 17ec8f315dba62710cae71a8dad3cd0288ba943d2ece43504b3b1aa8625bf138637798ab470b1d9035b0545996f63000a8a926e0f6d35d0996424f8b6d36dda3 languageName: node linkType: hard -"nopt@npm:^5.0.0": - version: 5.0.0 - resolution: "nopt@npm:5.0.0" +"nopt@npm:^6.0.0": + version: 6.0.0 + resolution: "nopt@npm:6.0.0" dependencies: - abbrev: 1 + abbrev: ^1.0.0 bin: nopt: bin/nopt.js - checksum: d35fdec187269503843924e0114c0c6533fb54bbf1620d0f28b4b60ba01712d6687f62565c55cc20a504eff0fbe5c63e22340c3fad549ad40469ffb611b04f2f - languageName: node - linkType: hard - -"normalize-package-data@npm:^2.3.2": - version: 2.5.0 - resolution: "normalize-package-data@npm:2.5.0" - dependencies: - hosted-git-info: ^2.1.4 - resolve: ^1.10.0 - semver: 2 || 3 || 4 || 5 - validate-npm-package-license: ^3.0.1 - checksum: 7999112efc35a6259bc22db460540cae06564aa65d0271e3bdfa86876d08b0e578b7b5b0028ee61b23f1cae9fc0e7847e4edc0948d3068a39a2a82853efc8499 - languageName: node - linkType: hard - -"normalize-path@npm:^2.1.1": - version: 2.1.1 - resolution: "normalize-path@npm:2.1.1" - dependencies: - remove-trailing-separator: ^1.0.1 - checksum: 7e9cbdcf7f5b8da7aa191fbfe33daf290cdcd8c038f422faf1b8a83c972bf7a6d94c5be34c4326cb00fb63bc0fd97d9fbcfaf2e5d6142332c2cd36d2e1b86cea + checksum: 82149371f8be0c4b9ec2f863cc6509a7fd0fa729929c009f3a58e4eb0c9e4cae9920e8f1f8eb46e7d032fec8fb01bede7f0f41a67eb3553b7b8e14fa53de1dac languageName: node linkType: hard @@ -5654,16 +5922,7 @@ __metadata: languageName: node linkType: hard -"npm-run-path@npm:^4.0.1": - version: 4.0.1 - resolution: "npm-run-path@npm:4.0.1" - dependencies: - path-key: ^3.0.0 - checksum: 5374c0cea4b0bbfdfae62da7bbdf1e1558d338335f4cacf2515c282ff358ff27b2ecb91ffa5330a8b14390ac66a1e146e10700440c1ab868208430f56b5f4d23 - languageName: node - linkType: hard - -"npmlog@npm:^4.0.1, npmlog@npm:^4.1.2": +"npmlog@npm:^4.0.1": version: 4.1.2 resolution: "npmlog@npm:4.1.2" dependencies: @@ -5675,6 +5934,18 @@ __metadata: languageName: node linkType: hard +"npmlog@npm:^6.0.0": + version: 6.0.2 + resolution: "npmlog@npm:6.0.2" + dependencies: + are-we-there-yet: ^3.0.0 + console-control-strings: ^1.1.0 + gauge: ^4.0.3 + set-blocking: ^2.0.0 + checksum: ae238cd264a1c3f22091cdd9e2b106f684297d3c184f1146984ecbe18aaa86343953f26b9520dedd1b1372bc0316905b736c1932d778dbeb1fcf5a1001390e2a + languageName: node + linkType: hard + "number-is-nan@npm:^1.0.0": version: 1.0.1 resolution: "number-is-nan@npm:1.0.1" @@ -5726,45 +5997,76 @@ __metadata: languageName: node linkType: hard -"object-inspect@npm:^1.9.0": - version: 1.10.3 - resolution: "object-inspect@npm:1.10.3" - checksum: 9a56db2e0146fe94a7a9c78f677a2a28eec11d0ae13430e0bb2cb908fdd2d3feb7dbba7c638b9b7f88ace01d9a937227a8801709d13afb76613775aeb68632d3 +"object-inspect@npm:^1.12.3, object-inspect@npm:^1.9.0": + version: 1.12.3 + resolution: "object-inspect@npm:1.12.3" + checksum: dabfd824d97a5f407e6d5d24810d888859f6be394d8b733a77442b277e0808860555176719c5905e765e3743a7cada6b8b0a3b85e5331c530fd418cc8ae991db languageName: node linkType: hard -"object-keys@npm:^1.0.12, object-keys@npm:^1.1.1": +"object-keys@npm:^1.1.1": version: 1.1.1 resolution: "object-keys@npm:1.1.1" checksum: b363c5e7644b1e1b04aa507e88dcb8e3a2f52b6ffd0ea801e4c7a62d5aa559affe21c55a07fd4b1fd55fc03a33c610d73426664b20032405d7b92a1414c34d6a languageName: node linkType: hard -"object.assign@npm:^4.1.2": - version: 4.1.2 - resolution: "object.assign@npm:4.1.2" +"object.assign@npm:^4.1.4": + version: 4.1.4 + resolution: "object.assign@npm:4.1.4" dependencies: - call-bind: ^1.0.0 - define-properties: ^1.1.3 - has-symbols: ^1.0.1 + call-bind: ^1.0.2 + define-properties: ^1.1.4 + has-symbols: ^1.0.3 object-keys: ^1.1.1 - checksum: d621d832ed7b16ac74027adb87196804a500d80d9aca536fccb7ba48d33a7e9306a75f94c1d29cbfa324bc091bfc530bc24789568efdaee6a47fcfa298993814 + checksum: 76cab513a5999acbfe0ff355f15a6a125e71805fcf53de4e9d4e082e1989bdb81d1e329291e1e4e0ae7719f0e4ef80e88fb2d367ae60500d79d25a6224ac8864 languageName: node linkType: hard -"object.values@npm:^1.1.3": - version: 1.1.3 - resolution: "object.values@npm:1.1.3" +"object.fromentries@npm:^2.0.6": + version: 2.0.6 + resolution: "object.fromentries@npm:2.0.6" dependencies: call-bind: ^1.0.2 - define-properties: ^1.1.3 - es-abstract: ^1.18.0-next.2 - has: ^1.0.3 - checksum: 8b29bd0936a32c2c5dfeb39389f65c7c3f32253a2ad3e4605726cac6bda8f642b4f8ab1ef58279851b86b7ae7322b3cf9a464c346498a7deb8f0c3a0554015f0 + define-properties: ^1.1.4 + es-abstract: ^1.20.4 + checksum: 453c6d694180c0c30df451b60eaf27a5b9bca3fb43c37908fd2b78af895803dc631242bcf05582173afa40d8d0e9c96e16e8874b39471aa53f3ac1f98a085d85 + languageName: node + linkType: hard + +"object.groupby@npm:^1.0.0": + version: 1.0.0 + resolution: "object.groupby@npm:1.0.0" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.2.0 + es-abstract: ^1.21.2 + get-intrinsic: ^1.2.1 + checksum: 64b00b287d57580111c958e7ff375c9b61811fa356f2cf0d35372d43cab61965701f00fac66c19fd8f49c4dfa28744bee6822379c69a73648ad03e09fcdeae70 + languageName: node + linkType: hard + +"object.values@npm:^1.1.6": + version: 1.1.6 + resolution: "object.values@npm:1.1.6" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.1.4 + es-abstract: ^1.20.4 + checksum: f6fff9fd817c24cfd8107f50fb33061d81cd11bacc4e3dbb3852e9ff7692fde4dbce823d4333ea27cd9637ef1b6690df5fbb61f1ed314fa2959598dc3ae23d8e languageName: node linkType: hard -"on-finished@npm:^2.3.0, on-finished@npm:~2.3.0": +"on-finished@npm:2.4.1, on-finished@npm:^2.3.0": + version: 2.4.1 + resolution: "on-finished@npm:2.4.1" + dependencies: + ee-first: 1.1.1 + checksum: d20929a25e7f0bb62f937a425b5edeb4e4cde0540d77ba146ec9357f00b0d497cdb3b9b05b9c8e46222407d1548d08166bff69cc56dfa55ba0e4469228920ff0 + languageName: node + linkType: hard + +"on-finished@npm:~2.3.0": version: 2.3.0 resolution: "on-finished@npm:2.3.0" dependencies: @@ -5782,15 +6084,6 @@ __metadata: languageName: node linkType: hard -"onetime@npm:^5.1.2": - version: 5.1.2 - resolution: "onetime@npm:5.1.2" - dependencies: - mimic-fn: ^2.1.0 - checksum: 2478859ef817fc5d4e9c2f9e5728512ddd1dbc9fb7829ad263765bb6d3b91ce699d6e2332eef6b7dff183c2f490bd3349f1666427eaba4469fba0ac38dfd0d34 - languageName: node - linkType: hard - "only@npm:~0.0.2": version: 0.0.2 resolution: "only@npm:0.0.2" @@ -5799,25 +6092,16 @@ __metadata: linkType: hard "optionator@npm:^0.9.1": - version: 0.9.1 - resolution: "optionator@npm:0.9.1" + version: 0.9.3 + resolution: "optionator@npm:0.9.3" dependencies: + "@aashutoshrathi/word-wrap": ^1.2.3 deep-is: ^0.1.3 fast-levenshtein: ^2.0.6 levn: ^0.4.1 prelude-ls: ^1.2.1 type-check: ^0.4.0 - word-wrap: ^1.2.3 - checksum: dbc6fa065604b24ea57d734261914e697bd73b69eff7f18e967e8912aa2a40a19a9f599a507fa805be6c13c24c4eae8c71306c239d517d42d4c041c942f508a0 - languageName: node - linkType: hard - -"p-limit@npm:^1.1.0": - version: 1.3.0 - resolution: "p-limit@npm:1.3.0" - dependencies: - p-try: ^1.0.0 - checksum: 281c1c0b8c82e1ac9f81acd72a2e35d402bf572e09721ce5520164e9de07d8274451378a3470707179ad13240535558f4b277f02405ad752e08c7d5b0d54fbfd + checksum: 09281999441f2fe9c33a5eeab76700795365a061563d66b098923eb719251a42bdbe432790d35064d0816ead9296dbeb1ad51a733edf4167c96bd5d0882e428a languageName: node linkType: hard @@ -5830,15 +6114,6 @@ __metadata: languageName: node linkType: hard -"p-locate@npm:^2.0.0": - version: 2.0.0 - resolution: "p-locate@npm:2.0.0" - dependencies: - p-limit: ^1.1.0 - checksum: e2dceb9b49b96d5513d90f715780f6f4972f46987dc32a0e18bc6c3fc74a1a5d73ec5f81b1398af5e58b99ea1ad03fd41e9181c01fa81b4af2833958696e3081 - languageName: node - linkType: hard - "p-locate@npm:^4.1.0": version: 4.1.0 resolution: "p-locate@npm:4.1.0" @@ -5866,13 +6141,6 @@ __metadata: languageName: node linkType: hard -"p-try@npm:^1.0.0": - version: 1.0.0 - resolution: "p-try@npm:1.0.0" - checksum: 3b5303f77eb7722144154288bfd96f799f8ff3e2b2b39330efe38db5dd359e4fb27012464cd85cb0a76e9b7edd1b443568cb3192c22e7cffc34989df0bafd605 - languageName: node - linkType: hard - "p-try@npm:^2.0.0": version: 2.2.0 resolution: "p-try@npm:2.2.0" @@ -5893,9 +6161,9 @@ __metadata: linkType: hard "pako@npm:^2.0.2": - version: 2.0.3 - resolution: "pako@npm:2.0.3" - checksum: 7008da1379db232d562e5ef0f7fb11f7fedc5672cbdf622fa8a9bf0af75e430c63250a3de1c3a6b128da52dc6196c2082a88184d882ff704ee80631136f7aa39 + version: 2.1.0 + resolution: "pako@npm:2.1.0" + checksum: 71666548644c9a4d056bcaba849ca6fd7242c6cf1af0646d3346f3079a1c7f4a66ffec6f7369ee0dc88f61926c10d6ab05da3e1fca44b83551839e89edd75a3e languageName: node linkType: hard @@ -5908,16 +6176,6 @@ __metadata: languageName: node linkType: hard -"parse-json@npm:^4.0.0": - version: 4.0.0 - resolution: "parse-json@npm:4.0.0" - dependencies: - error-ex: ^1.3.1 - json-parse-better-errors: ^1.0.1 - checksum: 0fe227d410a61090c247e34fa210552b834613c006c2c64d9a05cfe9e89cf8b4246d1246b1a99524b53b313e9ac024438d0680f67e33eaed7e6f38db64cfe7b5 - languageName: node - linkType: hard - "parseurl@npm:^1.3.2, parseurl@npm:~1.3.3": version: 1.3.3 resolution: "parseurl@npm:1.3.3" @@ -5925,13 +6183,6 @@ __metadata: languageName: node linkType: hard -"path-exists@npm:^3.0.0": - version: 3.0.0 - resolution: "path-exists@npm:3.0.0" - checksum: 96e92643aa34b4b28d0de1cd2eba52a1c5313a90c6542d03f62750d82480e20bfa62bc865d5cfc6165f5fcd5aeb0851043c40a39be5989646f223300021bae0a - languageName: node - linkType: hard - "path-exists@npm:^4.0.0": version: 4.0.0 resolution: "path-exists@npm:4.0.0" @@ -5946,65 +6197,48 @@ __metadata: languageName: node linkType: hard -"path-key@npm:^3.0.0, path-key@npm:^3.1.0": +"path-key@npm:^3.1.0": version: 3.1.1 resolution: "path-key@npm:3.1.1" checksum: 55cd7a9dd4b343412a8386a743f9c746ef196e57c823d90ca3ab917f90ab9f13dd0ded27252ba49dbdfcab2b091d998bc446f6220cd3cea65db407502a740020 languageName: node linkType: hard -"path-parse@npm:^1.0.6": +"path-parse@npm:^1.0.7": version: 1.0.7 resolution: "path-parse@npm:1.0.7" checksum: 49abf3d81115642938a8700ec580da6e830dde670be21893c62f4e10bd7dd4c3742ddc603fe24f898cba7eb0c6bc1777f8d9ac14185d34540c6d4d80cd9cae8a languageName: node linkType: hard -"path-starts-with@npm:^1.0.0": - version: 1.0.0 - resolution: "path-starts-with@npm:1.0.0" +"path-scurry@npm:^1.10.1": + version: 1.10.1 + resolution: "path-scurry@npm:1.10.1" dependencies: - normalize-path: ^2.1.1 - checksum: 15b120d3f7b58de29b1b010675392b368ab67003a8a23b4f4649447f4d1d98a6db2eb7aec19f49042b8ddcba77f808f0babbca36ff3f0c581c870109d52a7fa2 - languageName: node - linkType: hard - -"path-type@npm:^3.0.0": - version: 3.0.0 - resolution: "path-type@npm:3.0.0" - dependencies: - pify: ^3.0.0 - checksum: 735b35e256bad181f38fa021033b1c33cfbe62ead42bb2222b56c210e42938eecb272ae1949f3b6db4ac39597a61b44edd8384623ec4d79bfdc9a9c0f12537a6 + lru-cache: ^9.1.1 || ^10.0.0 + minipass: ^5.0.0 || ^6.0.2 || ^7.0.0 + checksum: e2557cff3a8fb8bc07afdd6ab163a92587884f9969b05bbbaf6fe7379348bfb09af9ed292af12ed32398b15fb443e81692047b786d1eeb6d898a51eb17ed7d90 languageName: node linkType: hard "path-type@npm:^4.0.0": version: 4.0.0 - resolution: "path-type@npm:4.0.0" - checksum: 5b1e2daa247062061325b8fdbfd1fb56dde0a448fb1455453276ea18c60685bdad23a445dc148cf87bc216be1573357509b7d4060494a6fd768c7efad833ee45 - languageName: node - linkType: hard - -"picomatch@npm:^2.0.4, picomatch@npm:^2.2.1, picomatch@npm:^2.2.3": - version: 2.2.3 - resolution: "picomatch@npm:2.2.3" - checksum: 45e2b882b5265d3a322c6b7b854c1fdc33d5083011b9730296e9ad26332824ac356529f1ce1b0c1111f08a84c02e8525ea121d17c4bbe2970ca6665e587921fa + resolution: "path-type@npm:4.0.0" + checksum: 5b1e2daa247062061325b8fdbfd1fb56dde0a448fb1455453276ea18c60685bdad23a445dc148cf87bc216be1573357509b7d4060494a6fd768c7efad833ee45 languageName: node linkType: hard -"pify@npm:^3.0.0": - version: 3.0.0 - resolution: "pify@npm:3.0.0" - checksum: 6cdcbc3567d5c412450c53261a3f10991665d660961e06605decf4544a61a97a54fefe70a68d5c37080ff9d6f4cf51444c90198d1ba9f9309a6c0d6e9f5c4fde +"picocolors@npm:^1.0.0": + version: 1.0.0 + resolution: "picocolors@npm:1.0.0" + checksum: a2e8092dd86c8396bdba9f2b5481032848525b3dc295ce9b57896f931e63fc16f79805144321f72976383fc249584672a75cc18d6777c6b757603f372f745981 languageName: node linkType: hard -"pkg-dir@npm:^2.0.0": - version: 2.0.0 - resolution: "pkg-dir@npm:2.0.0" - dependencies: - find-up: ^2.1.0 - checksum: 8c72b712305b51e1108f0ffda5ec1525a8307e54a5855db8fb1dcf77561a5ae98e2ba3b4814c9806a679f76b2f7e5dd98bde18d07e594ddd9fdd25e9cf242ea1 +"picomatch@npm:^2.0.4, picomatch@npm:^2.2.1, picomatch@npm:^2.3.1": + version: 2.3.1 + resolution: "picomatch@npm:2.3.1" + checksum: 050c865ce81119c4822c45d3c84f1ced46f93a0126febae20737bd05ca20589c564d6e9226977df859ed5e03dc73f02584a2b0faad36e896936238238b0446cf languageName: node linkType: hard @@ -6017,18 +6251,9 @@ __metadata: languageName: node linkType: hard -"pkg-up@npm:^2.0.0": - version: 2.0.0 - resolution: "pkg-up@npm:2.0.0" - dependencies: - find-up: ^2.1.0 - checksum: de4b418175281a082e366ce1a919f032520ee53cf421578b35173f03816f6ec4c19e1552066840bb0988c3e1215859653948efd6ca3507a23f4f44229269500d - languageName: node - linkType: hard - "prebuild-install@npm:^6.0.0": - version: 6.1.2 - resolution: "prebuild-install@npm:6.1.2" + version: 6.1.4 + resolution: "prebuild-install@npm:6.1.4" dependencies: detect-libc: ^1.0.3 expand-template: ^2.0.3 @@ -6037,7 +6262,6 @@ __metadata: mkdirp-classic: ^0.5.3 napi-build-utils: ^1.0.1 node-abi: ^2.21.0 - noop-logger: ^0.1.1 npmlog: ^4.0.1 pump: ^3.0.0 rc: ^1.2.7 @@ -6045,8 +6269,8 @@ __metadata: tar-fs: ^2.0.0 tunnel-agent: ^0.6.0 bin: - prebuild-install: ./bin.js - checksum: db205c9f408cdfc13a6ad0dbc88bc7aeed76fb5ccb232f1eb515e6686da7f20f48831ca9142dcf38b2785f5906914371a95342032e54e421c08efa45785c80b6 + prebuild-install: bin.js + checksum: de4313eda821305912af922700a2db04bb8e77fe8aa9c2788550f1000c026cbefc82da468ec0c0a37764c5417bd8169dbd540928535fb38d00bb9bbd673dd217 languageName: node linkType: hard @@ -6098,13 +6322,6 @@ __metadata: languageName: node linkType: hard -"promise-inflight@npm:^1.0.1": - version: 1.0.1 - resolution: "promise-inflight@npm:1.0.1" - checksum: 22749483091d2c594261517f4f80e05226d4d5ecc1fc917e1886929da56e22b5718b7f2a75f3807e7a7d471bc3be2907fe92e6e8f373ddf5c64bae35b5af3981 - languageName: node - linkType: hard - "promise-retry@npm:^2.0.1": version: 2.0.1 resolution: "promise-retry@npm:2.0.1" @@ -6116,8 +6333,8 @@ __metadata: linkType: hard "protobufjs@npm:^6.8.8, protobufjs@npm:~6.11.2, protobufjs@npm:~6.11.3": - version: 6.11.3 - resolution: "protobufjs@npm:6.11.3" + version: 6.11.4 + resolution: "protobufjs@npm:6.11.4" dependencies: "@protobufjs/aspromise": ^1.1.2 "@protobufjs/base64": ^1.1.2 @@ -6135,7 +6352,7 @@ __metadata: bin: pbjs: bin/pbjs pbts: bin/pbts - checksum: 4a6ce1964167e4c45c53fd8a312d7646415c777dd31b4ba346719947b88e61654912326101f927da387d6b6473ab52a7ea4f54d6f15d63b31130ce28e2e15070 + checksum: b2fc6a01897b016c2a7e43a854ab4a3c57080f61be41e552235436e7a730711b8e89e47cb4ae52f0f065b5ab5d5989fc932f390337ce3a8ccf07203415700850 languageName: node linkType: hard @@ -6150,9 +6367,9 @@ __metadata: linkType: hard "punycode@npm:^2.1.0": - version: 2.1.1 - resolution: "punycode@npm:2.1.1" - checksum: 823bf443c6dd14f669984dea25757b37993f67e8d94698996064035edd43bed8a5a17a9f12e439c2b35df1078c6bec05a6c86e336209eb1061e8025c481168e8 + version: 2.3.0 + resolution: "punycode@npm:2.3.0" + checksum: 39f760e09a2a3bbfe8f5287cf733ecdad69d6af2fe6f97ca95f24b8921858b91e9ea3c9eeec6e08cede96181b3bb33f95c6ffd8c77e63986508aa2e8159fa200 languageName: node linkType: hard @@ -6163,19 +6380,21 @@ __metadata: languageName: node linkType: hard -"qs@npm:6.7.0": - version: 6.7.0 - resolution: "qs@npm:6.7.0" - checksum: dfd5f6adef50e36e908cfa70a6233871b5afe66fbaca37ecc1da352ba29eb2151a3797991948f158bb37fccde51bd57845cb619a8035287bfc24e4591172c347 +"qs@npm:6.11.0": + version: 6.11.0 + resolution: "qs@npm:6.11.0" + dependencies: + side-channel: ^1.0.4 + checksum: 6e1f29dd5385f7488ec74ac7b6c92f4d09a90408882d0c208414a34dd33badc1a621019d4c799a3df15ab9b1d0292f97c1dd71dc7c045e69f81a8064e5af7297 languageName: node linkType: hard "qs@npm:^6.5.2": - version: 6.10.1 - resolution: "qs@npm:6.10.1" + version: 6.11.2 + resolution: "qs@npm:6.11.2" dependencies: side-channel: ^1.0.4 - checksum: 00e390dbf98eff4d8ff121b61ab2fe32106852290de99ecd0e40fc76651c4101f43fc6cc8313cb69423563876fc532951b11dda55d2917def05f292258263480 + checksum: e812f3c590b2262548647d62f1637b6989cc56656dc960b893fe2098d96e1bd633f36576f4cd7564dfbff9db42e17775884db96d846bebe4f37420d073ecdc0b languageName: node linkType: hard @@ -6202,27 +6421,15 @@ __metadata: languageName: node linkType: hard -"raw-body@npm:2.4.0": - version: 2.4.0 - resolution: "raw-body@npm:2.4.0" - dependencies: - bytes: 3.1.0 - http-errors: 1.7.2 - iconv-lite: 0.4.24 - unpipe: 1.0.0 - checksum: 6343906939e018c6e633a34a938a5d6d1e93ffcfa48646e00207d53b418e941953b521473950c079347220944dc75ba10e7b3c08bf97e3ac72c7624882db09bb - languageName: node - linkType: hard - -"raw-body@npm:^2.3.3": - version: 2.4.1 - resolution: "raw-body@npm:2.4.1" +"raw-body@npm:2.5.2, raw-body@npm:^2.3.3": + version: 2.5.2 + resolution: "raw-body@npm:2.5.2" dependencies: - bytes: 3.1.0 - http-errors: 1.7.3 + bytes: 3.1.2 + http-errors: 2.0.0 iconv-lite: 0.4.24 unpipe: 1.0.0 - checksum: d5e9179d2f1f0a652cd107c080f25d165c724f546124d620c8df7fb80322df42bff547a8b310e55e1f7952556d013716a21b30162192eb0b3332d7efcba75883 + checksum: ba1583c8d8a48e8fbb7a873fdbb2df66ea4ff83775421bfe21ee120140949ab048200668c47d9ae3880012f6e217052690628cf679ddfbd82c9fc9358d574676 languageName: node linkType: hard @@ -6240,30 +6447,9 @@ __metadata: languageName: node linkType: hard -"read-pkg-up@npm:^3.0.0": - version: 3.0.0 - resolution: "read-pkg-up@npm:3.0.0" - dependencies: - find-up: ^2.0.0 - read-pkg: ^3.0.0 - checksum: 16175573f2914ab9788897bcbe2a62b5728d0075e62285b3680cebe97059e2911e0134a062cf6e51ebe3e3775312bc788ac2039ed6af38ec68d2c10c6f2b30fb - languageName: node - linkType: hard - -"read-pkg@npm:^3.0.0": - version: 3.0.0 - resolution: "read-pkg@npm:3.0.0" - dependencies: - load-json-file: ^4.0.0 - normalize-package-data: ^2.3.2 - path-type: ^3.0.0 - checksum: 398903ebae6c7e9965419a1062924436cc0b6f516c42c4679a90290d2f87448ed8f977e7aa2dbba4aa1ac09248628c43e493ac25b2bc76640e946035200e34c6 - languageName: node - linkType: hard - "readable-stream@npm:^2.0.6": - version: 2.3.7 - resolution: "readable-stream@npm:2.3.7" + version: 2.3.8 + resolution: "readable-stream@npm:2.3.8" dependencies: core-util-is: ~1.0.0 inherits: ~2.0.3 @@ -6272,18 +6458,18 @@ __metadata: safe-buffer: ~5.1.1 string_decoder: ~1.1.1 util-deprecate: ~1.0.1 - checksum: e4920cf7549a60f8aaf694d483a0e61b2a878b969d224f89b3bc788b8d920075132c4b55a7494ee944c7b6a9a0eada28a7f6220d80b0312ece70bbf08eeca755 + checksum: 65645467038704f0c8aaf026a72fbb588a9e2ef7a75cd57a01702ee9db1c4a1e4b03aaad36861a6a0926546a74d174149c8c207527963e0c2d3eee2f37678a42 languageName: node linkType: hard "readable-stream@npm:^3.1.1, readable-stream@npm:^3.4.0, readable-stream@npm:^3.6.0": - version: 3.6.0 - resolution: "readable-stream@npm:3.6.0" + version: 3.6.2 + resolution: "readable-stream@npm:3.6.2" dependencies: inherits: ^2.0.3 string_decoder: ^1.1.1 util-deprecate: ^1.0.1 - checksum: d4ea81502d3799439bb955a3a5d1d808592cf3133350ed352aeaa499647858b27b1c4013984900238b0873ec8d0d8defce72469fb7a83e61d53f5ad61cb80dc8 + checksum: bdcbe6c22e846b6af075e32cf8f4751c2576238c5043169a1c221c92ee2878458a816a4ea33f4c67623c0b6827c8a400409bfb3cf0bf3381392d0b1dfb52ac8d languageName: node linkType: hard @@ -6304,34 +6490,45 @@ __metadata: linkType: hard "recast@npm:^0.20": - version: 0.20.4 - resolution: "recast@npm:0.20.4" + version: 0.20.5 + resolution: "recast@npm:0.20.5" dependencies: ast-types: 0.14.2 esprima: ~4.0.0 source-map: ~0.6.1 tslib: ^2.0.1 - checksum: d858095cbd89908e401c5f51734c410a3a80b7dfcc099fe2e4b1ec4cf8b6f046d24830628edad5047cc3ff3cbed9828dc90271a81f5a243a4722d0a8078e6d57 + checksum: 14c35115cd9965950724cb2968f069a247fa79ce890643ab6dc3795c705b363f7b92a45238e9f765387c306763be9955f72047bb9d15b5d60b0a55f9e7912d5a languageName: node linkType: hard "rechoir@npm:^0.7.0": - version: 0.7.0 - resolution: "rechoir@npm:0.7.0" + version: 0.7.1 + resolution: "rechoir@npm:0.7.1" dependencies: resolve: ^1.9.0 - checksum: 15f55f55e06c175d98df85d503b139982378e7ca34e157439125e5a6f25a5cbd9cfe2aa2d1052e2c1edf89d7d22dc020c911fc968702c84f669a16a12a1ec7ac + checksum: 2a04aab4e28c05fcd6ee6768446bc8b859d8f108e71fc7f5bcbc5ef25e53330ce2c11d10f82a24591a2df4c49c4f61feabe1fd11f844c66feedd4cd7bb61146a languageName: node linkType: hard -"regenerator-runtime@npm:^0.13.4": - version: 0.13.8 - resolution: "regenerator-runtime@npm:0.13.8" - checksum: 5f89699ab578301e3f47fe323d2a9e19ed4b7302481b37ce96843602be3a5cb1e5b66a07c1500e69d4710c1dd6fa3b3f3e56d188ef56df4c17a744d853ac36ed +"regenerator-runtime@npm:^0.14.0": + version: 0.14.0 + resolution: "regenerator-runtime@npm:0.14.0" + checksum: 1c977ad82a82a4412e4f639d65d22be376d3ebdd30da2c003eeafdaaacd03fc00c2320f18120007ee700900979284fc78a9f00da7fb593f6e6eeebc673fba9a3 languageName: node linkType: hard -"regexpp@npm:^3.1.0, regexpp@npm:^3.2.0": +"regexp.prototype.flags@npm:^1.5.0": + version: 1.5.0 + resolution: "regexp.prototype.flags@npm:1.5.0" + dependencies: + call-bind: ^1.0.2 + define-properties: ^1.2.0 + functions-have-names: ^1.2.3 + checksum: c541687cdbdfff1b9a07f6e44879f82c66bbf07665f9a7544c5fd16acdb3ec8d1436caab01662d2fbcad403f3499d49ab0b77fbc7ef29ef961d98cc4bc9755b4 + languageName: node + linkType: hard + +"regexpp@npm:^3.1.0": version: 3.2.0 resolution: "regexpp@npm:3.2.0" checksum: a78dc5c7158ad9ddcfe01aa9144f46e192ddbfa7b263895a70a5c6c73edd9ce85faf7c0430e59ac38839e1734e275b9c3de5c57ee3ab6edc0e0b1bdebefccef8 @@ -6347,13 +6544,6 @@ __metadata: languageName: node linkType: hard -"remove-trailing-separator@npm:^1.0.1": - version: 1.1.0 - resolution: "remove-trailing-separator@npm:1.1.0" - checksum: d3c20b5a2d987db13e1cca9385d56ecfa1641bae143b620835ac02a6b70ab88f68f117a0021838db826c57b31373d609d52e4f31aca75fc490c862732d595419 - languageName: node - linkType: hard - "require-directory@npm:^2.1.1": version: 2.1.1 resolution: "require-directory@npm:2.1.1" @@ -6405,23 +6595,29 @@ __metadata: languageName: node linkType: hard -"resolve@^1.10.0, resolve@^1.13.1, resolve@^1.20.0, resolve@^1.9.0": - version: 1.20.0 - resolution: "resolve@npm:1.20.0" +"resolve@npm:^1.22.3, resolve@npm:^1.22.4, resolve@npm:^1.9.0": + version: 1.22.4 + resolution: "resolve@npm:1.22.4" dependencies: - is-core-module: ^2.2.0 - path-parse: ^1.0.6 - checksum: 40cf70b2cde00ef57f99daf2dc63c6a56d6c14a1b7fc51735d06a6f0a3b97cb67b4fb7ef6c747b4e13a7baba83b0ef625d7c4ce92a483cd5af923c3b65fd16fe + is-core-module: ^2.13.0 + path-parse: ^1.0.7 + supports-preserve-symlinks-flag: ^1.0.0 + bin: + resolve: bin/resolve + checksum: 23f25174c2736ce24c6d918910e0d1f89b6b38fefa07a995dff864acd7863d59a7f049e691f93b4b2ee29696303390d921552b6d1b841ed4a8101f517e1d0124 languageName: node linkType: hard -"resolve@patch:resolve@^1.10.0#~builtin, resolve@patch:resolve@^1.13.1#~builtin, resolve@patch:resolve@^1.20.0#~builtin, resolve@patch:resolve@^1.9.0#~builtin": - version: 1.20.0 - resolution: "resolve@patch:resolve@npm%3A1.20.0#~builtin::version=1.20.0&hash=c3c19d" +"resolve@patch:resolve@^1.22.3#~builtin, resolve@patch:resolve@^1.22.4#~builtin, resolve@patch:resolve@^1.9.0#~builtin": + version: 1.22.4 + resolution: "resolve@patch:resolve@npm%3A1.22.4#~builtin::version=1.22.4&hash=c3c19d" dependencies: - is-core-module: ^2.2.0 - path-parse: ^1.0.6 - checksum: a0dd7d16a8e47af23afa9386df2dff10e3e0debb2c7299a42e581d9d9b04d7ad5d2c53f24f1e043f7b3c250cbdc71150063e53d0b6559683d37f790b7c8c3cd5 + is-core-module: ^2.13.0 + path-parse: ^1.0.7 + supports-preserve-symlinks-flag: ^1.0.0 + bin: + resolve: bin/resolve + checksum: c45f2545fdc4d21883861b032789e20aa67a2f2692f68da320cc84d5724cd02f2923766c5354b3210897e88f1a7b3d6d2c7c22faeead8eed7078e4c783a444bc languageName: node linkType: hard @@ -6485,20 +6681,43 @@ __metadata: languageName: node linkType: hard -"safe-buffer@npm:5.1.2, safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1": - version: 5.1.2 - resolution: "safe-buffer@npm:5.1.2" - checksum: f2f1f7943ca44a594893a852894055cf619c1fbcb611237fc39e461ae751187e7baf4dc391a72125e0ac4fb2d8c5c0b3c71529622e6a58f46b960211e704903c +"safe-array-concat@npm:^1.0.0": + version: 1.0.0 + resolution: "safe-array-concat@npm:1.0.0" + dependencies: + call-bind: ^1.0.2 + get-intrinsic: ^1.2.0 + has-symbols: ^1.0.3 + isarray: ^2.0.5 + checksum: f43cb98fe3b566327d0c09284de2b15fb85ae964a89495c1b1a5d50c7c8ed484190f4e5e71aacc167e16231940079b326f2c0807aea633d47cc7322f40a6b57f languageName: node linkType: hard -"safe-buffer@npm:^5.0.1, safe-buffer@npm:^5.1.0, safe-buffer@npm:^5.2.0, safe-buffer@npm:~5.2.0": +"safe-buffer@npm:5.2.1, safe-buffer@npm:^5.0.1, safe-buffer@npm:^5.1.0, safe-buffer@npm:^5.2.0, safe-buffer@npm:~5.2.0": version: 5.2.1 resolution: "safe-buffer@npm:5.2.1" checksum: b99c4b41fdd67a6aaf280fcd05e9ffb0813654894223afb78a31f14a19ad220bba8aba1cb14eddce1fcfb037155fe6de4e861784eb434f7d11ed58d1e70dd491 languageName: node linkType: hard +"safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1": + version: 5.1.2 + resolution: "safe-buffer@npm:5.1.2" + checksum: f2f1f7943ca44a594893a852894055cf619c1fbcb611237fc39e461ae751187e7baf4dc391a72125e0ac4fb2d8c5c0b3c71529622e6a58f46b960211e704903c + languageName: node + linkType: hard + +"safe-regex-test@npm:^1.0.0": + version: 1.0.0 + resolution: "safe-regex-test@npm:1.0.0" + dependencies: + call-bind: ^1.0.2 + get-intrinsic: ^1.1.3 + is-regex: ^1.1.4 + checksum: bc566d8beb8b43c01b94e67de3f070fd2781685e835959bbbaaec91cc53381145ca91f69bd837ce6ec244817afa0a5e974fc4e40a2957f0aca68ac3add1ddd34 + languageName: node + linkType: hard + "safer-buffer@npm:>= 2.1.2 < 3, safer-buffer@npm:>= 2.1.2 < 3.0.0": version: 2.1.2 resolution: "safer-buffer@npm:2.1.2" @@ -6506,43 +6725,43 @@ __metadata: languageName: node linkType: hard -"schema-utils@npm:^3.1.0, schema-utils@npm:^3.1.1": - version: 3.1.1 - resolution: "schema-utils@npm:3.1.1" +"schema-utils@npm:^3.1.1, schema-utils@npm:^3.2.0": + version: 3.3.0 + resolution: "schema-utils@npm:3.3.0" dependencies: "@types/json-schema": ^7.0.8 ajv: ^6.12.5 ajv-keywords: ^3.5.2 - checksum: fb73f3d759d43ba033c877628fe9751620a26879f6301d3dbeeb48cf2a65baec5cdf99da65d1bf3b4ff5444b2e59cbe4f81c2456b5e0d2ba7d7fd4aed5da29ce + checksum: ea56971926fac2487f0757da939a871388891bc87c6a82220d125d587b388f1704788f3706e7f63a7b70e49fc2db974c41343528caea60444afd5ce0fe4b85c0 languageName: node linkType: hard -"semver@npm:2 || 3 || 4 || 5, semver@npm:^5.4.1": - version: 5.7.1 - resolution: "semver@npm:5.7.1" +"semver@npm:^5.4.1": + version: 5.7.2 + resolution: "semver@npm:5.7.2" bin: - semver: ./bin/semver - checksum: 57fd0acfd0bac382ee87cd52cd0aaa5af086a7dc8d60379dfe65fea491fb2489b6016400813930ecd61fd0952dae75c115287a1b16c234b1550887117744dfaf + semver: bin/semver + checksum: fb4ab5e0dd1c22ce0c937ea390b4a822147a9c53dbd2a9a0132f12fe382902beef4fbf12cf51bb955248d8d15874ce8cd89532569756384f994309825f10b686 languageName: node linkType: hard -"semver@npm:^6.0.0, semver@npm:^6.3.0": - version: 6.3.0 - resolution: "semver@npm:6.3.0" +"semver@npm:^6.0.0, semver@npm:^6.3.0, semver@npm:^6.3.1": + version: 6.3.1 + resolution: "semver@npm:6.3.1" bin: - semver: ./bin/semver.js - checksum: 1b26ecf6db9e8292dd90df4e781d91875c0dcc1b1909e70f5d12959a23c7eebb8f01ea581c00783bbee72ceeaad9505797c381756326073850dc36ed284b21b9 + semver: bin/semver.js + checksum: ae47d06de28836adb9d3e25f22a92943477371292d9b665fb023fae278d345d508ca1958232af086d85e0155aee22e313e100971898bbb8d5d89b8b1d4054ca2 languageName: node linkType: hard -"semver@npm:^7.2.1, semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.5.2": - version: 7.5.3 - resolution: "semver@npm:7.5.3" +"semver@npm:^7.2.1, semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.5.2, semver@npm:^7.5.3": + version: 7.5.4 + resolution: "semver@npm:7.5.4" dependencies: lru-cache: ^6.0.0 bin: semver: bin/semver.js - checksum: 9d58db16525e9f749ad0a696a1f27deabaa51f66e91d2fa2b0db3de3e9644e8677de3b7d7a03f4c15bc81521e0c3916d7369e0572dbde250d9bedf5194e2a8a7 + checksum: 12d8ad952fa353b0995bf180cdac205a4068b759a140e5d3c608317098b3575ac2f1e09182206bf2eb26120e1c0ed8fb92c48c592f6099680de56bb071423ca3 languageName: node linkType: hard @@ -6573,13 +6792,6 @@ __metadata: languageName: node linkType: hard -"setprototypeof@npm:1.1.1": - version: 1.1.1 - resolution: "setprototypeof@npm:1.1.1" - checksum: a8bee29c1c64c245d460ce53f7460af8cbd0aceac68d66e5215153992cc8b3a7a123416353e0c642060e85cc5fd4241c92d1190eec97eda0dcb97436e8fcca3b - languageName: node - linkType: hard - "setprototypeof@npm:1.2.0": version: 1.2.0 resolution: "setprototypeof@npm:1.2.0" @@ -6613,14 +6825,14 @@ __metadata: linkType: hard "shiki@npm:^0.14.1": - version: 0.14.1 - resolution: "shiki@npm:0.14.1" + version: 0.14.3 + resolution: "shiki@npm:0.14.3" dependencies: ansi-sequence-parser: ^1.1.0 jsonc-parser: ^3.2.0 vscode-oniguruma: ^1.7.0 vscode-textmate: ^8.0.0 - checksum: b19ea337cc84da69d99ca39d109f82946e0c56c11cc4c67b3b91cc14a9479203365fd0c9e0dd87e908f493ab409dc6f1849175384b6ca593ce7da884ae1edca2 + checksum: a4dd98e3b2a5dd8be207448f111ffb9ad2ed6c530f215714d8b61cbf91ec3edbabb09109b8ec58a26678aacd24e8161d5a9bc0c1fa1b4f64b27ceb180cbd0c89 languageName: node linkType: hard @@ -6635,10 +6847,17 @@ __metadata: languageName: node linkType: hard -"signal-exit@npm:^3.0.0, signal-exit@npm:^3.0.2, signal-exit@npm:^3.0.3": - version: 3.0.3 - resolution: "signal-exit@npm:3.0.3" - checksum: f0169d3f1263d06df32ca072b0bf33b34c6f8f0341a7a1621558a2444dfbe8f5fec76b35537fcc6f0bc4944bdb5336fe0bdcf41a5422c4e45a1dba3f45475e6c +"signal-exit@npm:^3.0.0, signal-exit@npm:^3.0.2, signal-exit@npm:^3.0.7": + version: 3.0.7 + resolution: "signal-exit@npm:3.0.7" + checksum: a2f098f247adc367dffc27845853e9959b9e88b01cb301658cfe4194352d8d2bb32e18467c786a7fe15f1d44b233ea35633d076d5e737870b7139949d1ab6318 + languageName: node + linkType: hard + +"signal-exit@npm:^4.0.1": + version: 4.1.0 + resolution: "signal-exit@npm:4.1.0" + checksum: 64c757b498cb8629ffa5f75485340594d2f8189e9b08700e69199069c8e3070fb3e255f7ab873c05dc0b3cec412aea7402e10a5990cb6a050bd33ba062a6c549 languageName: node linkType: hard @@ -6678,62 +6897,65 @@ __metadata: languageName: node linkType: hard -"smart-buffer@npm:^4.1.0": - version: 4.1.0 - resolution: "smart-buffer@npm:4.1.0" - checksum: 1db847dcf92c06b36e96aace965e00aec5caccd65c8fd60e0c284c5ad9dabe7f16ef4a60a34dd3c4ccc245a8393071e646fc94fc95f111c25e8513fd9efa6ed5 +"smart-buffer@npm:^4.2.0": + version: 4.2.0 + resolution: "smart-buffer@npm:4.2.0" + checksum: b5167a7142c1da704c0e3af85c402002b597081dd9575031a90b4f229ca5678e9a36e8a374f1814c8156a725d17008ae3bde63b92f9cfd132526379e580bec8b languageName: node linkType: hard -"socket.io-adapter@npm:~2.4.0": - version: 2.4.0 - resolution: "socket.io-adapter@npm:2.4.0" - checksum: a84639946dce13547b95f6e09fe167cdcd5d80941afc2e46790cc23384e0fd3c901e690ecc9bdd600939ce6292261ee15094a0b486f797ed621cfc8783d87a0c +"socket.io-adapter@npm:~2.5.2": + version: 2.5.2 + resolution: "socket.io-adapter@npm:2.5.2" + dependencies: + ws: ~8.11.0 + checksum: 481251c3547221e57eb5cb247d0b1a3cde4d152a4c1c9051cc887345a7770e59f3b47f1011cac4499e833f01fcfc301ed13c4ec6e72f7dbb48a476375a6344cd languageName: node linkType: hard -"socket.io-parser@npm:~4.2.0": - version: 4.2.1 - resolution: "socket.io-parser@npm:4.2.1" +"socket.io-parser@npm:~4.2.4": + version: 4.2.4 + resolution: "socket.io-parser@npm:4.2.4" dependencies: "@socket.io/component-emitter": ~3.1.0 debug: ~4.3.1 - checksum: 2582202f22538d7e6b4436991378cb4cea3b2f8219cda24923ae35afd291ab5ad6120e7d093e41738256b6c6ad10c667dd25753c2d9a2340fead04e9286f152d + checksum: 61540ef99af33e6a562b9effe0fad769bcb7ec6a301aba5a64b3a8bccb611a0abdbe25f469933ab80072582006a78ca136bf0ad8adff9c77c9953581285e2263 languageName: node linkType: hard -"socket.io@npm:^4.2.0": - version: 4.5.3 - resolution: "socket.io@npm:4.5.3" +"socket.io@npm:^4.4.1": + version: 4.7.2 + resolution: "socket.io@npm:4.7.2" dependencies: accepts: ~1.3.4 base64id: ~2.0.0 + cors: ~2.8.5 debug: ~4.3.2 - engine.io: ~6.2.0 - socket.io-adapter: ~2.4.0 - socket.io-parser: ~4.2.0 - checksum: 2a7e4c64bbebb444d211bc66fb8356c14dd0fd4138d31e1781db03fa5a731a3abb7b305fa32cb6c7b57e5ac788601583aad14bea6ff9b8c4ca7b74118ba55f66 + engine.io: ~6.5.2 + socket.io-adapter: ~2.5.2 + socket.io-parser: ~4.2.4 + checksum: 2dfac8983a75e100e889c3dafc83b21b75a9863d0d1ee79cdc60c4391d5d9dffcf3a86fc8deca7568032bc11c2572676335fd2e469c7982f40d19f1141d4b266 languageName: node linkType: hard -"socks-proxy-agent@npm:^5.0.0": - version: 5.0.0 - resolution: "socks-proxy-agent@npm:5.0.0" +"socks-proxy-agent@npm:^7.0.0": + version: 7.0.0 + resolution: "socks-proxy-agent@npm:7.0.0" dependencies: - agent-base: 6 - debug: 4 - socks: ^2.3.3 - checksum: 1dd30d1cc346c33b3180a5bbe75ed93979ca3a916f453a6802f64642f07d30af7e93a640a607c920f10d4b1dfe1d0eec485f64c2a93c951a8d9a50090e6a7776 + agent-base: ^6.0.2 + debug: ^4.3.3 + socks: ^2.6.2 + checksum: 720554370154cbc979e2e9ce6a6ec6ced205d02757d8f5d93fe95adae454fc187a5cbfc6b022afab850a5ce9b4c7d73e0f98e381879cf45f66317a4895953846 languageName: node linkType: hard -"socks@npm:^2.3.3": - version: 2.6.1 - resolution: "socks@npm:2.6.1" +"socks@npm:^2.6.2": + version: 2.7.1 + resolution: "socks@npm:2.7.1" dependencies: - ip: ^1.1.5 - smart-buffer: ^4.1.0 - checksum: 2ca9d616e424f645838ebaabb04f85d94ea999e0f8393dc07f86c435af22ed88cb83958feeabd1bb7bc537c635ed47454255635502c6808a6df61af1f41af750 + ip: ^2.0.0 + smart-buffer: ^4.2.0 + checksum: 259d9e3e8e1c9809a7f5c32238c3d4d2a36b39b83851d0f573bfde5f21c4b1288417ce1af06af1452569cd1eb0841169afd4998f0e04ba04656f6b7f0e46d748 languageName: node linkType: hard @@ -6747,13 +6969,6 @@ __metadata: languageName: node linkType: hard -"source-map@npm:^0.5.0": - version: 0.5.7 - resolution: "source-map@npm:0.5.7" - checksum: 5dc2043b93d2f194142c7f38f74a24670cd7a0063acdaf4bf01d2964b402257ae843c2a8fa822ad5b71013b5fcafa55af7421383da919752f22ff488bc553f4d - languageName: node - linkType: hard - "source-map@npm:^0.6.0, source-map@npm:^0.6.1, source-map@npm:~0.6.1": version: 0.6.1 resolution: "source-map@npm:0.6.1" @@ -6775,40 +6990,6 @@ __metadata: languageName: node linkType: hard -"spdx-correct@npm:^3.0.0": - version: 3.1.1 - resolution: "spdx-correct@npm:3.1.1" - dependencies: - spdx-expression-parse: ^3.0.0 - spdx-license-ids: ^3.0.0 - checksum: 77ce438344a34f9930feffa61be0eddcda5b55fc592906ef75621d4b52c07400a97084d8701557b13f7d2aae0cb64f808431f469e566ef3fe0a3a131dcb775a6 - languageName: node - linkType: hard - -"spdx-exceptions@npm:^2.1.0": - version: 2.3.0 - resolution: "spdx-exceptions@npm:2.3.0" - checksum: cb69a26fa3b46305637123cd37c85f75610e8c477b6476fa7354eb67c08128d159f1d36715f19be6f9daf4b680337deb8c65acdcae7f2608ba51931540687ac0 - languageName: node - linkType: hard - -"spdx-expression-parse@npm:^3.0.0": - version: 3.0.1 - resolution: "spdx-expression-parse@npm:3.0.1" - dependencies: - spdx-exceptions: ^2.1.0 - spdx-license-ids: ^3.0.0 - checksum: a1c6e104a2cbada7a593eaa9f430bd5e148ef5290d4c0409899855ce8b1c39652bcc88a725259491a82601159d6dc790bedefc9016c7472f7de8de7361f8ccde - languageName: node - linkType: hard - -"spdx-license-ids@npm:^3.0.0": - version: 3.0.8 - resolution: "spdx-license-ids@npm:3.0.8" - checksum: fb9ed29f995421a3a6c0ca12bf55abe733a53259c8e079e2c6ff91fbf1faee047bb0553e340addf1e88eb65ff5f219d17df32382965dcfcbc54c9eaef31cec1d - languageName: node - linkType: hard - "sprintf-js@npm:~1.0.2": version: 1.0.3 resolution: "sprintf-js@npm:1.0.3" @@ -6816,12 +6997,19 @@ __metadata: languageName: node linkType: hard -"ssri@npm:^8.0.0, ssri@npm:^8.0.1": - version: 8.0.1 - resolution: "ssri@npm:8.0.1" +"ssri@npm:^10.0.0": + version: 10.0.5 + resolution: "ssri@npm:10.0.5" dependencies: - minipass: ^3.1.1 - checksum: bc447f5af814fa9713aa201ec2522208ae0f4d8f3bda7a1f445a797c7b929a02720436ff7c478fb5edc4045adb02b1b88d2341b436a80798734e2494f1067b36 + minipass: ^7.0.3 + checksum: 0a31b65f21872dea1ed3f7c200d7bc1c1b91c15e419deca14f282508ba917cbb342c08a6814c7f68ca4ca4116dd1a85da2bbf39227480e50125a1ceffeecb750 + languageName: node + linkType: hard + +"statuses@npm:2.0.1": + version: 2.0.1 + resolution: "statuses@npm:2.0.1" + checksum: 18c7623fdb8f646fb213ca4051be4df7efb3484d4ab662937ca6fbef7ced9b9e12842709872eb3020cc3504b93bde88935c9f6417489627a7786f24f8031cbcb languageName: node linkType: hard @@ -6832,14 +7020,25 @@ __metadata: languageName: node linkType: hard -"streamroller@npm:^3.0.2": - version: 3.0.2 - resolution: "streamroller@npm:3.0.2" +"streamroller@npm:^3.1.5": + version: 3.1.5 + resolution: "streamroller@npm:3.1.5" dependencies: - date-format: ^4.0.3 - debug: ^4.1.1 - fs-extra: ^10.0.0 - checksum: 1f323824f0e81cc085c24f33addfd8ef00d0c15aafee520a8cf207ca6e2dc674fd852528c7b4450cc87f4335d1269ed18b3f0188853d45d7f0912c9a205d1fc1 + date-format: ^4.0.14 + debug: ^4.3.4 + fs-extra: ^8.1.0 + checksum: c1df5612b785ffa4b6bbf16460590b62994c57265bc55a5166eebeeb0daf648e84bc52dc6d57e0cd4e5c7609bda93076753c63ff54589febd1e0b95590f0e443 + languageName: node + linkType: hard + +"string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^1.0.2 || 2 || 3 || 4, string-width@npm:^4.1.0, string-width@npm:^4.2.0, string-width@npm:^4.2.3": + version: 4.2.3 + resolution: "string-width@npm:4.2.3" + dependencies: + emoji-regex: ^8.0.0 + is-fullwidth-code-point: ^3.0.0 + strip-ansi: ^6.0.1 + checksum: e52c10dc3fbfcd6c3a15f159f54a90024241d0f149cf8aed2982a2d801d2e64df0bf1dc351cf8e95c3319323f9f220c16e740b06faecd53e2462df1d2b5443fb languageName: node linkType: hard @@ -6854,44 +7053,47 @@ __metadata: languageName: node linkType: hard -"string-width@npm:^1.0.2 || 2": - version: 2.1.1 - resolution: "string-width@npm:2.1.1" +"string-width@npm:^5.0.1, string-width@npm:^5.1.2": + version: 5.1.2 + resolution: "string-width@npm:5.1.2" dependencies: - is-fullwidth-code-point: ^2.0.0 - strip-ansi: ^4.0.0 - checksum: d6173abe088c615c8dffaf3861dc5d5906ed3dc2d6fd67ff2bd2e2b5dce7fd683c5240699cf0b1b8aa679a3b3bd6b28b5053c824cb89b813d7f6541d8f89064a + eastasianwidth: ^0.2.0 + emoji-regex: ^9.2.2 + strip-ansi: ^7.0.1 + checksum: 7369deaa29f21dda9a438686154b62c2c5f661f8dda60449088f9f980196f7908fc39fdd1803e3e01541970287cf5deae336798337e9319a7055af89dafa7193 languageName: node linkType: hard -"string-width@npm:^4.1.0, string-width@npm:^4.2.0": - version: 4.2.2 - resolution: "string-width@npm:4.2.2" +"string.prototype.trim@npm:^1.2.7": + version: 1.2.7 + resolution: "string.prototype.trim@npm:1.2.7" dependencies: - emoji-regex: ^8.0.0 - is-fullwidth-code-point: ^3.0.0 - strip-ansi: ^6.0.0 - checksum: 343e089b0e66e0f72aab4ad1d9b6f2c9cc5255844b0c83fd9b53f2a3b3fd0421bdd6cb05be96a73117eb012db0887a6c1d64ca95aaa50c518e48980483fea0ab + call-bind: ^1.0.2 + define-properties: ^1.1.4 + es-abstract: ^1.20.4 + checksum: 05b7b2d6af63648e70e44c4a8d10d8cc457536df78b55b9d6230918bde75c5987f6b8604438c4c8652eb55e4fc9725d2912789eb4ec457d6995f3495af190c09 languageName: node linkType: hard -"string.prototype.trimend@npm:^1.0.4": - version: 1.0.4 - resolution: "string.prototype.trimend@npm:1.0.4" +"string.prototype.trimend@npm:^1.0.6": + version: 1.0.6 + resolution: "string.prototype.trimend@npm:1.0.6" dependencies: call-bind: ^1.0.2 - define-properties: ^1.1.3 - checksum: 17e5aa45c3983f582693161f972c1c1fa4bbbdf22e70e582b00c91b6575f01680dc34e83005b98e31abe4d5d29e0b21fcc24690239c106c7b2315aade6a898ac + define-properties: ^1.1.4 + es-abstract: ^1.20.4 + checksum: 0fdc34645a639bd35179b5a08227a353b88dc089adf438f46be8a7c197fc3f22f8514c1c9be4629b3cd29c281582730a8cbbad6466c60f76b5f99cf2addb132e languageName: node linkType: hard -"string.prototype.trimstart@npm:^1.0.4": - version: 1.0.4 - resolution: "string.prototype.trimstart@npm:1.0.4" +"string.prototype.trimstart@npm:^1.0.6": + version: 1.0.6 + resolution: "string.prototype.trimstart@npm:1.0.6" dependencies: call-bind: ^1.0.2 - define-properties: ^1.1.3 - checksum: 3fb06818d3cccac5fa3f5f9873d984794ca0e9f6616fae6fcc745885d9efed4e17fe15f832515d9af5e16c279857fdbffdfc489ca4ed577811b017721b30302f + define-properties: ^1.1.4 + es-abstract: ^1.20.4 + checksum: 89080feef416621e6ef1279588994305477a7a91648d9436490d56010a1f7adc39167cddac7ce0b9884b8cdbef086987c4dcb2960209f2af8bac0d23ceff4f41 languageName: node linkType: hard @@ -6913,6 +7115,15 @@ __metadata: languageName: node linkType: hard +"strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": + version: 6.0.1 + resolution: "strip-ansi@npm:6.0.1" + dependencies: + ansi-regex: ^5.0.1 + checksum: f3cd25890aef3ba6e1a74e20896c21a46f482e93df4a06567cebf2b57edabb15133f1f94e57434e0a958d61186087b1008e89c94875d019910a213181a14fc8c + languageName: node + linkType: hard + "strip-ansi@npm:^3.0.0, strip-ansi@npm:^3.0.1": version: 3.0.1 resolution: "strip-ansi@npm:3.0.1" @@ -6922,21 +7133,12 @@ __metadata: languageName: node linkType: hard -"strip-ansi@npm:^4.0.0": - version: 4.0.0 - resolution: "strip-ansi@npm:4.0.0" - dependencies: - ansi-regex: ^3.0.0 - checksum: d9186e6c0cf78f25274f6750ee5e4a5725fb91b70fdd79aa5fe648eab092a0ec5b9621b22d69d4534a56319f75d8944efbd84e3afa8d4ad1b9a9491f12c84eca - languageName: node - linkType: hard - -"strip-ansi@npm:^6.0.0": - version: 6.0.0 - resolution: "strip-ansi@npm:6.0.0" +"strip-ansi@npm:^7.0.1": + version: 7.1.0 + resolution: "strip-ansi@npm:7.1.0" dependencies: - ansi-regex: ^5.0.0 - checksum: 04c3239ede44c4d195b0e66c0ad58b932f08bec7d05290416d361ff908ad282ecdaf5d9731e322c84f151d427436bde01f05b7422c3ec26dd927586736b0e5d0 + ansi-regex: ^6.0.1 + checksum: 859c73fcf27869c22a4e4d8c6acfe690064659e84bef9458aa6d13719d09ca88dcfd40cbf31fd0be63518ea1a643fe070b4827d353e09533a5b0b9fd4553d64d languageName: node linkType: hard @@ -6954,13 +7156,6 @@ __metadata: languageName: node linkType: hard -"strip-final-newline@npm:^2.0.0": - version: 2.0.0 - resolution: "strip-final-newline@npm:2.0.0" - checksum: 69412b5e25731e1938184b5d489c32e340605bb611d6140344abc3421b7f3c6f9984b21dff296dfcf056681b82caa3bb4cc996a965ce37bcfad663e92eae9c64 - languageName: node - linkType: hard - "strip-json-comments@npm:^3.1.0, strip-json-comments@npm:^3.1.1": version: 3.1.1 resolution: "strip-json-comments@npm:3.1.1" @@ -7002,6 +7197,13 @@ __metadata: languageName: node linkType: hard +"supports-preserve-symlinks-flag@npm:^1.0.0": + version: 1.0.0 + resolution: "supports-preserve-symlinks-flag@npm:1.0.0" + checksum: 53b1e247e68e05db7b3808b99b892bd36fb096e6fba213a06da7fab22045e97597db425c724f2bbd6c99a3c295e1e73f3e4de78592289f38431049e1277ca0ae + languageName: node + linkType: hard + "symbol-observable@npm:^2.0.3": version: 2.0.3 resolution: "symbol-observable@npm:2.0.3" @@ -7009,24 +7211,23 @@ __metadata: languageName: node linkType: hard -"table@npm:^6.0.4": - version: 6.7.1 - resolution: "table@npm:6.7.1" +"table@npm:^6.0.9": + version: 6.8.1 + resolution: "table@npm:6.8.1" dependencies: ajv: ^8.0.1 - lodash.clonedeep: ^4.5.0 lodash.truncate: ^4.4.2 slice-ansi: ^4.0.0 - string-width: ^4.2.0 - strip-ansi: ^6.0.0 - checksum: 053b61fa4e8f8396c65ff7a95da90e85620370932652d501ff7a0a3ed7317f1cc549702bd2abf2bd9ed01e20757b73a8b57374f8a8a2ac02fbe0550276263fb6 + string-width: ^4.2.3 + strip-ansi: ^6.0.1 + checksum: 08249c7046125d9d0a944a6e96cfe9ec66908d6b8a9db125531be6eb05fa0de047fd5542e9d43b4f987057f00a093b276b8d3e19af162a9c40db2681058fd306 languageName: node linkType: hard "tapable@npm:^2.1.1, tapable@npm:^2.2.0": - version: 2.2.0 - resolution: "tapable@npm:2.2.0" - checksum: 5a7e31ddd2400d524b68e7ba0373e492ba52b321b8e1eb15b65956e9c1b9ba90dd175210a1318b6752538cbe3b284f4a7218a714be942aeeb812623c243aea25 + version: 2.2.1 + resolution: "tapable@npm:2.2.1" + checksum: 3b7a1b4d86fa940aad46d9e73d1e8739335efd4c48322cb37d073eb6f80f5281889bf0320c6d8ffcfa1a0dd5bfdbd0f9d037e252ef972aca595330538aac4d51 languageName: node linkType: hard @@ -7055,29 +7256,29 @@ __metadata: languageName: node linkType: hard -"tar@npm:^6.0.2, tar@npm:^6.1.0": - version: 6.1.11 - resolution: "tar@npm:6.1.11" +"tar@npm:^6.1.11, tar@npm:^6.1.2": + version: 6.1.15 + resolution: "tar@npm:6.1.15" dependencies: chownr: ^2.0.0 fs-minipass: ^2.0.0 - minipass: ^3.0.0 + minipass: ^5.0.0 minizlib: ^2.1.1 mkdirp: ^1.0.3 yallist: ^4.0.0 - checksum: a04c07bb9e2d8f46776517d4618f2406fb977a74d914ad98b264fc3db0fe8224da5bec11e5f8902c5b9bcb8ace22d95fbe3c7b36b8593b7dfc8391a25898f32f + checksum: f23832fceeba7578bf31907aac744ae21e74a66f4a17a9e94507acf460e48f6db598c7023882db33bab75b80e027c21f276d405e4a0322d58f51c7088d428268 languageName: node linkType: hard -"terser-webpack-plugin@npm:^5.1.3": - version: 5.3.7 - resolution: "terser-webpack-plugin@npm:5.3.7" +"terser-webpack-plugin@npm:^5.3.7": + version: 5.3.9 + resolution: "terser-webpack-plugin@npm:5.3.9" dependencies: "@jridgewell/trace-mapping": ^0.3.17 jest-worker: ^27.4.5 schema-utils: ^3.1.1 serialize-javascript: ^6.0.1 - terser: ^5.16.5 + terser: ^5.16.8 peerDependencies: webpack: ^5.1.0 peerDependenciesMeta: @@ -7087,21 +7288,21 @@ __metadata: optional: true uglify-js: optional: true - checksum: 095e699fdeeb553cdf2c6f75f983949271b396d9c201d7ae9fc633c45c1c1ad14c7257ef9d51ccc62213dd3e97f875870ba31550f6d4f1b6674f2615562da7f7 + checksum: 41705713d6f9cb83287936b21e27c658891c78c4392159f5148b5623f0e8c48559869779619b058382a4c9758e7820ea034695e57dc7c474b4962b79f553bc5f languageName: node linkType: hard -"terser@npm:^5.16.5": - version: 5.16.6 - resolution: "terser@npm:5.16.6" +"terser@npm:^5.16.8": + version: 5.19.2 + resolution: "terser@npm:5.19.2" dependencies: - "@jridgewell/source-map": ^0.3.2 - acorn: ^8.5.0 + "@jridgewell/source-map": ^0.3.3 + acorn: ^8.8.2 commander: ^2.20.0 source-map-support: ~0.5.20 bin: terser: bin/terser - checksum: f763a7bcc7b98cb2bfc41434f7b92bfe8a701a12c92ea6049377736c8e6de328240d654a20dfe15ce170fd783491b9873fad9f4cd8fee4f6c6fb8ca407859dee + checksum: e059177775b4d4f4cff219ad89293175aefbd1b081252270444dc83e42a2c5f07824eb2a85eae6e22ef6eb7ef04b21af36dd7d1dd7cfb93912310e57d416a205 languageName: node linkType: hard @@ -7148,10 +7349,10 @@ __metadata: languageName: node linkType: hard -"toidentifier@npm:1.0.0": - version: 1.0.0 - resolution: "toidentifier@npm:1.0.0" - checksum: 199e6bfca1531d49b3506cff02353d53ec987c9ee10ee272ca6484ed97f1fc10fb77c6c009079ca16d5c5be4a10378178c3cacdb41ce9ec954c3297c74c6053e +"toidentifier@npm:1.0.1": + version: 1.0.1 + resolution: "toidentifier@npm:1.0.1" + checksum: 952c29e2a85d7123239b5cfdd889a0dde47ab0497f0913d70588f19c53f7e0b5327c95f4651e413c74b785147f9637b17410ac8c846d5d4a20a5a33eb6dc3a45 languageName: node linkType: hard @@ -7175,15 +7376,15 @@ __metadata: languageName: node linkType: hard -"tsconfig-paths@npm:^3.9.0": - version: 3.9.0 - resolution: "tsconfig-paths@npm:3.9.0" +"tsconfig-paths@npm:^3.14.2": + version: 3.14.2 + resolution: "tsconfig-paths@npm:3.14.2" dependencies: "@types/json5": ^0.0.29 - json5: ^1.0.1 - minimist: ^1.2.0 + json5: ^1.0.2 + minimist: ^1.2.6 strip-bom: ^3.0.0 - checksum: 243b3b098c76a4ca90ea0431683f3755a4ff175c6123bcba5f7b4bd80fe2ef8fa9bdc8f4d525148a1e71ade7f3e037e7c0313ae177fd12398ab68f05c2c7f25d + checksum: a6162eaa1aed680537f93621b82399c7856afd10ec299867b13a0675e981acac4e0ec00896860480efc59fc10fd0b16fdc928c0b885865b52be62cadac692447 languageName: node linkType: hard @@ -7195,9 +7396,9 @@ __metadata: linkType: hard "tslib@npm:^2.0.1": - version: 2.2.0 - resolution: "tslib@npm:2.2.0" - checksum: a48c9639f7496fa701ea8ffe0561070fcb44c104a59632f7f845c0af00825c99b6373575ec59b2b5cdbfd7505875086dbe5dc83312304d8979f22ce571218ca3 + version: 2.6.1 + resolution: "tslib@npm:2.6.1" + checksum: b0d176d176487905b66ae4d5856647df50e37beea7571c53b8d10ba9222c074b81f1410fb91da13debaf2cbc970663609068bdebafa844ea9d69b146527c38fe languageName: node linkType: hard @@ -7244,14 +7445,14 @@ __metadata: languageName: node linkType: hard -"type-fest@npm:^0.8.0, type-fest@npm:^0.8.1": +"type-fest@npm:^0.8.0": version: 0.8.1 resolution: "type-fest@npm:0.8.1" checksum: d61c4b2eba24009033ae4500d7d818a94fd6d1b481a8111612ee141400d5f1db46f199c014766b9fa9b31a6a7374d96fc748c6d688a78a3ce5a33123839becb7 languageName: node linkType: hard -"type-is@npm:^1.6.16, type-is@npm:~1.6.17": +"type-is@npm:^1.6.16, type-is@npm:^1.6.18, type-is@npm:~1.6.18": version: 1.6.18 resolution: "type-is@npm:1.6.18" dependencies: @@ -7261,6 +7462,53 @@ __metadata: languageName: node linkType: hard +"typed-array-buffer@npm:^1.0.0": + version: 1.0.0 + resolution: "typed-array-buffer@npm:1.0.0" + dependencies: + call-bind: ^1.0.2 + get-intrinsic: ^1.2.1 + is-typed-array: ^1.1.10 + checksum: 3e0281c79b2a40cd97fe715db803884301993f4e8c18e8d79d75fd18f796e8cd203310fec8c7fdb5e6c09bedf0af4f6ab8b75eb3d3a85da69328f28a80456bd3 + languageName: node + linkType: hard + +"typed-array-byte-length@npm:^1.0.0": + version: 1.0.0 + resolution: "typed-array-byte-length@npm:1.0.0" + dependencies: + call-bind: ^1.0.2 + for-each: ^0.3.3 + has-proto: ^1.0.1 + is-typed-array: ^1.1.10 + checksum: b03db16458322b263d87a702ff25388293f1356326c8a678d7515767ef563ef80e1e67ce648b821ec13178dd628eb2afdc19f97001ceae7a31acf674c849af94 + languageName: node + linkType: hard + +"typed-array-byte-offset@npm:^1.0.0": + version: 1.0.0 + resolution: "typed-array-byte-offset@npm:1.0.0" + dependencies: + available-typed-arrays: ^1.0.5 + call-bind: ^1.0.2 + for-each: ^0.3.3 + has-proto: ^1.0.1 + is-typed-array: ^1.1.10 + checksum: 04f6f02d0e9a948a95fbfe0d5a70b002191fae0b8fe0fe3130a9b2336f043daf7a3dda56a31333c35a067a97e13f539949ab261ca0f3692c41603a46a94e960b + languageName: node + linkType: hard + +"typed-array-length@npm:^1.0.4": + version: 1.0.4 + resolution: "typed-array-length@npm:1.0.4" + dependencies: + call-bind: ^1.0.2 + for-each: ^0.3.3 + is-typed-array: ^1.1.9 + checksum: 2228febc93c7feff142b8c96a58d4a0d7623ecde6c7a24b2b98eb3170e99f7c7eff8c114f9b283085cd59dcd2bd43aadf20e25bba4b034a53c5bb292f71f8956 + languageName: node + linkType: hard + "typedarray-to-buffer@npm:^3.1.5": version: 3.1.5 resolution: "typedarray-to-buffer@npm:3.1.5" @@ -7307,46 +7555,46 @@ __metadata: linkType: hard "ua-parser-js@npm:^0.7.30": - version: 0.7.31 - resolution: "ua-parser-js@npm:0.7.31" - checksum: e2f8324a83d1715601576af85b2b6c03890699aaa7272950fc77ea925c70c5e4f75060ae147dc92124e49f7f0e3d6dd2b0a91e7f40d267e92df8894be967ba8b + version: 0.7.35 + resolution: "ua-parser-js@npm:0.7.35" + checksum: 0a332e8d72d277e62f29ecb3a33843b274de93eb9378350b746ea0f89ef05ee09c94f2c1fdab8001373ad5e95a48beb0a94f39dc1670c908db9fc9b8f0876204 languageName: node linkType: hard -"unbox-primitive@npm:^1.0.0": - version: 1.0.1 - resolution: "unbox-primitive@npm:1.0.1" +"unbox-primitive@npm:^1.0.2": + version: 1.0.2 + resolution: "unbox-primitive@npm:1.0.2" dependencies: - function-bind: ^1.1.1 - has-bigints: ^1.0.1 - has-symbols: ^1.0.2 + call-bind: ^1.0.2 + has-bigints: ^1.0.2 + has-symbols: ^1.0.3 which-boxed-primitive: ^1.0.2 - checksum: 89d950e18fb45672bc6b3c961f1e72c07beb9640c7ceed847b571ba6f7d2af570ae1a2584cfee268b9d9ea1e3293f7e33e0bc29eaeb9f8e8a0bab057ff9e6bba + checksum: b7a1cf5862b5e4b5deb091672ffa579aa274f648410009c81cca63fed3b62b610c4f3b773f912ce545bb4e31edc3138975b5bc777fc6e4817dca51affb6380e9 languageName: node linkType: hard -"unique-filename@npm:^1.1.1": - version: 1.1.1 - resolution: "unique-filename@npm:1.1.1" +"unique-filename@npm:^3.0.0": + version: 3.0.0 + resolution: "unique-filename@npm:3.0.0" dependencies: - unique-slug: ^2.0.0 - checksum: cf4998c9228cc7647ba7814e255dec51be43673903897b1786eff2ac2d670f54d4d733357eb08dea969aa5e6875d0e1bd391d668fbdb5a179744e7c7551a6f80 + unique-slug: ^4.0.0 + checksum: 8e2f59b356cb2e54aab14ff98a51ac6c45781d15ceaab6d4f1c2228b780193dc70fae4463ce9e1df4479cb9d3304d7c2043a3fb905bdeca71cc7e8ce27e063df languageName: node linkType: hard -"unique-slug@npm:^2.0.0": - version: 2.0.2 - resolution: "unique-slug@npm:2.0.2" +"unique-slug@npm:^4.0.0": + version: 4.0.0 + resolution: "unique-slug@npm:4.0.0" dependencies: imurmurhash: ^0.1.4 - checksum: 5b6876a645da08d505dedb970d1571f6cebdf87044cb6b740c8dbb24f0d6e1dc8bdbf46825fd09f994d7cf50760e6f6e063cfa197d51c5902c00a861702eb75a + checksum: 0884b58365af59f89739e6f71e3feacb5b1b41f2df2d842d0757933620e6de08eff347d27e9d499b43c40476cbaf7988638d3acb2ffbcb9d35fd035591adfd15 languageName: node linkType: hard -"universalify@npm:^2.0.0": - version: 2.0.0 - resolution: "universalify@npm:2.0.0" - checksum: 2406a4edf4a8830aa6813278bab1f953a8e40f2f63a37873ffa9a3bc8f9745d06cc8e88f3572cb899b7e509013f7f6fcc3e37e8a6d914167a5381d8440518c44 +"universalify@npm:^0.1.0": + version: 0.1.2 + resolution: "universalify@npm:0.1.2" + checksum: 40cdc60f6e61070fe658ca36016a8f4ec216b29bf04a55dce14e3710cc84c7448538ef4dad3728d0bfe29975ccd7bfb5f414c45e7b78883567fb31b246f02dff languageName: node linkType: hard @@ -7357,6 +7605,20 @@ __metadata: languageName: node linkType: hard +"update-browserslist-db@npm:^1.0.11": + version: 1.0.11 + resolution: "update-browserslist-db@npm:1.0.11" + dependencies: + escalade: ^3.1.1 + picocolors: ^1.0.0 + peerDependencies: + browserslist: ">= 4.21.0" + bin: + update-browserslist-db: cli.js + checksum: b98327518f9a345c7cad5437afae4d2ae7d865f9779554baf2a200fdf4bac4969076b679b1115434bd6557376bdd37ca7583d0f9b8f8e302d7d4cc1e91b5f231 + languageName: node + linkType: hard + "uri-js@npm:^4.2.2": version: 4.4.1 resolution: "uri-js@npm:4.4.1" @@ -7391,29 +7653,19 @@ __metadata: languageName: node linkType: hard -"uuid@npm:^3.3.3": - version: 3.4.0 - resolution: "uuid@npm:3.4.0" +"uuid@npm:^8.3.2": + version: 8.3.2 + resolution: "uuid@npm:8.3.2" bin: - uuid: ./bin/uuid - checksum: 58de2feed61c59060b40f8203c0e4ed7fd6f99d42534a499f1741218a1dd0c129f4aa1de797bcf822c8ea5da7e4137aa3673431a96dae729047f7aca7b27866f - languageName: node - linkType: hard - -"v8-compile-cache@npm:^2.0.3, v8-compile-cache@npm:^2.2.0": - version: 2.3.0 - resolution: "v8-compile-cache@npm:2.3.0" - checksum: adb0a271eaa2297f2f4c536acbfee872d0dd26ec2d76f66921aa7fc437319132773483344207bdbeee169225f4739016d8d2dbf0553913a52bb34da6d0334f8e + uuid: dist/bin/uuid + checksum: 5575a8a75c13120e2f10e6ddc801b2c7ed7d8f3c8ac22c7ed0c7b2ba6383ec0abda88c905085d630e251719e0777045ae3236f04c812184b7c765f63a70e58df languageName: node linkType: hard -"validate-npm-package-license@npm:^3.0.1": - version: 3.0.4 - resolution: "validate-npm-package-license@npm:3.0.4" - dependencies: - spdx-correct: ^3.0.0 - spdx-expression-parse: ^3.0.0 - checksum: 35703ac889d419cf2aceef63daeadbe4e77227c39ab6287eeb6c1b36a746b364f50ba22e88591f5d017bc54685d8137bc2d328d0a896e4d3fd22093c0f32a9ad +"v8-compile-cache@npm:^2.0.3": + version: 2.4.0 + resolution: "v8-compile-cache@npm:2.4.0" + checksum: 8eb6ddb59d86f24566503f1e6ca98f3e6f43599f05359bd3ab737eaaf1585b338091478a4d3d5c2646632cf8030288d7888684ea62238cdce15a65ae2416718f languageName: node linkType: hard @@ -7456,21 +7708,20 @@ __metadata: linkType: hard "webpack-cli@npm:^4.6.0": - version: 4.7.0 - resolution: "webpack-cli@npm:4.7.0" + version: 4.10.0 + resolution: "webpack-cli@npm:4.10.0" dependencies: "@discoveryjs/json-ext": ^0.5.0 - "@webpack-cli/configtest": ^1.0.3 - "@webpack-cli/info": ^1.2.4 - "@webpack-cli/serve": ^1.4.0 - colorette: ^1.2.1 + "@webpack-cli/configtest": ^1.2.0 + "@webpack-cli/info": ^1.5.0 + "@webpack-cli/serve": ^1.7.0 + colorette: ^2.0.14 commander: ^7.0.0 - execa: ^5.0.0 + cross-spawn: ^7.0.3 fastest-levenshtein: ^1.0.12 import-local: ^3.0.2 interpret: ^2.2.0 rechoir: ^0.7.0 - v8-compile-cache: ^2.2.0 webpack-merge: ^5.7.3 peerDependencies: webpack: 4.x.x || 5.x.x @@ -7485,17 +7736,17 @@ __metadata: optional: true bin: webpack-cli: bin/cli.js - checksum: cecfb321b9ed96ccd630b355369489467b4e758aa2acb8fba75be90989adf1f12fe95b9e004ee55dcbf8f653fb5bb4f6229e8e6d5df23f8c799f7793932f542c + checksum: 2ff5355ac348e6b40f2630a203b981728834dca96d6d621be96249764b2d0fc01dd54edfcc37f02214d02935de2cf0eefd6ce689d970d154ef493f01ba922390 languageName: node linkType: hard "webpack-merge@npm:^5.7.3": - version: 5.7.3 - resolution: "webpack-merge@npm:5.7.3" + version: 5.9.0 + resolution: "webpack-merge@npm:5.9.0" dependencies: clone-deep: ^4.0.1 wildcard: ^2.0.0 - checksum: 09608c3a4928246e9c1c09c22b5f867c38d0ab0fb027ebcc3b15d42659f06a10cfa7f7e2cf2a0ace6f2d571c1cd744ec23e7b2069d34a70378e163e8e035c290 + checksum: 64fe2c23aacc5f19684452a0e84ec02c46b990423aee6fcc5c18d7d471155bd14e9a6adb02bd3656eb3e0ac2532c8e97d69412ad14c97eeafe32fa6d10050872 languageName: node linkType: hard @@ -7507,20 +7758,20 @@ __metadata: linkType: hard "webpack@npm:^5.76.0": - version: 5.76.1 - resolution: "webpack@npm:5.76.1" + version: 5.88.2 + resolution: "webpack@npm:5.88.2" dependencies: "@types/eslint-scope": ^3.7.3 - "@types/estree": ^0.0.51 - "@webassemblyjs/ast": 1.11.1 - "@webassemblyjs/wasm-edit": 1.11.1 - "@webassemblyjs/wasm-parser": 1.11.1 + "@types/estree": ^1.0.0 + "@webassemblyjs/ast": ^1.11.5 + "@webassemblyjs/wasm-edit": ^1.11.5 + "@webassemblyjs/wasm-parser": ^1.11.5 acorn: ^8.7.1 - acorn-import-assertions: ^1.7.6 + acorn-import-assertions: ^1.9.0 browserslist: ^4.14.5 chrome-trace-event: ^1.0.2 - enhanced-resolve: ^5.10.0 - es-module-lexer: ^0.9.0 + enhanced-resolve: ^5.15.0 + es-module-lexer: ^1.2.1 eslint-scope: 5.1.1 events: ^3.2.0 glob-to-regexp: ^0.4.1 @@ -7529,9 +7780,9 @@ __metadata: loader-runner: ^4.2.0 mime-types: ^2.1.27 neo-async: ^2.6.2 - schema-utils: ^3.1.0 + schema-utils: ^3.2.0 tapable: ^2.1.1 - terser-webpack-plugin: ^5.1.3 + terser-webpack-plugin: ^5.3.7 watchpack: ^2.4.0 webpack-sources: ^3.2.3 peerDependenciesMeta: @@ -7539,7 +7790,7 @@ __metadata: optional: true bin: webpack: bin/webpack.js - checksum: b01fe0bc2dbca0e10d290ddb0bf81e807a031de48028176e2b21afd696b4d3f25ab9accdad888ef4a1f7c7f4d41f13d5bf2395b7653fdf3e5e3dafa54e56dab2 + checksum: 79476a782da31a21f6dd38fbbd06b68da93baf6a62f0d08ca99222367f3b8668f5a1f2086b7bb78e23172e31fa6df6fa7ab09b25e827866c4fc4dc2b30443ce2 languageName: node linkType: hard @@ -7557,9 +7808,22 @@ __metadata: linkType: hard "which-module@npm:^2.0.0": - version: 2.0.0 - resolution: "which-module@npm:2.0.0" - checksum: 809f7fd3dfcb2cdbe0180b60d68100c88785084f8f9492b0998c051d7a8efe56784492609d3f09ac161635b78ea29219eb1418a98c15ce87d085bce905705c9c + version: 2.0.1 + resolution: "which-module@npm:2.0.1" + checksum: 1967b7ce17a2485544a4fdd9063599f0f773959cca24176dbe8f405e55472d748b7c549cd7920ff6abb8f1ab7db0b0f1b36de1a21c57a8ff741f4f1e792c52be + languageName: node + linkType: hard + +"which-typed-array@npm:^1.1.10, which-typed-array@npm:^1.1.11": + version: 1.1.11 + resolution: "which-typed-array@npm:1.1.11" + dependencies: + available-typed-arrays: ^1.0.5 + call-bind: ^1.0.2 + for-each: ^0.3.3 + gopd: ^1.0.1 + has-tostringtag: ^1.0.0 + checksum: 711ffc8ef891ca6597b19539075ec3e08bb9b4c2ca1f78887e3c07a977ab91ac1421940505a197758fb5939aa9524976d0a5bbcac34d07ed6faa75cedbb17206 languageName: node linkType: hard @@ -7585,26 +7849,30 @@ __metadata: languageName: node linkType: hard -"wide-align@npm:^1.1.0": - version: 1.1.3 - resolution: "wide-align@npm:1.1.3" +"wide-align@npm:^1.1.0, wide-align@npm:^1.1.5": + version: 1.1.5 + resolution: "wide-align@npm:1.1.5" dependencies: - string-width: ^1.0.2 || 2 - checksum: d09c8012652a9e6cab3e82338d1874a4d7db2ad1bd19ab43eb744acf0b9b5632ec406bdbbbb970a8f4771a7d5ef49824d038ba70aa884e7723f5b090ab87134d + string-width: ^1.0.2 || 2 || 3 || 4 + checksum: d5fc37cd561f9daee3c80e03b92ed3e84d80dde3365a8767263d03dacfc8fa06b065ffe1df00d8c2a09f731482fcacae745abfbb478d4af36d0a891fad4834d3 languageName: node linkType: hard "wildcard@npm:^2.0.0": - version: 2.0.0 - resolution: "wildcard@npm:2.0.0" - checksum: 1f4fe4c03dfc492777c60f795bbba597ac78794f1b650d68f398fbee9adb765367c516ebd4220889b6a81e9626e7228bbe0d66237abb311573c2ee1f4902a5ad + version: 2.0.1 + resolution: "wildcard@npm:2.0.1" + checksum: e0c60a12a219e4b12065d1199802d81c27b841ed6ad6d9d28240980c73ceec6f856771d575af367cbec2982d9ae7838759168b551776577f155044f5a5ba843c languageName: node linkType: hard -"word-wrap@npm:^1.2.3": - version: 1.2.3 - resolution: "word-wrap@npm:1.2.3" - checksum: 30b48f91fcf12106ed3186ae4fa86a6a1842416df425be7b60485de14bec665a54a68e4b5156647dec3a70f25e84d270ca8bc8cd23182ed095f5c7206a938c1f +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0, wrap-ansi@npm:^7.0.0": + version: 7.0.0 + resolution: "wrap-ansi@npm:7.0.0" + dependencies: + ansi-styles: ^4.0.0 + string-width: ^4.1.0 + strip-ansi: ^6.0.0 + checksum: a790b846fd4505de962ba728a21aaeda189b8ee1c7568ca5e817d85930e06ef8d1689d49dbf0e881e8ef84436af3a88bc49115c2e2788d841ff1b8b5b51a608b languageName: node linkType: hard @@ -7619,14 +7887,14 @@ __metadata: languageName: node linkType: hard -"wrap-ansi@npm:^7.0.0": - version: 7.0.0 - resolution: "wrap-ansi@npm:7.0.0" +"wrap-ansi@npm:^8.1.0": + version: 8.1.0 + resolution: "wrap-ansi@npm:8.1.0" dependencies: - ansi-styles: ^4.0.0 - string-width: ^4.1.0 - strip-ansi: ^6.0.0 - checksum: a790b846fd4505de962ba728a21aaeda189b8ee1c7568ca5e817d85930e06ef8d1689d49dbf0e881e8ef84436af3a88bc49115c2e2788d841ff1b8b5b51a608b + ansi-styles: ^6.1.0 + string-width: ^5.0.1 + strip-ansi: ^7.0.1 + checksum: 371733296dc2d616900ce15a0049dca0ef67597d6394c57347ba334393599e800bab03c41d4d45221b6bc967b8c453ec3ae4749eff3894202d16800fdfe0e238 languageName: node linkType: hard @@ -7650,8 +7918,8 @@ __metadata: linkType: hard "ws@npm:^7": - version: 7.4.6 - resolution: "ws@npm:7.4.6" + version: 7.5.9 + resolution: "ws@npm:7.5.9" peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 @@ -7660,13 +7928,13 @@ __metadata: optional: true utf-8-validate: optional: true - checksum: 3a990b32ed08c72070d5e8913e14dfcd831919205be52a3ff0b4cdd998c8d554f167c9df3841605cde8b11d607768cacab3e823c58c96a5c08c987e093eb767a + checksum: c3c100a181b731f40b7f2fddf004aa023f79d64f489706a28bc23ff88e87f6a64b3c6651fbec3a84a53960b75159574d7a7385709847a62ddb7ad6af76f49138 languageName: node linkType: hard -"ws@npm:~8.2.3": - version: 8.2.3 - resolution: "ws@npm:8.2.3" +"ws@npm:~8.11.0": + version: 8.11.0 + resolution: "ws@npm:8.11.0" peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 @@ -7675,7 +7943,7 @@ __metadata: optional: true utf-8-validate: optional: true - checksum: c869296ccb45f218ac6d32f8f614cd85b50a21fd434caf11646008eef92173be53490810c5c23aea31bc527902261fbfd7b062197eea341b26128d4be56a85e4 + checksum: 316b33aba32f317cd217df66dbfc5b281a2f09ff36815de222bc859e3424d83766d9eb2bd4d667de658b6ab7be151f258318fb1da812416b30be13103e5b5c67 languageName: node linkType: hard @@ -7703,6 +7971,13 @@ __metadata: languageName: node linkType: hard +"yallist@npm:^3.0.2": + version: 3.1.1 + resolution: "yallist@npm:3.1.1" + checksum: 48f7bb00dc19fc635a13a39fe547f527b10c9290e7b3e836b9a8f1ca04d4d342e85714416b3c2ab74949c9c66f9cebb0473e6bc353b79035356103b47641285d + languageName: node + linkType: hard + "yallist@npm:^4.0.0": version: 4.0.0 resolution: "yallist@npm:4.0.0" @@ -7721,9 +7996,9 @@ __metadata: linkType: hard "yargs-parser@npm:^20.2.2": - version: 20.2.7 - resolution: "yargs-parser@npm:20.2.7" - checksum: ec0ea9e1b5699977380583f5ab1c0e2c6fc5f1ed374eb3053c458df00c543effba53628ad3297f3ccc769660518d5e376fd1cfb298b8e37077421aca8d75ae89 + version: 20.2.9 + resolution: "yargs-parser@npm:20.2.9" + checksum: 8bb69015f2b0ff9e17b2c8e6bfe224ab463dd00ca211eece72a4cd8a906224d2703fb8a326d36fdd0e68701e201b2a60ed7cf81ce0fd9b3799f9fe7745977ae3 languageName: node linkType: hard @@ -7762,9 +8037,9 @@ __metadata: linkType: hard "ylru@npm:^1.2.0": - version: 1.2.1 - resolution: "ylru@npm:1.2.1" - checksum: 33c45248becece949d4511a13f66b2330852f6226da6c2842bf16f0b0ee45bbbfcdf6b8da3d4c52d6cd5106818eeb3674dd73a17e87c945d1839c470107549e2 + version: 1.3.2 + resolution: "ylru@npm:1.3.2" + checksum: b6bb3931144424114f2350c072cfeb180f205add93509c605ae025cbed8059846f8a5767655feeeab890d288b5b4c4b36f5d5d867ee4e6946c16bcc7ec3ddaee languageName: node linkType: hard From b08d686ff1ba6aced01d71389443031cefb6c399 Mon Sep 17 00:00:00 2001 From: vincentysc Date: Wed, 16 Aug 2023 17:09:07 +0800 Subject: [PATCH 05/16] update sign amino to support ethermint --- packages/amino/src/secp256k1hdwallet.spec.ts | 13 ++ packages/amino/src/secp256k1hdwallet.ts | 135 +++++++++++++++--- packages/amino/src/secp256k1wallet.spec.ts | 1 + packages/amino/src/secp256k1wallet.ts | 1 + packages/amino/src/signer.ts | 1 + .../ledger-amino/src/ledgersigner.spec.ts | 3 + packages/ledger-amino/src/ledgersigner.ts | 5 +- .../src/directsecp256k1hdwallet.ts | 18 ++- .../src/directsecp256k1wallet.spec.ts | 2 +- .../stargate/src/signingstargateclient.ts | 1 - 10 files changed, 144 insertions(+), 36 deletions(-) diff --git a/packages/amino/src/secp256k1hdwallet.spec.ts b/packages/amino/src/secp256k1hdwallet.spec.ts index 493e12bdc9..78c19bcbb3 100644 --- a/packages/amino/src/secp256k1hdwallet.spec.ts +++ b/packages/amino/src/secp256k1hdwallet.spec.ts @@ -75,6 +75,7 @@ describe("Secp256k1HdWallet", () => { { algo: "secp256k1", address: defaultAddress, + coinType: "1", pubkey: defaultPubkey, }, ]); @@ -100,26 +101,31 @@ describe("Secp256k1HdWallet", () => { expect(accounts).toEqual([ { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("A08EGB7ro1ORuFhjOnZcSgwYlpe0DSFjVNUIkNNQxwKQ"), address: "wasm1pkptre7fdkl6gfrzlesjjvhxhlc3r4gm32kke3", }, { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("AiDosfIbBi54XJ1QjCeApumcy/FjdtF+YhywPf3DKTx7"), address: "wasm10dyr9899g6t0pelew4nvf4j5c3jcgv0r5d3a5l", }, { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("AzQg33JZqH7vSsm09esZY5bZvmzYwE/SY78cA0iLxpD7"), address: "wasm1xy4yqngt0nlkdcenxymg8tenrghmek4n3u2lwa", }, { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("A3gOAlB6aiRTCPvWMQg2+ZbGYNsLd8qlvV28m8p2UhY2"), address: "wasm142u9fgcjdlycfcez3lw8x6x5h7rfjlnfaallkd", }, { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("Aum2063ub/ErUnIUB36sK55LktGUStgcbSiaAnL1wadu"), address: "wasm1hsm76p4ahyhl5yh3ve9ur49r5kemhp2r93f89d", }, @@ -154,6 +160,7 @@ describe("Secp256k1HdWallet", () => { { algo: "secp256k1", address: defaultAddress, + coinType: "1", pubkey: defaultPubkey, }, ]); @@ -194,26 +201,31 @@ describe("Secp256k1HdWallet", () => { expect(accounts).toEqual([ { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("A08EGB7ro1ORuFhjOnZcSgwYlpe0DSFjVNUIkNNQxwKQ"), address: "wasm1pkptre7fdkl6gfrzlesjjvhxhlc3r4gm32kke3", }, { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("AiDosfIbBi54XJ1QjCeApumcy/FjdtF+YhywPf3DKTx7"), address: "wasm10dyr9899g6t0pelew4nvf4j5c3jcgv0r5d3a5l", }, { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("AzQg33JZqH7vSsm09esZY5bZvmzYwE/SY78cA0iLxpD7"), address: "wasm1xy4yqngt0nlkdcenxymg8tenrghmek4n3u2lwa", }, { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("A3gOAlB6aiRTCPvWMQg2+ZbGYNsLd8qlvV28m8p2UhY2"), address: "wasm142u9fgcjdlycfcez3lw8x6x5h7rfjlnfaallkd", }, { algo: "secp256k1", + coinType: "1", pubkey: fromBase64("Aum2063ub/ErUnIUB36sK55LktGUStgcbSiaAnL1wadu"), address: "wasm1hsm76p4ahyhl5yh3ve9ur49r5kemhp2r93f89d", }, @@ -230,6 +242,7 @@ describe("Secp256k1HdWallet", () => { expect(accounts[0]).toEqual({ address: defaultAddress, algo: "secp256k1", + coinType: "1", pubkey: defaultPubkey, }); }); diff --git a/packages/amino/src/secp256k1hdwallet.ts b/packages/amino/src/secp256k1hdwallet.ts index c65644c09b..b0709e3d1d 100644 --- a/packages/amino/src/secp256k1hdwallet.ts +++ b/packages/amino/src/secp256k1hdwallet.ts @@ -10,13 +10,14 @@ import { Slip10, Slip10Curve, stringToPath, + Keccak256, } from "@cosmjs/crypto"; -import { fromBase64, fromUtf8, toBase64, toBech32, toUtf8 } from "@cosmjs/encoding"; +import { fromBase64, fromUtf8, toBase64, toBech32, toUtf8, fromHex, toHex, toAscii } from "@cosmjs/encoding"; import { assert, isNonNullObject } from "@cosmjs/utils"; import { rawSecp256k1PubkeyToRawAddress } from "./addresses"; import { makeCosmoshubPath } from "./paths"; -import { encodeSecp256k1Signature } from "./signature"; +import { encodeSecp256k1Signature, encodeEthSecp256k1Signature } from "./signature"; import { serializeSignDoc, StdSignDoc } from "./signdoc"; import { AccountData, AminoSignResponse, OfflineAminoSigner } from "./signer"; import { @@ -262,8 +263,9 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { public async getAccounts(): Promise { const accountsWithPrivkeys = await this.getAccountsWithPrivkeys(); - return accountsWithPrivkeys.map(({ algo, pubkey, address }) => ({ + return accountsWithPrivkeys.map(({ algo, coinType, pubkey, address }) => ({ algo: algo, + coinType: coinType, pubkey: pubkey, address: address, })); @@ -276,13 +278,27 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { throw new Error(`Address ${signerAddress} not found in wallet`); } const { privkey, pubkey } = account; - const message = sha256(serializeSignDoc(signDoc)); - const signature = await Secp256k1.createSignature(message, privkey); - const signatureBytes = new Uint8Array([...signature.r(32), ...signature.s(32)]); - return { - signed: signDoc, - signature: encodeSecp256k1Signature(pubkey, signatureBytes), - }; + + if (account.coinType === "60'") { + // eth signing + const hashedMessage = new Keccak256(serializeSignDoc(signDoc)).digest() + const signature = await Secp256k1.createSignature(hashedMessage, privkey); + const signatureBytes = new Uint8Array([...signature.r(32), ...signature.s(32)]); + const stdSignature = encodeEthSecp256k1Signature(pubkey, signatureBytes); + + return { + signed: signDoc, + signature: stdSignature + }; + } else { + const message = sha256(serializeSignDoc(signDoc)); + const signature = await Secp256k1.createSignature(message, privkey); + const signatureBytes = new Uint8Array([...signature.r(32), ...signature.s(32)]); + return { + signed: signDoc, + signature: encodeSecp256k1Signature(pubkey, signatureBytes), + }; + } } /** @@ -336,24 +352,99 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { private async getKeyPair(hdPath: HdPath): Promise { const { privkey } = Slip10.derivePath(Slip10Curve.Secp256k1, this.seed, hdPath); const { pubkey } = await Secp256k1.makeKeypair(privkey); - return { - privkey: privkey, - pubkey: Secp256k1.compressPubkey(pubkey), - }; + const coinType = pathToString(hdPath).split('/')[2] + switch (coinType) { + case "60'": + return { + privkey: privkey, + pubkey: pubkey, + }; + default: + return { + privkey: privkey, + pubkey: Secp256k1.compressPubkey(pubkey), + }; + } } private async getAccountsWithPrivkeys(): Promise { return Promise.all( this.accounts.map(async ({ hdPath, prefix }) => { const { privkey, pubkey } = await this.getKeyPair(hdPath); - const address = toBech32(prefix, rawSecp256k1PubkeyToRawAddress(pubkey)); - return { - algo: "secp256k1" as const, - privkey: privkey, - pubkey: pubkey, - address: address, - }; + const coinType = pathToString(hdPath).split('/')[2] + switch (coinType) { + case "60'": + const hash = new Keccak256(pubkey.slice(1)).digest() + const lastTwentyBytes = toHex(hash.slice(-20)); + // EVM address + const address = this.toChecksummedAddress('0x' + lastTwentyBytes) + + return { + algo: "secp256k1" as const, + coinType: coinType, + privkey: privkey, + pubkey: Secp256k1.compressPubkey(pubkey), + address: await this.getBech32AddressFromEVMAddress(address, prefix) + }; + default: + return { + algo: "secp256k1" as const, + coinType: coinType, + privkey: privkey, + pubkey: pubkey, + address: toBech32(prefix, rawSecp256k1PubkeyToRawAddress(pubkey)), + }; + } }), ); } -} + + private async getBech32AddressFromEVMAddress(evmAddress: string, bech32Prefix: string): Promise { + if (!this.isAddress(evmAddress.toLowerCase())) { + throw new TypeError('Please provide a valid EVM compatible address.'); + } + + var evmAddrWithoutHexPrefix = evmAddress.replace(/^(-)?0x/i, '$1'); + var evmAddressBytes = fromHex(evmAddrWithoutHexPrefix); + var evmToBech32Address = toBech32(bech32Prefix, evmAddressBytes); + return evmToBech32Address; + }; + + private isValidAddress(address: string): boolean { + if (!address.match(/^0x[a-fA-F0-9]{40}$/)) { + return false; + } + return true + } + + private toChecksummedAddress(address: string): string { + // 40 low hex characters + let addressLower; + if (typeof address === "string") { + if (!this.isValidAddress(address)) { + throw new Error("Input is not a valid Ethereum address"); + } + addressLower = address.toLowerCase().replace("0x", ""); + } else { + addressLower = toHex(address); + } + + const addressHash = toHex(new Keccak256(toAscii(addressLower)).digest()); + let checksumAddress = "0x"; + for (let i = 0; i < 40; i++) { + checksumAddress += parseInt(addressHash[i], 16) > 7 ? addressLower[i].toUpperCase() : addressLower[i]; + } + return checksumAddress; + } + private isAddress (address: string): boolean { + // check if it has the basic requirements of an address + if (!/^(0x)?[0-9a-f]{40}$/i.test(address)) { + return false; + // If it's ALL lowercase or ALL upppercase + } else if (/^(0x|0X)?[0-9a-f]{40}$/.test(address) || /^(0x|0X)?[0-9A-F]{40}$/.test(address)) { + return true; + // Otherwise check each case + } + return false + }; +} \ No newline at end of file diff --git a/packages/amino/src/secp256k1wallet.spec.ts b/packages/amino/src/secp256k1wallet.spec.ts index f26432757b..fcfa49cef1 100644 --- a/packages/amino/src/secp256k1wallet.spec.ts +++ b/packages/amino/src/secp256k1wallet.spec.ts @@ -25,6 +25,7 @@ describe("Secp256k1Wallet", () => { expect(accounts[0]).toEqual({ address: defaultAddress, algo: "secp256k1", + coinType: "1", pubkey: defaultPubkey, }); }); diff --git a/packages/amino/src/secp256k1wallet.ts b/packages/amino/src/secp256k1wallet.ts index 74793ad097..98cbb7b955 100644 --- a/packages/amino/src/secp256k1wallet.ts +++ b/packages/amino/src/secp256k1wallet.ts @@ -42,6 +42,7 @@ export class Secp256k1Wallet implements OfflineAminoSigner { { algo: "secp256k1", address: this.address, + coinType: "1", pubkey: this.pubkey, }, ]; diff --git a/packages/amino/src/signer.ts b/packages/amino/src/signer.ts index 89de5a2763..62954c08b0 100644 --- a/packages/amino/src/signer.ts +++ b/packages/amino/src/signer.ts @@ -7,6 +7,7 @@ export interface AccountData { /** A printable address (typically bech32 encoded) */ readonly address: string; readonly algo: Algo; + readonly coinType: string; readonly pubkey: Uint8Array; } diff --git a/packages/ledger-amino/src/ledgersigner.spec.ts b/packages/ledger-amino/src/ledgersigner.spec.ts index 65c1c2ed83..cd0b861846 100644 --- a/packages/ledger-amino/src/ledgersigner.spec.ts +++ b/packages/ledger-amino/src/ledgersigner.spec.ts @@ -97,16 +97,19 @@ describe("LedgerSigner", () => { { address: "cosmos1p6xs63q4g7np99ttv5nd3yzkt8n4qxa47w8aea", algo: "secp256k1", + coinType: "1", pubkey: fromBase64("A66JoCNaNSXDsyj4qW7JgqXPTz5rOnfE6EKEArf4jJEK"), }, { address: "cosmos1meeu3jl268txxytwmmrsljk8rawh6n2majstn2", algo: "secp256k1", + coinType: "1", pubkey: fromBase64("AtvmGuZvEN3NwL05BQdxl3XygUf+Vl/930fhFMt1HTyU"), }, { address: "cosmos1f3pws3ztnp3s4nn5zxqdrl9vlqv5avkqmlrus4", algo: "secp256k1", + coinType: "1", pubkey: fromBase64("A2ZnLEcbpyjS30H5UF1vezq29aBcT9oo5EARATIW9Cpj"), }, ]); diff --git a/packages/ledger-amino/src/ledgersigner.ts b/packages/ledger-amino/src/ledgersigner.ts index 2fa85edc51..bac6850e60 100644 --- a/packages/ledger-amino/src/ledgersigner.ts +++ b/packages/ledger-amino/src/ledgersigner.ts @@ -7,7 +7,7 @@ import { serializeSignDoc, StdSignDoc, } from "@cosmjs/amino"; -import { HdPath } from "@cosmjs/crypto"; +import { HdPath, pathToString } from "@cosmjs/crypto"; import Transport from "@ledgerhq/hw-transport"; import { AddressAndPubkey, LedgerConnector, LedgerConnectorOptions } from "./ledgerconnector"; @@ -26,9 +26,10 @@ export class LedgerSigner implements OfflineAminoSigner { if (!this.accounts) { const pubkeys = await this.connector.getPubkeys(); this.accounts = await Promise.all( - pubkeys.map(async (pubkey) => ({ + pubkeys.map(async (pubkey, index) => ({ algo: "secp256k1" as const, address: await this.connector.getCosmosAddress(pubkey), + coinType: pathToString(this.hdPaths[index]).split('/')[2], pubkey: pubkey, })), ); diff --git a/packages/proto-signing/src/directsecp256k1hdwallet.ts b/packages/proto-signing/src/directsecp256k1hdwallet.ts index da5191241d..4b7551d51f 100644 --- a/packages/proto-signing/src/directsecp256k1hdwallet.ts +++ b/packages/proto-signing/src/directsecp256k1hdwallet.ts @@ -278,8 +278,6 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { const { privkey, pubkey } = account; const signBytes = makeSignBytes(signDoc); - - if (account.coinType === "60'") { // eth signing const hashedMessage = new Keccak256(signBytes).digest() @@ -383,14 +381,14 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { const hash = new Keccak256(pubkey.slice(1)).digest() const lastTwentyBytes = toHex(hash.slice(-20)); // EVM address - const address = DirectSecp256k1HdWallet.toChecksummedAddress('0x' + lastTwentyBytes) + const address = this.toChecksummedAddress('0x' + lastTwentyBytes) return { algo: "secp256k1" as const, coinType: coinType, privkey: privkey, pubkey: Secp256k1.compressPubkey(pubkey), - address: await DirectSecp256k1HdWallet.getBech32AddressFromEVMAddress(address, prefix) + address: await this.getBech32AddressFromEVMAddress(address, prefix) }; default: return { @@ -404,8 +402,8 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { }), ); } - private static async getBech32AddressFromEVMAddress(evmAddress: string, bech32Prefix: string): Promise { - if (!DirectSecp256k1HdWallet.isAddress(evmAddress.toLowerCase())) { + private async getBech32AddressFromEVMAddress(evmAddress: string, bech32Prefix: string): Promise { + if (!this.isAddress(evmAddress.toLowerCase())) { throw new TypeError('Please provide a valid EVM compatible address.'); } @@ -414,17 +412,17 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { var evmToBech32Address = toBech32(bech32Prefix, evmAddressBytes); return evmToBech32Address; }; - private static isValidAddress(address: string): boolean { + private isValidAddress(address: string): boolean { if (!address.match(/^0x[a-fA-F0-9]{40}$/)) { return false; } return true } - private static toChecksummedAddress(address: string): string { + private toChecksummedAddress(address: string): string { // 40 low hex characters let addressLower; if (typeof address === "string") { - if (!DirectSecp256k1HdWallet.isValidAddress(address)) { + if (!this.isValidAddress(address)) { throw new Error("Input is not a valid Ethereum address"); } addressLower = address.toLowerCase().replace("0x", ""); @@ -439,7 +437,7 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { } return checksumAddress; } - private static isAddress (address: string): boolean { + private isAddress (address: string): boolean { // check if it has the basic requirements of an address if (!/^(0x)?[0-9a-f]{40}$/i.test(address)) { return false; diff --git a/packages/proto-signing/src/directsecp256k1wallet.spec.ts b/packages/proto-signing/src/directsecp256k1wallet.spec.ts index e2adb3f39e..4d598ef09c 100644 --- a/packages/proto-signing/src/directsecp256k1wallet.spec.ts +++ b/packages/proto-signing/src/directsecp256k1wallet.spec.ts @@ -27,7 +27,7 @@ describe("DirectSecp256k1Wallet", () => { expect(accounts[0]).toEqual({ address: defaultAddress, algo: "secp256k1", - coinType: "118", + coinType: "1", pubkey: defaultPubkey, }); }); diff --git a/packages/stargate/src/signingstargateclient.ts b/packages/stargate/src/signingstargateclient.ts index 5aca619e65..5691b75c2e 100644 --- a/packages/stargate/src/signingstargateclient.ts +++ b/packages/stargate/src/signingstargateclient.ts @@ -19,7 +19,6 @@ import { TendermintClient, } from "@cosmjs/tendermint-rpc"; import { assert, assertDefined } from "@cosmjs/utils"; -import { pathToString } from "@cosmjs/crypto"; import { Coin } from "cosmjs-types/cosmos/base/v1beta1/coin"; import { MsgWithdrawDelegatorReward } from "cosmjs-types/cosmos/distribution/v1beta1/tx"; import { MsgDelegate, MsgUndelegate } from "cosmjs-types/cosmos/staking/v1beta1/tx"; From 0adb6bc2d6fd9061738acd9cda700da4d492b486 Mon Sep 17 00:00:00 2001 From: vincentysc Date: Thu, 17 Aug 2023 09:53:54 +0800 Subject: [PATCH 06/16] update coin type --- packages/amino/src/secp256k1hdwallet.ts | 54 ++++++++++-------- .../src/directsecp256k1hdwallet.ts | 57 +++++++++++-------- .../stargate/src/signingstargateclient.ts | 4 +- 3 files changed, 65 insertions(+), 50 deletions(-) diff --git a/packages/amino/src/secp256k1hdwallet.ts b/packages/amino/src/secp256k1hdwallet.ts index b0709e3d1d..c24d1430a6 100644 --- a/packages/amino/src/secp256k1hdwallet.ts +++ b/packages/amino/src/secp256k1hdwallet.ts @@ -279,25 +279,29 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { } const { privkey, pubkey } = account; - if (account.coinType === "60'") { - // eth signing - const hashedMessage = new Keccak256(serializeSignDoc(signDoc)).digest() - const signature = await Secp256k1.createSignature(hashedMessage, privkey); - const signatureBytes = new Uint8Array([...signature.r(32), ...signature.s(32)]); - const stdSignature = encodeEthSecp256k1Signature(pubkey, signatureBytes); - - return { - signed: signDoc, - signature: stdSignature - }; - } else { - const message = sha256(serializeSignDoc(signDoc)); - const signature = await Secp256k1.createSignature(message, privkey); - const signatureBytes = new Uint8Array([...signature.r(32), ...signature.s(32)]); - return { - signed: signDoc, - signature: encodeSecp256k1Signature(pubkey, signatureBytes), - }; + + switch (account.coinType) { + case "60'" || "60": { + // eth signing + const hashedMessage = new Keccak256(serializeSignDoc(signDoc)).digest() + const signature = await Secp256k1.createSignature(hashedMessage, privkey); + const signatureBytes = new Uint8Array([...signature.r(32), ...signature.s(32)]); + const stdSignature = encodeEthSecp256k1Signature(pubkey, signatureBytes); + + return { + signed: signDoc, + signature: stdSignature + }; + } + default: { + const message = sha256(serializeSignDoc(signDoc)); + const signature = await Secp256k1.createSignature(message, privkey); + const signatureBytes = new Uint8Array([...signature.r(32), ...signature.s(32)]); + return { + signed: signDoc, + signature: encodeSecp256k1Signature(pubkey, signatureBytes), + }; + } } } @@ -354,16 +358,18 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { const { pubkey } = await Secp256k1.makeKeypair(privkey); const coinType = pathToString(hdPath).split('/')[2] switch (coinType) { - case "60'": + case "60'" || "60":{ return { privkey: privkey, pubkey: pubkey, }; - default: + } + default: { return { privkey: privkey, pubkey: Secp256k1.compressPubkey(pubkey), }; + } } } @@ -373,7 +379,7 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { const { privkey, pubkey } = await this.getKeyPair(hdPath); const coinType = pathToString(hdPath).split('/')[2] switch (coinType) { - case "60'": + case "60'" || "60": { const hash = new Keccak256(pubkey.slice(1)).digest() const lastTwentyBytes = toHex(hash.slice(-20)); // EVM address @@ -386,7 +392,8 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { pubkey: Secp256k1.compressPubkey(pubkey), address: await this.getBech32AddressFromEVMAddress(address, prefix) }; - default: + } + default: { return { algo: "secp256k1" as const, coinType: coinType, @@ -394,6 +401,7 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { pubkey: pubkey, address: toBech32(prefix, rawSecp256k1PubkeyToRawAddress(pubkey)), }; + } } }), ); diff --git a/packages/proto-signing/src/directsecp256k1hdwallet.ts b/packages/proto-signing/src/directsecp256k1hdwallet.ts index 4b7551d51f..57e97a40f3 100644 --- a/packages/proto-signing/src/directsecp256k1hdwallet.ts +++ b/packages/proto-signing/src/directsecp256k1hdwallet.ts @@ -278,28 +278,32 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { const { privkey, pubkey } = account; const signBytes = makeSignBytes(signDoc); - if (account.coinType === "60'") { - // eth signing - const hashedMessage = new Keccak256(signBytes).digest() - const signature = await Secp256k1.createSignature(hashedMessage, privkey); - const signatureBytes = new Uint8Array([...signature.r(32), ...signature.s(32)]); - const stdSignature = encodeEthSecp256k1Signature(pubkey, signatureBytes); - - return { - signed: signDoc, - signature: stdSignature - }; - } else { - // cosmos sigining - const hashedMessage = sha256(signBytes); - const signature = await Secp256k1.createSignature(hashedMessage, privkey); - const signatureBytes = new Uint8Array([...signature.r(32), ...signature.s(32)]); - const stdSignature = encodeSecp256k1Signature(pubkey, signatureBytes); - - return { - signed: signDoc, - signature: stdSignature, - }; + + switch (account.coinType) { + case "60'" || "60": { + // eth signing + const hashedMessage = new Keccak256(signBytes).digest() + const signature = await Secp256k1.createSignature(hashedMessage, privkey); + const signatureBytes = new Uint8Array([...signature.r(32), ...signature.s(32)]); + const stdSignature = encodeEthSecp256k1Signature(pubkey, signatureBytes); + + return { + signed: signDoc, + signature: stdSignature + }; + } + default: { + // cosmos sigining + const hashedMessage = sha256(signBytes); + const signature = await Secp256k1.createSignature(hashedMessage, privkey); + const signatureBytes = new Uint8Array([...signature.r(32), ...signature.s(32)]); + const stdSignature = encodeSecp256k1Signature(pubkey, signatureBytes); + + return { + signed: signDoc, + signature: stdSignature, + }; + } } } @@ -357,16 +361,18 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { const coinType = pathToString(hdPath).split('/')[2] switch (coinType) { - case "60'": + case "60'": { return { privkey: privkey, pubkey: pubkey, }; - default: + } + default: { return { privkey: privkey, pubkey: Secp256k1.compressPubkey(pubkey), }; + } } } @@ -377,7 +383,7 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { const coinType = pathToString(hdPath).split('/')[2] switch (coinType) { - case "60'": + case "60'" || "60": { const hash = new Keccak256(pubkey.slice(1)).digest() const lastTwentyBytes = toHex(hash.slice(-20)); // EVM address @@ -390,6 +396,7 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { pubkey: Secp256k1.compressPubkey(pubkey), address: await this.getBech32AddressFromEVMAddress(address, prefix) }; + } default: return { algo: "secp256k1" as const, diff --git a/packages/stargate/src/signingstargateclient.ts b/packages/stargate/src/signingstargateclient.ts index 5691b75c2e..f369e3612b 100644 --- a/packages/stargate/src/signingstargateclient.ts +++ b/packages/stargate/src/signingstargateclient.ts @@ -404,7 +404,7 @@ export class SigningStargateClient extends StargateClient { throw new Error("Failed to retrieve account from signer"); } - const pubkey = encodePubkey (accountFromSigner.coinType === "60'" ? encodeEthSecp256k1Pubkey(accountFromSigner.pubkey): encodeSecp256k1Pubkey(accountFromSigner.pubkey)); + const pubkey = encodePubkey (accountFromSigner.coinType === "60'" || accountFromSigner.coinType === "60" ? encodeEthSecp256k1Pubkey(accountFromSigner.pubkey): encodeSecp256k1Pubkey(accountFromSigner.pubkey)); const signMode = SignMode.SIGN_MODE_LEGACY_AMINO_JSON; const msgs = messages.map((msg) => this.aminoTypes.toAmino(msg)); const signDoc = makeSignDocAmino(msgs, fee, chainId, memo, accountNumber, sequence); @@ -450,7 +450,7 @@ export class SigningStargateClient extends StargateClient { throw new Error("Failed to retrieve account from signer"); } - const pubkey = encodePubkey (accountFromSigner.coinType == "60'" ? encodeEthSecp256k1Pubkey(accountFromSigner.pubkey): encodeSecp256k1Pubkey(accountFromSigner.pubkey)); + const pubkey = encodePubkey (accountFromSigner.coinType == "60'"|| accountFromSigner.coinType == "60" ? encodeEthSecp256k1Pubkey(accountFromSigner.pubkey): encodeSecp256k1Pubkey(accountFromSigner.pubkey)); const txBodyEncodeObject: TxBodyEncodeObject = { typeUrl: "/cosmos.tx.v1beta1.TxBody", value: { From 6261234c4762058eb1f1c09f0d79453540b719d9 Mon Sep 17 00:00:00 2001 From: vincentysc Date: Thu, 17 Aug 2023 10:13:52 +0800 Subject: [PATCH 07/16] update coin type --- packages/amino/src/secp256k1wallet.ts | 2 +- packages/proto-signing/src/directsecp256k1wallet.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/amino/src/secp256k1wallet.ts b/packages/amino/src/secp256k1wallet.ts index 98cbb7b955..2b9d646e8e 100644 --- a/packages/amino/src/secp256k1wallet.ts +++ b/packages/amino/src/secp256k1wallet.ts @@ -42,7 +42,7 @@ export class Secp256k1Wallet implements OfflineAminoSigner { { algo: "secp256k1", address: this.address, - coinType: "1", + coinType: "", pubkey: this.pubkey, }, ]; diff --git a/packages/proto-signing/src/directsecp256k1wallet.ts b/packages/proto-signing/src/directsecp256k1wallet.ts index e0e59f5afd..736d7da4a5 100644 --- a/packages/proto-signing/src/directsecp256k1wallet.ts +++ b/packages/proto-signing/src/directsecp256k1wallet.ts @@ -41,7 +41,7 @@ export class DirectSecp256k1Wallet implements OfflineDirectSigner { return [ { algo: "secp256k1", - coinType: "1", + coinType: "", address: this.address, pubkey: this.pubkey, }, From 7e96ca4c529b801abd0ac1db1f53c1b61e8b44dd Mon Sep 17 00:00:00 2001 From: vincentysc Date: Thu, 17 Aug 2023 10:41:03 +0800 Subject: [PATCH 08/16] update hd path code --- packages/amino/src/secp256k1hdwallet.ts | 14 ++++++++-- packages/ledger-amino/src/ledgersigner.ts | 20 +++++++++----- .../src/directsecp256k1hdwallet.ts | 14 +++++++--- .../stargate/src/signingstargateclient.ts | 26 +++++++++++++++++-- 4 files changed, 61 insertions(+), 13 deletions(-) diff --git a/packages/amino/src/secp256k1hdwallet.ts b/packages/amino/src/secp256k1hdwallet.ts index c24d1430a6..41ec61b358 100644 --- a/packages/amino/src/secp256k1hdwallet.ts +++ b/packages/amino/src/secp256k1hdwallet.ts @@ -356,7 +356,12 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { private async getKeyPair(hdPath: HdPath): Promise { const { privkey } = Slip10.derivePath(Slip10Curve.Secp256k1, this.seed, hdPath); const { pubkey } = await Secp256k1.makeKeypair(privkey); - const coinType = pathToString(hdPath).split('/')[2] + const components = pathToString(hdPath).split('/') + if (components.length < 2) { + throw new Error("Invalid hdPath. Coin type is missing"); + } + + const coinType = components[2] switch (coinType) { case "60'" || "60":{ return { @@ -377,7 +382,12 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { return Promise.all( this.accounts.map(async ({ hdPath, prefix }) => { const { privkey, pubkey } = await this.getKeyPair(hdPath); - const coinType = pathToString(hdPath).split('/')[2] + const components = pathToString(hdPath).split('/') + if (components.length < 2) { + throw new Error("Invalid hdPath. Coin type is missing"); + } + + const coinType = components[2] switch (coinType) { case "60'" || "60": { const hash = new Keccak256(pubkey.slice(1)).digest() diff --git a/packages/ledger-amino/src/ledgersigner.ts b/packages/ledger-amino/src/ledgersigner.ts index bac6850e60..70796b2554 100644 --- a/packages/ledger-amino/src/ledgersigner.ts +++ b/packages/ledger-amino/src/ledgersigner.ts @@ -26,12 +26,20 @@ export class LedgerSigner implements OfflineAminoSigner { if (!this.accounts) { const pubkeys = await this.connector.getPubkeys(); this.accounts = await Promise.all( - pubkeys.map(async (pubkey, index) => ({ - algo: "secp256k1" as const, - address: await this.connector.getCosmosAddress(pubkey), - coinType: pathToString(this.hdPaths[index]).split('/')[2], - pubkey: pubkey, - })), + pubkeys.map(async (pubkey, index) => { + const components = pathToString(this.hdPaths[index]).split('/') + if (components.length < 2) { + throw new Error("Invalid hdPath. Coin type is missing"); + } + + const coinType = components[2] + return { + algo: "secp256k1" as const, + address: await this.connector.getCosmosAddress(pubkey), + coinType: coinType, + pubkey: pubkey, + } + }), ); } diff --git a/packages/proto-signing/src/directsecp256k1hdwallet.ts b/packages/proto-signing/src/directsecp256k1hdwallet.ts index 57e97a40f3..a0e62b6639 100644 --- a/packages/proto-signing/src/directsecp256k1hdwallet.ts +++ b/packages/proto-signing/src/directsecp256k1hdwallet.ts @@ -358,8 +358,12 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { private async getKeyPair(hdPath: HdPath): Promise { const { privkey } = Slip10.derivePath(Slip10Curve.Secp256k1, this.seed, hdPath); const { pubkey } = await Secp256k1.makeKeypair(privkey); + const components = pathToString(hdPath).split('/') + if (components.length < 2) { + throw new Error("Invalid hdPath. Coin type is missing"); + } - const coinType = pathToString(hdPath).split('/')[2] + const coinType = components[2] switch (coinType) { case "60'": { return { @@ -380,8 +384,12 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { return Promise.all( this.accounts.map(async ({ hdPath, prefix }) => { const { privkey, pubkey } = await this.getKeyPair(hdPath); - - const coinType = pathToString(hdPath).split('/')[2] + const components = pathToString(hdPath).split('/') + if (components.length < 2) { + throw new Error("Invalid hdPath. Coin type is missing"); + } + + const coinType = components[2] switch (coinType) { case "60'" || "60": { const hash = new Keccak256(pubkey.slice(1)).digest() diff --git a/packages/stargate/src/signingstargateclient.ts b/packages/stargate/src/signingstargateclient.ts index f369e3612b..7fbe40a1db 100644 --- a/packages/stargate/src/signingstargateclient.ts +++ b/packages/stargate/src/signingstargateclient.ts @@ -404,7 +404,18 @@ export class SigningStargateClient extends StargateClient { throw new Error("Failed to retrieve account from signer"); } - const pubkey = encodePubkey (accountFromSigner.coinType === "60'" || accountFromSigner.coinType === "60" ? encodeEthSecp256k1Pubkey(accountFromSigner.pubkey): encodeSecp256k1Pubkey(accountFromSigner.pubkey)); + let pubkey + switch (accountFromSigner.coinType) { + case "60'" || "60": { + pubkey = encodePubkey(encodeEthSecp256k1Pubkey(accountFromSigner.pubkey)) + break; + } + default: { + pubkey = encodePubkey(encodeSecp256k1Pubkey(accountFromSigner.pubkey)) + break; + } + } + const signMode = SignMode.SIGN_MODE_LEGACY_AMINO_JSON; const msgs = messages.map((msg) => this.aminoTypes.toAmino(msg)); const signDoc = makeSignDocAmino(msgs, fee, chainId, memo, accountNumber, sequence); @@ -450,7 +461,18 @@ export class SigningStargateClient extends StargateClient { throw new Error("Failed to retrieve account from signer"); } - const pubkey = encodePubkey (accountFromSigner.coinType == "60'"|| accountFromSigner.coinType == "60" ? encodeEthSecp256k1Pubkey(accountFromSigner.pubkey): encodeSecp256k1Pubkey(accountFromSigner.pubkey)); + let pubkey + switch (accountFromSigner.coinType) { + case "60'" || "60": { + pubkey = encodePubkey(encodeEthSecp256k1Pubkey(accountFromSigner.pubkey)) + break; + } + default: { + pubkey = encodePubkey(encodeSecp256k1Pubkey(accountFromSigner.pubkey)) + break; + } + } + const txBodyEncodeObject: TxBodyEncodeObject = { typeUrl: "/cosmos.tx.v1beta1.TxBody", value: { From b1e280dc499c831bdf45f316643e0fef8d7072a1 Mon Sep 17 00:00:00 2001 From: vincentysc Date: Thu, 17 Aug 2023 11:11:22 +0800 Subject: [PATCH 09/16] fix cointype switch case --- packages/amino/src/secp256k1hdwallet.ts | 12 ++++++------ .../proto-signing/src/directsecp256k1hdwallet.ts | 12 ++++++------ packages/stargate/src/signingstargateclient.ts | 8 ++++---- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/packages/amino/src/secp256k1hdwallet.ts b/packages/amino/src/secp256k1hdwallet.ts index 41ec61b358..5e291566dc 100644 --- a/packages/amino/src/secp256k1hdwallet.ts +++ b/packages/amino/src/secp256k1hdwallet.ts @@ -280,8 +280,8 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { const { privkey, pubkey } = account; - switch (account.coinType) { - case "60'" || "60": { + switch (true) { + case account.coinType === "60'" || account.coinType === "60": { // eth signing const hashedMessage = new Keccak256(serializeSignDoc(signDoc)).digest() const signature = await Secp256k1.createSignature(hashedMessage, privkey); @@ -362,8 +362,8 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { } const coinType = components[2] - switch (coinType) { - case "60'" || "60":{ + switch (true) { + case coinType === "60'" || coinType === "60": { return { privkey: privkey, pubkey: pubkey, @@ -388,8 +388,8 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { } const coinType = components[2] - switch (coinType) { - case "60'" || "60": { + switch (true) { + case coinType === "60'" || coinType === "60": { const hash = new Keccak256(pubkey.slice(1)).digest() const lastTwentyBytes = toHex(hash.slice(-20)); // EVM address diff --git a/packages/proto-signing/src/directsecp256k1hdwallet.ts b/packages/proto-signing/src/directsecp256k1hdwallet.ts index a0e62b6639..c6779d0787 100644 --- a/packages/proto-signing/src/directsecp256k1hdwallet.ts +++ b/packages/proto-signing/src/directsecp256k1hdwallet.ts @@ -279,8 +279,8 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { const signBytes = makeSignBytes(signDoc); - switch (account.coinType) { - case "60'" || "60": { + switch (true) { + case account.coinType === "60'" || account.coinType === "60": { // eth signing const hashedMessage = new Keccak256(signBytes).digest() const signature = await Secp256k1.createSignature(hashedMessage, privkey); @@ -364,8 +364,8 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { } const coinType = components[2] - switch (coinType) { - case "60'": { + switch (true) { + case coinType === "60'" || coinType === "60": { return { privkey: privkey, pubkey: pubkey, @@ -390,8 +390,8 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { } const coinType = components[2] - switch (coinType) { - case "60'" || "60": { + switch (true) { + case coinType === "60'" || coinType === "60": { const hash = new Keccak256(pubkey.slice(1)).digest() const lastTwentyBytes = toHex(hash.slice(-20)); // EVM address diff --git a/packages/stargate/src/signingstargateclient.ts b/packages/stargate/src/signingstargateclient.ts index 7fbe40a1db..26a91020cc 100644 --- a/packages/stargate/src/signingstargateclient.ts +++ b/packages/stargate/src/signingstargateclient.ts @@ -405,8 +405,8 @@ export class SigningStargateClient extends StargateClient { } let pubkey - switch (accountFromSigner.coinType) { - case "60'" || "60": { + switch (true) { + case accountFromSigner.coinType === "60'" || accountFromSigner.coinType === "60": { pubkey = encodePubkey(encodeEthSecp256k1Pubkey(accountFromSigner.pubkey)) break; } @@ -462,8 +462,8 @@ export class SigningStargateClient extends StargateClient { } let pubkey - switch (accountFromSigner.coinType) { - case "60'" || "60": { + switch (true) { + case accountFromSigner.coinType === "60'" || accountFromSigner.coinType === "60": { pubkey = encodePubkey(encodeEthSecp256k1Pubkey(accountFromSigner.pubkey)) break; } From 11cc80973faf985343d53c4488245e860ba75618 Mon Sep 17 00:00:00 2001 From: vincentysc Date: Thu, 17 Aug 2023 16:08:26 +0800 Subject: [PATCH 10/16] update test case --- packages/amino/src/index.ts | 2 +- packages/amino/src/paths.ts | 10 +++++ packages/amino/src/pubkeys.spec.ts | 6 +++ packages/amino/src/pubkeys.ts | 2 +- packages/amino/src/secp256k1hdwallet.spec.ts | 26 +++++------ packages/amino/src/secp256k1wallet.spec.ts | 2 +- .../ledger-amino/src/ledgersigner.spec.ts | 6 +-- .../src/directsecp256k1hdwallet.spec.ts | 44 ++++++++++++------- .../src/directsecp256k1wallet.spec.ts | 2 +- packages/proto-signing/src/index.ts | 2 +- packages/proto-signing/src/paths.ts | 10 +++++ 11 files changed, 76 insertions(+), 36 deletions(-) diff --git a/packages/amino/src/index.ts b/packages/amino/src/index.ts index 95e9dce93d..585895f5b2 100644 --- a/packages/amino/src/index.ts +++ b/packages/amino/src/index.ts @@ -15,7 +15,7 @@ export { encodeSecp256k1Pubkey, } from "./encoding"; export { createMultisigThresholdPubkey } from "./multisig"; -export { makeCosmoshubPath } from "./paths"; +export { makeCosmoshubPath, makeEthermintPath } from "./paths"; export { Ed25519Pubkey, EthSecp256k1Pubkey, diff --git a/packages/amino/src/paths.ts b/packages/amino/src/paths.ts index bf4dd18502..293cba2114 100644 --- a/packages/amino/src/paths.ts +++ b/packages/amino/src/paths.ts @@ -13,3 +13,13 @@ export function makeCosmoshubPath(a: number): HdPath { Slip10RawIndex.normal(a), ]; } + +export function makeEthermintPath(a: number): HdPath { + return [ + Slip10RawIndex.hardened(44), + Slip10RawIndex.hardened(60), + Slip10RawIndex.hardened(0), + Slip10RawIndex.normal(0), + Slip10RawIndex.normal(a), + ]; +} diff --git a/packages/amino/src/pubkeys.spec.ts b/packages/amino/src/pubkeys.spec.ts index ec47bdcb3d..5365b689c6 100644 --- a/packages/amino/src/pubkeys.spec.ts +++ b/packages/amino/src/pubkeys.spec.ts @@ -9,6 +9,10 @@ describe("pubkeys", () => { type: "tendermint/PubKeySecp256k1", value: "AtQaCqFnshaZQp6rIkvAPyzThvCvXSDO+9AzbxVErqJP", }; + const pubkeyEthSecp256k1 = { + type: "tendermint/PubKeyEthSecp256k1", + value: "Ay+1uNze+glFQM+T05EfzL8fQ1Y/wqO8K7q6tUM3BGin", + }; const pubkeyMultisigThreshold = { type: "tendermint/PubKeyMultisigThreshold", value: { @@ -38,6 +42,7 @@ describe("pubkeys", () => { it("works", () => { expect(isSinglePubkey(pubkeyEd25519)).toEqual(true); expect(isSinglePubkey(pubkeySecp256k1)).toEqual(true); + expect(isSinglePubkey(pubkeyEthSecp256k1)).toEqual(true); expect(isSinglePubkey(pubkeyMultisigThreshold)).toEqual(false); }); }); @@ -46,6 +51,7 @@ describe("pubkeys", () => { it("works", () => { expect(isMultisigThresholdPubkey(pubkeyEd25519)).toEqual(false); expect(isMultisigThresholdPubkey(pubkeySecp256k1)).toEqual(false); + expect(isMultisigThresholdPubkey(pubkeyEthSecp256k1)).toEqual(false); expect(isMultisigThresholdPubkey(pubkeyMultisigThreshold)).toEqual(true); }); }); diff --git a/packages/amino/src/pubkeys.ts b/packages/amino/src/pubkeys.ts index 722b0bd427..0324281596 100644 --- a/packages/amino/src/pubkeys.ts +++ b/packages/amino/src/pubkeys.ts @@ -63,7 +63,7 @@ export interface SinglePubkey extends Pubkey { } export function isSinglePubkey(pubkey: Pubkey): pubkey is SinglePubkey { - const singPubkeyTypes: string[] = [pubkeyType.ed25519, pubkeyType.secp256k1, pubkeyType.sr25519]; + const singPubkeyTypes: string[] = [pubkeyType.ed25519, pubkeyType.secp256k1, pubkeyType.sr25519, pubkeyType.ethsecp256k1]; return singPubkeyTypes.includes(pubkey.type); } diff --git a/packages/amino/src/secp256k1hdwallet.spec.ts b/packages/amino/src/secp256k1hdwallet.spec.ts index 78c19bcbb3..fdc08b906d 100644 --- a/packages/amino/src/secp256k1hdwallet.spec.ts +++ b/packages/amino/src/secp256k1hdwallet.spec.ts @@ -75,7 +75,7 @@ describe("Secp256k1HdWallet", () => { { algo: "secp256k1", address: defaultAddress, - coinType: "1", + coinType: "118'", pubkey: defaultPubkey, }, ]); @@ -101,31 +101,31 @@ describe("Secp256k1HdWallet", () => { expect(accounts).toEqual([ { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("A08EGB7ro1ORuFhjOnZcSgwYlpe0DSFjVNUIkNNQxwKQ"), address: "wasm1pkptre7fdkl6gfrzlesjjvhxhlc3r4gm32kke3", }, { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("AiDosfIbBi54XJ1QjCeApumcy/FjdtF+YhywPf3DKTx7"), address: "wasm10dyr9899g6t0pelew4nvf4j5c3jcgv0r5d3a5l", }, { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("AzQg33JZqH7vSsm09esZY5bZvmzYwE/SY78cA0iLxpD7"), address: "wasm1xy4yqngt0nlkdcenxymg8tenrghmek4n3u2lwa", }, { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("A3gOAlB6aiRTCPvWMQg2+ZbGYNsLd8qlvV28m8p2UhY2"), address: "wasm142u9fgcjdlycfcez3lw8x6x5h7rfjlnfaallkd", }, { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("Aum2063ub/ErUnIUB36sK55LktGUStgcbSiaAnL1wadu"), address: "wasm1hsm76p4ahyhl5yh3ve9ur49r5kemhp2r93f89d", }, @@ -160,7 +160,7 @@ describe("Secp256k1HdWallet", () => { { algo: "secp256k1", address: defaultAddress, - coinType: "1", + coinType: "118'", pubkey: defaultPubkey, }, ]); @@ -201,31 +201,31 @@ describe("Secp256k1HdWallet", () => { expect(accounts).toEqual([ { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("A08EGB7ro1ORuFhjOnZcSgwYlpe0DSFjVNUIkNNQxwKQ"), address: "wasm1pkptre7fdkl6gfrzlesjjvhxhlc3r4gm32kke3", }, { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("AiDosfIbBi54XJ1QjCeApumcy/FjdtF+YhywPf3DKTx7"), address: "wasm10dyr9899g6t0pelew4nvf4j5c3jcgv0r5d3a5l", }, { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("AzQg33JZqH7vSsm09esZY5bZvmzYwE/SY78cA0iLxpD7"), address: "wasm1xy4yqngt0nlkdcenxymg8tenrghmek4n3u2lwa", }, { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("A3gOAlB6aiRTCPvWMQg2+ZbGYNsLd8qlvV28m8p2UhY2"), address: "wasm142u9fgcjdlycfcez3lw8x6x5h7rfjlnfaallkd", }, { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("Aum2063ub/ErUnIUB36sK55LktGUStgcbSiaAnL1wadu"), address: "wasm1hsm76p4ahyhl5yh3ve9ur49r5kemhp2r93f89d", }, @@ -242,7 +242,7 @@ describe("Secp256k1HdWallet", () => { expect(accounts[0]).toEqual({ address: defaultAddress, algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: defaultPubkey, }); }); diff --git a/packages/amino/src/secp256k1wallet.spec.ts b/packages/amino/src/secp256k1wallet.spec.ts index fcfa49cef1..4355f958f2 100644 --- a/packages/amino/src/secp256k1wallet.spec.ts +++ b/packages/amino/src/secp256k1wallet.spec.ts @@ -25,7 +25,7 @@ describe("Secp256k1Wallet", () => { expect(accounts[0]).toEqual({ address: defaultAddress, algo: "secp256k1", - coinType: "1", + coinType: "", pubkey: defaultPubkey, }); }); diff --git a/packages/ledger-amino/src/ledgersigner.spec.ts b/packages/ledger-amino/src/ledgersigner.spec.ts index cd0b861846..a42bf52063 100644 --- a/packages/ledger-amino/src/ledgersigner.spec.ts +++ b/packages/ledger-amino/src/ledgersigner.spec.ts @@ -97,19 +97,19 @@ describe("LedgerSigner", () => { { address: "cosmos1p6xs63q4g7np99ttv5nd3yzkt8n4qxa47w8aea", algo: "secp256k1", - coinType: "1", + coinType: "118", pubkey: fromBase64("A66JoCNaNSXDsyj4qW7JgqXPTz5rOnfE6EKEArf4jJEK"), }, { address: "cosmos1meeu3jl268txxytwmmrsljk8rawh6n2majstn2", algo: "secp256k1", - coinType: "1", + coinType: "118", pubkey: fromBase64("AtvmGuZvEN3NwL05BQdxl3XygUf+Vl/930fhFMt1HTyU"), }, { address: "cosmos1f3pws3ztnp3s4nn5zxqdrl9vlqv5avkqmlrus4", algo: "secp256k1", - coinType: "1", + coinType: "118", pubkey: fromBase64("A2ZnLEcbpyjS30H5UF1vezq29aBcT9oo5EARATIW9Cpj"), }, ]); diff --git a/packages/proto-signing/src/directsecp256k1hdwallet.spec.ts b/packages/proto-signing/src/directsecp256k1hdwallet.spec.ts index fc30d39323..4ae48bd0f8 100644 --- a/packages/proto-signing/src/directsecp256k1hdwallet.spec.ts +++ b/packages/proto-signing/src/directsecp256k1hdwallet.spec.ts @@ -1,5 +1,5 @@ -import { coins, makeCosmoshubPath } from "@cosmjs/amino"; -import { Secp256k1, Secp256k1Signature, sha256 } from "@cosmjs/crypto"; +import { coins, makeCosmoshubPath, makeEthermintPath } from "@cosmjs/amino"; +import { Secp256k1, Secp256k1Signature, sha256, Keccak256 } from "@cosmjs/crypto"; import { fromBase64, fromHex } from "@cosmjs/encoding"; import { DirectSecp256k1HdWallet, extractKdfConfiguration } from "./directsecp256k1hdwallet"; @@ -13,6 +13,7 @@ describe("DirectSecp256k1HdWallet", () => { const defaultMnemonic = "special sign fit simple patrol salute grocery chicken wheat radar tonight ceiling"; const defaultPubkey = fromHex("02baa4ef93f2ce84592a49b1d729c074eab640112522a7a89f7d03ebab21ded7b6"); const defaultAddress = "cosmos1jhg0e7s6gn44tfc5k37kr04sznyhedtc9rzys5"; + const ethermintAddress = "yolo1udqykafpnar6ujyherwfj062s8y2vafu2aya4p"; describe("fromMnemonic", () => { it("works", async () => { @@ -44,6 +45,19 @@ describe("DirectSecp256k1HdWallet", () => { expect(pubkey).toEqual(defaultPubkey); expect(address).toEqual(defaultAddress); }); + + it("works with ethermint", async () => { + const wallet = await DirectSecp256k1HdWallet.fromMnemonic(defaultMnemonic, { + bip39Password: "password123", + hdPaths: [makeEthermintPath(123)], + prefix: "yolo", + }); + + expect(wallet.mnemonic).toEqual(defaultMnemonic); + const [{ pubkey, address }] = await wallet.getAccounts(); + expect(pubkey).not.toEqual(defaultPubkey); + expect(address).toEqual(ethermintAddress); + }); }); describe("generate", () => { @@ -74,7 +88,7 @@ describe("DirectSecp256k1HdWallet", () => { { algo: "secp256k1", address: defaultAddress, - coinType: "1", + coinType: "118'", pubkey: defaultPubkey, }, ]); @@ -100,31 +114,31 @@ describe("DirectSecp256k1HdWallet", () => { expect(accounts).toEqual([ { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("A08EGB7ro1ORuFhjOnZcSgwYlpe0DSFjVNUIkNNQxwKQ"), address: "wasm1pkptre7fdkl6gfrzlesjjvhxhlc3r4gm32kke3", }, { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("AiDosfIbBi54XJ1QjCeApumcy/FjdtF+YhywPf3DKTx7"), address: "wasm10dyr9899g6t0pelew4nvf4j5c3jcgv0r5d3a5l", }, { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("AzQg33JZqH7vSsm09esZY5bZvmzYwE/SY78cA0iLxpD7"), address: "wasm1xy4yqngt0nlkdcenxymg8tenrghmek4n3u2lwa", }, { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("A3gOAlB6aiRTCPvWMQg2+ZbGYNsLd8qlvV28m8p2UhY2"), address: "wasm142u9fgcjdlycfcez3lw8x6x5h7rfjlnfaallkd", }, { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("Aum2063ub/ErUnIUB36sK55LktGUStgcbSiaAnL1wadu"), address: "wasm1hsm76p4ahyhl5yh3ve9ur49r5kemhp2r93f89d", }, @@ -162,7 +176,7 @@ describe("DirectSecp256k1HdWallet", () => { { algo: "secp256k1", address: defaultAddress, - coinType: "1", + coinType: "118'", pubkey: defaultPubkey, }, ]); @@ -209,31 +223,31 @@ describe("DirectSecp256k1HdWallet", () => { expect(accounts).toEqual([ { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("A08EGB7ro1ORuFhjOnZcSgwYlpe0DSFjVNUIkNNQxwKQ"), address: "wasm1pkptre7fdkl6gfrzlesjjvhxhlc3r4gm32kke3", }, { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("AiDosfIbBi54XJ1QjCeApumcy/FjdtF+YhywPf3DKTx7"), address: "wasm10dyr9899g6t0pelew4nvf4j5c3jcgv0r5d3a5l", }, { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("AzQg33JZqH7vSsm09esZY5bZvmzYwE/SY78cA0iLxpD7"), address: "wasm1xy4yqngt0nlkdcenxymg8tenrghmek4n3u2lwa", }, { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("A3gOAlB6aiRTCPvWMQg2+ZbGYNsLd8qlvV28m8p2UhY2"), address: "wasm142u9fgcjdlycfcez3lw8x6x5h7rfjlnfaallkd", }, { algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: fromBase64("Aum2063ub/ErUnIUB36sK55LktGUStgcbSiaAnL1wadu"), address: "wasm1hsm76p4ahyhl5yh3ve9ur49r5kemhp2r93f89d", }, @@ -250,7 +264,7 @@ describe("DirectSecp256k1HdWallet", () => { expect(accounts[0]).toEqual({ address: defaultAddress, algo: "secp256k1", - coinType: "1", + coinType: "118'", pubkey: defaultPubkey, }); }); diff --git a/packages/proto-signing/src/directsecp256k1wallet.spec.ts b/packages/proto-signing/src/directsecp256k1wallet.spec.ts index 4d598ef09c..dc98369226 100644 --- a/packages/proto-signing/src/directsecp256k1wallet.spec.ts +++ b/packages/proto-signing/src/directsecp256k1wallet.spec.ts @@ -27,7 +27,7 @@ describe("DirectSecp256k1Wallet", () => { expect(accounts[0]).toEqual({ address: defaultAddress, algo: "secp256k1", - coinType: "1", + coinType: "", pubkey: defaultPubkey, }); }); diff --git a/packages/proto-signing/src/index.ts b/packages/proto-signing/src/index.ts index c34d0ff705..a00634a948 100644 --- a/packages/proto-signing/src/index.ts +++ b/packages/proto-signing/src/index.ts @@ -7,7 +7,7 @@ export { extractKdfConfiguration, } from "./directsecp256k1hdwallet"; export { DirectSecp256k1Wallet } from "./directsecp256k1wallet"; -export { makeCosmoshubPath } from "./paths"; +export { makeCosmoshubPath, makeEthermintPath } from "./paths"; export { anyToSinglePubkey, decodePubkey, encodePubkey } from "./pubkey"; export { DecodeObject, diff --git a/packages/proto-signing/src/paths.ts b/packages/proto-signing/src/paths.ts index bf4dd18502..293cba2114 100644 --- a/packages/proto-signing/src/paths.ts +++ b/packages/proto-signing/src/paths.ts @@ -13,3 +13,13 @@ export function makeCosmoshubPath(a: number): HdPath { Slip10RawIndex.normal(a), ]; } + +export function makeEthermintPath(a: number): HdPath { + return [ + Slip10RawIndex.hardened(44), + Slip10RawIndex.hardened(60), + Slip10RawIndex.hardened(0), + Slip10RawIndex.normal(0), + Slip10RawIndex.normal(a), + ]; +} From 9fb18fe15cb66d104e7877fc6586e02fed857914 Mon Sep 17 00:00:00 2001 From: vincentysc Date: Thu, 17 Aug 2023 16:12:46 +0800 Subject: [PATCH 11/16] fix lint and format --- packages/amino/src/encoding.spec.ts | 2 +- packages/amino/src/encoding.ts | 2 +- packages/amino/src/index.ts | 9 +- packages/amino/src/pubkeys.ts | 9 +- packages/amino/src/secp256k1hdwallet.ts | 97 +++++++++---------- packages/amino/src/signature.ts | 2 +- packages/ledger-amino/src/ledgersigner.ts | 12 +-- .../src/directsecp256k1hdwallet.spec.ts | 2 +- .../src/directsecp256k1hdwallet.ts | 96 +++++++++--------- packages/proto-signing/src/pubkey.ts | 4 +- packages/stargate/src/accounts.ts | 2 +- .../stargate/src/signingstargateclient.ts | 21 ++-- 12 files changed, 138 insertions(+), 120 deletions(-) diff --git a/packages/amino/src/encoding.spec.ts b/packages/amino/src/encoding.spec.ts index dfc96d5d4f..21be591f93 100644 --- a/packages/amino/src/encoding.spec.ts +++ b/packages/amino/src/encoding.spec.ts @@ -298,4 +298,4 @@ describe("encoding", () => { expect(encodeAminoPubkey(testgroup4)).toEqual(expected4); }); }); -}); \ No newline at end of file +}); diff --git a/packages/amino/src/encoding.ts b/packages/amino/src/encoding.ts index 942d69a319..3b2c394146 100644 --- a/packages/amino/src/encoding.ts +++ b/packages/amino/src/encoding.ts @@ -249,4 +249,4 @@ export function encodeAminoPubkey(pubkey: Pubkey): Uint8Array { */ export function encodeBech32Pubkey(pubkey: Pubkey, prefix: string): string { return toBech32(prefix, encodeAminoPubkey(pubkey)); -} \ No newline at end of file +} diff --git a/packages/amino/src/index.ts b/packages/amino/src/index.ts index 585895f5b2..b1a83a666d 100644 --- a/packages/amino/src/index.ts +++ b/packages/amino/src/index.ts @@ -32,8 +32,13 @@ export { } from "./pubkeys"; export { extractKdfConfiguration, Secp256k1HdWallet, Secp256k1HdWalletOptions } from "./secp256k1hdwallet"; export { Secp256k1Wallet } from "./secp256k1wallet"; -export { decodeSignature, encodeSecp256k1Signature, encodeEthSecp256k1Signature, StdSignature } from "./signature"; +export { + decodeSignature, + encodeEthSecp256k1Signature, + encodeSecp256k1Signature, + StdSignature, +} from "./signature"; export { AminoMsg, makeSignDoc, serializeSignDoc, StdFee, StdSignDoc } from "./signdoc"; export { AccountData, Algo, AminoSignResponse, OfflineAminoSigner } from "./signer"; export { isStdTx, makeStdTx, StdTx } from "./stdtx"; -export { executeKdf, KdfConfiguration } from "./wallet"; \ No newline at end of file +export { executeKdf, KdfConfiguration } from "./wallet"; diff --git a/packages/amino/src/pubkeys.ts b/packages/amino/src/pubkeys.ts index 0324281596..5da7283710 100644 --- a/packages/amino/src/pubkeys.ts +++ b/packages/amino/src/pubkeys.ts @@ -63,7 +63,12 @@ export interface SinglePubkey extends Pubkey { } export function isSinglePubkey(pubkey: Pubkey): pubkey is SinglePubkey { - const singPubkeyTypes: string[] = [pubkeyType.ed25519, pubkeyType.secp256k1, pubkeyType.sr25519, pubkeyType.ethsecp256k1]; + const singPubkeyTypes: string[] = [ + pubkeyType.ed25519, + pubkeyType.secp256k1, + pubkeyType.sr25519, + pubkeyType.ethsecp256k1, + ]; return singPubkeyTypes.includes(pubkey.type); } @@ -78,4 +83,4 @@ export interface MultisigThresholdPubkey extends Pubkey { export function isMultisigThresholdPubkey(pubkey: Pubkey): pubkey is MultisigThresholdPubkey { return (pubkey as MultisigThresholdPubkey).type === "tendermint/PubKeyMultisigThreshold"; -} \ No newline at end of file +} diff --git a/packages/amino/src/secp256k1hdwallet.ts b/packages/amino/src/secp256k1hdwallet.ts index 5e291566dc..a610771d84 100644 --- a/packages/amino/src/secp256k1hdwallet.ts +++ b/packages/amino/src/secp256k1hdwallet.ts @@ -2,6 +2,7 @@ import { Bip39, EnglishMnemonic, HdPath, + Keccak256, pathToString, Random, Secp256k1, @@ -10,14 +11,13 @@ import { Slip10, Slip10Curve, stringToPath, - Keccak256, } from "@cosmjs/crypto"; -import { fromBase64, fromUtf8, toBase64, toBech32, toUtf8, fromHex, toHex, toAscii } from "@cosmjs/encoding"; +import { fromBase64, fromHex, fromUtf8, toAscii, toBase64, toBech32, toHex, toUtf8 } from "@cosmjs/encoding"; import { assert, isNonNullObject } from "@cosmjs/utils"; import { rawSecp256k1PubkeyToRawAddress } from "./addresses"; import { makeCosmoshubPath } from "./paths"; -import { encodeSecp256k1Signature, encodeEthSecp256k1Signature } from "./signature"; +import { encodeEthSecp256k1Signature, encodeSecp256k1Signature } from "./signature"; import { serializeSignDoc, StdSignDoc } from "./signdoc"; import { AccountData, AminoSignResponse, OfflineAminoSigner } from "./signer"; import { @@ -278,19 +278,18 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { throw new Error(`Address ${signerAddress} not found in wallet`); } const { privkey, pubkey } = account; - switch (true) { case account.coinType === "60'" || account.coinType === "60": { - // eth signing - const hashedMessage = new Keccak256(serializeSignDoc(signDoc)).digest() + // eth signing + const hashedMessage = new Keccak256(serializeSignDoc(signDoc)).digest(); const signature = await Secp256k1.createSignature(hashedMessage, privkey); const signatureBytes = new Uint8Array([...signature.r(32), ...signature.s(32)]); const stdSignature = encodeEthSecp256k1Signature(pubkey, signatureBytes); return { signed: signDoc, - signature: stdSignature + signature: stdSignature, }; } default: { @@ -356,12 +355,12 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { private async getKeyPair(hdPath: HdPath): Promise { const { privkey } = Slip10.derivePath(Slip10Curve.Secp256k1, this.seed, hdPath); const { pubkey } = await Secp256k1.makeKeypair(privkey); - const components = pathToString(hdPath).split('/') + const components = pathToString(hdPath).split("/"); if (components.length < 2) { throw new Error("Invalid hdPath. Coin type is missing"); } - const coinType = components[2] + const coinType = components[2]; switch (true) { case coinType === "60'" || coinType === "60": { return { @@ -382,25 +381,25 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { return Promise.all( this.accounts.map(async ({ hdPath, prefix }) => { const { privkey, pubkey } = await this.getKeyPair(hdPath); - const components = pathToString(hdPath).split('/') + const components = pathToString(hdPath).split("/"); if (components.length < 2) { throw new Error("Invalid hdPath. Coin type is missing"); } - - const coinType = components[2] + + const coinType = components[2]; switch (true) { case coinType === "60'" || coinType === "60": { - const hash = new Keccak256(pubkey.slice(1)).digest() + const hash = new Keccak256(pubkey.slice(1)).digest(); const lastTwentyBytes = toHex(hash.slice(-20)); // EVM address - const address = this.toChecksummedAddress('0x' + lastTwentyBytes) + const address = this.toChecksummedAddress("0x" + lastTwentyBytes); return { algo: "secp256k1" as const, coinType: coinType, privkey: privkey, pubkey: Secp256k1.compressPubkey(pubkey), - address: await this.getBech32AddressFromEVMAddress(address, prefix) + address: await this.getBech32AddressFromEVMAddress(address, prefix), }; } default: { @@ -419,50 +418,50 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { private async getBech32AddressFromEVMAddress(evmAddress: string, bech32Prefix: string): Promise { if (!this.isAddress(evmAddress.toLowerCase())) { - throw new TypeError('Please provide a valid EVM compatible address.'); + throw new TypeError("Please provide a valid EVM compatible address."); } - var evmAddrWithoutHexPrefix = evmAddress.replace(/^(-)?0x/i, '$1'); - var evmAddressBytes = fromHex(evmAddrWithoutHexPrefix); - var evmToBech32Address = toBech32(bech32Prefix, evmAddressBytes); + const evmAddrWithoutHexPrefix = evmAddress.replace(/^(-)?0x/i, "$1"); + const evmAddressBytes = fromHex(evmAddrWithoutHexPrefix); + const evmToBech32Address = toBech32(bech32Prefix, evmAddressBytes); return evmToBech32Address; - }; + } private isValidAddress(address: string): boolean { if (!address.match(/^0x[a-fA-F0-9]{40}$/)) { return false; } - return true + return true; } private toChecksummedAddress(address: string): string { - // 40 low hex characters - let addressLower; - if (typeof address === "string") { - if (!this.isValidAddress(address)) { - throw new Error("Input is not a valid Ethereum address"); - } - addressLower = address.toLowerCase().replace("0x", ""); - } else { - addressLower = toHex(address); - } - - const addressHash = toHex(new Keccak256(toAscii(addressLower)).digest()); - let checksumAddress = "0x"; - for (let i = 0; i < 40; i++) { - checksumAddress += parseInt(addressHash[i], 16) > 7 ? addressLower[i].toUpperCase() : addressLower[i]; + // 40 low hex characters + let addressLower; + if (typeof address === "string") { + if (!this.isValidAddress(address)) { + throw new Error("Input is not a valid Ethereum address"); } - return checksumAddress; + addressLower = address.toLowerCase().replace("0x", ""); + } else { + addressLower = toHex(address); } - private isAddress (address: string): boolean { - // check if it has the basic requirements of an address - if (!/^(0x)?[0-9a-f]{40}$/i.test(address)) { - return false; - // If it's ALL lowercase or ALL upppercase - } else if (/^(0x|0X)?[0-9a-f]{40}$/.test(address) || /^(0x|0X)?[0-9A-F]{40}$/.test(address)) { - return true; - // Otherwise check each case - } - return false - }; -} \ No newline at end of file + + const addressHash = toHex(new Keccak256(toAscii(addressLower)).digest()); + let checksumAddress = "0x"; + for (let i = 0; i < 40; i++) { + checksumAddress += parseInt(addressHash[i], 16) > 7 ? addressLower[i].toUpperCase() : addressLower[i]; + } + return checksumAddress; + } + private isAddress(address: string): boolean { + // check if it has the basic requirements of an address + if (!/^(0x)?[0-9a-f]{40}$/i.test(address)) { + return false; + // If it's ALL lowercase or ALL upppercase + } else if (/^(0x|0X)?[0-9a-f]{40}$/.test(address) || /^(0x|0X)?[0-9A-F]{40}$/.test(address)) { + return true; + // Otherwise check each case + } + return false; + } +} diff --git a/packages/amino/src/signature.ts b/packages/amino/src/signature.ts index 31094a7984..f247a88411 100644 --- a/packages/amino/src/signature.ts +++ b/packages/amino/src/signature.ts @@ -1,7 +1,7 @@ /* eslint-disable @typescript-eslint/naming-convention */ import { fromBase64, toBase64 } from "@cosmjs/encoding"; -import { encodeSecp256k1Pubkey, encodeEthSecp256k1Pubkey } from "./encoding"; +import { encodeEthSecp256k1Pubkey, encodeSecp256k1Pubkey } from "./encoding"; import { Pubkey, pubkeyType } from "./pubkeys"; export interface StdSignature { diff --git a/packages/ledger-amino/src/ledgersigner.ts b/packages/ledger-amino/src/ledgersigner.ts index 70796b2554..b26d0d6daa 100644 --- a/packages/ledger-amino/src/ledgersigner.ts +++ b/packages/ledger-amino/src/ledgersigner.ts @@ -27,19 +27,19 @@ export class LedgerSigner implements OfflineAminoSigner { const pubkeys = await this.connector.getPubkeys(); this.accounts = await Promise.all( pubkeys.map(async (pubkey, index) => { - const components = pathToString(this.hdPaths[index]).split('/') + const components = pathToString(this.hdPaths[index]).split("/"); if (components.length < 2) { throw new Error("Invalid hdPath. Coin type is missing"); } - - const coinType = components[2] + + const coinType = components[2]; return { algo: "secp256k1" as const, address: await this.connector.getCosmosAddress(pubkey), - coinType: coinType, + coinType: coinType, pubkey: pubkey, - } - }), + }; + }), ); } diff --git a/packages/proto-signing/src/directsecp256k1hdwallet.spec.ts b/packages/proto-signing/src/directsecp256k1hdwallet.spec.ts index 4ae48bd0f8..c6aef20066 100644 --- a/packages/proto-signing/src/directsecp256k1hdwallet.spec.ts +++ b/packages/proto-signing/src/directsecp256k1hdwallet.spec.ts @@ -52,7 +52,7 @@ describe("DirectSecp256k1HdWallet", () => { hdPaths: [makeEthermintPath(123)], prefix: "yolo", }); - + expect(wallet.mnemonic).toEqual(defaultMnemonic); const [{ pubkey, address }] = await wallet.getAccounts(); expect(pubkey).not.toEqual(defaultPubkey); diff --git a/packages/proto-signing/src/directsecp256k1hdwallet.ts b/packages/proto-signing/src/directsecp256k1hdwallet.ts index c6779d0787..a57f6c0bce 100644 --- a/packages/proto-signing/src/directsecp256k1hdwallet.ts +++ b/packages/proto-signing/src/directsecp256k1hdwallet.ts @@ -1,4 +1,9 @@ -import { encodeSecp256k1Signature, encodeEthSecp256k1Signature, makeCosmoshubPath, rawSecp256k1PubkeyToRawAddress } from "@cosmjs/amino"; +import { + encodeSecp256k1Signature, + encodeEthSecp256k1Signature, + makeCosmoshubPath, + rawSecp256k1PubkeyToRawAddress, +} from "@cosmjs/amino"; import { Bip39, EnglishMnemonic, @@ -278,22 +283,21 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { const { privkey, pubkey } = account; const signBytes = makeSignBytes(signDoc); - switch (true) { case account.coinType === "60'" || account.coinType === "60": { - // eth signing - const hashedMessage = new Keccak256(signBytes).digest() + // eth signing + const hashedMessage = new Keccak256(signBytes).digest(); const signature = await Secp256k1.createSignature(hashedMessage, privkey); const signatureBytes = new Uint8Array([...signature.r(32), ...signature.s(32)]); const stdSignature = encodeEthSecp256k1Signature(pubkey, signatureBytes); return { signed: signDoc, - signature: stdSignature + signature: stdSignature, }; } default: { - // cosmos sigining + // cosmos sigining const hashedMessage = sha256(signBytes); const signature = await Secp256k1.createSignature(hashedMessage, privkey); const signatureBytes = new Uint8Array([...signature.r(32), ...signature.s(32)]); @@ -358,12 +362,12 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { private async getKeyPair(hdPath: HdPath): Promise { const { privkey } = Slip10.derivePath(Slip10Curve.Secp256k1, this.seed, hdPath); const { pubkey } = await Secp256k1.makeKeypair(privkey); - const components = pathToString(hdPath).split('/') + const components = pathToString(hdPath).split("/"); if (components.length < 2) { throw new Error("Invalid hdPath. Coin type is missing"); } - const coinType = components[2] + const coinType = components[2]; switch (true) { case coinType === "60'" || coinType === "60": { return { @@ -384,28 +388,28 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { return Promise.all( this.accounts.map(async ({ hdPath, prefix }) => { const { privkey, pubkey } = await this.getKeyPair(hdPath); - const components = pathToString(hdPath).split('/') + const components = pathToString(hdPath).split("/"); if (components.length < 2) { throw new Error("Invalid hdPath. Coin type is missing"); } - - const coinType = components[2] + + const coinType = components[2]; switch (true) { case coinType === "60'" || coinType === "60": { - const hash = new Keccak256(pubkey.slice(1)).digest() + const hash = new Keccak256(pubkey.slice(1)).digest(); const lastTwentyBytes = toHex(hash.slice(-20)); // EVM address - const address = this.toChecksummedAddress('0x' + lastTwentyBytes) + const address = this.toChecksummedAddress("0x" + lastTwentyBytes); return { algo: "secp256k1" as const, coinType: coinType, privkey: privkey, pubkey: Secp256k1.compressPubkey(pubkey), - address: await this.getBech32AddressFromEVMAddress(address, prefix) + address: await this.getBech32AddressFromEVMAddress(address, prefix), }; } - default: + default: return { algo: "secp256k1" as const, coinType: coinType, @@ -419,48 +423,48 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { } private async getBech32AddressFromEVMAddress(evmAddress: string, bech32Prefix: string): Promise { if (!this.isAddress(evmAddress.toLowerCase())) { - throw new TypeError('Please provide a valid EVM compatible address.'); + throw new TypeError("Please provide a valid EVM compatible address."); } - var evmAddrWithoutHexPrefix = evmAddress.replace(/^(-)?0x/i, '$1'); + var evmAddrWithoutHexPrefix = evmAddress.replace(/^(-)?0x/i, "$1"); var evmAddressBytes = fromHex(evmAddrWithoutHexPrefix); var evmToBech32Address = toBech32(bech32Prefix, evmAddressBytes); return evmToBech32Address; - }; + } private isValidAddress(address: string): boolean { if (!address.match(/^0x[a-fA-F0-9]{40}$/)) { return false; } - return true + return true; } private toChecksummedAddress(address: string): string { - // 40 low hex characters - let addressLower; - if (typeof address === "string") { - if (!this.isValidAddress(address)) { - throw new Error("Input is not a valid Ethereum address"); - } - addressLower = address.toLowerCase().replace("0x", ""); - } else { - addressLower = toHex(address); - } - - const addressHash = toHex(new Keccak256(toAscii(addressLower)).digest()); - let checksumAddress = "0x"; - for (let i = 0; i < 40; i++) { - checksumAddress += parseInt(addressHash[i], 16) > 7 ? addressLower[i].toUpperCase() : addressLower[i]; + // 40 low hex characters + let addressLower; + if (typeof address === "string") { + if (!this.isValidAddress(address)) { + throw new Error("Input is not a valid Ethereum address"); } - return checksumAddress; + addressLower = address.toLowerCase().replace("0x", ""); + } else { + addressLower = toHex(address); } - private isAddress (address: string): boolean { - // check if it has the basic requirements of an address - if (!/^(0x)?[0-9a-f]{40}$/i.test(address)) { - return false; - // If it's ALL lowercase or ALL upppercase - } else if (/^(0x|0X)?[0-9a-f]{40}$/.test(address) || /^(0x|0X)?[0-9A-F]{40}$/.test(address)) { - return true; - // Otherwise check each case - } - return false - }; + + const addressHash = toHex(new Keccak256(toAscii(addressLower)).digest()); + let checksumAddress = "0x"; + for (let i = 0; i < 40; i++) { + checksumAddress += parseInt(addressHash[i], 16) > 7 ? addressLower[i].toUpperCase() : addressLower[i]; + } + return checksumAddress; + } + private isAddress(address: string): boolean { + // check if it has the basic requirements of an address + if (!/^(0x)?[0-9a-f]{40}$/i.test(address)) { + return false; + // If it's ALL lowercase or ALL upppercase + } else if (/^(0x|0X)?[0-9a-f]{40}$/.test(address) || /^(0x|0X)?[0-9A-F]{40}$/.test(address)) { + return true; + // Otherwise check each case + } + return false; + } } diff --git a/packages/proto-signing/src/pubkey.ts b/packages/proto-signing/src/pubkey.ts index ca5d3a3192..ffea91646f 100644 --- a/packages/proto-signing/src/pubkey.ts +++ b/packages/proto-signing/src/pubkey.ts @@ -77,7 +77,7 @@ export function anyToSinglePubkey(pubkey: Any): SinglePubkey { } case "/ethermint.crypto.v1.ethsecp256k1.PubKey": case "/cosmos.crypto.secp256k1.PubKey": { - const {key} = CosmosCryptoSecp256k1Pubkey.decode(pubkey.value); + const { key } = CosmosCryptoSecp256k1Pubkey.decode(pubkey.value); return encodeSecp256k1Pubkey(key); } default: @@ -106,4 +106,4 @@ export function decodePubkey(pubkey: Any): Pubkey { default: throw new Error(`Pubkey type_url ${pubkey.typeUrl} not recognized`); } -} \ No newline at end of file +} diff --git a/packages/stargate/src/accounts.ts b/packages/stargate/src/accounts.ts index 24615a7f82..7ba1d6f08c 100644 --- a/packages/stargate/src/accounts.ts +++ b/packages/stargate/src/accounts.ts @@ -91,4 +91,4 @@ export function accountFromAny(input: Any): Account { default: throw new Error(`Unsupported type: '${typeUrl}'`); } -} \ No newline at end of file +} diff --git a/packages/stargate/src/signingstargateclient.ts b/packages/stargate/src/signingstargateclient.ts index 26a91020cc..279dc329ed 100644 --- a/packages/stargate/src/signingstargateclient.ts +++ b/packages/stargate/src/signingstargateclient.ts @@ -1,4 +1,9 @@ -import { encodeEthSecp256k1Pubkey, encodeSecp256k1Pubkey, makeSignDoc as makeSignDocAmino, StdFee } from "@cosmjs/amino"; +import { + encodeEthSecp256k1Pubkey, + encodeSecp256k1Pubkey, + makeSignDoc as makeSignDocAmino, + StdFee, +} from "@cosmjs/amino"; import { fromBase64 } from "@cosmjs/encoding"; import { Int53, Uint53 } from "@cosmjs/math"; import { @@ -404,14 +409,14 @@ export class SigningStargateClient extends StargateClient { throw new Error("Failed to retrieve account from signer"); } - let pubkey + let pubkey; switch (true) { case accountFromSigner.coinType === "60'" || accountFromSigner.coinType === "60": { - pubkey = encodePubkey(encodeEthSecp256k1Pubkey(accountFromSigner.pubkey)) + pubkey = encodePubkey(encodeEthSecp256k1Pubkey(accountFromSigner.pubkey)); break; } default: { - pubkey = encodePubkey(encodeSecp256k1Pubkey(accountFromSigner.pubkey)) + pubkey = encodePubkey(encodeSecp256k1Pubkey(accountFromSigner.pubkey)); break; } } @@ -461,14 +466,14 @@ export class SigningStargateClient extends StargateClient { throw new Error("Failed to retrieve account from signer"); } - let pubkey + let pubkey; switch (true) { case accountFromSigner.coinType === "60'" || accountFromSigner.coinType === "60": { - pubkey = encodePubkey(encodeEthSecp256k1Pubkey(accountFromSigner.pubkey)) + pubkey = encodePubkey(encodeEthSecp256k1Pubkey(accountFromSigner.pubkey)); break; } default: { - pubkey = encodePubkey(encodeSecp256k1Pubkey(accountFromSigner.pubkey)) + pubkey = encodePubkey(encodeSecp256k1Pubkey(accountFromSigner.pubkey)); break; } } @@ -497,4 +502,4 @@ export class SigningStargateClient extends StargateClient { signatures: [fromBase64(signature.signature)], }); } -} \ No newline at end of file +} From d2488b4989765e3d1186222d869580e47831dd56 Mon Sep 17 00:00:00 2001 From: vincentysc Date: Thu, 17 Aug 2023 18:21:50 +0800 Subject: [PATCH 12/16] update test cases --- packages/amino/src/paths.spec.ts | 23 +++++++++++++++- packages/amino/src/secp256k1hdwallet.spec.ts | 29 +++++++++++++++++++- packages/proto-signing/src/paths.spec.ts | 23 +++++++++++++++- packages/proto-signing/src/pubkey.spec.ts | 23 ++++++++++++++++ 4 files changed, 95 insertions(+), 3 deletions(-) diff --git a/packages/amino/src/paths.spec.ts b/packages/amino/src/paths.spec.ts index 17fd85b6f8..00639fce5d 100644 --- a/packages/amino/src/paths.spec.ts +++ b/packages/amino/src/paths.spec.ts @@ -1,6 +1,6 @@ import { Slip10RawIndex } from "@cosmjs/crypto"; -import { makeCosmoshubPath } from "./paths"; +import { makeCosmoshubPath, makeEthermintPath } from "./paths"; describe("paths", () => { describe("makeCosmoshubPath", () => { @@ -23,4 +23,25 @@ describe("paths", () => { ]); }); }); + + describe("makeEthermintPath", () => { + it("works", () => { + // m/44'/60'/0'/0/0 + expect(makeEthermintPath(0)).toEqual([ + Slip10RawIndex.hardened(44), + Slip10RawIndex.hardened(60), + Slip10RawIndex.hardened(0), + Slip10RawIndex.normal(0), + Slip10RawIndex.normal(0), + ]); + // m/44'/60'/0'/0/123 + expect(makeEthermintPath(123)).toEqual([ + Slip10RawIndex.hardened(44), + Slip10RawIndex.hardened(60), + Slip10RawIndex.hardened(0), + Slip10RawIndex.normal(0), + Slip10RawIndex.normal(123), + ]); + }); + }); }); diff --git a/packages/amino/src/secp256k1hdwallet.spec.ts b/packages/amino/src/secp256k1hdwallet.spec.ts index fdc08b906d..31123e5d8f 100644 --- a/packages/amino/src/secp256k1hdwallet.spec.ts +++ b/packages/amino/src/secp256k1hdwallet.spec.ts @@ -2,7 +2,7 @@ import { Secp256k1, Secp256k1Signature, sha256 } from "@cosmjs/crypto"; import { fromBase64, fromHex } from "@cosmjs/encoding"; -import { makeCosmoshubPath } from "./paths"; +import { makeCosmoshubPath, makeEthermintPath } from "./paths"; import { extractKdfConfiguration, Secp256k1HdWallet } from "./secp256k1hdwallet"; import { serializeSignDoc, StdSignDoc } from "./signdoc"; import { base64Matcher } from "./testutils.spec"; @@ -14,6 +14,7 @@ describe("Secp256k1HdWallet", () => { const defaultMnemonic = "special sign fit simple patrol salute grocery chicken wheat radar tonight ceiling"; const defaultPubkey = fromHex("02baa4ef93f2ce84592a49b1d729c074eab640112522a7a89f7d03ebab21ded7b6"); const defaultAddress = "cosmos1jhg0e7s6gn44tfc5k37kr04sznyhedtc9rzys5"; + const ethermintAddress = "yolo1udqykafpnar6ujyherwfj062s8y2vafu2aya4p"; describe("fromMnemonic", () => { it("works", async () => { @@ -45,6 +46,19 @@ describe("Secp256k1HdWallet", () => { expect(account.pubkey).toEqual(defaultPubkey); expect(account.address).toEqual(defaultAddress); }); + + it("works with ethermint", async () => { + const wallet = await Secp256k1HdWallet.fromMnemonic(defaultMnemonic, { + bip39Password: "password123", + hdPaths: [makeEthermintPath(123)], + prefix: "yolo", + }); + + expect(wallet.mnemonic).toEqual(defaultMnemonic); + const [{ pubkey, address }] = await wallet.getAccounts(); + expect(pubkey).not.toEqual(defaultPubkey); + expect(address).toEqual(ethermintAddress); + }); }); describe("generate", () => { @@ -254,6 +268,19 @@ describe("Secp256k1HdWallet", () => { const [{ address }] = await wallet.getAccounts(); expect(address).toEqual("cosmos1cjsxept9rkggzxztslae9ndgpdyt2408lk850u"); }); + + it("returns ethermint account", async () => { + const wallet = await Secp256k1HdWallet.fromMnemonic( + "oyster design unusual machine spread century engine gravity focus cave carry slot", + { + bip39Password: "password123", + hdPaths: [makeEthermintPath(123)], + prefix: "yolo", + }, + ); + const [{ address }] = await wallet.getAccounts(); + expect(address).toEqual("yolo1u6d0tuews07c0d6s5055g0tjvm997grat6q0sr"); + }); }); describe("signAmino", () => { diff --git a/packages/proto-signing/src/paths.spec.ts b/packages/proto-signing/src/paths.spec.ts index 17fd85b6f8..00639fce5d 100644 --- a/packages/proto-signing/src/paths.spec.ts +++ b/packages/proto-signing/src/paths.spec.ts @@ -1,6 +1,6 @@ import { Slip10RawIndex } from "@cosmjs/crypto"; -import { makeCosmoshubPath } from "./paths"; +import { makeCosmoshubPath, makeEthermintPath } from "./paths"; describe("paths", () => { describe("makeCosmoshubPath", () => { @@ -23,4 +23,25 @@ describe("paths", () => { ]); }); }); + + describe("makeEthermintPath", () => { + it("works", () => { + // m/44'/60'/0'/0/0 + expect(makeEthermintPath(0)).toEqual([ + Slip10RawIndex.hardened(44), + Slip10RawIndex.hardened(60), + Slip10RawIndex.hardened(0), + Slip10RawIndex.normal(0), + Slip10RawIndex.normal(0), + ]); + // m/44'/60'/0'/0/123 + expect(makeEthermintPath(123)).toEqual([ + Slip10RawIndex.hardened(44), + Slip10RawIndex.hardened(60), + Slip10RawIndex.hardened(0), + Slip10RawIndex.normal(0), + Slip10RawIndex.normal(123), + ]); + }); + }); }); diff --git a/packages/proto-signing/src/pubkey.spec.ts b/packages/proto-signing/src/pubkey.spec.ts index 6dea27f3e1..826aeca962 100644 --- a/packages/proto-signing/src/pubkey.spec.ts +++ b/packages/proto-signing/src/pubkey.spec.ts @@ -33,6 +33,16 @@ describe("pubkey", () => { ); }); + it("works for ethsecp256k1", () => { + const pubkey = { type: "tendermint/PubKeyEthSecp256k1", value: defaultPubkeyBase64 }; + expect(encodePubkey(pubkey)).toEqual( + Any.fromPartial({ + typeUrl: "/ethermint.crypto.v1.ethsecp256k1.PubKey", + value: defaultPubkeyProtoBytes, + }), + ); + }); + it("throws for unsupported pubkey types", () => { const pubkey = { type: "tendermint/PubKeyUnknown", @@ -65,6 +75,19 @@ describe("pubkey", () => { }); }); + // @todo: decode ethsecp256k1, need to add cosmjs-types/cosmos/crypto/ethsecp256k1/keys + // in @proto-signing/pubkey:anyToSinglePubkey + // it("works for ethsecp256k1", () => { + // const pubkey = { + // typeUrl: "/ethermint.crypto.v1.ethsecp256k1.PubKey", + // value: defaultPubkeyProtoBytes, + // }; + // expect(decodePubkey(pubkey)).toEqual({ + // type: "tendermint/PubKeySecp256k1", + // value: defaultPubkeyBase64, + // }); + // }); + it("throws for unsupported pubkey types", () => { const pubkey = { typeUrl: "/cosmos.crypto.unknown.PubKey", From 9da417b945333793b60474f7eba2adb0fe807100 Mon Sep 17 00:00:00 2001 From: vincentysc Date: Thu, 17 Aug 2023 18:50:19 +0800 Subject: [PATCH 13/16] update coin type --- packages/amino/src/secp256k1hdwallet.ts | 8 +++++--- packages/proto-signing/src/directsecp256k1hdwallet.ts | 8 +++++--- packages/stargate/src/signingstargateclient.ts | 6 ++++-- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/packages/amino/src/secp256k1hdwallet.ts b/packages/amino/src/secp256k1hdwallet.ts index a610771d84..37cde70775 100644 --- a/packages/amino/src/secp256k1hdwallet.ts +++ b/packages/amino/src/secp256k1hdwallet.ts @@ -35,6 +35,8 @@ interface AccountDataWithPrivkey extends AccountData { const serializationTypeV1 = "secp256k1wallet-v1"; +const ethermintCoinType = "60" + /** * A KDF configuration that is not very strong but can be used on the main thread. * It takes about 1 second in Node.js 16.0.0 and should have similar runtimes in other modern Wasm hosts. @@ -280,7 +282,7 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { const { privkey, pubkey } = account; switch (true) { - case account.coinType === "60'" || account.coinType === "60": { + case account.coinType === `${ethermintCoinType}'` || account.coinType === ethermintCoinType: { // eth signing const hashedMessage = new Keccak256(serializeSignDoc(signDoc)).digest(); const signature = await Secp256k1.createSignature(hashedMessage, privkey); @@ -362,7 +364,7 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { const coinType = components[2]; switch (true) { - case coinType === "60'" || coinType === "60": { + case coinType === `${ethermintCoinType}'` || coinType === ethermintCoinType: { return { privkey: privkey, pubkey: pubkey, @@ -388,7 +390,7 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { const coinType = components[2]; switch (true) { - case coinType === "60'" || coinType === "60": { + case coinType === `${ethermintCoinType}'` || coinType === ethermintCoinType: { const hash = new Keccak256(pubkey.slice(1)).digest(); const lastTwentyBytes = toHex(hash.slice(-20)); // EVM address diff --git a/packages/proto-signing/src/directsecp256k1hdwallet.ts b/packages/proto-signing/src/directsecp256k1hdwallet.ts index a57f6c0bce..46c8ca1492 100644 --- a/packages/proto-signing/src/directsecp256k1hdwallet.ts +++ b/packages/proto-signing/src/directsecp256k1hdwallet.ts @@ -39,6 +39,8 @@ interface AccountDataWithPrivkey extends AccountData { const serializationTypeV1 = "directsecp256k1hdwallet-v1"; +const ethermintCoinType = "60" + /** * A KDF configuration that is not very strong but can be used on the main thread. * It takes about 1 second in Node.js 16.0.0 and should have similar runtimes in other modern Wasm hosts. @@ -284,7 +286,7 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { const signBytes = makeSignBytes(signDoc); switch (true) { - case account.coinType === "60'" || account.coinType === "60": { + case account.coinType === `${ethermintCoinType}'` || account.coinType === ethermintCoinType: { // eth signing const hashedMessage = new Keccak256(signBytes).digest(); const signature = await Secp256k1.createSignature(hashedMessage, privkey); @@ -369,7 +371,7 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { const coinType = components[2]; switch (true) { - case coinType === "60'" || coinType === "60": { + case coinType === `${ethermintCoinType}'` || coinType === ethermintCoinType: { return { privkey: privkey, pubkey: pubkey, @@ -395,7 +397,7 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { const coinType = components[2]; switch (true) { - case coinType === "60'" || coinType === "60": { + case coinType === `${ethermintCoinType}'` || coinType === ethermintCoinType: { const hash = new Keccak256(pubkey.slice(1)).digest(); const lastTwentyBytes = toHex(hash.slice(-20)); // EVM address diff --git a/packages/stargate/src/signingstargateclient.ts b/packages/stargate/src/signingstargateclient.ts index 279dc329ed..3a1f3f54f7 100644 --- a/packages/stargate/src/signingstargateclient.ts +++ b/packages/stargate/src/signingstargateclient.ts @@ -63,6 +63,8 @@ import { } from "./modules"; import { DeliverTxResponse, StargateClient, StargateClientOptions } from "./stargateclient"; +const ethermintCoinType = "60" + export const defaultRegistryTypes: ReadonlyArray<[string, GeneratedType]> = [ ["/cosmos.base.v1beta1.Coin", Coin], ...authzTypes, @@ -411,7 +413,7 @@ export class SigningStargateClient extends StargateClient { let pubkey; switch (true) { - case accountFromSigner.coinType === "60'" || accountFromSigner.coinType === "60": { + case accountFromSigner.coinType === `${ethermintCoinType}'` || accountFromSigner.coinType === ethermintCoinType: { pubkey = encodePubkey(encodeEthSecp256k1Pubkey(accountFromSigner.pubkey)); break; } @@ -468,7 +470,7 @@ export class SigningStargateClient extends StargateClient { let pubkey; switch (true) { - case accountFromSigner.coinType === "60'" || accountFromSigner.coinType === "60": { + case accountFromSigner.coinType === `${ethermintCoinType}'` || accountFromSigner.coinType === ethermintCoinType: { pubkey = encodePubkey(encodeEthSecp256k1Pubkey(accountFromSigner.pubkey)); break; } From 2e69645d764b3eaeddd5488e26a7feabdbc8e8f1 Mon Sep 17 00:00:00 2001 From: vincentysc Date: Fri, 18 Aug 2023 09:29:36 +0800 Subject: [PATCH 14/16] update coin type --- packages/amino/src/secp256k1hdwallet.ts | 7 ++++--- packages/proto-signing/src/directsecp256k1hdwallet.ts | 7 ++++--- packages/stargate/src/signingstargateclient.ts | 5 +++-- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/packages/amino/src/secp256k1hdwallet.ts b/packages/amino/src/secp256k1hdwallet.ts index 37cde70775..8a23051a60 100644 --- a/packages/amino/src/secp256k1hdwallet.ts +++ b/packages/amino/src/secp256k1hdwallet.ts @@ -36,6 +36,7 @@ interface AccountDataWithPrivkey extends AccountData { const serializationTypeV1 = "secp256k1wallet-v1"; const ethermintCoinType = "60" +const hardenedEthermintCoinType = "60'" /** * A KDF configuration that is not very strong but can be used on the main thread. @@ -282,7 +283,7 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { const { privkey, pubkey } = account; switch (true) { - case account.coinType === `${ethermintCoinType}'` || account.coinType === ethermintCoinType: { + case account.coinType === hardenedEthermintCoinType || account.coinType === ethermintCoinType: { // eth signing const hashedMessage = new Keccak256(serializeSignDoc(signDoc)).digest(); const signature = await Secp256k1.createSignature(hashedMessage, privkey); @@ -364,7 +365,7 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { const coinType = components[2]; switch (true) { - case coinType === `${ethermintCoinType}'` || coinType === ethermintCoinType: { + case coinType === hardenedEthermintCoinType || coinType === ethermintCoinType: { return { privkey: privkey, pubkey: pubkey, @@ -390,7 +391,7 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { const coinType = components[2]; switch (true) { - case coinType === `${ethermintCoinType}'` || coinType === ethermintCoinType: { + case coinType === hardenedEthermintCoinType || coinType === ethermintCoinType: { const hash = new Keccak256(pubkey.slice(1)).digest(); const lastTwentyBytes = toHex(hash.slice(-20)); // EVM address diff --git a/packages/proto-signing/src/directsecp256k1hdwallet.ts b/packages/proto-signing/src/directsecp256k1hdwallet.ts index 46c8ca1492..3c5df720e3 100644 --- a/packages/proto-signing/src/directsecp256k1hdwallet.ts +++ b/packages/proto-signing/src/directsecp256k1hdwallet.ts @@ -40,6 +40,7 @@ interface AccountDataWithPrivkey extends AccountData { const serializationTypeV1 = "directsecp256k1hdwallet-v1"; const ethermintCoinType = "60" +const hardenedEthermintCoinType = "60'" /** * A KDF configuration that is not very strong but can be used on the main thread. @@ -286,7 +287,7 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { const signBytes = makeSignBytes(signDoc); switch (true) { - case account.coinType === `${ethermintCoinType}'` || account.coinType === ethermintCoinType: { + case account.coinType === hardenedEthermintCoinType || account.coinType === ethermintCoinType: { // eth signing const hashedMessage = new Keccak256(signBytes).digest(); const signature = await Secp256k1.createSignature(hashedMessage, privkey); @@ -371,7 +372,7 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { const coinType = components[2]; switch (true) { - case coinType === `${ethermintCoinType}'` || coinType === ethermintCoinType: { + case coinType === hardenedEthermintCoinType || coinType === ethermintCoinType: { return { privkey: privkey, pubkey: pubkey, @@ -397,7 +398,7 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { const coinType = components[2]; switch (true) { - case coinType === `${ethermintCoinType}'` || coinType === ethermintCoinType: { + case coinType === hardenedEthermintCoinType || coinType === ethermintCoinType: { const hash = new Keccak256(pubkey.slice(1)).digest(); const lastTwentyBytes = toHex(hash.slice(-20)); // EVM address diff --git a/packages/stargate/src/signingstargateclient.ts b/packages/stargate/src/signingstargateclient.ts index 3a1f3f54f7..329dd6c8ff 100644 --- a/packages/stargate/src/signingstargateclient.ts +++ b/packages/stargate/src/signingstargateclient.ts @@ -64,6 +64,7 @@ import { import { DeliverTxResponse, StargateClient, StargateClientOptions } from "./stargateclient"; const ethermintCoinType = "60" +const hardenedEthermintCoinType = "60'" export const defaultRegistryTypes: ReadonlyArray<[string, GeneratedType]> = [ ["/cosmos.base.v1beta1.Coin", Coin], @@ -413,7 +414,7 @@ export class SigningStargateClient extends StargateClient { let pubkey; switch (true) { - case accountFromSigner.coinType === `${ethermintCoinType}'` || accountFromSigner.coinType === ethermintCoinType: { + case accountFromSigner.coinType === hardenedEthermintCoinType || accountFromSigner.coinType === ethermintCoinType: { pubkey = encodePubkey(encodeEthSecp256k1Pubkey(accountFromSigner.pubkey)); break; } @@ -470,7 +471,7 @@ export class SigningStargateClient extends StargateClient { let pubkey; switch (true) { - case accountFromSigner.coinType === `${ethermintCoinType}'` || accountFromSigner.coinType === ethermintCoinType: { + case accountFromSigner.coinType === hardenedEthermintCoinType || accountFromSigner.coinType === ethermintCoinType: { pubkey = encodePubkey(encodeEthSecp256k1Pubkey(accountFromSigner.pubkey)); break; } From 53766cd64f10164f2d5e4e2392ae7bc37e1ae485 Mon Sep 17 00:00:00 2001 From: vincentysc Date: Fri, 18 Aug 2023 09:31:13 +0800 Subject: [PATCH 15/16] update path checking --- packages/amino/src/secp256k1hdwallet.ts | 4 ++-- packages/ledger-amino/src/ledgersigner.ts | 2 +- packages/proto-signing/src/directsecp256k1hdwallet.ts | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/amino/src/secp256k1hdwallet.ts b/packages/amino/src/secp256k1hdwallet.ts index 8a23051a60..e3ca1da1f6 100644 --- a/packages/amino/src/secp256k1hdwallet.ts +++ b/packages/amino/src/secp256k1hdwallet.ts @@ -359,7 +359,7 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { const { privkey } = Slip10.derivePath(Slip10Curve.Secp256k1, this.seed, hdPath); const { pubkey } = await Secp256k1.makeKeypair(privkey); const components = pathToString(hdPath).split("/"); - if (components.length < 2) { + if (components.length < 3) { throw new Error("Invalid hdPath. Coin type is missing"); } @@ -385,7 +385,7 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { this.accounts.map(async ({ hdPath, prefix }) => { const { privkey, pubkey } = await this.getKeyPair(hdPath); const components = pathToString(hdPath).split("/"); - if (components.length < 2) { + if (components.length < 3) { throw new Error("Invalid hdPath. Coin type is missing"); } diff --git a/packages/ledger-amino/src/ledgersigner.ts b/packages/ledger-amino/src/ledgersigner.ts index b26d0d6daa..c4ee42e355 100644 --- a/packages/ledger-amino/src/ledgersigner.ts +++ b/packages/ledger-amino/src/ledgersigner.ts @@ -28,7 +28,7 @@ export class LedgerSigner implements OfflineAminoSigner { this.accounts = await Promise.all( pubkeys.map(async (pubkey, index) => { const components = pathToString(this.hdPaths[index]).split("/"); - if (components.length < 2) { + if (components.length < 3) { throw new Error("Invalid hdPath. Coin type is missing"); } diff --git a/packages/proto-signing/src/directsecp256k1hdwallet.ts b/packages/proto-signing/src/directsecp256k1hdwallet.ts index 3c5df720e3..0423ce4b0a 100644 --- a/packages/proto-signing/src/directsecp256k1hdwallet.ts +++ b/packages/proto-signing/src/directsecp256k1hdwallet.ts @@ -366,7 +366,7 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { const { privkey } = Slip10.derivePath(Slip10Curve.Secp256k1, this.seed, hdPath); const { pubkey } = await Secp256k1.makeKeypair(privkey); const components = pathToString(hdPath).split("/"); - if (components.length < 2) { + if (components.length < 3) { throw new Error("Invalid hdPath. Coin type is missing"); } @@ -392,7 +392,7 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { this.accounts.map(async ({ hdPath, prefix }) => { const { privkey, pubkey } = await this.getKeyPair(hdPath); const components = pathToString(hdPath).split("/"); - if (components.length < 2) { + if (components.length < 3) { throw new Error("Invalid hdPath. Coin type is missing"); } From f5311b7d798de247b9370e493a5a931fd610a96a Mon Sep 17 00:00:00 2001 From: vincentysc Date: Wed, 23 Aug 2023 11:51:14 +0800 Subject: [PATCH 16/16] make cointype as a param for signing --- packages/amino/src/secp256k1hdwallet.ts | 12 ++++++---- packages/amino/src/signer.ts | 2 +- .../src/directsecp256k1hdwallet.ts | 13 ++++++---- packages/proto-signing/src/signer.ts | 2 +- packages/stargate/src/multisignature.spec.ts | 1 + .../src/signingstargateclient.spec.ts | 12 +++++----- .../stargate/src/signingstargateclient.ts | 24 ++++++++++++------- packages/stargate/src/stargateclient.ts | 1 + 8 files changed, 41 insertions(+), 26 deletions(-) diff --git a/packages/amino/src/secp256k1hdwallet.ts b/packages/amino/src/secp256k1hdwallet.ts index e3ca1da1f6..6643d23fe0 100644 --- a/packages/amino/src/secp256k1hdwallet.ts +++ b/packages/amino/src/secp256k1hdwallet.ts @@ -35,8 +35,8 @@ interface AccountDataWithPrivkey extends AccountData { const serializationTypeV1 = "secp256k1wallet-v1"; -const ethermintCoinType = "60" -const hardenedEthermintCoinType = "60'" +const ethermintCoinType = "60"; +const hardenedEthermintCoinType = "60'"; /** * A KDF configuration that is not very strong but can be used on the main thread. @@ -274,7 +274,11 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { })); } - public async signAmino(signerAddress: string, signDoc: StdSignDoc): Promise { + public async signAmino( + signerAddress: string, + signDoc: StdSignDoc, + coinType = "", + ): Promise { const accounts = await this.getAccountsWithPrivkeys(); const account = accounts.find(({ address }) => address === signerAddress); if (account === undefined) { @@ -283,7 +287,7 @@ export class Secp256k1HdWallet implements OfflineAminoSigner { const { privkey, pubkey } = account; switch (true) { - case account.coinType === hardenedEthermintCoinType || account.coinType === ethermintCoinType: { + case coinType === hardenedEthermintCoinType || coinType === ethermintCoinType: { // eth signing const hashedMessage = new Keccak256(serializeSignDoc(signDoc)).digest(); const signature = await Secp256k1.createSignature(hashedMessage, privkey); diff --git a/packages/amino/src/signer.ts b/packages/amino/src/signer.ts index 62954c08b0..00b177fbc9 100644 --- a/packages/amino/src/signer.ts +++ b/packages/amino/src/signer.ts @@ -1,7 +1,7 @@ import { StdSignature } from "./signature"; import { StdSignDoc } from "./signdoc"; -export type Algo = "secp256k1" | "ed25519" | "sr25519"; +export type Algo = "ethsecp256k1" | "secp256k1" | "ed25519" | "sr25519"; export interface AccountData { /** A printable address (typically bech32 encoded) */ diff --git a/packages/proto-signing/src/directsecp256k1hdwallet.ts b/packages/proto-signing/src/directsecp256k1hdwallet.ts index 0423ce4b0a..7423225c3c 100644 --- a/packages/proto-signing/src/directsecp256k1hdwallet.ts +++ b/packages/proto-signing/src/directsecp256k1hdwallet.ts @@ -39,8 +39,8 @@ interface AccountDataWithPrivkey extends AccountData { const serializationTypeV1 = "directsecp256k1hdwallet-v1"; -const ethermintCoinType = "60" -const hardenedEthermintCoinType = "60'" +const ethermintCoinType = "60"; +const hardenedEthermintCoinType = "60'"; /** * A KDF configuration that is not very strong but can be used on the main thread. @@ -277,7 +277,11 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { })); } - public async signDirect(signerAddress: string, signDoc: SignDoc): Promise { + public async signDirect( + signerAddress: string, + signDoc: SignDoc, + coinType = "", + ): Promise { const accounts = await this.getAccountsWithPrivkeys(); const account = accounts.find(({ address }) => address === signerAddress); if (account === undefined) { @@ -287,7 +291,7 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { const signBytes = makeSignBytes(signDoc); switch (true) { - case account.coinType === hardenedEthermintCoinType || account.coinType === ethermintCoinType: { + case coinType === hardenedEthermintCoinType || coinType === ethermintCoinType: { // eth signing const hashedMessage = new Keccak256(signBytes).digest(); const signature = await Secp256k1.createSignature(hashedMessage, privkey); @@ -395,7 +399,6 @@ export class DirectSecp256k1HdWallet implements OfflineDirectSigner { if (components.length < 3) { throw new Error("Invalid hdPath. Coin type is missing"); } - const coinType = components[2]; switch (true) { case coinType === hardenedEthermintCoinType || coinType === ethermintCoinType: { diff --git a/packages/proto-signing/src/signer.ts b/packages/proto-signing/src/signer.ts index 7e7e560fd6..04d1b95dcc 100644 --- a/packages/proto-signing/src/signer.ts +++ b/packages/proto-signing/src/signer.ts @@ -1,7 +1,7 @@ import { OfflineAminoSigner, StdSignature } from "@cosmjs/amino"; import { SignDoc } from "cosmjs-types/cosmos/tx/v1beta1/tx"; -export type Algo = "secp256k1" | "ed25519" | "sr25519"; +export type Algo = "ethsecp256k1" | "secp256k1" | "ed25519" | "sr25519"; export interface AccountData { /** A printable address (typically bech32 encoded) */ readonly address: string; diff --git a/packages/stargate/src/multisignature.spec.ts b/packages/stargate/src/multisignature.spec.ts index 1609e2ec92..075b81a91b 100644 --- a/packages/stargate/src/multisignature.spec.ts +++ b/packages/stargate/src/multisignature.spec.ts @@ -230,6 +230,7 @@ describe("multisignature", () => { signingInstruction.msgs, signingInstruction.fee, signingInstruction.memo, + "", signerData, ); return [pubkey, signatures[0], bb] as const; diff --git a/packages/stargate/src/signingstargateclient.spec.ts b/packages/stargate/src/signingstargateclient.spec.ts index 959aef7a6e..6a949c23c2 100644 --- a/packages/stargate/src/signingstargateclient.spec.ts +++ b/packages/stargate/src/signingstargateclient.spec.ts @@ -869,7 +869,7 @@ describe("SigningStargateClient", () => { gas: "222000", // 222k }; const memo = "Use your power wisely"; - const signed = await client.sign(faucet.address0, [msgAny], fee, memo); + const signed = await client.sign(faucet.address0, [msgAny], fee, memo, ""); // ensure signature is valid const result = await client.broadcastTx(Uint8Array.from(TxRaw.encode(signed).finish())); @@ -899,7 +899,7 @@ describe("SigningStargateClient", () => { gas: "222000", // 222k }; const memo = "Use your power wisely"; - const signed = await client.sign(faucet.address0, [msgAny], fee, memo); + const signed = await client.sign(faucet.address0, [msgAny], fee, memo, ""); const body = TxBody.decode(signed.bodyBytes); const authInfo = AuthInfo.decode(signed.authInfoBytes); @@ -938,7 +938,7 @@ describe("SigningStargateClient", () => { gas: "200000", }; const memo = "Use your tokens wisely"; - const signed = await client.sign(faucet.address0, [msgAny], fee, memo); + const signed = await client.sign(faucet.address0, [msgAny], fee, memo, ""); // ensure signature is valid const result = await client.broadcastTx(Uint8Array.from(TxRaw.encode(signed).finish())); @@ -968,7 +968,7 @@ describe("SigningStargateClient", () => { gas: "200000", }; const memo = "Use your tokens wisely"; - const signed = await client.sign(faucet.address0, [msgAny], fee, memo); + const signed = await client.sign(faucet.address0, [msgAny], fee, memo, ""); // ensure signature is valid const result = await client.broadcastTx(Uint8Array.from(TxRaw.encode(signed).finish())); @@ -1081,7 +1081,7 @@ describe("SigningStargateClient", () => { gas: "200000", }; const memo = "Use your power wisely"; - const signed = await client.sign(faucet.address0, [msgAny], fee, memo); + const signed = await client.sign(faucet.address0, [msgAny], fee, memo, ""); // ensure signature is valid const result = await client.broadcastTx(Uint8Array.from(TxRaw.encode(signed).finish())); @@ -1111,7 +1111,7 @@ describe("SigningStargateClient", () => { gas: "200000", }; const memo = "Use your power wisely"; - const signed = await client.sign(faucet.address0, [msgAny], fee, memo); + const signed = await client.sign(faucet.address0, [msgAny], fee, memo, ""); const body = TxBody.decode(signed.bodyBytes); const authInfo = AuthInfo.decode(signed.authInfoBytes); diff --git a/packages/stargate/src/signingstargateclient.ts b/packages/stargate/src/signingstargateclient.ts index 329dd6c8ff..8e657ad503 100644 --- a/packages/stargate/src/signingstargateclient.ts +++ b/packages/stargate/src/signingstargateclient.ts @@ -63,8 +63,8 @@ import { } from "./modules"; import { DeliverTxResponse, StargateClient, StargateClientOptions } from "./stargateclient"; -const ethermintCoinType = "60" -const hardenedEthermintCoinType = "60'" +const ethermintCoinType = "60"; +const hardenedEthermintCoinType = "60'"; export const defaultRegistryTypes: ReadonlyArray<[string, GeneratedType]> = [ ["/cosmos.base.v1beta1.Coin", Coin], @@ -297,6 +297,7 @@ export class SigningStargateClient extends StargateClient { timeoutTimestamp: number | undefined, fee: StdFee | "auto" | number, memo = "", + coinType = "", ): Promise { const timeoutTimestampNanoseconds = timeoutTimestamp ? Long.fromNumber(timeoutTimestamp).multiply(1_000_000_000) @@ -313,7 +314,7 @@ export class SigningStargateClient extends StargateClient { timeoutTimestamp: timeoutTimestampNanoseconds, }), }; - return this.signAndBroadcast(senderAddress, [transferMsg], fee, memo); + return this.signAndBroadcast(senderAddress, [transferMsg], fee, memo, coinType); } public async signAndBroadcast( @@ -321,6 +322,7 @@ export class SigningStargateClient extends StargateClient { messages: readonly EncodeObject[], fee: StdFee | "auto" | number, memo = "", + coinType = "", ): Promise { let usedFee: StdFee; if (fee == "auto" || typeof fee === "number") { @@ -331,7 +333,7 @@ export class SigningStargateClient extends StargateClient { } else { usedFee = fee; } - const txRaw = await this.sign(signerAddress, messages, usedFee, memo); + const txRaw = await this.sign(signerAddress, messages, usedFee, memo, coinType); const txBytes = TxRaw.encode(txRaw).finish(); return this.broadcastTx(txBytes, this.broadcastTimeoutMs, this.broadcastPollIntervalMs); } @@ -347,6 +349,7 @@ export class SigningStargateClient extends StargateClient { messages: readonly EncodeObject[], fee: StdFee | "auto" | number, memo = "", + coinType = "", ): Promise { let usedFee: StdFee; if (fee == "auto" || typeof fee === "number") { @@ -357,7 +360,7 @@ export class SigningStargateClient extends StargateClient { } else { usedFee = fee; } - const txRaw = await this.sign(signerAddress, messages, usedFee, memo); + const txRaw = await this.sign(signerAddress, messages, usedFee, memo, coinType); const txBytes = TxRaw.encode(txRaw).finish(); return this.broadcastTxSync(txBytes); } @@ -377,6 +380,7 @@ export class SigningStargateClient extends StargateClient { messages: readonly EncodeObject[], fee: StdFee, memo: string, + coinType: string, explicitSignerData?: SignerData, ): Promise { let signerData: SignerData; @@ -393,8 +397,8 @@ export class SigningStargateClient extends StargateClient { } return isOfflineDirectSigner(this.signer) - ? this.signDirect(signerAddress, messages, fee, memo, signerData) - : this.signAmino(signerAddress, messages, fee, memo, signerData); + ? this.signDirect(signerAddress, messages, fee, memo, coinType, signerData) + : this.signAmino(signerAddress, messages, fee, memo, coinType, signerData); } private async signAmino( @@ -402,6 +406,7 @@ export class SigningStargateClient extends StargateClient { messages: readonly EncodeObject[], fee: StdFee, memo: string, + coinType: string, { accountNumber, sequence, chainId }: SignerData, ): Promise { assert(!isOfflineDirectSigner(this.signer)); @@ -414,7 +419,7 @@ export class SigningStargateClient extends StargateClient { let pubkey; switch (true) { - case accountFromSigner.coinType === hardenedEthermintCoinType || accountFromSigner.coinType === ethermintCoinType: { + case coinType === hardenedEthermintCoinType || coinType === ethermintCoinType: { pubkey = encodePubkey(encodeEthSecp256k1Pubkey(accountFromSigner.pubkey)); break; } @@ -459,6 +464,7 @@ export class SigningStargateClient extends StargateClient { messages: readonly EncodeObject[], fee: StdFee, memo: string, + coinType: string, { accountNumber, sequence, chainId }: SignerData, ): Promise { assert(isOfflineDirectSigner(this.signer)); @@ -471,7 +477,7 @@ export class SigningStargateClient extends StargateClient { let pubkey; switch (true) { - case accountFromSigner.coinType === hardenedEthermintCoinType || accountFromSigner.coinType === ethermintCoinType: { + case coinType === hardenedEthermintCoinType || coinType === ethermintCoinType: { pubkey = encodePubkey(encodeEthSecp256k1Pubkey(accountFromSigner.pubkey)); break; } diff --git a/packages/stargate/src/stargateclient.ts b/packages/stargate/src/stargateclient.ts index e463a2e326..8b1cd2be37 100644 --- a/packages/stargate/src/stargateclient.ts +++ b/packages/stargate/src/stargateclient.ts @@ -449,6 +449,7 @@ export class StargateClient { } await sleep(pollIntervalMs); const result = await this.getTx(txId); + return result ? { code: result.code,