diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4d29575 --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# production +/build + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* diff --git a/config-overrides.js b/config-overrides.js new file mode 100644 index 0000000..9f9172d --- /dev/null +++ b/config-overrides.js @@ -0,0 +1,42 @@ +// TODO: Use Typescript + +module.exports = function override(config, env) { + config.module.rules.push({ + test: /\.js$/, + exclude: /node_modules[/\\](?!react-native-vector-icons)/, + use: { + loader: "babel-loader", + options: { + // Disable reading babel configuration + babelrc: false, + configFile: false, + + // The configuration for compilation + presets: [ + ["@babel/preset-env", { useBuiltIns: "usage", "corejs": "3" }], + "@babel/preset-react", + "@babel/preset-flow", + "@babel/preset-typescript", + ], + plugins: [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-proposal-object-rest-spread" + ] + } + } + }); + + config.module.rules.push({ + test: /\.(jpg|png|woff|woff2|eot|ttf|svg)$/, + type: 'asset/resource' + }) + + config.resolve.fallback = { + crypto: require.resolve("crypto-browserify"), + stream: require.resolve("stream-browserify"), + } + + config.resolve.alias['react-native$'] = require.resolve('react-native-web'); + + return config; +}; diff --git a/package.json b/package.json new file mode 100644 index 0000000..1240e6e --- /dev/null +++ b/package.json @@ -0,0 +1,96 @@ +{ + "name": "web-wallet", + "version": "0.1.0", + "private": true, + "dependencies": { + "@cerc-io/registry-sdk": "^0.2.2", + "@cosmjs/amino": "^0.32.3", + "@cosmjs/crypto": "^0.32.3", + "@cosmjs/proto-signing": "^0.32.3", + "@cosmjs/stargate": "^0.32.3", + "@emotion/react": "^11.13.0", + "@emotion/styled": "^11.13.0", + "@ethersproject/shims": "^5.7.0", + "@hookform/resolvers": "^3.3.4", + "@json-rpc-tools/utils": "^1.7.6", + "@mui/material": "^5.16.4", + "@react-native-async-storage/async-storage": "^1.22.3", + "@react-native-community/netinfo": "^11.3.1", + "@react-navigation/elements": "^1.3.30", + "@react-navigation/native": "^6.1.10", + "@react-navigation/native-stack": "^6.9.18", + "@testing-library/jest-dom": "^5.14.1", + "@testing-library/react": "^13.0.0", + "@testing-library/user-event": "^13.2.1", + "@types/jest": "^27.0.1", + "@types/node": "^16.7.13", + "@types/react": "^18.0.0", + "@types/react-dom": "^18.0.0", + "assert": "^2.1.0", + "chain-registry": "^1.41.2", + "cosmjs-types": "^0.9.0", + "ethers": "5.7.2", + "http-browserify": "^1.7.0", + "https-browserify": "^1.0.0", + "lodash": "^4.17.21", + "patch-package": "^8.0.0", + "react": "^18.3.1", + "react-art": "^18.3.1", + "react-dom": "^18.3.1", + "react-hook-form": "^7.51.2", + "react-native": "^0.74.3", + "react-native-config": "^1.5.1", + "react-native-get-random-values": "^1.10.0", + "react-native-paper": "^5.12.3", + "react-native-quick-base64": "^2.0.8", + "react-native-quick-crypto": "^0.6.1", + "react-native-safe-area-context": "^4.10.8", + "react-native-screens": "^3.29.0", + "react-native-svg": "^15.1.0", + "react-native-url-polyfill": "^2.0.0", + "react-native-vector-icons": "^10.1.0", + "react-native-web": "^0.19.12", + "react-scripts": "5.0.1", + "text-encoding-polyfill": "^0.6.7", + "typescript": "^4.4.2", + "use-debounce": "^10.0.0", + "web-vitals": "^2.1.0", + "zod": "^3.22.4" + }, + "scripts": { + "start": "react-app-rewired start", + "build": "react-app-rewired build", + "test": "react-app-rewired test", + "eject": "react-scripts eject" + }, + "eslintConfig": { + "extends": [ + "react-app", + "react-app/jest" + ] + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + }, + "devDependencies": { + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.20.7", + "@babel/preset-env": "^7.24.8", + "@babel/preset-flow": "^7.24.7", + "@babel/preset-react": "^7.24.7", + "@babel/preset-typescript": "^7.24.7", + "@types/lodash": "^4.17.7", + "babel-loader": "^9.1.3", + "core-js": "^3.37.1", + "react-app-rewired": "^2.2.1" + } +} diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..a11777c Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..aa069f2 --- /dev/null +++ b/public/index.html @@ -0,0 +1,43 @@ + + + + + + + + + + + + + React App + + + +
+ + + diff --git a/public/logo192.png b/public/logo192.png new file mode 100644 index 0000000..fc44b0a Binary files /dev/null and b/public/logo192.png differ diff --git a/public/logo512.png b/public/logo512.png new file mode 100644 index 0000000..a4e47a6 Binary files /dev/null and b/public/logo512.png differ diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..080d6c7 --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,25 @@ +{ + "short_name": "React App", + "name": "Create React App Sample", + "icons": [ + { + "src": "favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + }, + { + "src": "logo192.png", + "type": "image/png", + "sizes": "192x192" + }, + { + "src": "logo512.png", + "type": "image/png", + "sizes": "512x512" + } + ], + "start_url": ".", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +} diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..e9e57dc --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,3 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Disallow: diff --git a/src/App.css b/src/App.css new file mode 100644 index 0000000..74b5e05 --- /dev/null +++ b/src/App.css @@ -0,0 +1,38 @@ +.App { + text-align: center; +} + +.App-logo { + height: 40vmin; + pointer-events: none; +} + +@media (prefers-reduced-motion: no-preference) { + .App-logo { + animation: App-logo-spin infinite 20s linear; + } +} + +.App-header { + background-color: #282c34; + min-height: 100vh; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + font-size: calc(10px + 2vmin); + color: white; +} + +.App-link { + color: #61dafb; +} + +@keyframes App-logo-spin { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} diff --git a/src/App.test.tsx b/src/App.test.tsx new file mode 100644 index 0000000..2a68616 --- /dev/null +++ b/src/App.test.tsx @@ -0,0 +1,9 @@ +import React from 'react'; +import { render, screen } from '@testing-library/react'; +import App from './App'; + +test('renders learn react link', () => { + render(); + const linkElement = screen.getByText(/learn react/i); + expect(linkElement).toBeInTheDocument(); +}); diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..8e25a91 --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,328 @@ +import React, { useCallback, useEffect, useState } from 'react'; +import { Button, Snackbar, Text } from 'react-native-paper'; +// import Icon from 'react-native-vector-icons/MaterialCommunityIcons'; +// import { TxBody, AuthInfo } from 'cosmjs-types/cosmos/tx/v1beta1/tx'; + +// import { SignClientTypes } from '@walletconnect/types'; +import { useNavigation } from '@react-navigation/native'; +import { + NativeStackNavigationProp, + createNativeStackNavigator, +} from '@react-navigation/native-stack'; +// import { getSdkError } from '@walletconnect/utils'; +// import { Web3WalletTypes } from '@walletconnect/web3wallet'; +// import { formatJsonRpcResult } from '@json-rpc-tools/utils'; + +// import PairingModal from './components/PairingModal'; +// import { useWalletConnect } from './context/WalletConnectContext'; +import { useAccounts } from './context/AccountsContext'; +import InvalidPath from './screens/InvalidPath'; +import SignMessage from './screens/SignMessage'; +import HomeScreen from './screens/HomeScreen'; +import SignRequest from './screens/SignRequest'; +import AddSession from './screens/AddSession'; +// import WalletConnect from './screens/WalletConnect'; +import ApproveTransaction from './screens/ApproveTransaction'; +import { StackParamsList } from './types'; +// import { web3wallet } from './utils/wallet-connect/WalletConnectUtils'; +// import { EIP155_SIGNING_METHODS } from './utils/wallet-connect/EIP155Data'; +// import { getSignParamsMessage } from './utils/wallet-connect/helpers'; +import ApproveTransfer from './screens/ApproveTransfer'; +import AddNetwork from './screens/AddNetwork'; +import EditNetwork from './screens/EditNetwork'; +// import { COSMOS, EIP155 } from './utils/constants'; +import { useNetworks } from './context/NetworksContext'; +// import { NETWORK_METHODS } from './utils/wallet-connect/common-data'; +// import { COSMOS_METHODS } from './utils/wallet-connect/COSMOSData'; + +const Stack = createNativeStackNavigator(); + +const App = (): React.JSX.Element => { + const navigation = + useNavigation>(); + + // const { setActiveSessions } = useWalletConnect(); + const { accounts, setCurrentIndex } = useAccounts(); + const { networksData, selectedNetwork, setSelectedNetwork } = useNetworks(); + const [modalVisible, setModalVisible] = useState(false); + const [toastVisible, setToastVisible] = useState(false); + // const [currentProposal, setCurrentProposal] = useState< + // SignClientTypes.EventArguments['session_proposal'] | undefined + // >(); + + // const onSessionProposal = useCallback( + // async (proposal: SignClientTypes.EventArguments['session_proposal']) => { + // if (!accounts.length || !accounts.length) { + // const { id } = proposal; + // await web3wallet!.rejectSession({ + // id, + // reason: getSdkError('UNSUPPORTED_ACCOUNTS'), + // }); + // return; + // } + // setModalVisible(true); + // setCurrentProposal(proposal); + // }, + // [accounts], + // ); + + // const onSessionRequest = useCallback( + // async (requestEvent: Web3WalletTypes.SessionRequest) => { + // const { topic, params, id } = requestEvent; + // const { request } = params; + + // const requestSessionData = + // web3wallet!.engine.signClient.session.get(topic); + // switch (request.method) { + // case NETWORK_METHODS.GET_NETWORKS: + // const currentNetworkId = networksData.find( + // networkData => networkData.networkId === selectedNetwork!.networkId, + // )?.networkId; + + // const networkNamesData = networksData.map(networkData => { + // return { + // id: networkData.networkId, + // name: networkData.networkName, + // }; + // }); + + // const formattedResponse = formatJsonRpcResult(id, { + // currentNetworkId, + // networkNamesData, + // }); + + // await web3wallet!.respondSessionRequest({ + // topic, + // response: formattedResponse, + // }); + // break; + + // case NETWORK_METHODS.CHANGE_NETWORK: + // const networkNameData = request.params[0]; + // const network = networksData.find( + // networkData => networkData.networkId === networkNameData.id, + // ); + // setCurrentIndex(0); + // setSelectedNetwork(network); + + // const response = formatJsonRpcResult(id, { + // response: 'true', + // }); + + // await web3wallet!.respondSessionRequest({ + // topic, + // response: response, + // }); + // break; + + // case EIP155_SIGNING_METHODS.ETH_SEND_TRANSACTION: + // navigation.navigate('ApproveTransfer', { + // transaction: request.params[0], + // requestEvent, + // requestSessionData, + // }); + // break; + + // case EIP155_SIGNING_METHODS.PERSONAL_SIGN: + // navigation.navigate('SignRequest', { + // namespace: EIP155, + // address: request.params[1], + // message: getSignParamsMessage(request.params), + // requestEvent, + // requestSessionData, + // }); + // break; + + // case COSMOS_METHODS.COSMOS_SIGN_DIRECT: + // const message = { + // txbody: TxBody.toJSON( + // TxBody.decode( + // Uint8Array.from( + // Buffer.from(request.params.signDoc.bodyBytes, 'hex'), + // ), + // ), + // ), + // authInfo: AuthInfo.toJSON( + // AuthInfo.decode( + // Uint8Array.from( + // Buffer.from(request.params.signDoc.authInfoBytes, 'hex'), + // ), + // ), + // ), + // }; + // navigation.navigate('SignRequest', { + // namespace: COSMOS, + // address: request.params.signerAddress, + // message: JSON.stringify(message, undefined, 2), + // requestEvent, + // requestSessionData, + // }); + // break; + + // case COSMOS_METHODS.COSMOS_SIGN_AMINO: + // navigation.navigate('SignRequest', { + // namespace: COSMOS, + // address: request.params.signerAddress, + // message: request.params.signDoc.memo, + // requestEvent, + // requestSessionData, + // }); + // break; + + // case COSMOS_METHODS.COSMOS_SEND_TOKENS: + // navigation.navigate('ApproveTransfer', { + // transaction: request.params[0], + // requestEvent, + // requestSessionData, + // }); + // break; + + // case COSMOS_METHODS.COSMOS_SEND_TRANSACTION: + // const { transactionMessage, signer } = request.params; + // navigation.navigate('ApproveTransaction', { + // transactionMessage, + // signer, + // requestEvent, + // requestSessionData, + // }); + // break; + + // default: + // throw new Error('Invalid method'); + // } + // }, + // [ + // navigation, + // networksData, + // setSelectedNetwork, + // setCurrentIndex, + // selectedNetwork, + // ], + // ); + + // const onSessionDelete = useCallback(() => { + // const sessions = web3wallet!.getActiveSessions(); + // setActiveSessions(sessions); + // }, [setActiveSessions]); + + // useEffect(() => { + // web3wallet?.on('session_proposal', onSessionProposal); + // web3wallet?.on('session_request', onSessionRequest); + // web3wallet?.on('session_delete', onSessionDelete); + // return () => { + // web3wallet?.off('session_proposal', onSessionProposal); + // web3wallet?.off('session_request', onSessionRequest); + // web3wallet?.off('session_delete', onSessionDelete); + // }; + // }); + + return ( + <> + + Laconic Wallet, + headerBackVisible: false, + }} + /> + Sign Message, + }} + /> + {/* Sign Request, + }} + /> */} + Bad Request, + headerBackVisible: false, + }} + /> + {/* WalletConnect, + // eslint-disable-next-line react/no-unstable-nested-components + headerRight: () => ( + + ), + }} + /> */} + + + + {/* */} + + + {/* */} + + {/* */} + setToastVisible(false)} + duration={3000}> + Session approved + + + ); +}; + +export default App; diff --git a/src/assets/WalletConnect-Icon-Blueberry.png b/src/assets/WalletConnect-Icon-Blueberry.png new file mode 100644 index 0000000..66625b2 Binary files /dev/null and b/src/assets/WalletConnect-Icon-Blueberry.png differ diff --git a/src/assets/ethereum-chains.json b/src/assets/ethereum-chains.json new file mode 100644 index 0000000..c3a4894 --- /dev/null +++ b/src/assets/ethereum-chains.json @@ -0,0 +1 @@ +[{"name":"Ethereum Mainnet","chain":"ETH","icon":"ethereum","rpc":["https://mainnet.infura.io/v3/${INFURA_API_KEY}","wss://mainnet.infura.io/ws/v3/${INFURA_API_KEY}","https://api.mycryptoapi.com/eth","https://cloudflare-eth.com","https://ethereum-rpc.publicnode.com","wss://ethereum-rpc.publicnode.com","https://mainnet.gateway.tenderly.co","wss://mainnet.gateway.tenderly.co","https://rpc.blocknative.com/boost","https://rpc.flashbots.net","https://rpc.flashbots.net/fast","https://rpc.mevblocker.io","https://rpc.mevblocker.io/fast","https://rpc.mevblocker.io/noreverts","https://rpc.mevblocker.io/fullprivacy","https://eth.drpc.org","wss://eth.drpc.org"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://ethereum.org","shortName":"eth","chainId":1,"networkId":1,"slip44":60,"ens":{"registry":"0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e"},"explorers":[{"name":"etherscan","url":"https://etherscan.io","standard":"EIP3091"},{"name":"blockscout","url":"https://eth.blockscout.com","icon":"blockscout","standard":"EIP3091"},{"name":"dexguru","url":"https://ethereum.dex.guru","icon":"dexguru","standard":"EIP3091"}]},{"name":"Expanse Network","chain":"EXP","rpc":["https://node.expanse.tech"],"faucets":[],"nativeCurrency":{"name":"Expanse Network Ether","symbol":"EXP","decimals":18},"infoURL":"https://expanse.tech","shortName":"exp","chainId":2,"networkId":1,"slip44":40},{"name":"Ropsten","title":"Ethereum Testnet Ropsten","chain":"ETH","rpc":["https://ropsten.infura.io/v3/${INFURA_API_KEY}","wss://ropsten.infura.io/ws/v3/${INFURA_API_KEY}"],"faucets":["http://fauceth.komputing.org?chain=3&address=${ADDRESS}","https://faucet.ropsten.be?${ADDRESS}"],"nativeCurrency":{"name":"Ropsten Ether","symbol":"ETH","decimals":18},"infoURL":"https://github.com/ethereum/ropsten","shortName":"rop","chainId":3,"networkId":3,"slip44":1,"ens":{"registry":"0x112234455c3a32fd11230c42e7bccd4a84e02010"},"explorers":[{"name":"etherscan","url":"https://ropsten.etherscan.io","standard":"EIP3091"}]},{"name":"Rinkeby","title":"Ethereum Testnet Rinkeby","chain":"ETH","rpc":["https://rinkeby.infura.io/v3/${INFURA_API_KEY}","wss://rinkeby.infura.io/ws/v3/${INFURA_API_KEY}"],"faucets":["http://fauceth.komputing.org?chain=4&address=${ADDRESS}","https://faucet.rinkeby.io"],"nativeCurrency":{"name":"Rinkeby Ether","symbol":"ETH","decimals":18},"infoURL":"https://www.rinkeby.io","shortName":"rin","chainId":4,"networkId":4,"slip44":1,"ens":{"registry":"0xe7410170f87102df0055eb195163a03b7f2bff4a"},"explorers":[{"name":"etherscan-rinkeby","url":"https://rinkeby.etherscan.io","standard":"EIP3091"}]},{"name":"Goerli","title":"Ethereum Testnet Goerli","chain":"ETH","rpc":["https://goerli.infura.io/v3/${INFURA_API_KEY}","wss://goerli.infura.io/v3/${INFURA_API_KEY}","https://rpc.goerli.mudit.blog/","https://ethereum-goerli-rpc.publicnode.com","wss://ethereum-goerli-rpc.publicnode.com","https://goerli.gateway.tenderly.co","wss://goerli.gateway.tenderly.co"],"faucets":["http://fauceth.komputing.org?chain=5&address=${ADDRESS}","https://goerli-faucet.slock.it?address=${ADDRESS}","https://faucet.goerli.mudit.blog"],"nativeCurrency":{"name":"Goerli Ether","symbol":"ETH","decimals":18},"infoURL":"https://goerli.net/#about","shortName":"gor","chainId":5,"networkId":5,"slip44":1,"ens":{"registry":"0x112234455c3a32fd11230c42e7bccd4a84e02010"},"explorers":[{"name":"etherscan-goerli","url":"https://goerli.etherscan.io","standard":"EIP3091"},{"name":"blockscout-goerli","url":"https://eth-goerli.blockscout.com","icon":"blockscout","standard":"EIP3091"}]},{"name":"Kotti Testnet","title":"Ethereum Classic Kotti Testnet","status":"deprecated","chain":"ETC","icon":"ethereumclassictestnet","rpc":[],"faucets":[],"nativeCurrency":{"name":"Kotti Ether","symbol":"KOT","decimals":18},"infoURL":"https://ethereumclassic.org/development/testnets","shortName":"kot","chainId":6,"networkId":6,"slip44":1},{"name":"ThaiChain","chain":"TCH","rpc":["https://rpc.dome.cloud","https://rpc.thaichain.org"],"faucets":[],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"nativeCurrency":{"name":"ThaiChain Ether","symbol":"TCH","decimals":18},"infoURL":"https://thaichain.io","shortName":"tch","chainId":7,"networkId":7,"explorers":[{"name":"Thaichain Explorer","url":"https://exp.thaichain.org","standard":"EIP3091"}]},{"name":"Ubiq","chain":"UBQ","rpc":["https://rpc.octano.dev","https://pyrus2.ubiqscan.io"],"faucets":[],"nativeCurrency":{"name":"Ubiq Ether","symbol":"UBQ","decimals":18},"infoURL":"https://ubiqsmart.com","shortName":"ubq","chainId":8,"networkId":8,"slip44":108,"explorers":[{"name":"ubiqscan","url":"https://ubiqscan.io","standard":"EIP3091"}]},{"name":"Ubiq Network Testnet","chain":"UBQ","rpc":[],"faucets":[],"nativeCurrency":{"name":"Ubiq Testnet Ether","symbol":"TUBQ","decimals":18},"infoURL":"https://ethersocial.org","shortName":"tubq","chainId":9,"networkId":2,"slip44":1},{"name":"OP Mainnet","chain":"ETH","rpc":["https://mainnet.optimism.io","https://optimism-rpc.publicnode.com","wss://optimism-rpc.publicnode.com","https://optimism.gateway.tenderly.co","wss://optimism.gateway.tenderly.co","https://optimism.drpc.org","wss://optimism.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://optimism.io","shortName":"oeth","chainId":10,"networkId":10,"explorers":[{"name":"etherscan","url":"https://optimistic.etherscan.io","standard":"EIP3091"},{"name":"blockscout","url":"https://optimism.blockscout.com","icon":"blockscout","standard":"EIP3091"},{"name":"dexguru","url":"https://optimism.dex.guru","icon":"dexguru","standard":"EIP3091"}]},{"name":"Metadium Mainnet","chain":"META","rpc":["https://api.metadium.com/prod"],"faucets":[],"nativeCurrency":{"name":"Metadium Mainnet Ether","symbol":"META","decimals":18},"infoURL":"https://metadium.com","shortName":"meta","chainId":11,"networkId":11,"slip44":916},{"name":"Metadium Testnet","chain":"META","rpc":["https://api.metadium.com/dev"],"faucets":[],"nativeCurrency":{"name":"Metadium Testnet Ether","symbol":"KAL","decimals":18},"infoURL":"https://metadium.com","shortName":"kal","chainId":12,"networkId":12,"slip44":1},{"name":"Diode Testnet Staging","chain":"DIODE","rpc":["https://staging.diode.io:8443/","wss://staging.diode.io:8443/ws"],"faucets":[],"nativeCurrency":{"name":"Staging Diodes","symbol":"sDIODE","decimals":18},"infoURL":"https://diode.io/staging","shortName":"dstg","chainId":13,"networkId":13,"slip44":1},{"name":"Flare Mainnet","chain":"FLR","icon":"flare","rpc":["https://flare-api.flare.network/ext/C/rpc","https://flare.rpc.thirdweb.com","https://flare-bundler.etherspot.io","https://rpc.ankr.com/flare","https://01-gravelines-003-01.rpc.tatum.io/ext/bc/C/rpc","https://01-vinthill-003-02.rpc.tatum.io/ext/bc/C/rpc","https://rpc.ftso.au/flare","https://flare.enosys.global/ext/C/rpc","https://flare.solidifi.app/ext/C/rpc"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Flare","symbol":"FLR","decimals":18},"infoURL":"https://flare.network","shortName":"flr","chainId":14,"networkId":14,"explorers":[{"name":"blockscout","url":"https://flare-explorer.flare.network","standard":"EIP3091"},{"name":"flarescan","url":"https://mainnet.flarescan.com","standard":"EIP3091"}]},{"name":"Diode Prenet","chain":"DIODE","rpc":["https://prenet.diode.io:8443/","wss://prenet.diode.io:8443/ws"],"faucets":[],"nativeCurrency":{"name":"Diodes","symbol":"DIODE","decimals":18},"infoURL":"https://diode.io/prenet","shortName":"diode","chainId":15,"networkId":15},{"name":"Songbird Testnet Coston","chain":"SGB","icon":"coston","rpc":["https://coston-api.flare.network/ext/C/rpc","https://songbird-testnet-coston.rpc.thirdweb.com","https://01-gravelines-004-01.rpc.tatum.io/ext/bc/C/rpc","https://02-chicago-004-02.rpc.tatum.io/ext/bc/C/rpc","https://02-tokyo-004-03.rpc.tatum.io/ext/bc/C/rpc","https://coston.enosys.global/ext/C/rpc"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":["https://faucet.flare.network"],"nativeCurrency":{"name":"Coston Flare","symbol":"CFLR","decimals":18},"infoURL":"https://flare.network","shortName":"cflr","chainId":16,"networkId":16,"slip44":1,"explorers":[{"name":"blockscout","url":"https://coston-explorer.flare.network","standard":"EIP3091"},{"name":"flarescan","url":"https://coston.testnet.flarescan.com","standard":"EIP3091"}]},{"name":"ThaiChain 2.0 ThaiFi","chain":"TCH","rpc":["https://rpc.thaifi.com"],"faucets":[],"nativeCurrency":{"name":"Thaifi Ether","symbol":"TFI","decimals":18},"infoURL":"https://exp.thaifi.com","shortName":"tfi","chainId":17,"networkId":17},{"name":"ThunderCore Testnet","chain":"TST","rpc":["https://testnet-rpc.thundercore.com","https://thundercore-testnet.drpc.org","wss://thundercore-testnet.drpc.org"],"faucets":["https://faucet-testnet.thundercore.com"],"nativeCurrency":{"name":"ThunderCore Testnet Token","symbol":"TST","decimals":18},"infoURL":"https://thundercore.com","shortName":"TST","chainId":18,"networkId":18,"slip44":1,"explorers":[{"name":"thundercore-blockscout-testnet","url":"https://explorer-testnet.thundercore.com","standard":"EIP3091"}]},{"name":"Songbird Canary-Network","chain":"SGB","icon":"songbird","rpc":["https://songbird-api.flare.network/ext/C/rpc","https://01-gravelines-006-01.rpc.tatum.io/ext/bc/C/rpc","https://01-vinthill-006-02.rpc.tatum.io/ext/bc/C/rpc","https://02-tokyo-006-03.rpc.tatum.io/ext/bc/C/rpc","https://rpc.ftso.au/songbird","https://songbird.enosys.global/ext/C/rpc","https://songbird.solidifi.app/ext/C/rpc"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Songbird","symbol":"SGB","decimals":18},"infoURL":"https://flare.network","shortName":"sgb","chainId":19,"networkId":19,"explorers":[{"name":"blockscout","url":"https://songbird-explorer.flare.network","standard":"EIP3091"},{"name":"flarescan","url":"https://songbird.flarescan.com","standard":"EIP3091"}]},{"name":"Elastos Smart Chain","chain":"ETH","rpc":["https://api.elastos.io/eth"],"faucets":[],"nativeCurrency":{"name":"Elastos","symbol":"ELA","decimals":18},"infoURL":"https://www.elastos.org/","shortName":"esc","chainId":20,"networkId":20,"explorers":[{"name":"elastos esc explorer","url":"https://esc.elastos.io","standard":"EIP3091"}]},{"name":"Elastos Smart Chain Testnet","chain":"ETH","rpc":["https://api-testnet.elastos.io/eth"],"faucets":["https://esc-faucet.elastos.io/"],"nativeCurrency":{"name":"Elastos","symbol":"tELA","decimals":18},"infoURL":"https://www.elastos.org/","shortName":"esct","chainId":21,"networkId":21,"explorers":[{"name":"elastos esc explorer","url":"https://esc-testnet.elastos.io","standard":"EIP3091"}]},{"name":"ELA-DID-Sidechain Mainnet","chain":"ETH","rpc":[],"faucets":[],"nativeCurrency":{"name":"Elastos","symbol":"ELA","decimals":18},"infoURL":"https://www.elastos.org/","shortName":"eladid","chainId":22,"networkId":22},{"name":"ELA-DID-Sidechain Testnet","chain":"ETH","rpc":[],"faucets":[],"nativeCurrency":{"name":"Elastos","symbol":"tELA","decimals":18},"infoURL":"https://elaeth.io/","shortName":"eladidt","chainId":23,"networkId":23,"slip44":1},{"name":"KardiaChain Mainnet","chain":"KAI","icon":"kardiachain","rpc":["https://rpc.kardiachain.io"],"faucets":[],"nativeCurrency":{"name":"KardiaChain","symbol":"KAI","decimals":18},"infoURL":"https://kardiachain.io","shortName":"kardiachain","chainId":24,"networkId":0,"redFlags":["reusedChainId"]},{"name":"Cronos Mainnet","chain":"CRO","rpc":["https://evm.cronos.org","https://cronos-evm-rpc.publicnode.com","wss://cronos-evm-rpc.publicnode.com","https://cronos.drpc.org","wss://cronos.drpc.org"],"features":[{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Cronos","symbol":"CRO","decimals":18},"infoURL":"https://cronos.org/","shortName":"cro","chainId":25,"networkId":25,"explorers":[{"name":"Cronos Explorer","url":"https://explorer.cronos.org","standard":"none"}]},{"name":"Genesis L1 testnet","chain":"genesis","rpc":["https://testrpc.genesisl1.org"],"faucets":[],"nativeCurrency":{"name":"L1 testcoin","symbol":"L1test","decimals":18},"infoURL":"https://www.genesisl1.com","shortName":"L1test","chainId":26,"networkId":26,"slip44":1,"explorers":[{"name":"Genesis L1 testnet explorer","url":"https://testnet.genesisl1.org","standard":"none"}]},{"name":"ShibaChain","chain":"SHIB","rpc":["https://rpc.shibchain.org"],"faucets":[],"nativeCurrency":{"name":"SHIBA INU COIN","symbol":"SHIB","decimals":18},"infoURL":"https://shibchain.org","shortName":"shib","chainId":27,"networkId":27,"explorers":[{"name":"Shiba Explorer","url":"https://exp.shibchain.org","standard":"none"}]},{"name":"Boba Network Rinkeby Testnet","chain":"ETH","status":"deprecated","rpc":["https://rinkeby.boba.network/"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://boba.network","shortName":"BobaRinkeby","chainId":28,"networkId":28,"slip44":1,"explorers":[{"name":"Blockscout","url":"https://blockexplorer.rinkeby.boba.network","standard":"none"}],"parent":{"type":"L2","chain":"eip155-4","bridges":[{"url":"https://gateway.rinkeby.boba.network"}]}},{"name":"Genesis L1","chain":"genesis","rpc":["https://rpc.genesisl1.org"],"faucets":[],"nativeCurrency":{"name":"L1 coin","symbol":"L1","decimals":18},"infoURL":"https://www.genesisl1.com","shortName":"L1","chainId":29,"networkId":29,"explorers":[{"name":"Genesis L1 blockchain explorer","url":"https://explorer.genesisl1.org","standard":"none"}]},{"name":"Rootstock Mainnet","chain":"Rootstock","rpc":["https://public-node.rsk.co","https://mycrypto.rsk.co"],"faucets":[],"icon":"rootstock","nativeCurrency":{"name":"Smart Bitcoin","symbol":"RBTC","decimals":18},"infoURL":"https://rootstock.io","shortName":"rsk","chainId":30,"networkId":30,"slip44":137,"explorers":[{"name":"Rootstock Explorer","url":"https://explorer.rsk.co","standard":"EIP3091"},{"name":"blockscout","url":"https://rootstock.blockscout.com","icon":"blockscout","standard":"EIP3091"}]},{"name":"Rootstock Testnet","chain":"Rootstock","rpc":["https://public-node.testnet.rsk.co","https://mycrypto.testnet.rsk.co"],"faucets":["https://faucet.rsk.co/"],"icon":"rootstock","nativeCurrency":{"name":"Testnet Smart Bitcoin","symbol":"tRBTC","decimals":18},"infoURL":"https://rootstock.io","shortName":"trsk","chainId":31,"networkId":31,"slip44":1,"explorers":[{"name":"RSK Testnet Explorer","url":"https://explorer.testnet.rsk.co","standard":"EIP3091"}]},{"name":"GoodData Testnet","chain":"GooD","rpc":["https://test2.goodata.io"],"faucets":[],"nativeCurrency":{"name":"GoodData Testnet Ether","symbol":"GooD","decimals":18},"infoURL":"https://www.goodata.org","shortName":"GooDT","chainId":32,"networkId":32,"slip44":1},{"name":"GoodData Mainnet","chain":"GooD","rpc":["https://rpc.goodata.io"],"faucets":[],"nativeCurrency":{"name":"GoodData Mainnet Ether","symbol":"GooD","decimals":18},"infoURL":"https://www.goodata.org","shortName":"GooD","chainId":33,"networkId":33},{"name":"SecureChain Mainnet","chain":"SCAI","icon":"scaiIcon","rpc":["https://mainnet-rpc.scai.network"],"faucets":[],"nativeCurrency":{"name":"SecureChain","symbol":"SCAI","decimals":18},"infoURL":"https://securechain.ai","shortName":"scai","chainId":34,"networkId":34,"redFlags":["reusedChainId"],"explorers":[{"name":"SecureChain Mainnet","url":"https://explorer.securechain.ai","standard":"EIP3091"}]},{"name":"TBWG Chain","chain":"TBWG","rpc":["https://rpc.tbwg.io"],"faucets":[],"nativeCurrency":{"name":"TBWG Ether","symbol":"TBG","decimals":18},"infoURL":"https://tbwg.io","shortName":"tbwg","chainId":35,"networkId":35},{"name":"Dxchain Mainnet","chain":"Dxchain","icon":"dx","rpc":["https://mainnet.dxchain.com"],"faucets":[],"nativeCurrency":{"name":"Dxchain","symbol":"DX","decimals":18},"infoURL":"https://www.dxchain.com/","shortName":"dx","chainId":36,"networkId":36,"explorers":[{"name":"dxscan","url":"https://dxscan.io","standard":"EIP3091"}]},{"name":"Xpla Mainnet","chain":"XPLA","rpc":["https://dimension-evm-rpc.xpla.dev"],"faucets":[],"nativeCurrency":{"name":"XPLA","symbol":"XPLA","decimals":18},"infoURL":"https://xpla.io","shortName":"xpla","chainId":37,"networkId":37,"icon":"xpla","explorers":[{"name":"XPLA Explorer","url":"https://explorer.xpla.io/mainnet","standard":"EIP3091"}],"redFlags":["reusedChainId"]},{"name":"Valorbit","chain":"VAL","rpc":["https://rpc.valorbit.com/v2"],"faucets":[],"nativeCurrency":{"name":"Valorbit","symbol":"VAL","decimals":18},"infoURL":"https://valorbit.com","shortName":"val","chainId":38,"networkId":38,"slip44":538},{"name":"U2U Solaris Mainnet","chain":"u2u","rpc":["https://rpc-mainnet.uniultra.xyz"],"faucets":[],"nativeCurrency":{"name":"Unicorn Ultra","symbol":"U2U","decimals":18},"infoURL":"https://uniultra.xyz","shortName":"u2u","chainId":39,"networkId":39,"icon":"u2u","explorers":[{"icon":"u2u","name":"U2U Explorer","url":"https://u2uscan.xyz","standard":"EIP3091"}]},{"name":"Telos EVM Mainnet","chain":"TLOS","rpc":["https://mainnet.telos.net/evm","https://telos.drpc.org","wss://telos.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Telos","symbol":"TLOS","decimals":18},"infoURL":"https://telos.net","shortName":"TelosEVM","chainId":40,"networkId":40,"explorers":[{"name":"teloscan","url":"https://teloscan.io","standard":"EIP3091"}]},{"name":"Telos EVM Testnet","chain":"TLOS","rpc":["https://testnet.telos.net/evm","https://telos-testnet.drpc.org","wss://telos-testnet.drpc.org"],"faucets":["https://app.telos.net/testnet/developers"],"nativeCurrency":{"name":"Telos","symbol":"TLOS","decimals":18},"infoURL":"https://telos.net","shortName":"TelosEVMTestnet","chainId":41,"networkId":41,"slip44":1,"explorers":[{"name":"teloscan","url":"https://testnet.teloscan.io","standard":"EIP3091"}]},{"name":"LUKSO Mainnet","chain":"LUKSO","icon":"lukso","rpc":["https://rpc.mainnet.lukso.network","wss://ws-rpc.mainnet.lukso.network"],"faucets":[],"nativeCurrency":{"name":"LUKSO","symbol":"LYX","decimals":18},"explorers":[{"name":"Blockscout","url":"https://explorer.execution.mainnet.lukso.network","standard":"EIP3091"}],"infoURL":"https://lukso.network","shortName":"lukso","chainId":42,"networkId":42,"features":[{"name":"EIP155"},{"name":"EIP1559"}],"redFlags":["reusedChainId"]},{"name":"Darwinia Pangolin Testnet","chain":"pangolin","rpc":["https://pangolin-rpc.darwinia.network"],"faucets":["https://docs.darwinia.network/pangolin-testnet-1e9ac8b09e874e8abd6a7f18c096ca6a"],"nativeCurrency":{"name":"Pangolin Network Native Token","symbol":"PRING","decimals":18},"infoURL":"https://darwinia.network/","shortName":"pangolin","chainId":43,"networkId":43,"slip44":1,"explorers":[{"name":"subscan","url":"https://pangolin.subscan.io","standard":"EIP3091"}]},{"name":"Crab Network","chain":"crab","rpc":["https://crab-rpc.darwinia.network","https://crab-rpc.darwiniacommunitydao.xyz"],"faucets":[],"nativeCurrency":{"name":"Crab Network Native Token","symbol":"CRAB","decimals":18},"infoURL":"https://crab.network/","shortName":"crab","chainId":44,"networkId":44,"explorers":[{"name":"subscan","url":"https://crab.subscan.io","standard":"EIP3091"}]},{"name":"Darwinia Pangoro Testnet","chain":"pangoro","rpc":["https://pangoro-rpc.darwinia.network"],"faucets":["https://docs.darwinia.network/pangoro-testnet-70cfec5dc9ca42759959ba3803edaec2"],"nativeCurrency":{"name":"Pangoro Network Native Token","symbol":"ORING","decimals":18},"infoURL":"https://darwinia.network/","shortName":"pangoro","chainId":45,"networkId":45,"slip44":1,"explorers":[{"name":"subscan","url":"https://pangoro.subscan.io","standard":"none"}]},{"name":"Darwinia Network","chain":"darwinia","rpc":["https://rpc.darwinia.network","https://darwinia-rpc.darwiniacommunitydao.xyz","https://darwinia-rpc.dwellir.com"],"faucets":[],"nativeCurrency":{"name":"Darwinia Network Native Token","symbol":"RING","decimals":18},"infoURL":"https://darwinia.network/","shortName":"darwinia","chainId":46,"networkId":46,"explorers":[{"name":"subscan","url":"https://darwinia.subscan.io","standard":"EIP3091"}]},{"name":"Acria IntelliChain","chain":"AIC","rpc":["https://aic.acria.ai"],"faucets":[],"nativeCurrency":{"name":"ACRIA","symbol":"ACRIA","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://acria.ai","shortName":"aic","chainId":47,"networkId":47,"explorers":[{"name":"Acria IntelliChain-Explorer","url":"https://explorer.acria.ai","standard":"EIP3091"}]},{"name":"Ennothem Mainnet Proterozoic","chain":"ETMP","rpc":["https://rpc.etm.network"],"faucets":[],"nativeCurrency":{"name":"Ennothem","symbol":"ETMP","decimals":18},"infoURL":"https://etm.network","shortName":"etmp","chainId":48,"networkId":48,"icon":"etmp","explorers":[{"name":"etmpscan","url":"https://etmscan.network","icon":"etmp","standard":"EIP3091"}]},{"name":"Ennothem Testnet Pioneer","chain":"ETMP","rpc":["https://rpc.pioneer.etm.network"],"faucets":[],"nativeCurrency":{"name":"Ennothem","symbol":"ETMP","decimals":18},"infoURL":"https://etm.network","shortName":"etmpTest","chainId":49,"networkId":49,"slip44":1,"icon":"etmp","explorers":[{"name":"etmp","url":"https://pioneer.etmscan.network","standard":"EIP3091"}]},{"name":"XDC Network","chain":"XDC","rpc":["https://erpc.xinfin.network","https://rpc.xinfin.network","https://rpc1.xinfin.network","https://rpc-xdc.icecreamswap.com"],"faucets":[],"nativeCurrency":{"name":"XinFin","symbol":"XDC","decimals":18},"infoURL":"https://xinfin.org","shortName":"xdc","chainId":50,"networkId":50,"icon":"xdc","explorers":[{"name":"xdcscan","url":"https://xdcscan.io","icon":"blocksscan","standard":"EIP3091"},{"name":"blocksscan","url":"https://xdc.blocksscan.io","icon":"blocksscan","standard":"EIP3091"}]},{"name":"XDC Apothem Network","chain":"XDC","rpc":["https://rpc.apothem.network","https://erpc.apothem.network"],"faucets":["https://faucet.apothem.network"],"nativeCurrency":{"name":"XinFin","symbol":"TXDC","decimals":18},"infoURL":"https://xinfin.org","shortName":"txdc","chainId":51,"networkId":51,"icon":"xdc","explorers":[{"name":"xdcscan","url":"https://apothem.xinfinscan.com","icon":"blocksscan","standard":"EIP3091"},{"name":"blocksscan","url":"https://apothem.blocksscan.io","icon":"blocksscan","standard":"EIP3091"}]},{"name":"CoinEx Smart Chain Mainnet","chain":"CSC","rpc":["https://rpc.coinex.net"],"faucets":[],"nativeCurrency":{"name":"CoinEx Chain Native Token","symbol":"cet","decimals":18},"infoURL":"https://www.coinex.org/","shortName":"cet","chainId":52,"networkId":52,"explorers":[{"name":"coinexscan","url":"https://www.coinex.net","standard":"none"}]},{"name":"CoinEx Smart Chain Testnet","chain":"CSC","rpc":["https://testnet-rpc.coinex.net/"],"faucets":[],"nativeCurrency":{"name":"CoinEx Chain Test Native Token","symbol":"cett","decimals":18},"infoURL":"https://www.coinex.org/","shortName":"tcet","chainId":53,"networkId":53,"slip44":1,"explorers":[{"name":"coinexscan","url":"https://testnet.coinex.net","standard":"none"}]},{"name":"Openpiece Mainnet","chain":"OPENPIECE","icon":"openpiece","rpc":["https://mainnet.openpiece.io"],"faucets":[],"nativeCurrency":{"name":"Belly","symbol":"BELLY","decimals":18},"infoURL":"https://cryptopiece.online","shortName":"OP","chainId":54,"networkId":54,"explorers":[{"name":"Belly Scan","url":"https://bellyscan.com","standard":"none"}]},{"name":"Zyx Mainnet","chain":"ZYX","rpc":["https://rpc-1.zyx.network/","https://rpc-2.zyx.network/","https://rpc-3.zyx.network/","https://rpc-4.zyx.network/","https://rpc-5.zyx.network/","https://rpc-6.zyx.network/"],"faucets":[],"nativeCurrency":{"name":"Zyx","symbol":"ZYX","decimals":18},"infoURL":"https://zyx.network/","shortName":"ZYX","chainId":55,"networkId":55,"explorers":[{"name":"zyxscan","url":"https://zyxscan.com","standard":"none"}]},{"name":"BNB Smart Chain Mainnet","chain":"BSC","rpc":["https://bsc-dataseed1.bnbchain.org","https://bsc-dataseed2.bnbchain.org","https://bsc-dataseed3.bnbchain.org","https://bsc-dataseed4.bnbchain.org","https://bsc-dataseed1.defibit.io","https://bsc-dataseed2.defibit.io","https://bsc-dataseed3.defibit.io","https://bsc-dataseed4.defibit.io","https://bsc-dataseed1.ninicoin.io","https://bsc-dataseed2.ninicoin.io","https://bsc-dataseed3.ninicoin.io","https://bsc-dataseed4.ninicoin.io","https://bsc-rpc.publicnode.com","wss://bsc-rpc.publicnode.com","wss://bsc-ws-node.nariox.org"],"faucets":[],"nativeCurrency":{"name":"BNB Chain Native Token","symbol":"BNB","decimals":18},"infoURL":"https://www.bnbchain.org/en","shortName":"bnb","chainId":56,"networkId":56,"slip44":714,"explorers":[{"name":"bscscan","url":"https://bscscan.com","standard":"EIP3091"},{"name":"dexguru","url":"https://bnb.dex.guru","icon":"dexguru","standard":"EIP3091"}]},{"name":"Syscoin Mainnet","chain":"SYS","rpc":["https://rpc.syscoin.org","https://rpc.ankr.com/syscoin/${ANKR_API_KEY}","https://syscoin.public-rpc.com","wss://rpc.syscoin.org/wss","https://syscoin-evm.publicnode.com","wss://syscoin-evm.publicnode.com"],"faucets":["https://faucet.syscoin.org"],"nativeCurrency":{"name":"Syscoin","symbol":"SYS","decimals":18},"infoURL":"https://www.syscoin.org","shortName":"sys","chainId":57,"networkId":57,"explorers":[{"name":"Syscoin Block Explorer","url":"https://explorer.syscoin.org","standard":"EIP3091"}]},{"name":"Ontology Mainnet","chain":"Ontology","icon":"ontology","rpc":["http://dappnode1.ont.io:20339","http://dappnode2.ont.io:20339","http://dappnode3.ont.io:20339","http://dappnode4.ont.io:20339","https://dappnode1.ont.io:10339","https://dappnode2.ont.io:10339","https://dappnode3.ont.io:10339","https://dappnode4.ont.io:10339"],"faucets":[],"nativeCurrency":{"name":"ONG","symbol":"ONG","decimals":18},"infoURL":"https://ont.io/","shortName":"OntologyMainnet","chainId":58,"networkId":58,"explorers":[{"name":"explorer","url":"https://explorer.ont.io","standard":"EIP3091"}]},{"name":"EOS EVM Legacy","chain":"EOS","rpc":["https://api.eosargentina.io"],"faucets":[],"nativeCurrency":{"name":"EOS","symbol":"EOS","decimals":18},"infoURL":"https://eosargentina.io","shortName":"eos-legacy","chainId":59,"networkId":59,"explorers":[],"status":"deprecated"},{"name":"GoChain","chain":"GO","rpc":["https://rpc.gochain.io"],"faucets":[],"nativeCurrency":{"name":"GoChain Ether","symbol":"GO","decimals":18},"infoURL":"https://gochain.io","shortName":"go","chainId":60,"networkId":60,"slip44":6060,"explorers":[{"name":"GoChain Explorer","url":"https://explorer.gochain.io","standard":"EIP3091"}]},{"name":"Ethereum Classic","title":"Ethereum Classic Mainnet","status":"active","chain":"ETC","icon":"ethereumclassic","rpc":["https://etc.rivet.link","https://besu-at.etc-network.info","https://besu-de.etc-network.info","https://geth-at.etc-network.info","https://geth-de.etc-network.info","https://etc.etcdesktop.com","https://rpc.etcinscribe.com","https://etc.mytokenpocket.vip"],"features":[{"name":"EIP155"}],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETC","decimals":18},"infoURL":"https://ethereumclassic.org","shortName":"etc","chainId":61,"networkId":1,"slip44":61,"explorers":[{"name":"blockscout-ethereum-classic","url":"https://etc.blockscout.com","standard":"EIP3091"},{"name":"etcnetworkinfo-blockscout-ethereum-classic","url":"https://explorer-blockscout.etc-network.info","standard":"none"},{"name":"etcnetworkinfo-alethio-ethereum-classic","url":"https://explorer-alethio.etc-network.info","standard":"none"},{"name":"etcnetworkinfo-expedition-ethereum-classic","url":"https://explorer-expedition.etc-network.info","standard":"none"},{"name":"hebeblock-ethereum-classic","url":"https://etcerscan.com","standard":"EIP3091"},{"name":"oklink-ethereum-classic","url":"https://www.oklink.com/etc","standard":"EIP3091"},{"name":"tokenview-ethereum-classic","url":"https://etc.tokenview.io","standard":"EIP3091"}]},{"name":"Morden Testnet","title":"Ethereum Classic Morden Testnet","status":"deprecated","chain":"ETC","icon":"ethereumclassictestnet","rpc":[],"faucets":[],"nativeCurrency":{"name":"Morden Ether","symbol":"TETC","decimals":18},"infoURL":"https://ethereumclassic.org/development/testnets","shortName":"tetc","chainId":62,"networkId":2,"slip44":1},{"name":"Mordor Testnet","title":"Ethereum Classic Mordor Testnet","status":"active","chain":"ETC","icon":"ethereumclassictestnet","rpc":["https://rpc.mordor.etccooperative.org","https://geth-mordor.etc-network.info"],"features":[{"name":"EIP155"}],"faucets":["https://easy.hebeswap.com/#/faucet","https://faucet.mordortest.net"],"nativeCurrency":{"name":"Mordor Ether","symbol":"METC","decimals":18},"infoURL":"https://ethereumclassic.org/development/testnets","shortName":"metc","chainId":63,"networkId":7,"slip44":1,"explorers":[{"name":"blockscout-mordor","url":"https://etc-mordor.blockscout.com","standard":"EIP3091"},{"name":"etcnetworkinfo-expedition-mordor","url":"https://explorer-expedition.etc-network.info/?network=Ethereum+Classic+at+etc-network.info+GETH+Mordor","standard":"none"}]},{"name":"Ellaism","chain":"ELLA","rpc":["https://jsonrpc.ellaism.org"],"faucets":[],"nativeCurrency":{"name":"Ellaism Ether","symbol":"ELLA","decimals":18},"infoURL":"https://ellaism.org","shortName":"ellaism","chainId":64,"networkId":64,"slip44":163},{"name":"OKExChain Testnet","chain":"okexchain","rpc":["https://exchaintestrpc.okex.org"],"faucets":["https://www.okex.com/drawdex"],"nativeCurrency":{"name":"OKExChain Global Utility Token in testnet","symbol":"OKT","decimals":18},"infoURL":"https://www.okex.com/okexchain","shortName":"tokt","chainId":65,"networkId":65,"slip44":1,"explorers":[{"name":"OKLink","url":"https://www.oklink.com/okexchain-test","standard":"EIP3091"}]},{"name":"OKXChain Mainnet","chain":"okxchain","rpc":["https://exchainrpc.okex.org","https://okc-mainnet.gateway.pokt.network/v1/lb/6275309bea1b320039c893ff"],"faucets":[],"nativeCurrency":{"name":"OKXChain Global Utility Token","symbol":"OKT","decimals":18},"infoURL":"https://www.okex.com/okc","shortName":"okt","chainId":66,"networkId":66,"explorers":[{"name":"OKLink","url":"https://www.oklink.com/en/okc","standard":"EIP3091"}]},{"name":"DBChain Testnet","chain":"DBM","rpc":["http://test-rpc.dbmbp.com"],"faucets":[],"nativeCurrency":{"name":"DBChain Testnet","symbol":"DBM","decimals":18},"infoURL":"http://test.dbmbp.com","shortName":"dbm","chainId":67,"networkId":67,"slip44":1},{"name":"SoterOne Mainnet","chain":"SOTER","rpc":["https://rpc.soter.one"],"faucets":[],"nativeCurrency":{"name":"SoterOne Mainnet Ether","symbol":"SOTER","decimals":18},"infoURL":"https://www.soterone.com","shortName":"SO1","chainId":68,"networkId":68},{"name":"Optimism Kovan","title":"Optimism Testnet Kovan","chain":"ETH","rpc":["https://kovan.optimism.io/"],"faucets":["http://fauceth.komputing.org?chain=69&address=${ADDRESS}"],"nativeCurrency":{"name":"Kovan Ether","symbol":"ETH","decimals":18},"explorers":[{"name":"etherscan","url":"https://kovan-optimistic.etherscan.io","standard":"EIP3091"}],"infoURL":"https://optimism.io","shortName":"okov","chainId":69,"networkId":69,"slip44":1},{"name":"Hoo Smart Chain","chain":"HSC","rpc":["https://http-mainnet.hoosmartchain.com","https://http-mainnet2.hoosmartchain.com","wss://ws-mainnet.hoosmartchain.com","wss://ws-mainnet2.hoosmartchain.com"],"faucets":[],"nativeCurrency":{"name":"Hoo Smart Chain Native Token","symbol":"HOO","decimals":18},"infoURL":"https://www.hoosmartchain.com","shortName":"hsc","chainId":70,"networkId":70,"slip44":1170,"explorers":[{"name":"hooscan","url":"https://www.hooscan.com","standard":"EIP3091"}]},{"name":"Conflux eSpace (Testnet)","chain":"Conflux","rpc":["https://evmtestnet.confluxrpc.com"],"faucets":["https://faucet.confluxnetwork.org"],"nativeCurrency":{"name":"CFX","symbol":"CFX","decimals":18},"infoURL":"https://confluxnetwork.org","shortName":"cfxtest","chainId":71,"networkId":71,"icon":"conflux","explorers":[{"name":"Conflux Scan","url":"https://evmtestnet.confluxscan.net","standard":"none"}]},{"name":"DxChain Testnet","chain":"DxChain","rpc":["https://testnet-http.dxchain.com"],"faucets":["https://faucet.dxscan.io"],"nativeCurrency":{"name":"DxChain Testnet","symbol":"DX","decimals":18},"infoURL":"https://testnet.dxscan.io/","shortName":"dxc","chainId":72,"networkId":72,"slip44":1},{"name":"FNCY","chain":"FNCY","rpc":["https://fncy-seed1.fncy.world"],"faucets":["https://faucet-testnet.fncy.world"],"nativeCurrency":{"name":"FNCY","symbol":"FNCY","decimals":18},"infoURL":"https://fncyscan.fncy.world","shortName":"FNCY","chainId":73,"networkId":73,"icon":"fncy","explorers":[{"name":"fncy scan","url":"https://fncyscan.fncy.world","icon":"fncy","standard":"EIP3091"}]},{"name":"IDChain Mainnet","chain":"IDChain","rpc":["https://idchain.one/rpc/","wss://idchain.one/ws/"],"faucets":[],"nativeCurrency":{"name":"EIDI","symbol":"EIDI","decimals":18},"infoURL":"https://idchain.one/begin/","shortName":"idchain","chainId":74,"networkId":74,"icon":"idchain","explorers":[{"name":"explorer","url":"https://explorer.idchain.one","standard":"EIP3091"}]},{"name":"Decimal Smart Chain Mainnet","chain":"DSC","rpc":["https://node.decimalchain.com/web3/","https://node1-mainnet.decimalchain.com/web3/","https://node2-mainnet.decimalchain.com/web3/","https://node3-mainnet.decimalchain.com/web3/","https://node4-mainnet.decimalchain.com/web3/"],"faucets":[],"nativeCurrency":{"name":"Decimal","symbol":"DEL","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://decimalchain.com","shortName":"DSC","chainId":75,"networkId":75,"icon":"dsc","explorers":[{"name":"DSC Explorer Mainnet","url":"https://explorer.decimalchain.com","icon":"dsc","standard":"EIP3091"}]},{"name":"Mix","chain":"MIX","rpc":["https://rpc2.mix-blockchain.org:8647"],"faucets":[],"nativeCurrency":{"name":"Mix Ether","symbol":"MIX","decimals":18},"infoURL":"https://mix-blockchain.org","shortName":"mix","chainId":76,"networkId":76,"slip44":76},{"name":"POA Network Sokol","chain":"POA","rpc":["https://sokol.poa.network","wss://sokol.poa.network/wss","ws://sokol.poa.network:8546"],"faucets":[],"nativeCurrency":{"name":"POA Sokol Ether","symbol":"SPOA","decimals":18},"infoURL":"https://poa.network","shortName":"spoa","chainId":77,"networkId":77,"explorers":[{"name":"blockscout","url":"https://blockscout.com/poa/sokol","icon":"blockscout","standard":"EIP3091"}]},{"name":"PrimusChain mainnet","chain":"PC","rpc":["https://ethnode.primusmoney.com/mainnet"],"faucets":[],"nativeCurrency":{"name":"Primus Ether","symbol":"PETH","decimals":18},"infoURL":"https://primusmoney.com","shortName":"primuschain","chainId":78,"networkId":78},{"name":"Zenith Mainnet","chain":"Zenith","rpc":["https://dataserver-us-1.zenithchain.co/","https://dataserver-asia-3.zenithchain.co/","https://dataserver-asia-4.zenithchain.co/","https://dataserver-asia-2.zenithchain.co/","https://dataserver-asia-5.zenithchain.co/","https://dataserver-asia-6.zenithchain.co/","https://dataserver-asia-7.zenithchain.co/"],"faucets":[],"nativeCurrency":{"name":"ZENITH","symbol":"ZENITH","decimals":18},"infoURL":"https://www.zenithchain.co/","chainId":79,"networkId":79,"shortName":"zenith","explorers":[{"name":"zenith scan","url":"https://scan.zenithchain.co","standard":"EIP3091"}]},{"name":"GeneChain","chain":"GeneChain","rpc":["https://rpc.genechain.io"],"faucets":[],"nativeCurrency":{"name":"RNA","symbol":"RNA","decimals":18},"infoURL":"https://scan.genechain.io/","shortName":"GeneChain","chainId":80,"networkId":80,"explorers":[{"name":"GeneChain Scan","url":"https://scan.genechain.io","standard":"EIP3091"}]},{"name":"Japan Open Chain Mainnet","chain":"JOC","rpc":["https://rpc-1.japanopenchain.org:8545","https://rpc-2.japanopenchain.org:8545"],"faucets":[],"nativeCurrency":{"name":"Japan Open Chain Token","symbol":"JOC","decimals":18},"infoURL":"https://www.japanopenchain.org/","shortName":"joc","chainId":81,"networkId":81,"icon":"joc","explorers":[{"name":"Block Explorer","url":"https://explorer.japanopenchain.org","standard":"EIP3091","icon":"joc"}],"redFlags":["reusedChainId"]},{"name":"Meter Mainnet","chain":"METER","rpc":["https://rpc.meter.io"],"faucets":["https://faucet.meter.io"],"nativeCurrency":{"name":"Meter","symbol":"MTR","decimals":18},"infoURL":"https://www.meter.io","shortName":"Meter","chainId":82,"networkId":82,"explorers":[{"name":"Meter Mainnet Scan","url":"https://scan.meter.io","standard":"EIP3091"}]},{"name":"Meter Testnet","chain":"METER Testnet","rpc":["https://rpctest.meter.io"],"faucets":["https://faucet-warringstakes.meter.io"],"nativeCurrency":{"name":"Meter","symbol":"MTR","decimals":18},"infoURL":"https://www.meter.io","shortName":"MeterTest","chainId":83,"networkId":83,"slip44":1,"explorers":[{"name":"Meter Testnet Scan","url":"https://scan-warringstakes.meter.io","standard":"EIP3091"}]},{"name":"Linqto Devnet","chain":"LNQ","rpc":["https://linqto-dev.com"],"faucets":[],"nativeCurrency":{"name":"XRP","symbol":"XRP","decimals":18},"infoURL":"https://linqto.com","shortName":"linqto-devnet","chainId":84,"networkId":84,"explorers":[{"name":"Linqto Devnet Explorer","url":"https://explorer.linqto-dev.com","standard":"EIP3091"}]},{"name":"GateChain Testnet","chainId":85,"shortName":"gttest","chain":"GTTEST","networkId":85,"slip44":1,"nativeCurrency":{"name":"GateToken","symbol":"GT","decimals":18},"rpc":["https://testnet.gatenode.cc"],"faucets":["https://www.gatescan.org/testnet/faucet"],"explorers":[{"name":"GateScan","url":"https://www.gatescan.org/testnet","standard":"EIP3091"}],"infoURL":"https://www.gatechain.io"},{"name":"GateChain Mainnet","chainId":86,"shortName":"gt","chain":"GT","networkId":86,"nativeCurrency":{"name":"GateToken","symbol":"GT","decimals":18},"rpc":["https://evm.gatenode.cc"],"faucets":["https://www.gatescan.org/faucet"],"explorers":[{"name":"GateScan","url":"https://www.gatescan.org","standard":"EIP3091"}],"infoURL":"https://www.gatechain.io"},{"name":"Nova Network","chain":"NNW","icon":"novanetwork","rpc":["https://connect.novanetwork.io","https://0x57.redjackstudio.com","https://rpc.novanetwork.io:9070"],"faucets":[],"nativeCurrency":{"name":"Supernova","symbol":"SNT","decimals":18},"infoURL":"https://novanetwork.io","shortName":"nnw","chainId":87,"networkId":87,"explorers":[{"name":"novanetwork","url":"https://explorer.novanetwork.io","standard":"EIP3091"}]},{"name":"Viction","chain":"Viction","rpc":["https://rpc.viction.xyz"],"faucets":[],"nativeCurrency":{"name":"Viction","symbol":"VIC","decimals":18},"infoURL":"https://viction.xyz","shortName":"vic","chainId":88,"networkId":88,"slip44":889},{"name":"Viction Testnet","chain":"Viction","rpc":["https://rpc-testnet.viction.xyz"],"faucets":[],"nativeCurrency":{"name":"Viction","symbol":"VIC","decimals":18},"infoURL":"https://viction.xyz","shortName":"vict","chainId":89,"networkId":89,"slip44":1},{"name":"Garizon Stage0","chain":"GAR","icon":"garizon","rpc":["https://s0.garizon.net/rpc"],"faucets":[],"nativeCurrency":{"name":"Garizon","symbol":"GAR","decimals":18},"infoURL":"https://garizon.com","shortName":"gar-s0","chainId":90,"networkId":90,"explorers":[{"name":"explorer","url":"https://explorer.garizon.com","icon":"garizon","standard":"EIP3091"}]},{"name":"Garizon Stage1","chain":"GAR","icon":"garizon","rpc":["https://s1.garizon.net/rpc"],"faucets":[],"nativeCurrency":{"name":"Garizon","symbol":"GAR","decimals":18},"infoURL":"https://garizon.com","shortName":"gar-s1","chainId":91,"networkId":91,"explorers":[{"name":"explorer","url":"https://explorer.garizon.com","icon":"garizon","standard":"EIP3091"}],"parent":{"chain":"eip155-90","type":"shard"}},{"name":"Garizon Stage2","chain":"GAR","icon":"garizon","rpc":["https://s2.garizon.net/rpc"],"faucets":[],"nativeCurrency":{"name":"Garizon","symbol":"GAR","decimals":18},"infoURL":"https://garizon.com","shortName":"gar-s2","chainId":92,"networkId":92,"explorers":[{"name":"explorer","url":"https://explorer.garizon.com","icon":"garizon","standard":"EIP3091"}],"parent":{"chain":"eip155-90","type":"shard"}},{"name":"Garizon Stage3","chain":"GAR","icon":"garizon","rpc":["https://s3.garizon.net/rpc"],"faucets":[],"nativeCurrency":{"name":"Garizon","symbol":"GAR","decimals":18},"infoURL":"https://garizon.com","shortName":"gar-s3","chainId":93,"networkId":93,"explorers":[{"name":"explorer","url":"https://explorer.garizon.com","icon":"garizon","standard":"EIP3091"}],"parent":{"chain":"eip155-90","type":"shard"}},{"name":"SwissDLT","chain":"SDLT","rpc":["https://rpc.swissdlt.ch"],"faucets":[],"nativeCurrency":{"name":"BCTS","symbol":"BCTS","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://bcts.ch","shortName":"sdlt","chainId":94,"networkId":94,"icon":"bcts","explorers":[{"name":"SwissDLT Explorer","url":"https://explorer.swissdlt.ch","icon":"bcts","standard":"EIP3091"}]},{"name":"CamDL Mainnet","chain":"CADL","rpc":["https://rpc1.camdl.gov.kh/"],"faucets":["https://faucet.camdl.gov.kh/"],"nativeCurrency":{"name":"CADL","symbol":"CADL","decimals":18},"features":[{"name":"EIP155"}],"infoURL":"https://camdl.gov.kh/","shortName":"camdl","chainId":95,"networkId":95,"redFlags":["reusedChainId"],"icon":"camdl","explorers":[{"name":"CamDL Block Explorer","url":"https://explorer.camdl.gov.kh","standard":"EIP3091"}],"status":"active"},{"name":"Bitkub Chain","chain":"BKC","icon":"bkc","rpc":["https://rpc.bitkubchain.io","wss://wss.bitkubchain.io"],"faucets":[],"nativeCurrency":{"name":"Bitkub Coin","symbol":"KUB","decimals":18},"infoURL":"https://www.bitkubchain.com/","shortName":"bkc","chainId":96,"networkId":96,"explorers":[{"name":"Bitkub Chain Explorer","url":"https://bkcscan.com","standard":"none","icon":"bkc"}],"redFlags":["reusedChainId"]},{"name":"BNB Smart Chain Testnet","chain":"BSC","rpc":["https://data-seed-prebsc-1-s1.bnbchain.org:8545","https://data-seed-prebsc-2-s1.bnbchain.org:8545","https://data-seed-prebsc-1-s2.bnbchain.org:8545","https://data-seed-prebsc-2-s2.bnbchain.org:8545","https://data-seed-prebsc-1-s3.bnbchain.org:8545","https://data-seed-prebsc-2-s3.bnbchain.org:8545","https://bsc-testnet-rpc.publicnode.com","wss://bsc-testnet-rpc.publicnode.com"],"faucets":["https://testnet.bnbchain.org/faucet-smart"],"nativeCurrency":{"name":"BNB Chain Native Token","symbol":"tBNB","decimals":18},"infoURL":"https://www.bnbchain.org/en","shortName":"bnbt","chainId":97,"networkId":97,"slip44":1,"explorers":[{"name":"bscscan-testnet","url":"https://testnet.bscscan.com","standard":"EIP3091"}]},{"name":"Six Protocol","chain":"SIXNET","icon":"six","rpc":["https://sixnet-rpc-evm.sixprotocol.net"],"faucets":[],"nativeCurrency":{"name":"SIX evm token","symbol":"SIX","decimals":18},"infoURL":"https://six.network/","shortName":"six","chainId":98,"networkId":98,"explorers":[{"name":"SIX Scan","url":"https://sixscan.io/sixnet","standard":"none","icon":"six"}]},{"name":"POA Network Core","chain":"POA","rpc":["https://core.poa.network"],"faucets":[],"nativeCurrency":{"name":"POA Network Core Ether","symbol":"POA","decimals":18},"infoURL":"https://poa.network","shortName":"poa","chainId":99,"networkId":99,"slip44":178,"explorers":[{"name":"blockscout","url":"https://blockscout.com/poa/core","icon":"blockscout","standard":"EIP3091"}]},{"name":"Gnosis","chain":"GNO","icon":"gnosis","rpc":["https://rpc.gnosischain.com","https://rpc.gnosis.gateway.fm","https://rpc.ankr.com/gnosis","https://gnosischain-rpc.gateway.pokt.network","https://gnosis-mainnet.public.blastapi.io","https://gnosis.api.onfinality.io/public","https://gnosis.blockpi.network/v1/rpc/public","https://web3endpoints.com/gnosischain-mainnet","https://gnosis.oat.farm","wss://rpc.gnosischain.com/wss","https://gnosis-rpc.publicnode.com","wss://gnosis-rpc.publicnode.com"],"faucets":["https://gnosisfaucet.com","https://stakely.io/faucet/gnosis-chain-xdai","https://faucet.prussia.dev/xdai"],"nativeCurrency":{"name":"xDAI","symbol":"XDAI","decimals":18},"infoURL":"https://docs.gnosischain.com","shortName":"gno","chainId":100,"networkId":100,"slip44":700,"explorers":[{"name":"gnosisscan","url":"https://gnosisscan.io","standard":"EIP3091"},{"name":"blockscout","url":"https://gnosis.blockscout.com","icon":"blockscout","standard":"EIP3091"},{"name":"dexguru","url":"https://gnosis.dex.guru","icon":"dexguru","standard":"EIP3091"}]},{"name":"EtherInc","chain":"ETI","rpc":["https://api.einc.io/jsonrpc/mainnet"],"faucets":[],"nativeCurrency":{"name":"EtherInc Ether","symbol":"ETI","decimals":18},"infoURL":"https://einc.io","shortName":"eti","chainId":101,"networkId":1,"slip44":464},{"name":"Web3Games Testnet","chain":"Web3Games","icon":"web3games","rpc":["https://testnet-rpc-0.web3games.org/evm","https://testnet-rpc-1.web3games.org/evm","https://testnet-rpc-2.web3games.org/evm"],"faucets":[],"nativeCurrency":{"name":"Web3Games","symbol":"W3G","decimals":18},"infoURL":"https://web3games.org/","shortName":"tw3g","chainId":102,"networkId":102,"slip44":1},{"name":"Worldland Mainnet","chain":"Worldland","icon":"worldland","rpc":["https://seoul.worldland.foundation"],"faucets":[],"nativeCurrency":{"name":"Worldland","symbol":"WLC","decimals":18},"infoURL":"https://worldland.foundation","shortName":"WLC","chainId":103,"networkId":103,"explorers":[{"name":"Worldland Explorer","url":"https://scan.worldland.foundation","standard":"EIP3091"}]},{"name":"Kaiba Lightning Chain Testnet","chain":"tKLC","rpc":["https://klc.live/"],"faucets":[],"nativeCurrency":{"name":"Kaiba Testnet Token","symbol":"tKAIBA","decimals":18},"infoURL":"https://kaibadefi.com","shortName":"tklc","chainId":104,"networkId":104,"slip44":1,"icon":"kaiba","explorers":[{"name":"kaibascan","url":"https://kaibascan.io","icon":"kaibascan","standard":"EIP3091"}]},{"name":"Web3Games Devnet","chain":"Web3Games","icon":"web3games","rpc":["https://devnet.web3games.org/evm"],"faucets":[],"nativeCurrency":{"name":"Web3Games","symbol":"W3G","decimals":18},"infoURL":"https://web3games.org/","shortName":"dw3g","chainId":105,"networkId":105,"explorers":[{"name":"Web3Games Explorer","url":"https://explorer-devnet.web3games.org","standard":"none"}]},{"name":"Velas EVM Mainnet","chain":"Velas","icon":"velas","rpc":["https://evmexplorer.velas.com/rpc","https://explorer.velas.com/rpc"],"faucets":[],"nativeCurrency":{"name":"Velas","symbol":"VLX","decimals":18},"infoURL":"https://velas.com","shortName":"vlx","chainId":106,"networkId":106,"explorers":[{"name":"Velas Explorer","url":"https://evmexplorer.velas.com","standard":"EIP3091"}]},{"name":"Nebula Testnet","chain":"NTN","icon":"nebulatestnet","rpc":["https://testnet.rpc.novanetwork.io"],"faucets":["https://faucet.novanetwork.io"],"nativeCurrency":{"name":"Nebula X","symbol":"NBX","decimals":18},"infoURL":"https://novanetwork.io","shortName":"ntn","chainId":107,"networkId":107,"slip44":1,"explorers":[{"name":"nebulatestnet","url":"https://explorer.novanetwork.io","standard":"EIP3091"}]},{"name":"ThunderCore Mainnet","chain":"TT","rpc":["https://mainnet-rpc.thundercore.com","https://mainnet-rpc.thundertoken.net","https://mainnet-rpc.thundercore.io"],"faucets":[],"nativeCurrency":{"name":"ThunderCore Token","symbol":"TT","decimals":18},"infoURL":"https://thundercore.com","shortName":"TT","chainId":108,"networkId":108,"slip44":1001,"explorers":[{"name":"thundercore-viewblock","url":"https://viewblock.io/thundercore","standard":"EIP3091"}]},{"name":"Shibarium","chain":"Shibarium","icon":"shibarium","rpc":["https://www.shibrpc.com"],"faucets":[],"nativeCurrency":{"name":"BONE Shibarium","symbol":"BONE","decimals":18},"infoURL":"https://shibariumecosystem.com","shortName":"shibariumecosystem","chainId":109,"networkId":109,"explorers":[{"name":"shibariumscan","url":"https://www.shibariumscan.io","standard":"none"}]},{"name":"Proton Testnet","chain":"XPR","rpc":["https://protontestnet.greymass.com/"],"faucets":[],"nativeCurrency":{"name":"Proton","symbol":"XPR","decimals":4},"infoURL":"https://protonchain.com","shortName":"xpr","chainId":110,"networkId":110,"slip44":1},{"name":"EtherLite Chain","chain":"ETL","rpc":["https://rpc.etherlite.org"],"faucets":["https://etherlite.org/faucets"],"nativeCurrency":{"name":"EtherLite","symbol":"ETL","decimals":18},"infoURL":"https://etherlite.org","shortName":"ETL","chainId":111,"networkId":111,"icon":"etherlite"},{"name":"Coinbit Mainnet","chain":"Coinbit","rpc":["https://coinbit-rpc-mainnet.chain.sbcrypto.app"],"faucets":[],"nativeCurrency":{"name":"Gas IDR","symbol":"GIDR","decimals":18},"infoURL":"https://crypto.stockbit.com/","shortName":"coinbit","chainId":112,"networkId":112,"icon":"coinbit","explorers":[{"name":"blockscout","url":"https://coinbit-explorer.chain.sbcrypto.app","icon":"blockscout","standard":"EIP3091"}]},{"name":"Dehvo","chain":"Dehvo","rpc":["https://connect.dehvo.com","https://rpc.dehvo.com","https://rpc1.dehvo.com","https://rpc2.dehvo.com"],"faucets":["https://buy.dehvo.com"],"nativeCurrency":{"name":"Dehvo","symbol":"Deh","decimals":18},"infoURL":"https://dehvo.com","shortName":"deh","chainId":113,"networkId":113,"slip44":714,"explorers":[{"name":"Dehvo Explorer","url":"https://explorer.dehvo.com","standard":"EIP3091"}]},{"name":"Flare Testnet Coston2","chain":"FLR","icon":"coston2","rpc":["https://coston2-api.flare.network/ext/C/rpc","https://flare-testnet-coston2.rpc.thirdweb.com","https://flaretestnet-bundler.etherspot.io","https://01-gravelines-005-01.rpc.tatum.io/ext/bc/C/rpc","https://02-chicago-005-02.rpc.tatum.io/ext/bc/C/rpc","https://02-tokyo-005-03.rpc.tatum.io/ext/bc/C/rpc","https://coston2.enosys.global/ext/C/rpc"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":["https://faucet.flare.network"],"nativeCurrency":{"name":"Coston2 Flare","symbol":"C2FLR","decimals":18},"infoURL":"https://flare.network","shortName":"c2flr","chainId":114,"networkId":114,"slip44":1,"explorers":[{"name":"blockscout","url":"https://coston2-explorer.flare.network","standard":"EIP3091"},{"name":"flarescan","url":"https://coston2.testnet.flarescan.com","standard":"EIP3091"}]},{"name":"DeBank Testnet(Deprecated)","chain":"DeBank","rpc":[],"faucets":[],"icon":"debank","nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"status":"deprecated","infoURL":"https://debank.com","shortName":"debank-testnet","chainId":115,"networkId":115,"slip44":1,"explorers":[]},{"name":"DeBank Mainnet","chain":"DeBank","rpc":[],"faucets":[],"icon":"debank","nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"status":"deprecated","infoURL":"https://debank.com","shortName":"debank-mainnet","chainId":116,"networkId":116,"explorers":[]},{"name":"Uptick Mainnet","chain":"Uptick","rpc":["https://json-rpc.uptick.network"],"faucets":[],"nativeCurrency":{"name":"Uptick","symbol":"UPTICK","decimals":18},"infoURL":"https://www.uptick.network","shortName":"auptick","chainId":117,"networkId":117,"icon":"uptick","explorers":[{"name":"Uptick Explorer","url":"https://evm-explorer.uptick.network","icon":"uptick","standard":"none"}]},{"name":"Arcology Testnet","chain":"Arcology","icon":"acolicon","rpc":["https://testnet.arcology.network/rpc"],"faucets":[],"nativeCurrency":{"name":"Arcology Coin","symbol":"Acol","decimals":18},"infoURL":"https://arcology.network/","shortName":"arcology","chainId":118,"networkId":118,"slip44":1,"explorers":[{"name":"arcology","url":"https://testnet.arcology.network/explorer","standard":"none"}]},{"name":"ENULS Mainnet","chain":"ENULS","rpc":["https://evmapi.nuls.io","https://evmapi2.nuls.io"],"faucets":[],"nativeCurrency":{"name":"NULS","symbol":"NULS","decimals":18},"infoURL":"https://nuls.io","shortName":"enuls","chainId":119,"networkId":119,"icon":"enuls","explorers":[{"name":"enulsscan","url":"https://evmscan.nuls.io","icon":"enuls","standard":"EIP3091"}]},{"name":"ENULS Testnet","chain":"ENULS","rpc":["https://beta.evmapi.nuls.io","https://beta.evmapi2.nuls.io"],"faucets":["http://faucet.nuls.io"],"nativeCurrency":{"name":"NULS","symbol":"NULS","decimals":18},"infoURL":"https://nuls.io","shortName":"enulst","chainId":120,"networkId":120,"slip44":1,"icon":"enuls","explorers":[{"name":"enulsscan","url":"https://beta.evmscan.nuls.io","icon":"enuls","standard":"EIP3091"}]},{"name":"Realchain Mainnet","chain":"REAL","rpc":["https://rcl-dataseed1.rclsidechain.com","https://rcl-dataseed2.rclsidechain.com","https://rcl-dataseed3.rclsidechain.com","https://rcl-dataseed4.rclsidechain.com","wss://rcl-dataseed1.rclsidechain.com/v1/","wss://rcl-dataseed2.rclsidechain.com/v1/","wss://rcl-dataseed3.rclsidechain.com/v1/","wss://rcl-dataseed4.rclsidechain.com/v1/"],"faucets":[],"nativeCurrency":{"name":"Realchain","symbol":"REAL","decimals":18},"infoURL":"https://www.rclsidechain.com/","shortName":"REAL","chainId":121,"networkId":121,"slip44":714,"explorers":[{"name":"realscan","url":"https://rclscan.com","standard":"EIP3091"}]},{"name":"Fuse Mainnet","chain":"FUSE","rpc":["https://rpc.fuse.io","https://fuse.drpc.org","wss://fuse.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Fuse","symbol":"FUSE","decimals":18},"infoURL":"https://fuse.io/","shortName":"fuse","chainId":122,"networkId":122,"icon":"fuse","explorers":[{"name":"blockscout","url":"https://explorer.fuse.io","icon":"blockscout","standard":"EIP3091"}]},{"name":"Fuse Sparknet","chain":"fuse","rpc":["https://rpc.fusespark.io"],"faucets":["https://get.fusespark.io"],"nativeCurrency":{"name":"Spark","symbol":"SPARK","decimals":18},"infoURL":"https://docs.fuse.io/general/fuse-network-blockchain/fuse-testnet","shortName":"spark","chainId":123,"networkId":123},{"name":"Decentralized Web Mainnet","shortName":"dwu","chain":"DWU","chainId":124,"networkId":124,"rpc":["https://decentralized-web.tech/dw_rpc.php"],"faucets":[],"infoURL":"https://decentralized-web.tech/dw_chain.php","nativeCurrency":{"name":"Decentralized Web Utility","symbol":"DWU","decimals":18}},{"name":"OYchain Testnet","chain":"OYchain","rpc":["https://rpc.testnet.oychain.io"],"faucets":["https://faucet.oychain.io"],"nativeCurrency":{"name":"OYchain Token","symbol":"OY","decimals":18},"infoURL":"https://www.oychain.io","shortName":"OYchainTestnet","chainId":125,"networkId":125,"slip44":1,"explorers":[{"name":"OYchain Testnet Explorer","url":"https://explorer.testnet.oychain.io","standard":"none"}]},{"name":"OYchain Mainnet","chain":"OYchain","icon":"oychain","rpc":["https://rpc.mainnet.oychain.io"],"faucets":[],"nativeCurrency":{"name":"OYchain Token","symbol":"OY","decimals":18},"infoURL":"https://www.oychain.io","shortName":"OYchainMainnet","chainId":126,"networkId":126,"slip44":126,"explorers":[{"name":"OYchain Mainnet Explorer","url":"https://explorer.oychain.io","standard":"none"}]},{"name":"Factory 127 Mainnet","chain":"FETH","rpc":[],"faucets":[],"nativeCurrency":{"name":"Factory 127 Token","symbol":"FETH","decimals":18},"infoURL":"https://www.factory127.com","shortName":"feth","chainId":127,"networkId":127,"slip44":127},{"name":"Huobi ECO Chain Mainnet","chain":"Heco","rpc":["https://http-mainnet.hecochain.com","wss://ws-mainnet.hecochain.com"],"faucets":[],"nativeCurrency":{"name":"Huobi ECO Chain Native Token","symbol":"HT","decimals":18},"infoURL":"https://www.hecochain.com","shortName":"heco","chainId":128,"networkId":128,"slip44":1010,"explorers":[{"name":"hecoinfo","url":"https://hecoinfo.com","standard":"EIP3091"}]},{"name":"Innovator Chain","chain":"INNOVATOR","rpc":["https://rpc.innovatorchain.com"],"faucets":[],"nativeCurrency":{"name":"INOV8","symbol":"INOV8","decimals":18},"features":[],"infoURL":"https://innovatorchain.com","shortName":"Innovator","chainId":129,"networkId":129,"icon":"innovator","explorers":[{"name":"Innovator Explorer","url":"https://evm.innovatorchain.com","icon":"blockscout","standard":"none"}]},{"name":"Engram Testnet","chain":"tGRAM","icon":"engram","rpc":["https://tokioswift.engram.tech","https://tokio-archive.engram.tech"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Engram Tokio Testnet","symbol":"tGRAM","decimals":18},"infoURL":"https://engramnet.io","shortName":"tgram","chainId":131,"networkId":131,"explorers":[{"name":"blockscout","url":"https://tokioscan-v2.engram.tech","icon":"engram","standard":"EIP3091"}]},{"name":"iExec Sidechain","chain":"Bellecour","icon":"rlc","rpc":["https://bellecour.iex.ec"],"faucets":[],"nativeCurrency":{"name":"xRLC","symbol":"xRLC","decimals":18},"infoURL":"https://iex.ec","shortName":"rlc","chainId":134,"networkId":134,"explorers":[{"name":"blockscout","url":"https://blockscout.bellecour.iex.ec","icon":"blockscout","standard":"EIP3091"}]},{"name":"Alyx Chain Testnet","chain":"Alyx Chain Testnet","rpc":["https://testnet-rpc.alyxchain.com"],"faucets":["https://faucet.alyxchain.com"],"nativeCurrency":{"name":"Alyx Testnet Native Token","symbol":"ALYX","decimals":18},"infoURL":"https://www.alyxchain.com","shortName":"AlyxTestnet","chainId":135,"networkId":135,"slip44":1,"explorers":[{"name":"alyx testnet scan","url":"https://testnet.alyxscan.com","standard":"EIP3091"}],"icon":"alyx"},{"name":"Deamchain Mainnet","chain":"Deamchain","icon":"deam","rpc":["https://mainnet.deamchain.com"],"faucets":[],"nativeCurrency":{"name":"Deamchain Native Token","symbol":"DEAM","decimals":18},"infoURL":"https://deamchain.com","shortName":"deam","chainId":136,"networkId":136,"explorers":[{"name":"Deamchain Block Explorer","url":"https://scan.deamchain.com","standard":"EIP3091","icon":"deam"}]},{"name":"Polygon Mainnet","chain":"Polygon","icon":"polygon","rpc":["https://polygon-rpc.com/","https://rpc-mainnet.matic.network","https://matic-mainnet.chainstacklabs.com","https://rpc-mainnet.maticvigil.com","https://rpc-mainnet.matic.quiknode.pro","https://matic-mainnet-full-rpc.bwarelabs.com","https://polygon-bor-rpc.publicnode.com","wss://polygon-bor-rpc.publicnode.com","https://polygon.gateway.tenderly.co","wss://polygon.gateway.tenderly.co","https://polygon.drpc.org","wss://polygon.drpc.org"],"faucets":[],"nativeCurrency":{"name":"MATIC","symbol":"MATIC","decimals":18},"infoURL":"https://polygon.technology/","shortName":"matic","chainId":137,"networkId":137,"slip44":966,"explorers":[{"name":"polygonscan","url":"https://polygonscan.com","standard":"EIP3091"},{"name":"dexguru","url":"https://polygon.dex.guru","icon":"dexguru","standard":"EIP3091"}]},{"name":"Defi Oracle Meta Mainnet","chain":"dfiometa","icon":"defioraclemeta","rpc":["https://rpc.defi-oracle.io","wss://wss.defi-oracle.io"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://info.defi-oracle.io/","shortName":"dfio-meta-main","chainId":138,"networkId":1,"slip44":60,"ens":{"registry":"0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85"},"explorers":[{"name":"Blockscout Explorer","url":"https://blockscout.defi-oracle.io","standard":"none"},{"name":"Quorum Explorer","url":"https://explorer.defi-oracle.io","standard":"none"}]},{"name":"WoopChain Mainnet","chain":"WOOP","icon":"woopchain","rpc":["https://rpc.woop.ai/rpc"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"WoopCoin","symbol":"WOOC","decimals":18},"infoURL":"https://wikiwoop.com","shortName":"woop","chainId":139,"networkId":139,"explorers":[{"name":"wikiwoop","url":"https://explorer.wikiwoop.com","standard":"EIP3091"}]},{"name":"Openpiece Testnet","chain":"OPENPIECE","icon":"openpiece","rpc":["https://testnet.openpiece.io"],"faucets":[],"nativeCurrency":{"name":"Belly","symbol":"BELLY","decimals":18},"infoURL":"https://cryptopiece.online","shortName":"OPtest","chainId":141,"networkId":141,"slip44":1,"explorers":[{"name":"Belly Scan","url":"https://testnet.bellyscan.com","standard":"none"}]},{"name":"DAX CHAIN","chain":"DAX","rpc":["https://rpc.prodax.io"],"faucets":[],"nativeCurrency":{"name":"Prodax","symbol":"DAX","decimals":18},"infoURL":"https://prodax.io/","shortName":"dax","chainId":142,"networkId":142},{"name":"PHI Network v2","chain":"PHI","rpc":["https://connect.phi.network"],"faucets":[],"nativeCurrency":{"name":"PHI","symbol":"Φ","decimals":18},"infoURL":"https://phi.network","shortName":"PHI","chainId":144,"networkId":144,"icon":"phi","explorers":[{"name":"Phiscan","url":"https://phiscan.com","icon":"phi","standard":"none"}]},{"name":"SoraAI Testnet","chain":"SETH","icon":"ethereum","rpc":["https://rpc-testnet.soraai.bot"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"SoraETH","symbol":"SETH","decimals":18},"infoURL":"https://soraai.bot","shortName":"SETH","chainId":145,"networkId":145,"slip44":1,"explorers":[{"name":"blockscout","url":"https://explorer.soraai.bot","icon":"blockscout","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://bridge.soraai.bot"}]}},{"name":"ShimmerEVM","title":"ShimmerEVM","chain":"ShimmerEVM","rpc":["https://json-rpc.evm.shimmer.network"],"faucets":[],"nativeCurrency":{"name":"SMR","symbol":"SMR","decimals":18},"infoURL":"https://shimmer.network","shortName":"shimmerevm","chainId":148,"networkId":148,"icon":"shimmerevm","explorers":[{"name":"explorer","url":"https://explorer.evm.shimmer.network","icon":"shimmerevm","standard":"EIP3091"}]},{"name":"Six Protocol Testnet","chain":"FIVENET","icon":"six","rpc":["https://rpc-evm.fivenet.sixprotocol.net"],"faucets":["https://faucet.sixprotocol.net"],"nativeCurrency":{"name":"SIX testnet evm token","symbol":"tSIX","decimals":18},"infoURL":"https://six.network/","shortName":"sixt","chainId":150,"networkId":150,"explorers":[{"name":"SIX Scan fivenet","url":"https://sixscan.io/fivenet","standard":"none","icon":"six"}]},{"name":"Redbelly Network Mainnet","shortName":"rbn","chain":"RBN","chainId":151,"networkId":151,"rpc":[],"faucets":[],"infoURL":"https://redbelly.network","nativeCurrency":{"name":"Redbelly Network Coin","symbol":"RBNT","decimals":18},"status":"incubating"},{"name":"Redbelly Network Devnet","shortName":"rbn-devnet","chain":"RBN","chainId":152,"networkId":152,"rpc":[],"faucets":[],"infoURL":"https://redbelly.network","nativeCurrency":{"name":"Redbelly Network Coin","symbol":"RBNT","decimals":18},"status":"incubating"},{"name":"Redbelly Network Testnet","shortName":"rbn-testnet","chain":"RBN","chainId":153,"networkId":153,"slip44":1,"rpc":[],"faucets":[],"infoURL":"https://redbelly.network","nativeCurrency":{"name":"Redbelly Network Coin","symbol":"RBNT","decimals":18},"status":"incubating"},{"name":"Redbelly Network TGE","shortName":"rbn-tge","chain":"RBN","chainId":154,"networkId":154,"rpc":[],"faucets":[],"infoURL":"https://redbelly.network","nativeCurrency":{"name":"Redbelly Network Coin","symbol":"RBNT","decimals":18}},{"name":"Tenet Testnet","title":"Tenet Testnet","chain":"TENET","icon":"tenet","rpc":["https://rpc.testnet.tenet.org"],"faucets":["https://faucet.testnet.tenet.org"],"nativeCurrency":{"name":"TENET","symbol":"TENET","decimals":18},"infoURL":"https://tenet.org/","shortName":"tenet-testnet","chainId":155,"networkId":155,"slip44":1,"explorers":[{"name":"TenetScan Testnet","url":"https://testnet.tenetscan.io","icon":"tenet","standard":"EIP3091"}]},{"name":"OEBlock Testnet","chain":"OEBt","features":[{"name":"EIP155"},{"name":"EIP1559"}],"rpc":["https://testnet-rpc.oeblock.com"],"faucets":[],"nativeCurrency":{"name":"OEBlock","symbol":"OEB","decimals":18},"infoURL":"https://www.oeblock.com/","shortName":"obe","chainId":156,"networkId":156,"slip44":1,"icon":"oescan","explorers":[{"name":"OEScan explorer","url":"https://testnet.oescan.io","standard":"EIP3091"}]},{"name":"Puppynet Shibarium","chain":"Puppynet Shibarium","icon":"shibarium","rpc":["https://puppynet.shibrpc.com"],"faucets":["https://beta.shibariumtech.com/faucet"],"nativeCurrency":{"name":"BONE","symbol":"BONE","decimals":18},"infoURL":"https://shibariumecosystem.com","shortName":"puppynet","chainId":157,"networkId":157,"explorers":[{"name":"puppyscan","url":"https://puppyscan.shib.io","standard":"none"}]},{"name":"Roburna Mainnet","chain":"RBA","features":[{"name":"EIP155"},{"name":"EIP1559"}],"rpc":["https://dataseed.roburna.com"],"faucets":[],"nativeCurrency":{"name":"Roburna","symbol":"RBA","decimals":18},"infoURL":"https://www.roburna.com/","shortName":"rba","chainId":158,"networkId":158,"icon":"roburna","explorers":[{"name":"Rbascan Explorer","url":"https://rbascan.com","standard":"EIP3091"}]},{"name":"Roburna Testnet","chain":"RBAT","features":[{"name":"EIP155"},{"name":"EIP1559"}],"rpc":["https://preseed-testnet-1.roburna.com"],"faucets":[],"nativeCurrency":{"name":"Roburna","symbol":"RBAT","decimals":18},"infoURL":"https://www.roburna.com/","shortName":"rbat","chainId":159,"networkId":159,"icon":"roburna","explorers":[{"name":"Rbascan Testnet Explorer","url":"https://testnet.rbascan.com","standard":"EIP3091"}]},{"name":"Armonia Eva Chain Mainnet","chain":"Eva","rpc":["https://evascan.io/api/eth-rpc/"],"faucets":[],"nativeCurrency":{"name":"Armonia Multichain Native Token","symbol":"AMAX","decimals":18},"infoURL":"https://amax.network","shortName":"eva","chainId":160,"networkId":160,"status":"incubating"},{"name":"Armonia Eva Chain Testnet","chain":"Wall-e","rpc":["https://testnet.evascan.io/api/eth-rpc/"],"faucets":[],"nativeCurrency":{"name":"Armonia Multichain Native Token","symbol":"AMAX","decimals":18},"infoURL":"https://amax.network","shortName":"wall-e","chainId":161,"networkId":161,"slip44":1,"explorers":[{"name":"blockscout - evascan","url":"https://testnet.evascan.io","standard":"EIP3091"}]},{"name":"Lightstreams Testnet","chain":"PHT","rpc":["https://node.sirius.lightstreams.io"],"faucets":["https://discuss.lightstreams.network/t/request-test-tokens"],"nativeCurrency":{"name":"Lightstreams PHT","symbol":"PHT","decimals":18},"infoURL":"https://explorer.sirius.lightstreams.io","shortName":"tpht","chainId":162,"networkId":162,"slip44":1},{"name":"Lightstreams Mainnet","chain":"PHT","rpc":["https://node.mainnet.lightstreams.io"],"faucets":[],"nativeCurrency":{"name":"Lightstreams PHT","symbol":"PHT","decimals":18},"infoURL":"https://explorer.lightstreams.io","shortName":"pht","chainId":163,"networkId":163},{"name":"Omni Testnet","chain":"Omni","rpc":["https://testnet.omni.network"],"features":[{"name":"EIP155"}],"faucets":[],"nativeCurrency":{"name":"Omni","symbol":"OMNI","decimals":18},"infoURL":"https://docs.omni.network/","shortName":"omni_testnet","chainId":165,"networkId":165,"slip44":1,"explorers":[{"name":"Omni Explorer","url":"https://testnet.explorer.omni.network","standard":"EIP3091"}]},{"name":"Omni","chain":"Omni","status":"incubating","rpc":[],"features":[{"name":"EIP155"}],"faucets":[],"nativeCurrency":{"name":"Omni","symbol":"OMNI","decimals":18},"infoURL":"https://docs.omni.network/","shortName":"omni","chainId":166,"networkId":166,"slip44":1},{"name":"Atoshi Testnet","chain":"ATOSHI","icon":"atoshi","rpc":["https://node.atoshi.io/"],"faucets":[],"nativeCurrency":{"name":"ATOSHI","symbol":"ATOS","decimals":18},"infoURL":"https://atoshi.org","shortName":"atoshi","chainId":167,"networkId":167,"slip44":1,"explorers":[{"name":"atoshiscan","url":"https://scan.atoverse.info","standard":"EIP3091"}]},{"name":"AIOZ Network","chain":"AIOZ","icon":"aioz","rpc":["https://eth-dataseed.aioz.network"],"faucets":[],"nativeCurrency":{"name":"AIOZ","symbol":"AIOZ","decimals":18},"infoURL":"https://aioz.network","shortName":"aioz","chainId":168,"networkId":168,"slip44":60,"explorers":[{"name":"AIOZ Network Explorer","url":"https://explorer.aioz.network","standard":"EIP3091"}]},{"name":"Manta Pacific Mainnet","chain":"Manta Pacific","rpc":["https://pacific-rpc.manta.network/http","https://manta-pacific.drpc.org","wss://manta-pacific.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://pacific-info.manta.network","shortName":"manta","chainId":169,"networkId":169,"icon":"manta","explorers":[{"name":"manta-pacific Explorer","url":"https://pacific-explorer.manta.network","standard":"EIP3091"}]},{"name":"HOO Smart Chain Testnet","chain":"ETH","rpc":["https://http-testnet.hoosmartchain.com"],"faucets":["https://faucet-testnet.hscscan.com/"],"nativeCurrency":{"name":"HOO","symbol":"HOO","decimals":18},"infoURL":"https://www.hoosmartchain.com","shortName":"hoosmartchain","chainId":170,"networkId":170,"slip44":1},{"name":"Latam-Blockchain Resil Testnet","chain":"Resil","rpc":["https://rpc.latam-blockchain.com","wss://ws.latam-blockchain.com"],"faucets":["https://faucet.latam-blockchain.com"],"nativeCurrency":{"name":"Latam-Blockchain Resil Test Native Token","symbol":"usd","decimals":18},"infoURL":"https://latam-blockchain.com","shortName":"resil","chainId":172,"networkId":172,"slip44":1},{"name":"AME Chain Mainnet","chain":"AME","rpc":["https://node1.amechain.io/"],"faucets":[],"nativeCurrency":{"name":"AME","symbol":"AME","decimals":18},"infoURL":"https://amechain.io/","shortName":"ame","chainId":180,"networkId":180,"explorers":[{"name":"AME Scan","url":"https://amescan.io","standard":"EIP3091"}]},{"name":"Seele Mainnet","chain":"Seele","rpc":["https://rpc.seelen.pro/"],"faucets":[],"nativeCurrency":{"name":"Seele","symbol":"Seele","decimals":18},"infoURL":"https://seelen.pro/","shortName":"Seele","chainId":186,"networkId":186,"explorers":[{"name":"seeleview","url":"https://seeleview.net","standard":"none"}]},{"name":"BMC Mainnet","chain":"BMC","rpc":["https://mainnet.bmcchain.com/"],"faucets":[],"nativeCurrency":{"name":"BTM","symbol":"BTM","decimals":18},"infoURL":"https://bmc.bytom.io/","shortName":"BMC","chainId":188,"networkId":188,"explorers":[{"name":"Blockmeta","url":"https://bmc.blockmeta.com","standard":"none"}]},{"name":"BMC Testnet","chain":"BMC","rpc":["https://testnet.bmcchain.com"],"faucets":[],"nativeCurrency":{"name":"BTM","symbol":"BTM","decimals":18},"infoURL":"https://bmc.bytom.io/","shortName":"BMCT","chainId":189,"networkId":189,"slip44":1,"explorers":[{"name":"Blockmeta","url":"https://bmctestnet.blockmeta.com","standard":"none"}]},{"name":"FileFileGo","chain":"FFG","icon":"ffgIcon","rpc":["https://rpc.filefilego.com/rpc"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"FFG","symbol":"FFG","decimals":18},"infoURL":"https://filefilego.com","shortName":"ffg","chainId":191,"networkId":191},{"name":"Crypto Emergency","chain":"CEM","rpc":["https://cemchain.com"],"faucets":[],"nativeCurrency":{"name":"Crypto Emergency","symbol":"CEM","decimals":18},"infoURL":"https://cemblockchain.com/","shortName":"cem","chainId":193,"networkId":193,"explorers":[{"name":"cemscan","url":"https://cemscan.com","standard":"EIP3091"}]},{"name":"X Layer Testnet","chain":"X Layer","rpc":["https://testrpc.xlayer.tech","https://xlayertestrpc.okx.com"],"faucets":["https://www.okx.com/xlayer/faucet"],"nativeCurrency":{"name":"X Layer Global Utility Token in testnet","symbol":"OKB","decimals":18},"features":[],"infoURL":"https://www.okx.com/xlayer","shortName":"tokb","chainId":195,"networkId":195,"slip44":1,"explorers":[{"name":"OKLink","url":"https://www.oklink.com/xlayer-test","standard":"EIP3091"}],"status":"active"},{"name":"X Layer Mainnet","chain":"X Layer","rpc":["https://rpc.xlayer.tech","https://xlayerrpc.okx.com"],"faucets":[],"nativeCurrency":{"name":"X Layer Global Utility Token","symbol":"OKB","decimals":18},"features":[],"infoURL":"https://www.okx.com/xlayer","shortName":"okb","chainId":196,"networkId":196,"explorers":[{"name":"OKLink","url":"https://www.oklink.com/xlayer","standard":"EIP3091"}],"status":"incubating"},{"name":"Neutrinos TestNet","chain":"NEUTR","rpc":["https://testnet-rpc.neutrinoschain.com"],"faucets":["https://neutrinoschain.com/faucet"],"nativeCurrency":{"name":"Neutrinos","symbol":"NEUTR","decimals":18},"infoURL":"https://docs.neutrinoschain.com","shortName":"NEUTR","chainId":197,"networkId":197,"slip44":1,"explorers":[{"name":"blockscout","url":"https://testnet.neutrinoschain.com","standard":"EIP3091"}]},{"name":"Bitchain Mainnet","chain":"Bit","rpc":["https://rpc.bitchain.biz/"],"faucets":[],"nativeCurrency":{"name":"Bitcoin","symbol":"BTC","decimals":18},"infoURL":"https://www.bitchain.biz/","shortName":"bit","chainId":198,"networkId":198,"explorers":[{"name":"Bitchain Scan","url":"https://explorer.bitchain.biz","standard":"EIP3091"}]},{"name":"BitTorrent Chain Mainnet","chain":"BTTC","rpc":["https://rpc.bt.io","https://bittorrent.drpc.org","wss://bittorrent.drpc.org"],"faucets":[],"nativeCurrency":{"name":"BitTorrent","symbol":"BTT","decimals":18},"infoURL":"https://bt.io","shortName":"BTT","chainId":199,"networkId":199,"explorers":[{"name":"BitTorrent Chain Explorer","url":"https://bttcscan.com","standard":"EIP3091"}]},{"name":"Arbitrum on xDai","chain":"AOX","rpc":["https://arbitrum.xdaichain.com/"],"faucets":[],"nativeCurrency":{"name":"xDAI","symbol":"xDAI","decimals":18},"infoURL":"https://xdaichain.com","shortName":"aox","chainId":200,"networkId":200,"explorers":[{"name":"blockscout","url":"https://blockscout.com/xdai/arbitrum","standard":"EIP3091"}],"parent":{"chain":"eip155-100","type":"L2"}},{"name":"MOAC testnet","chain":"MOAC","rpc":["https://gateway.moac.io/testnet"],"faucets":[],"nativeCurrency":{"name":"MOAC","symbol":"mc","decimals":18},"infoURL":"https://moac.io","shortName":"moactest","chainId":201,"networkId":201,"slip44":1,"explorers":[{"name":"moac testnet explorer","url":"https://testnet.moac.io","standard":"none"}]},{"name":"Edgeless Testnet","chain":"EdgelessTestnet","rpc":["https://testnet.rpc.edgeless.network/http"],"features":[{"name":"EIP155"}],"faucets":[],"nativeCurrency":{"name":"Edgeless Wrapped Eth","symbol":"EwEth","decimals":18},"infoURL":"https://edgeless.network","shortName":"edgeless-testnet","chainId":202,"networkId":202,"explorers":[{"name":"Edgeless Explorer","url":"https://testnet.explorer.edgeless.network","standard":"EIP3091"}]},{"name":"opBNB Mainnet","icon":"bnbchain","chain":"opBNB","rpc":["https://opbnb-mainnet-rpc.bnbchain.org","https://opbnb-mainnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3","wss://opbnb-mainnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3","https://opbnb-mainnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5","wss://opbnb-mainnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5","https://opbnb-rpc.publicnode.com","wss://opbnb-rpc.publicnode.com","https://opbnb.drpc.org","wss://opbnb.drpc.org"],"faucets":[],"nativeCurrency":{"name":"BNB Chain Native Token","symbol":"BNB","decimals":18},"infoURL":"https://opbnb.bnbchain.org/en","shortName":"obnb","chainId":204,"networkId":204,"slip44":714,"explorers":[{"name":"opbnbscan","url":"https://mainnet.opbnbscan.com","standard":"EIP3091"}]},{"name":"VinuChain Testnet","chain":"VinuChain Testnet","rpc":["https://vinufoundation-rpc.com"],"faucets":[],"nativeCurrency":{"name":"VinuChain","symbol":"VC","decimals":18},"infoURL":"https://vitainu.org","shortName":"VCTEST","chainId":206,"networkId":206,"slip44":1,"icon":"vitainu-testnet","explorers":[{"name":"VinuScan Testnet","url":"https://testnet.vinuscan.com","icon":"vinuscan-testnet","standard":"none"}]},{"name":"VinuChain Network","chain":"VinuChain","rpc":["https://vinuchain-rpc.com"],"faucets":[],"nativeCurrency":{"name":"VinuChain","symbol":"VC","decimals":18},"infoURL":"https://vitainu.org","shortName":"VC","chainId":207,"networkId":207,"icon":"vitainu","explorers":[{"name":"VinuScan","url":"https://vinuscan.com","icon":"vinuscan","standard":"none"}]},{"name":"Structx Mainnet","chain":"utx","rpc":["https://mainnet.structx.io"],"faucets":[],"nativeCurrency":{"name":"Notes","symbol":"utx","decimals":18},"infoURL":"https://structx.io","shortName":"utx","chainId":208,"networkId":208},{"name":"Bitnet","chain":"BTN","icon":"bitnet","rpc":["https://rpc.bitnet.money","https://rpc.btnscan.com"],"faucets":[],"nativeCurrency":{"name":"Bitnet","symbol":"BTN","decimals":18},"infoURL":"https://bitnet.money","shortName":"BTN","chainId":210,"networkId":210,"explorers":[{"name":"Bitnet Explorer","url":"https://btnscan.com","standard":"EIP3091"}]},{"name":"Freight Trust Network","chain":"EDI","rpc":["http://13.57.207.168:3435","https://app.freighttrust.net/ftn/${API_KEY}"],"faucets":["http://faucet.freight.sh"],"nativeCurrency":{"name":"Freight Trust Native","symbol":"0xF","decimals":18},"infoURL":"https://freighttrust.com","shortName":"EDI","chainId":211,"networkId":0},{"name":"MAPO Makalu","title":"MAPO Testnet Makalu","chain":"MAPO","rpc":["https://testnet-rpc.maplabs.io"],"faucets":["https://faucet.mapprotocol.io"],"nativeCurrency":{"name":"Makalu MAPO","symbol":"MAPO","decimals":18},"infoURL":"https://mapprotocol.io/","shortName":"makalu","chainId":212,"networkId":212,"explorers":[{"name":"maposcan","url":"https://testnet.maposcan.io","standard":"EIP3091"}]},{"name":"Shinarium Mainnet","chain":"Shinarium","icon":"shinarium","rpc":["https://mainnet.shinarium.org"],"faucets":[],"nativeCurrency":{"name":"Shina Inu","symbol":"SHI","decimals":18},"infoURL":"https://shinarium.org","shortName":"shinarium","chainId":214,"networkId":214,"explorers":[{"name":"shinascan","url":"https://shinascan.shinarium.org","standard":"EIP3091"}]},{"name":"SiriusNet V2","chain":"SIN2","faucets":[],"rpc":["https://rpc2.siriusnet.io"],"icon":"siriusnet","nativeCurrency":{"name":"MCD","symbol":"MCD","decimals":18},"infoURL":"https://siriusnet.io","shortName":"SIN2","chainId":217,"networkId":217,"explorers":[{"name":"siriusnet explorer","url":"https://scan.siriusnet.io","standard":"none"}]},{"name":"SoterOne Mainnet old","chain":"SOTER","rpc":["https://rpc.soter.one"],"faucets":[],"nativeCurrency":{"name":"SoterOne Mainnet Ether","symbol":"SOTER","decimals":18},"infoURL":"https://www.soterone.com","shortName":"SO1-old","chainId":218,"networkId":218,"status":"deprecated"},{"name":"Scalind Testnet","chain":"ETH","icon":"scalind","rpc":["https://rpc-sepolia.scalind.com"],"faucets":["https://faucet.scalind.com"],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://scalind.com","shortName":"sepscal","chainId":220,"networkId":220,"explorers":[{"name":"scalind","url":"https://explorer-sepolia.scalind.com","standard":"EIP3091"}]},{"name":"Permission","chain":"ASK","rpc":["https://blockchain-api-mainnet.permission.io/rpc"],"faucets":[],"nativeCurrency":{"name":"ASK","symbol":"ASK","decimals":18},"infoURL":"https://permission.io/","shortName":"ASK","chainId":222,"networkId":2221,"slip44":2221,"status":"deprecated"},{"name":"Viridis Testnet","chain":"VRD","icon":"viridis","rpc":["https://testnet-rpc.vrd.network"],"faucets":["https://faucet.vrd.network"],"nativeCurrency":{"name":"Viridis Token","symbol":"VRD","decimals":18},"infoURL":"https://viridis.network","shortName":"VRD-Testnet","chainId":224,"networkId":224,"explorers":[{"name":"Viridis Testnet","url":"https://testnet.vrd.network","standard":"EIP3091"}]},{"name":"LACHAIN Mainnet","chain":"LA","icon":"lachain-io","rpc":["https://rpc-mainnet.lachain.io"],"faucets":[],"nativeCurrency":{"name":"LA","symbol":"LA","decimals":18},"infoURL":"https://lachain.io","shortName":"LA","chainId":225,"networkId":225,"explorers":[{"name":"blockscout","url":"https://scan.lachain.io","standard":"EIP3091"}]},{"name":"LACHAIN Testnet","chain":"TLA","icon":"lachain-io","rpc":["https://rpc-testnet.lachain.io"],"faucets":[],"nativeCurrency":{"name":"TLA","symbol":"TLA","decimals":18},"infoURL":"https://lachain.io","shortName":"TLA","chainId":226,"networkId":226,"slip44":1,"explorers":[{"name":"blockscout","url":"https://scan-test.lachain.io","standard":"EIP3091"}]},{"name":"SwapDEX","chain":"SDX","rpc":["https://rpc.swapdex.network","wss://ss.swapdex.network"],"faucets":[],"nativeCurrency":{"name":"SwapDEX","symbol":"SDX","decimals":18},"infoURL":"https://swapdex.network/","shortName":"SDX","chainId":230,"networkId":230,"explorers":[{"name":"SwapDEX","url":"https://evm.swapdex.network","standard":"none"}]},{"name":"ProtoJumbo Testnet","chain":"Jumbo","rpc":["https://testnode.jumbochain.org"],"faucets":["https://protojumbo.jumbochain.org/faucet-smart"],"nativeCurrency":{"name":"JNFTC","symbol":"JNFTC","decimals":18},"features":[{"name":"EIP155"}],"infoURL":"https://jumbochain.org","shortName":"ProtoJumbo","chainId":234,"networkId":234,"slip44":1,"explorers":[{"name":"ProtoJumbo","url":"https://protojumbo.jumbochain.org","standard":"EIP3091"}]},{"name":"Deamchain Testnet","chain":"Deamchain","icon":"deam","rpc":["https://testnet.deamchain.com"],"faucets":["https://faucet.deamchain.com"],"nativeCurrency":{"name":"Deamchain Native Token","symbol":"DEAM","decimals":18},"infoURL":"https://deamchain.com","shortName":"deamtest","chainId":236,"networkId":236,"slip44":1,"explorers":[{"name":"Deamchain Testnet Explorer","url":"https://testnet-scan.deamchain.com","standard":"EIP3091","icon":"deam"}]},{"name":"Blast Mainnet","chain":"ETH","icon":"blastIcon","rpc":["https://rpc.blastblockchain.com"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://docs.blastblockchain.com","shortName":"blast","chainId":238,"networkId":238,"explorers":[{"name":"Blast Mainnet","url":"https://scan.blastblockchain.com","standard":"EIP3091"}]},{"name":"Plinga Mainnet","chain":"Plinga","icon":"plinga","rpc":["https://rpcurl.mainnet.plgchain.com","https://rpcurl.plgchain.blockchain.evmnode.online","https://rpcurl.mainnet.plgchain.plinga.technology"],"faucets":[],"nativeCurrency":{"name":"Plinga","symbol":"PLINGA","decimals":18},"infoURL":"https://www.plinga.technology/","shortName":"plgchain","chainId":242,"networkId":242,"explorers":[{"name":"plgscan","url":"https://www.plgscan.com","standard":"EIP3091"}]},{"name":"Energy Web Chain","chain":"Energy Web Chain","rpc":["https://rpc.energyweb.org","wss://rpc.energyweb.org/ws"],"faucets":[],"nativeCurrency":{"name":"Energy Web Token","symbol":"EWT","decimals":18},"infoURL":"https://energyweb.org","shortName":"ewt","chainId":246,"networkId":246,"slip44":246,"explorers":[{"name":"blockscout","url":"https://explorer.energyweb.org","standard":"none"}]},{"name":"Oasys Mainnet","chain":"Oasys","icon":"oasys","rpc":["https://rpc.mainnet.oasys.games"],"faucets":[],"nativeCurrency":{"name":"OAS","symbol":"OAS","decimals":18},"infoURL":"https://oasys.games","shortName":"OAS","chainId":248,"networkId":248,"explorers":[{"name":"blockscout","url":"https://explorer.oasys.games","standard":"EIP3091"}]},{"name":"Fantom Opera","chain":"FTM","rpc":["https://rpc.ftm.tools","https://fantom-rpc.publicnode.com","wss://fantom-rpc.publicnode.com","https://fantom.drpc.org","wss://fantom.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Fantom","symbol":"FTM","decimals":18},"infoURL":"https://fantom.foundation","shortName":"ftm","chainId":250,"networkId":250,"icon":"fantom","explorers":[{"name":"ftmscan","url":"https://ftmscan.com","icon":"ftmscan","standard":"EIP3091"},{"name":"dexguru","url":"https://fantom.dex.guru","icon":"dexguru","standard":"EIP3091"}]},{"name":"Fraxtal","chain":"FRAX","rpc":["https://rpc.frax.com"],"faucets":[],"nativeCurrency":{"name":"Frax Ether","symbol":"frxETH","decimals":18},"infoURL":"https://mainnet.frax.com","shortName":"fraxtal","chainId":252,"networkId":252,"icon":"fraxtal","explorers":[{"name":"fraxscan","url":"https://fraxscan.com","standard":"EIP3091"}],"status":"active"},{"name":"Kroma","chain":"ETH","rpc":["https://api.kroma.network"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://kroma.network","icon":"kroma","shortName":"kroma","chainId":255,"networkId":255,"explorers":[{"name":"blockscout","url":"https://blockscout.kroma.network","icon":"blockscout","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://kroma.network/bridge"}]}},{"name":"Huobi ECO Chain Testnet","chain":"Heco","rpc":["https://http-testnet.hecochain.com","wss://ws-testnet.hecochain.com"],"faucets":["https://scan-testnet.hecochain.com/faucet"],"nativeCurrency":{"name":"Huobi ECO Chain Test Native Token","symbol":"htt","decimals":18},"infoURL":"https://testnet.hecoinfo.com","shortName":"hecot","chainId":256,"networkId":256},{"name":"Setheum","chain":"Setheum","rpc":[],"faucets":[],"nativeCurrency":{"name":"Setheum","symbol":"SETM","decimals":18},"infoURL":"https://setheum.xyz","shortName":"setm","chainId":258,"networkId":258},{"name":"Neonlink Mainnet","chain":"Neonlink","rpc":["https://mainnet.neonlink.io"],"faucets":[],"nativeCurrency":{"name":"Neonlink Native Token","symbol":"NEON","decimals":18},"infoURL":"https://neonlink.io","shortName":"neon","chainId":259,"networkId":259,"icon":"neonlink","explorers":[{"name":"Neon Blockchain Explorer","url":"https://scan.neonlink.io","standard":"EIP3091","icon":"neonlink"}]},{"name":"SUR Blockchain Network","chain":"SUR","rpc":["https://sur.nilin.org"],"faucets":[],"nativeCurrency":{"name":"Suren","symbol":"SRN","decimals":18},"infoURL":"https://surnet.org","shortName":"SUR","chainId":262,"networkId":1,"icon":"SUR","explorers":[{"name":"Surnet Explorer","url":"https://explorer.surnet.org","icon":"SUR","standard":"EIP3091"}]},{"name":"Neura","title":"Neura Mainnet","chain":"NEURA","icon":"neura","rpc":[],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Ankr","symbol":"ANKR","decimals":18},"infoURL":"https://www.neuraprotocol.io/","shortName":"neura","chainId":266,"networkId":266,"status":"incubating","explorers":[]},{"name":"Neura Testnet","title":"Neura Testnet","chain":"NEURA","icon":"neura","rpc":[],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Testnet Ankr","symbol":"ANKR","decimals":18},"infoURL":"https://www.neuraprotocol.io/","shortName":"tneura","chainId":267,"networkId":267,"explorers":[],"status":"incubating","slip44":1},{"name":"Neura Devnet","title":"Neura Devnet","chain":"NEURA","icon":"neura","rpc":[],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Devnet Ankr","symbol":"ANKR","decimals":18},"infoURL":"https://www.neuraprotocol.io/","shortName":"dneura","chainId":268,"networkId":268,"explorers":[],"status":"incubating","slip44":1},{"name":"High Performance Blockchain","chain":"HPB","rpc":["https://hpbnode.com","wss://ws.hpbnode.com"],"faucets":["https://myhpbwallet.com/"],"nativeCurrency":{"name":"High Performance Blockchain Ether","symbol":"HPB","decimals":18},"infoURL":"https://hpb.io","shortName":"hpb","chainId":269,"networkId":269,"slip44":269,"explorers":[{"name":"hscan","url":"https://hscan.org","standard":"EIP3091"}]},{"name":"EgonCoin Mainnet","chain":"EGON","icon":"egonicon","rpc":["https://rpc.egonscan.com"],"faucets":[],"nativeCurrency":{"name":"EgonCoin","symbol":"EGON","decimals":18},"infoURL":"https://egonscan.com","shortName":"EGONm","chainId":271,"networkId":271,"explorers":[{"name":"EgonCoin Mainnet","url":"https://egonscan.com","standard":"EIP3091"}]},{"name":"LaChain","chain":"LaChain","icon":"lachain-network","rpc":["https://rpc1.mainnet.lachain.network","https://rpc2.mainnet.lachain.network","https://lachain.rpc-nodes.cedalio.dev"],"faucets":[],"nativeCurrency":{"name":"LaCoin","symbol":"LAC","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"","shortName":"lachain","chainId":274,"networkId":274,"explorers":[{"name":"LaChain Explorer","url":"https://explorer.lachain.network","standard":"EIP3091"}]},{"name":"BPX Blockchain","chain":"BPX","icon":"bpx","rpc":["https://rpc.mainnet.bpxchain.cc","https://bpx-dataseed.infinex.cc"],"faucets":[],"nativeCurrency":{"name":"BPX","symbol":"BPX","decimals":18},"infoURL":"https://bpxchain.cc","shortName":"bpx","chainId":279,"networkId":279},{"name":"zkSync Era Goerli Testnet (deprecated)","status":"deprecated","chain":"ETH","rpc":["https://testnet.era.zksync.dev"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://zksync.io/","shortName":"zksync-goerli","chainId":280,"networkId":280,"slip44":1,"icon":"zksync-era","explorers":[{"name":"zkSync Era Block Explorer","url":"https://goerli.explorer.zksync.io","icon":"zksync-era","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://bridge.zksync.io/"}]}},{"name":"Cronos zkEVM Testnet","chain":"CronosZkEVMTestnet","rpc":["https://rpc-zkevm-t0.cronos.org"],"faucets":["https://zkevm-t0.cronos.org/faucet"],"nativeCurrency":{"name":"Cronos zkEVM Test Coin","symbol":"TCRO","decimals":18},"infoURL":"https://docs.cronos.org/cronos-zkevm-chain/introduction-to-cronos-zkevm-chain-testnet","shortName":"zktcro","chainId":282,"networkId":282,"slip44":1,"explorers":[{"name":"Cronos zkEVM Testnet Explorer","url":"https://zkevm-t0.cronos.org/explorer","standard":"none"}]},{"name":"Boba Network","chain":"ETH","rpc":["https://mainnet.boba.network","https://replica.boba.network","https://boba-ethereum.gateway.tenderly.co","https://gateway.tenderly.co/public/boba-ethereum","wss://boba-ethereum.gateway.tenderly.co/","wss://gateway.tenderly.co/public/boba-ethereum","https://boba-eth.drpc.org","wss://boba-eth.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://boba.network","shortName":"Boba","chainId":288,"networkId":288,"explorers":[{"name":"Bobascan","url":"https://bobascan.com","standard":"none"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://gateway.boba.network"}]}},{"name":"Orderly Mainnet","chain":"ETH","rpc":["https://rpc.orderly.network","https://l2-orderly-mainnet-0.t.conduit.xyz"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"www.orderly.network","shortName":"orderly","chainId":291,"networkId":291,"icon":"orderly","explorers":[{"name":"orderlyscout","url":"https://explorer.orderly.network","icon":"blockscout","standard":"EIP3091"}]},{"name":"Hedera Mainnet","chain":"Hedera","icon":"hedera","rpc":["https://mainnet.hashio.io/api"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"hbar","symbol":"HBAR","decimals":18},"infoURL":"https://hedera.com","shortName":"hedera-mainnet","chainId":295,"networkId":295,"slip44":3030,"explorers":[{"name":"HashScan","url":"https://hashscan.io/mainnet","standard":"EIP3091"},{"name":"Arkhia Explorer","url":"https://explorer.arkhia.io","standard":"none"},{"name":"DragonGlass","url":"https://app.dragonglass.me","standard":"none"},{"name":"Hedera Explorer","url":"https://hederaexplorer.io","standard":"none"},{"name":"Ledger Works Explore","url":"https://explore.lworks.io","standard":"none"}]},{"name":"Hedera Testnet","chain":"Hedera","icon":"hedera","rpc":["https://testnet.hashio.io/api"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":["https://portal.hedera.com"],"nativeCurrency":{"name":"hbar","symbol":"HBAR","decimals":18},"infoURL":"https://hedera.com","shortName":"hedera-testnet","chainId":296,"networkId":296,"slip44":1,"explorers":[{"name":"HashScan","url":"https://hashscan.io/testnet","standard":"EIP3091"},{"name":"Arkhia Explorer","url":"https://explorer.arkhia.io","standard":"none"},{"name":"DragonGlass","url":"https://app.dragonglass.me","standard":"none"},{"name":"Hedera Explorer","url":"https://hederaexplorer.io","standard":"none"},{"name":"Ledger Works Explore","url":"https://explore.lworks.io","standard":"none"}]},{"name":"Hedera Previewnet","chain":"Hedera","icon":"hedera","rpc":["https://previewnet.hashio.io/api"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":["https://portal.hedera.com"],"nativeCurrency":{"name":"hbar","symbol":"HBAR","decimals":18},"infoURL":"https://hedera.com","shortName":"hedera-previewnet","chainId":297,"networkId":297,"slip44":3030,"explorers":[{"name":"HashScan","url":"https://hashscan.io/previewnet","standard":"EIP3091"}]},{"name":"Hedera Localnet","chain":"Hedera","icon":"hedera","rpc":[],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"hbar","symbol":"HBAR","decimals":18},"infoURL":"https://hedera.com","shortName":"hedera-localnet","chainId":298,"networkId":298,"slip44":3030,"explorers":[]},{"name":"zkSync Sepolia Testnet","chain":"ETH","rpc":["https://sepolia.era.zksync.dev","https://zksync-sepolia.drpc.org","wss://zksync-sepolia.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://zksync.io/","shortName":"zksync-sepolia","chainId":300,"networkId":300,"slip44":1,"icon":"zksync-era","explorers":[{"name":"zkSync Block Explorer","url":"https://sepolia.explorer.zksync.io","icon":"zksync-era","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://bridge.zksync.io/"}]},"redFlags":["reusedChainId"]},{"name":"Bobaopera","chain":"Bobaopera","status":"deprecated","rpc":["https://bobaopera.boba.network","wss://wss.bobaopera.boba.network","https://replica.bobaopera.boba.network","wss://replica-wss.bobaopera.boba.network"],"faucets":[],"nativeCurrency":{"name":"Boba Token","symbol":"BOBA","decimals":18},"infoURL":"https://boba.network","shortName":"Bobaopera","chainId":301,"networkId":301,"explorers":[{"name":"Bobaopera block explorer","url":"https://blockexplorer.bobaopera.boba.network","standard":"none"}]},{"name":"Neurochain Testnet","chain":"NCN","rpc":["https://nc-rpc-test1.neurochain.io"],"faucets":[],"nativeCurrency":{"name":"Neurochain","symbol":"tNCN","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://www.neurochain.ai","shortName":"ncnt","chainId":303,"networkId":303,"slip44":1,"explorers":[{"name":"neuroscan","url":"https://testnet.ncnscan.com","standard":"EIP3091"}]},{"name":"ZKSats Mainnet","title":"ZKSats Mainnet","chain":"ZKSats","rpc":["https://mainnet.zksats.io"],"faucets":[],"nativeCurrency":{"name":"BTC","symbol":"BTC","decimals":18},"infoURL":"https://zksats.io","shortName":"ZKSats-Mainnet","chainId":305,"networkId":305,"icon":"zksats","explorers":[{"name":"blockscout","url":"https://explorer.zksats.io","icon":"zksats","standard":"EIP3091"}]},{"name":"Lovely Network Testnet","chain":"Lovely","icon":"lovely","rpc":["https://trpc.lovely.network"],"faucets":["https://faucet.lovely.network"],"nativeCurrency":{"name":"Lovely","symbol":"LOVELY","decimals":18},"infoURL":"https://lovely.network","shortName":"LOVELY-Testnet","chainId":307,"networkId":307,"explorers":[{"name":"Lovely Network Testnet","url":"https://tscan.lovely.network","standard":"EIP3091"}]},{"name":"Furtheon","chain":"Furtheon Network","rpc":["https://rpc.furtheon.org"],"faucets":[],"nativeCurrency":{"name":"Furtheon","symbol":"FTH","decimals":18},"infoURL":"https://furtheon.org/","shortName":"furtheon","chainId":308,"networkId":308,"explorers":[{"name":"furthscan","url":"http://furthscan.com","standard":"EIP3091"}]},{"name":"Wyzth Testnet","chain":"WYZ","rpc":["https://rpc-testnet3.wyzthchain.org/"],"faucets":[],"nativeCurrency":{"name":"Wyzth","symbol":"WYZ","decimals":18},"features":[{"name":"EIP155"}],"infoURL":"https://wyzth.org/","shortName":"wyz","chainId":309,"networkId":309,"slip44":1,"icon":"wyzth_icon","explorers":[{"name":"wyzth","url":"http://24.199.108.65:4000","icon":"wyzth","standard":"EIP3091"}]},{"name":"Omax Mainnet","chain":"OMAX Chain","rpc":["https://mainapi.omaxray.com"],"faucets":["https://faucet.omaxray.com/"],"nativeCurrency":{"name":"OMAX COIN","symbol":"OMAX","decimals":18},"infoURL":"https://www.omaxcoin.com/","shortName":"omax","chainId":311,"networkId":311,"icon":"omaxchain","explorers":[{"name":"Omax Chain Explorer","url":"https://omaxray.com","icon":"omaxray","standard":"EIP3091"}]},{"name":"Neurochain Mainnet","chain":"NCN","rpc":["https://nc-rpc-prd1.neurochain.io","https://nc-rpc-prd2.neurochain.io"],"faucets":[],"nativeCurrency":{"name":"Neurochain","symbol":"NCN","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://www.neurochain.ai","shortName":"ncn","chainId":313,"networkId":313,"explorers":[{"name":"neuroscan","url":"https://ncnscan.com","standard":"EIP3091"}]},{"name":"Filecoin - Mainnet","chain":"FIL","icon":"filecoin","rpc":["https://api.node.glif.io/","https://rpc.ankr.com/filecoin","https://filecoin-mainnet.chainstacklabs.com/rpc/v1","https://filfox.info/rpc/v1","https://filecoin.drpc.org","wss://filecoin.drpc.org"],"faucets":[],"nativeCurrency":{"name":"filecoin","symbol":"FIL","decimals":18},"infoURL":"https://filecoin.io","shortName":"filecoin","chainId":314,"networkId":314,"slip44":461,"explorers":[{"name":"Filfox","url":"https://filfox.info/en","standard":"none"},{"name":"Beryx","url":"https://beryx.zondax.ch","standard":"none"},{"name":"Glif Explorer","url":"https://explorer.glif.io","standard":"EIP3091"},{"name":"Dev.storage","url":"https://dev.storage","standard":"none"},{"name":"Filscan","url":"https://filscan.io","standard":"none"},{"name":"Filscout","url":"https://filscout.io/en","standard":"none"}]},{"name":"KCC Mainnet","chain":"KCC","rpc":["https://rpc-mainnet.kcc.network","https://kcc.mytokenpocket.vip","https://public-rpc.blockpi.io/http/kcc"],"faucets":[],"nativeCurrency":{"name":"KuCoin Token","symbol":"KCS","decimals":18},"infoURL":"https://kcc.io","shortName":"kcs","chainId":321,"networkId":321,"slip44":641,"explorers":[{"name":"KCC Explorer","url":"https://explorer.kcc.io/en","standard":"EIP3091"}]},{"name":"KCC Testnet","chain":"KCC","rpc":["https://rpc-testnet.kcc.network"],"faucets":["https://faucet-testnet.kcc.network"],"nativeCurrency":{"name":"KuCoin Testnet Token","symbol":"tKCS","decimals":18},"infoURL":"https://scan-testnet.kcc.network","shortName":"kcst","chainId":322,"networkId":322,"slip44":1,"explorers":[{"name":"kcc-scan-testnet","url":"https://scan-testnet.kcc.network","standard":"EIP3091"}]},{"name":"Cosvm Mainnet","chain":"CVM","rpc":["https://rpc.cosvm.net"],"faucets":[],"nativeCurrency":{"name":"Cosvm","symbol":"CVM","decimals":18},"infoURL":"https://cosvm.network","shortName":"cvm","chainId":323,"networkId":323,"explorers":[{"name":"Blockscout","url":"https://explorer.cosvm.net","icon":"blockscout","standard":"EIP3091"}]},{"name":"zkSync Mainnet","chain":"ETH","rpc":["https://mainnet.era.zksync.io","https://zksync.drpc.org","wss://zksync.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://zksync.io/","shortName":"zksync","chainId":324,"networkId":324,"icon":"zksync-era","explorers":[{"name":"zkSync Era Block Explorer","url":"https://explorer.zksync.io","icon":"zksync-era","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://bridge.zksync.io/"}]}},{"name":"Web3Q Mainnet","chain":"Web3Q","rpc":["https://mainnet.web3q.io:8545"],"faucets":[],"nativeCurrency":{"name":"Web3Q","symbol":"W3Q","decimals":18},"infoURL":"https://web3q.io/home.w3q/","shortName":"w3q","chainId":333,"networkId":333,"explorers":[{"name":"w3q-mainnet","url":"https://explorer.mainnet.web3q.io","standard":"EIP3091"}]},{"name":"DFK Chain Test","chain":"DFK","icon":"dfk","rpc":["https://subnets.avax.network/defi-kingdoms/dfk-chain-testnet/rpc"],"faucets":[],"nativeCurrency":{"name":"Jewel","symbol":"JEWEL","decimals":18},"infoURL":"https://defikingdoms.com","shortName":"DFKTEST","chainId":335,"networkId":335,"slip44":1,"explorers":[{"name":"ethernal","url":"https://explorer-test.dfkchain.com","icon":"ethereum","standard":"none"}]},{"name":"Shiden","chain":"SDN","rpc":["https://shiden.api.onfinality.io/public","https://shiden-rpc.dwellir.com","https://shiden.public.blastapi.io","wss://shiden.api.onfinality.io/public-ws","wss://shiden.public.blastapi.io","wss://shiden-rpc.dwellir.com"],"faucets":[],"nativeCurrency":{"name":"Shiden","symbol":"SDN","decimals":18},"infoURL":"https://shiden.astar.network/","shortName":"sdn","chainId":336,"networkId":336,"icon":"shiden","explorers":[{"name":"subscan","url":"https://shiden.subscan.io","standard":"none","icon":"subscan"},{"name":"blockscout","url":"https://blockscout.com/shiden","icon":"blockscout","standard":"EIP3091"}]},{"name":"Cronos Testnet","chain":"CRO","rpc":["https://evm-t3.cronos.org","https://cronos-testnet.drpc.org","wss://cronos-testnet.drpc.org"],"faucets":["https://cronos.org/faucet"],"nativeCurrency":{"name":"Cronos Test Coin","symbol":"TCRO","decimals":18},"infoURL":"https://cronos.org","shortName":"tcro","chainId":338,"networkId":338,"slip44":1,"explorers":[{"name":"Cronos Testnet Explorer","url":"https://explorer.cronos.org/testnet","standard":"none"}]},{"name":"Theta Mainnet","chain":"Theta","rpc":["https://eth-rpc-api.thetatoken.org/rpc"],"faucets":[],"nativeCurrency":{"name":"Theta Fuel","symbol":"TFUEL","decimals":18},"infoURL":"https://www.thetatoken.org/","shortName":"theta-mainnet","chainId":361,"networkId":361,"explorers":[{"name":"Theta Mainnet Explorer","url":"https://explorer.thetatoken.org","standard":"EIP3091"}]},{"name":"Theta Sapphire Testnet","chain":"Theta","rpc":["https://eth-rpc-api-sapphire.thetatoken.org/rpc"],"faucets":[],"nativeCurrency":{"name":"Theta Fuel","symbol":"TFUEL","decimals":18},"infoURL":"https://www.thetatoken.org/","shortName":"theta-sapphire","chainId":363,"networkId":363,"slip44":1,"explorers":[{"name":"Theta Sapphire Testnet Explorer","url":"https://guardian-testnet-sapphire-explorer.thetatoken.org","standard":"EIP3091"}]},{"name":"Theta Amber Testnet","chain":"Theta","rpc":["https://eth-rpc-api-amber.thetatoken.org/rpc"],"faucets":[],"nativeCurrency":{"name":"Theta Fuel","symbol":"TFUEL","decimals":18},"infoURL":"https://www.thetatoken.org/","shortName":"theta-amber","chainId":364,"networkId":364,"slip44":1,"explorers":[{"name":"Theta Amber Testnet Explorer","url":"https://guardian-testnet-amber-explorer.thetatoken.org","standard":"EIP3091"}]},{"name":"Theta Testnet","chain":"Theta","rpc":["https://eth-rpc-api-testnet.thetatoken.org/rpc"],"faucets":[],"nativeCurrency":{"name":"Theta Fuel","symbol":"TFUEL","decimals":18},"infoURL":"https://www.thetatoken.org/","shortName":"theta-testnet","chainId":365,"networkId":365,"slip44":1,"explorers":[{"name":"Theta Testnet Explorer","url":"https://testnet-explorer.thetatoken.org","standard":"EIP3091"}]},{"name":"PulseChain","shortName":"pls","chain":"PLS","chainId":369,"networkId":369,"infoURL":"https://pulsechain.com/","rpc":["https://rpc.pulsechain.com","wss://rpc.pulsechain.com","https://pulsechain-rpc.publicnode.com","wss://pulsechain-rpc.publicnode.com","https://rpc-pulsechain.g4mm4.io","wss://rpc-pulsechain.g4mm4.io"],"slip44":60,"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"ens":{"registry":"0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e"},"status":"active","nativeCurrency":{"name":"Pulse","symbol":"PLS","decimals":18},"explorers":[{"name":"blockscout","url":"https://scan.pulsechain.com","icon":"blockscout","standard":"EIP3091"},{"name":"otterscan","url":"https://otter.pulsechain.com","standard":"EIP3091"}]},{"name":"Consta Testnet","chain":"tCNT","rpc":["https://rpc-testnet.theconsta.com"],"faucets":[],"nativeCurrency":{"name":"tCNT","symbol":"tCNT","decimals":18},"infoURL":"http://theconsta.com","shortName":"tCNT","chainId":371,"networkId":371,"slip44":1,"icon":"constachain","explorers":[{"name":"blockscout","url":"https://explorer-testnet.theconsta.com","standard":"EIP3091"}]},{"name":"ZKAmoeba Testnet","chain":"FIL","rpc":["https://rpc.testnet.zkamoeba.com:4050/","https://rpc1.testnet.zkamoeba.com:4050/"],"faucets":[],"nativeCurrency":{"name":"filecoin","symbol":"FIL","decimals":18},"infoURL":"https://testnet.zkamoeba.com","shortName":"zkamoeba-test","chainId":380,"networkId":380,"icon":"zkamoeba-micro","explorers":[{"name":"ZKAmoeba Test Explorer","url":"https://testnetexplorer.zkamoeba.com","icon":"zkamoeba-micro","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-314","bridges":[{"url":"https://testnet.zkamoeba.com/en/bridge"}]}},{"name":"ZKAmoeba Mainnet","chain":"FIL","rpc":["https://rpc.mainnet.zkamoeba.com/rpc"],"faucets":[],"nativeCurrency":{"name":"filecoin","symbol":"FIL","decimals":18},"infoURL":"https://www.zkamoeba.com","shortName":"zkamoeba","chainId":381,"networkId":381,"icon":"zkamoeba-micro","explorers":[{"name":"ZKAmoeba Explorer","url":"https://explorer.zkamoeba.com","icon":"zkamoeba-micro","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-314","bridges":[{"url":"https://www.zkamoeba.com/en/bridge"}]}},{"name":"Lisinski","chain":"CRO","rpc":["https://rpc-bitfalls1.lisinski.online"],"faucets":["https://pipa.lisinski.online"],"nativeCurrency":{"name":"Lisinski Ether","symbol":"LISINS","decimals":18},"infoURL":"https://lisinski.online","shortName":"lisinski","chainId":385,"networkId":385},{"name":"CamDL Testnet","chain":"CADL","rpc":["https://rpc1.testnet.camdl.gov.kh/"],"faucets":["https://faucet.testnet.camdl.gov.kh/"],"nativeCurrency":{"name":"CADL","symbol":"CADL","decimals":18},"features":[{"name":"EIP155"}],"infoURL":"https://camdl.gov.kh/","shortName":"camdl-testnet","chainId":395,"networkId":395,"icon":"camdl","explorers":[{"name":"CamDL Testnet Explorer","url":"https://explorer.testnet.camdl.gov.kh","standard":"EIP3091"}],"status":"active"},{"name":"Near Mainnet","chain":"NEAR","rpc":[],"icon":"near","faucets":[],"nativeCurrency":{"name":"NEAR","symbol":"NEAR","decimals":18},"infoURL":"https://near.org/","shortName":"near","chainId":397,"networkId":397,"explorers":[{"name":"Near Blocks","url":"https://nearblocks.io","standard":"none"}]},{"name":"Near Testnet","chain":"NEAR","rpc":[],"icon":"near","faucets":[],"nativeCurrency":{"name":"Testnet NEAR","symbol":"NEAR","decimals":18},"infoURL":"https://aurora.dev","shortName":"near-testnet","chainId":398,"networkId":398,"explorers":[{"name":"Near blocks","url":"https://testnet.nearblocks.io","standard":"none"}]},{"name":"Nativ3 Mainnet","chainId":399,"shortName":"N3","chain":"Nativ3","icon":"nativ3","networkId":399,"nativeCurrency":{"name":"USNT","symbol":"USNT","decimals":18},"rpc":["https://rpc.nativ3.network","wss://ws.nativ3.network"],"faucets":[],"explorers":[{"name":"N3scan","url":"https://scan.nativ3.network","standard":"EIP3091"}],"infoURL":"https://nativ3.network","parent":{"type":"L2","chain":"eip155-42161","bridges":[{"url":"https://bridge.nativ3.network"}]}},{"name":"HyperonChain TestNet","chain":"HPN","icon":"hyperonchain","rpc":["https://testnet-rpc.hyperonchain.com"],"faucets":["https://faucet.hyperonchain.com"],"nativeCurrency":{"name":"HyperonChain","symbol":"HPN","decimals":18},"infoURL":"https://docs.hyperonchain.com","shortName":"hpn","chainId":400,"networkId":400,"slip44":1,"explorers":[{"name":"blockscout","url":"https://testnet.hyperonchain.com","icon":"hyperonchain","standard":"EIP3091"}]},{"name":"Ozone Chain Testnet","chain":"OZONE","rpc":["https://node1.testnet.ozonechain.io"],"faucets":[],"nativeCurrency":{"name":"OZONE","symbol":"OZO","decimals":18},"infoURL":"https://ozonechain.io","shortName":"ozo_tst","chainId":401,"networkId":401,"slip44":1,"icon":"ozonechain","explorers":[{"name":"OZONE Scan","url":"https://testnet.ozonescan.io","standard":"EIP3091"}]},{"name":"Syndr L3","chainId":404,"shortName":"syndr-l3","title":"Syndr L3 Rollup","chain":"SYNDR","networkId":404,"icon":"syndr","rpc":["https://rpc.syndr.com","wss://rpc.syndr.com/ws"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://syndr.com","explorers":[{"name":"Syndr L3 Explorer","url":"https://explorer.syndr.com","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-42161","bridges":[{"url":"https://bridge.syndr.com"}]}},{"name":"Pepe Chain Mainnet","chain":"PC","status":"active","icon":"pepechain","rpc":["https://rpc.pepe-chain.vip"],"faucets":[],"nativeCurrency":{"name":"Pepe","symbol":"PEPE","decimals":18},"infoURL":"https://pepe-chain.vip","shortName":"pepe","chainId":411,"networkId":411,"explorers":[{"name":"pepechain explorer","url":"https://explorer.pepe-chain.vip","standard":"EIP3091"}]},{"name":"SX Network Mainnet","chain":"SX","icon":"SX","rpc":["https://rpc.sx.technology"],"faucets":[],"nativeCurrency":{"name":"SX Network","symbol":"SX","decimals":18},"infoURL":"https://www.sx.technology","shortName":"SX","chainId":416,"networkId":416,"explorers":[{"name":"SX Network Explorer","url":"https://explorer.sx.technology","standard":"EIP3091"}]},{"name":"LaTestnet","chain":"LaTestnet","icon":"lachain-network","rpc":["https://rpc.testnet.lachain.network","https://lachain-testnet.rpc-nodes.cedalio.dev"],"faucets":["https://faucet.lachain.network"],"nativeCurrency":{"name":"Test LaCoin","symbol":"TLA","decimals":18},"features":[{"name":"EIP155"}],"infoURL":"","shortName":"latestnet","chainId":418,"networkId":418,"explorers":[{"name":"LaTestnet Explorer","url":"https://testexplorer.lachain.network","standard":"EIP3091"}]},{"name":"Optimism Goerli Testnet","chain":"ETH","rpc":["https://goerli.optimism.io","https://optimism-goerli-rpc.publicnode.com","wss://optimism-goerli-rpc.publicnode.com","https://optimism-goerli.gateway.tenderly.co","wss://optimism-goerli.gateway.tenderly.co","https://optimism-testnet.drpc.org","wss://optimism-testnet.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Goerli Ether","symbol":"ETH","decimals":18},"infoURL":"https://optimism.io","shortName":"ogor","chainId":420,"networkId":420,"slip44":1,"explorers":[{"name":"blockscout","url":"https://optimism-goerli.blockscout.com","icon":"blockscout","standard":"EIP3091"}]},{"name":"Viridis Mainnet","chain":"VRD","icon":"viridis","rpc":["https://mainnet-rpc.vrd.network"],"faucets":[],"nativeCurrency":{"name":"Viridis Token","symbol":"VRD","decimals":18},"infoURL":"https://viridis.network","shortName":"vrd","chainId":422,"networkId":422,"explorers":[{"name":"Viridis Mainnet","url":"https://explorer.vrd.network","standard":"EIP3091"}]},{"name":"PGN (Public Goods Network)","chain":"ETH","rpc":["https://rpc.publicgoods.network"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://publicgoods.network/","shortName":"PGN","chainId":424,"networkId":424,"icon":"publicGoodsNetwork","explorers":[{"name":"blockscout","url":"https://explorer.publicgoods.network","icon":"blockscout","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://bridge.publicgoods.network"}]}},{"name":"Zeeth Chain","chain":"ZeethChain","rpc":["https://rpc.zeeth.io"],"faucets":[],"nativeCurrency":{"name":"Zeeth Token","symbol":"ZTH","decimals":18},"infoURL":"","shortName":"zeeth","chainId":427,"networkId":427,"explorers":[{"name":"Zeeth Explorer","url":"https://explorer.zeeth.io","standard":"none"}]},{"name":"Geso Verse","chain":"Geso Verse","rpc":["https://rpc.verse.gesoten.com/"],"faucets":[],"nativeCurrency":{"name":"OAS","symbol":"OAS","decimals":18},"infoURL":"https://gesoten.com/","shortName":"GSV","icon":"gesoten","chainId":428,"networkId":428,"explorers":[{"name":"Geso Verse Explorer","url":"https://explorer.verse.gesoten.com","standard":"EIP3091"}]},{"name":"Boyaa Mainnet","chain":"BYC","rpc":["https://evm-rpc.mainnet.boyaa.network"],"faucets":[],"nativeCurrency":{"name":"Boyaa mainnet native coin","symbol":"BYC","decimals":18},"infoURL":"https://boyaa.network","shortName":"BYC","chainId":434,"networkId":434,"icon":"boyaanetwork","explorers":[{"name":"Boyaa explorer","url":"https://explorer.mainnet.boyaa.network","standard":"EIP3091"}]},{"name":"Ten Testnet","title":"Ten Sepolia Rollup Testnet","chainId":443,"shortName":"ten-testnet","chain":"ETH","networkId":443,"slip44":1,"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"rpc":["https://testnet.ten.xyz"],"faucets":[],"infoURL":"https://ten.xyz","explorers":[{"name":"Ten Sepolia Rollup Explorer","url":"https://tenscan.io","standard":"none"}],"parent":{"type":"L2","chain":"eip155-5","bridges":[{"url":"https://bridge.ten.xyz"}]}},{"name":"Synapse Chain Testnet","status":"active","chain":"ETH","rpc":["https://sepolia.synapseprotocol.com"],"faucets":[],"nativeCurrency":{"name":"Sepolia ETH","symbol":"ETH","decimals":18},"infoURL":"https://synapseprotocol.com","shortName":"synapse-sepolia","chainId":444,"networkId":444,"slip44":1,"redFlags":["reusedChainId"],"explorers":[{"name":"Synapse Chain Sepolia","url":"https://sepolia.synapsescan.com","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111","bridges":[{"url":"https://docs.synapseprotocol.com/synapse-chain/using-synapse-chain/bridging-to-synapse-chain"}]}},{"name":"ARZIO Chain","chain":"ARZIO","icon":"arzio","rpc":["https://chain-rpc.arzio.co"],"faucets":[],"nativeCurrency":{"name":"ARZIO","symbol":"AZO","decimals":18},"infoURL":"https://chain.arzio.co","shortName":"arzio","chainId":456,"networkId":456,"explorers":[{"name":"ARZIO Scan","url":"https://scan.arzio.co","standard":"EIP3091"}]},{"name":"Areon Network Testnet","chain":"Areon","icon":"areon","rpc":["https://testnet-rpc.areon.network","https://testnet-rpc2.areon.network","https://testnet-rpc3.areon.network","https://testnet-rpc4.areon.network","https://testnet-rpc5.areon.network"],"faucets":[],"nativeCurrency":{"name":"Areon","symbol":"TAREA","decimals":18},"infoURL":"https://areon.network","shortName":"tarea","chainId":462,"networkId":462,"slip44":1,"explorers":[{"name":"AreonScan","url":"https://areonscan.com","standard":"none"}]},{"name":"Areon Network Mainnet","chain":"Areon","icon":"areon","rpc":["https://mainnet-rpc.areon.network","https://mainnet-rpc2.areon.network","https://mainnet-rpc3.areon.network","https://mainnet-rpc4.areon.network","https://mainnet-rpc5.areon.network"],"faucets":[],"nativeCurrency":{"name":"Areon","symbol":"AREA","decimals":18},"infoURL":"https://areon.network","shortName":"area","chainId":463,"networkId":463,"explorers":[{"name":"AreonScan","url":"https://areonscan.com","standard":"none"}]},{"name":"Rupaya","chain":"RUPX","rpc":[],"faucets":[],"nativeCurrency":{"name":"Rupaya","symbol":"RUPX","decimals":18},"infoURL":"https://www.rupaya.io","shortName":"rupx","chainId":499,"networkId":499,"slip44":499},{"name":"Camino C-Chain","chain":"CAM","rpc":["https://api.camino.network/ext/bc/C/rpc"],"faucets":[],"nativeCurrency":{"name":"Camino","symbol":"CAM","decimals":18},"infoURL":"https://camino.network/","shortName":"Camino","chainId":500,"networkId":1000,"icon":"camino","explorers":[{"name":"blockexplorer","url":"https://suite.camino.network/explorer","standard":"none"}]},{"name":"Columbus Test Network","chain":"CAM","rpc":["https://columbus.camino.network/ext/bc/C/rpc"],"faucets":[],"nativeCurrency":{"name":"Camino","symbol":"CAM","decimals":18},"infoURL":"https://camino.network/","shortName":"Columbus","chainId":501,"networkId":1001,"slip44":1,"icon":"camino","explorers":[{"name":"blockexplorer","url":"https://suite.camino.network/explorer","standard":"none"}]},{"name":"Syndicate Chain","title":"Syndicate Chain","chain":"Syndicate","rpc":["https://rpc-mainnet.syndicate.io"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://syndicate.io","shortName":"syndicate-chain-mainnet","chainId":510,"networkId":510,"status":"incubating","icon":"syndicate"},{"name":"Double-A Chain Mainnet","chain":"AAC","rpc":["https://rpc.acuteangle.com"],"faucets":[],"nativeCurrency":{"name":"Acuteangle Native Token","symbol":"AAC","decimals":18},"infoURL":"https://www.acuteangle.com/","shortName":"aac","chainId":512,"networkId":512,"slip44":1512,"explorers":[{"name":"aacscan","url":"https://scan.acuteangle.com","standard":"EIP3091"}],"icon":"aac"},{"name":"Double-A Chain Testnet","chain":"AAC","icon":"aac","rpc":["https://rpc-testnet.acuteangle.com"],"faucets":["https://scan-testnet.acuteangle.com/faucet"],"nativeCurrency":{"name":"Acuteangle Native Token","symbol":"AAC","decimals":18},"infoURL":"https://www.acuteangle.com/","shortName":"aact","chainId":513,"networkId":513,"slip44":1,"explorers":[{"name":"aacscan-testnet","url":"https://scan-testnet.acuteangle.com","standard":"EIP3091"}]},{"name":"Gear Zero Network Mainnet","chain":"GearZero","rpc":["https://gzn.linksme.info"],"faucets":[],"nativeCurrency":{"name":"Gear Zero Network Native Token","symbol":"GZN","decimals":18},"infoURL":"https://token.gearzero.ca/mainnet","shortName":"gz-mainnet","chainId":516,"networkId":516,"slip44":516,"explorers":[]},{"name":"XT Smart Chain Mainnet","chain":"XSC","icon":"xsc","rpc":["https://datarpc1.xsc.pub","https://datarpc2.xsc.pub","https://datarpc3.xsc.pub"],"faucets":["https://xsc.pub/faucet"],"nativeCurrency":{"name":"XT Smart Chain Native Token","symbol":"XT","decimals":18},"infoURL":"https://xsc.pub/","shortName":"xt","chainId":520,"networkId":1024,"explorers":[{"name":"xscscan","url":"https://xscscan.pub","standard":"EIP3091"}]},{"name":"Firechain Mainnet","chain":"FIRE","icon":"firechain","rpc":["https://rpc-mainnet.thefirechain.com"],"faucets":[],"nativeCurrency":{"name":"Firechain","symbol":"FIRE","decimals":18},"infoURL":"https://thefirechain.com","shortName":"fire","chainId":529,"networkId":529,"explorers":[],"status":"incubating"},{"name":"F(x)Core Mainnet Network","chain":"Fxcore","rpc":["https://fx-json-web3.functionx.io:8545"],"faucets":[],"nativeCurrency":{"name":"Function X","symbol":"FX","decimals":18},"infoURL":"https://functionx.io/","shortName":"FxCore","chainId":530,"networkId":530,"icon":"fxcore","explorers":[{"name":"FunctionX Explorer","url":"https://fx-evm.functionx.io","standard":"EIP3091"}]},{"name":"Candle","chain":"Candle","rpc":["https://candle-rpc.com/","https://rpc.cndlchain.com"],"faucets":[],"nativeCurrency":{"name":"CANDLE","symbol":"CNDL","decimals":18},"infoURL":"https://candlelabs.org/","shortName":"CNDL","chainId":534,"networkId":534,"slip44":674,"explorers":[{"name":"candleexplorer","url":"https://candleexplorer.com","standard":"EIP3091"}]},{"name":"OpTrust Mainnet","chain":"OpTrust","rpc":["https://rpc.optrust.io"],"faucets":[],"nativeCurrency":{"name":"BSC","symbol":"BNB","decimals":18},"infoURL":"https://optrust.io","shortName":"optrust","chainId":537,"networkId":537,"icon":"optrust","explorers":[{"name":"OpTrust explorer","url":"https://scan.optrust.io","icon":"optrust","standard":"none"}]},{"name":"PAWCHAIN Testnet","chain":"PAW","rpc":["https://pawchainx.com/"],"faucets":[],"nativeCurrency":{"name":"PAW","symbol":"PAW","decimals":18},"infoURL":"https://pawchainx.com/","shortName":"PAW","chainId":542,"networkId":542,"slip44":1,"explorers":[{"name":"PAWCHAIN Testnet","url":"https://pawscan.io","standard":"none"}]},{"name":"Testnet","chain":"Flow","rpc":["https://testnet.evm.nodes.onflow.org"],"faucets":["https://testnet-faucet.onflow.org"],"nativeCurrency":{"name":"FLOW","symbol":"FLOW","decimals":18},"infoURL":"https://developers.flow.com/evm/about","shortName":"flow-testnet","chainId":545,"networkId":545,"icon":"flowevm","explorers":[{"name":"Flow Diver","url":"https://testnet.flowdiver.io","standard":"none"}]},{"name":"Vela1 Chain Mainnet","chain":"VELA1","rpc":["https://rpc.velaverse.io"],"faucets":[],"nativeCurrency":{"name":"CLASS COIN","symbol":"CLASS","decimals":18},"infoURL":"https://velaverse.io","shortName":"CLASS","chainId":555,"networkId":555,"explorers":[{"name":"Vela1 Chain Mainnet Explorer","url":"https://exp.velaverse.io","standard":"EIP3091"}]},{"name":"Tao Network","chain":"TAO","rpc":["https://rpc.testnet.tao.network","http://rpc.testnet.tao.network:8545","https://rpc.tao.network","wss://rpc.tao.network"],"faucets":[],"nativeCurrency":{"name":"Tao","symbol":"TAO","decimals":18},"infoURL":"https://tao.network","shortName":"tao","chainId":558,"networkId":558},{"name":"Dogechain Testnet","chain":"DC","icon":"dogechain","rpc":["https://rpc-testnet.dogechain.dog"],"faucets":["https://faucet.dogechain.dog"],"nativeCurrency":{"name":"Dogecoin","symbol":"DOGE","decimals":18},"infoURL":"https://dogechain.dog","shortName":"dct","chainId":568,"networkId":568,"slip44":1,"explorers":[{"name":"dogechain testnet explorer","url":"https://explorer-testnet.dogechain.dog","standard":"EIP3091"}]},{"name":"Rollux Mainnet","chain":"SYS","rpc":["https://rpc.rollux.com","wss://rpc.rollux.com/wss","https://rollux.rpc.syscoin.org","wss://rollux.rpc.syscoin.org/wss"],"faucets":["https://rollux.id/faucetapp"],"nativeCurrency":{"name":"Syscoin","symbol":"SYS","decimals":18},"infoURL":"https://rollux.com","shortName":"sys-rollux","chainId":570,"networkId":570,"explorers":[{"name":"Rollux Explorer","url":"https://explorer.rollux.com","standard":"EIP3091"}]},{"name":"MetaChain Mainnet","chain":"MTC","icon":"metachain","rpc":["https://rpc.metatime.com"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Metatime Coin","symbol":"MTC","decimals":18},"infoURL":"https://metatime.com/en","shortName":"metatime","chainId":571,"networkId":571,"slip44":571,"explorers":[{"name":"MetaExplorer","url":"https://explorer.metatime.com","standard":"EIP3091"}]},{"name":"Filenova Mainnet","chain":"Filenova","rpc":["https://rpc.filenova.org"],"faucets":[],"nativeCurrency":{"name":"Filecoin","symbol":"FIL","decimals":18},"infoURL":"https://filenova.org","shortName":"filenova","chainId":579,"networkId":579,"icon":"filenova","explorers":[{"name":"filenova explorer","url":"https://scan.filenova.org","icon":"filenova","standard":"none"}]},{"name":"Metis Stardust Testnet","chain":"ETH","rpc":["https://stardust.metis.io/?owner=588"],"faucets":[],"nativeCurrency":{"name":"tMetis","symbol":"METIS","decimals":18},"infoURL":"https://www.metis.io","shortName":"metis-stardust","chainId":588,"networkId":588,"slip44":1,"explorers":[{"name":"blockscout","url":"https://stardust-explorer.metis.io","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-4","bridges":[{"url":"https://bridge.metis.io"}]},"status":"deprecated"},{"name":"Astar","chain":"ASTR","rpc":["https://rpc.astar.network:8545"],"faucets":[],"nativeCurrency":{"name":"Astar","symbol":"ASTR","decimals":18},"infoURL":"https://astar.network/","shortName":"astr","chainId":592,"networkId":592,"icon":"astar","explorers":[{"name":"subscan","url":"https://astar.subscan.io","standard":"none","icon":"subscan"},{"name":"blockscout","url":"https://blockscout.com/astar","icon":"blockscout","standard":"EIP3091"}]},{"name":"Acala Mandala Testnet TC9","chain":"mACA","rpc":["https://eth-rpc-tc9.aca-staging.network","wss://eth-rpc-tc9.aca-staging.network"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Acala Mandala Token","symbol":"mACA","decimals":18},"infoURL":"https://acala.network","shortName":"maca","chainId":595,"networkId":595,"slip44":1,"explorers":[{"name":"blockscout","url":"https://blockscout.mandala.aca-staging.network","standard":"EIP3091"}]},{"name":"Karura Network Testnet","chain":"KAR","rpc":["https://eth-rpc-karura-testnet.aca-staging.network","wss://eth-rpc-karura-testnet.aca-staging.network"],"faucets":[],"nativeCurrency":{"name":"Karura Token","symbol":"KAR","decimals":18},"infoURL":"https://karura.network","shortName":"tkar","chainId":596,"networkId":596,"slip44":1,"explorers":[{"name":"blockscout","url":"https://blockscout.karura-testnet.aca-staging.network","standard":"EIP3091"}]},{"name":"Acala Network Testnet","chain":"ACA","rpc":["https://eth-rpc-acala-testnet.aca-staging.network","wss://eth-rpc-acala-testnet.aca-staging.network"],"faucets":[],"nativeCurrency":{"name":"Acala Token","symbol":"ACA","decimals":18},"infoURL":"https://acala.network","shortName":"taca","chainId":597,"networkId":597,"slip44":1,"explorers":[{"name":"blockscout","url":"https://blockscout.acala-dev.aca-dev.network","standard":"EIP3091"}]},{"name":"Metis Goerli Testnet","chain":"ETH","rpc":["https://goerli.gateway.metisdevops.link"],"faucets":["https://goerli.faucet.metisdevops.link"],"nativeCurrency":{"name":"Goerli Metis","symbol":"METIS","decimals":18},"infoURL":"https://www.metis.io","shortName":"metis-goerli","chainId":599,"networkId":599,"slip44":1,"explorers":[{"name":"blockscout","url":"https://goerli.explorer.metisdevops.link","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-4","bridges":[{"url":"https://testnet-bridge.metis.io"}]}},{"name":"Meshnyan testnet","chain":"MeshTestChain","rpc":[],"faucets":[],"nativeCurrency":{"name":"Meshnyan Testnet Native Token","symbol":"MESHT","decimals":18},"infoURL":"","shortName":"mesh-chain-testnet","chainId":600,"networkId":600,"slip44":1},{"name":"Vine Testnet","chain":"VINE","rpc":["https://rpc-testnet.vne.network"],"faucets":["https://vne.network/rose"],"nativeCurrency":{"name":"VINE","symbol":"VNE","decimals":18},"infoURL":"https://www.peer.inc","shortName":"VINE","chainId":601,"networkId":601,"icon":"vine","explorers":[{"name":"Vine Explorer","url":"https://vne.network/rose","standard":"none","icon":"vine"}]},{"name":"EIOB Mainnet","chain":"EIOB","icon":"eiob","rpc":["https://rpc.eiob.xyz"],"faucets":[],"nativeCurrency":{"name":"EIOB","symbol":"EIOB","decimals":18},"infoURL":"","shortName":"eiob","chainId":612,"networkId":612,"explorers":[{"name":"EIOB Explorer","url":"https://explorer.eiob.xyz","standard":"none"}]},{"name":"Graphlinq Blockchain Mainnet","chain":"GLQ Blockchain","rpc":["https://glq-dataseed.graphlinq.io"],"faucets":[],"nativeCurrency":{"name":"GLQ","symbol":"GLQ","decimals":18},"infoURL":"https://graphlinq.io","shortName":"glq","chainId":614,"networkId":614,"explorers":[{"name":"GLQ Explorer","url":"https://explorer.graphlinq.io","standard":"none"}]},{"name":"Avocado","chain":"Avocado","rpc":["https://rpc.avocado.instadapp.io"],"faucets":[],"nativeCurrency":{"name":"USDC","symbol":"USDC","decimals":18},"infoURL":"https://avocado.instadapp.io","shortName":"avocado","chainId":634,"networkId":634,"icon":"avocado","explorers":[{"name":"avoscan","url":"https://avoscan.co","icon":"avocado","standard":"none"}]},{"name":"Previewnet","chain":"Flow","rpc":["https://previewnet.evm.nodes.onflow.org"],"faucets":["https://previewnet-faucet.onflow.org"],"nativeCurrency":{"name":"FLOW","symbol":"FLOW","decimals":18},"infoURL":"https://developers.flow.com/evm/about","shortName":"flow-previewnet","chainId":646,"networkId":646,"icon":"flowevm","explorers":[{"name":"Flow Diver","url":"https://previewnet.flowdiver.io","standard":"none"}]},{"name":"SX Network Testnet","chain":"SX","icon":"SX","rpc":["https://rpc.toronto.sx.technology"],"faucets":["https://faucet.toronto.sx.technology"],"nativeCurrency":{"name":"SX Network","symbol":"SX","decimals":18},"infoURL":"https://www.sx.technology","shortName":"SX-Testnet","chainId":647,"networkId":647,"slip44":1,"explorers":[{"name":"SX Network Toronto Explorer","url":"https://explorer.toronto.sx.technology","standard":"EIP3091"}]},{"name":"Endurance Smart Chain Mainnet","chain":"ACE","rpc":["https://rpc-endurance.fusionist.io/"],"faucets":[],"nativeCurrency":{"name":"Endurance Chain Native Token","symbol":"ACE","decimals":18},"infoURL":"https://ace.fusionist.io/","shortName":"ace","chainId":648,"networkId":648,"explorers":[{"name":"Endurance Scan","url":"https://explorer.endurance.fusionist.io","standard":"EIP3091"}]},{"name":"Kalichain Testnet","chain":"Kalichain","rpc":["https://rpc.kalichain.com"],"faucets":[],"nativeCurrency":{"name":"kalis","symbol":"KALIS","decimals":18},"infoURL":"https://kalichain.com","shortName":"kalichain","chainId":653,"networkId":653,"icon":"kalichain","explorers":[{"name":"kalichain explorer","url":"https://explorer.kalichain.com","standard":"EIP3091"}]},{"name":"Kalichain","chain":"Kalichain","rpc":["https://mainnet.kalichain.com"],"faucets":[],"nativeCurrency":{"name":"kalis","symbol":"KALIS","decimals":18},"infoURL":"https://kalichain.com","shortName":"kalichainMainnet","chainId":654,"networkId":654,"icon":"kalichain","explorers":[{"name":"kalichain explorer","url":"https://explorer.kalichain.com","standard":"EIP3091"}]},{"name":"Pixie Chain Testnet","chain":"PixieChain","rpc":["https://http-testnet.chain.pixie.xyz","wss://ws-testnet.chain.pixie.xyz"],"faucets":["https://chain.pixie.xyz/faucet"],"nativeCurrency":{"name":"Pixie Chain Testnet Native Token","symbol":"PCTT","decimals":18},"infoURL":"https://scan-testnet.chain.pixie.xyz","shortName":"pixie-chain-testnet","chainId":666,"networkId":666,"slip44":1},{"name":"LAOS Arrakis","title":"LAOS Testnet Arrakis","chain":"LAOS","icon":"laos","rpc":["https://arrakis.gorengine.com/own","wss://arrakis.gorengine.com/own"],"faucets":[],"nativeCurrency":{"name":"LAOS","symbol":"LAOS","decimals":18},"infoURL":"https://www.laosfoundation.io/","shortName":"laos","chainId":667,"networkId":667,"explorers":[{"name":"blockscout","url":"https://arrakis.gorengine.com","icon":"laos","standard":"EIP3091"}]},{"name":"JuncaChain","chain":"JuncaChain","rpc":["https://rpc.juncachain.com"],"nativeCurrency":{"name":"JuncaChain Native Token","symbol":"JGC","decimals":18},"faucets":[],"infoURL":"https://junca-cash.world","shortName":"junca","chainId":668,"networkId":668,"explorers":[{"name":"JuncaScan","url":"https://scan.juncachain.com","standard":"EIP3091"}]},{"name":"JuncaChain testnet","chain":"JuncaChain testnet","rpc":["https://rpc-testnet.juncachain.com","wss://ws-testnet.juncachain.com"],"faucets":["https://faucet-testnet.juncachain.com"],"nativeCurrency":{"name":"JuncaChain Testnet Native Token","symbol":"JGCT","decimals":18},"infoURL":"https://junca-cash.world","shortName":"juncat","chainId":669,"networkId":669,"slip44":1,"explorers":[{"name":"JuncaScan","url":"https://scan-testnet.juncachain.com","standard":"EIP3091"}]},{"name":"Karura Network","chain":"KAR","rpc":["https://eth-rpc-karura.aca-api.network","wss://eth-rpc-karura.aca-api.network"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Karura Token","symbol":"KAR","decimals":18},"infoURL":"https://acala.network/karura","shortName":"kar","chainId":686,"networkId":686,"slip44":686,"explorers":[{"name":"blockscout","url":"https://blockscout.karura.network","standard":"EIP3091"}]},{"name":"Star Social Testnet","chain":"SNS","rpc":["https://avastar.cc/ext/bc/C/rpc"],"faucets":[],"nativeCurrency":{"name":"Social","symbol":"SNS","decimals":18},"infoURL":"https://info.avastar.cc","shortName":"SNS","chainId":700,"networkId":700,"slip44":1,"explorers":[{"name":"starscan","url":"https://avastar.info","standard":"EIP3091"}]},{"name":"BlockChain Station Mainnet","chain":"BCS","rpc":["https://rpc-mainnet.bcsdev.io","wss://rpc-ws-mainnet.bcsdev.io"],"faucets":[],"nativeCurrency":{"name":"BCS Token","symbol":"BCS","decimals":18},"infoURL":"https://blockchainstation.io","shortName":"bcs","chainId":707,"networkId":707,"explorers":[{"name":"BlockChain Station Explorer","url":"https://explorer.bcsdev.io","standard":"EIP3091"}]},{"name":"BlockChain Station Testnet","chain":"BCS","rpc":["https://rpc-testnet.bcsdev.io","wss://rpc-ws-testnet.bcsdev.io"],"faucets":["https://faucet.bcsdev.io"],"nativeCurrency":{"name":"BCS Testnet Token","symbol":"tBCS","decimals":18},"infoURL":"https://blockchainstation.io","shortName":"tbcs","chainId":708,"networkId":708,"slip44":1,"explorers":[{"name":"BlockChain Station Explorer","url":"https://testnet.bcsdev.io","standard":"EIP3091"}]},{"name":"Highbury","chain":"HIGHBURY","rpc":["https://highbury.furya.io","https://rest.furya.io"],"faucets":[],"nativeCurrency":{"name":"Fury","symbol":"FURY","decimals":18},"infoURL":"https://www.fury.black","shortName":"fury","chainId":710,"networkId":710,"icon":"highbury","explorers":[{"name":"Furya EVM Explorer","url":"https://explorer.furya.io","standard":"EIP3091","icon":"highbury"}]},{"name":"Vrcscan Mainnet","chain":"VRC","rpc":["https://rpc-mainnet-5.vrcscan.com","https://rpc-mainnet-6.vrcscan.com","https://rpc-mainnet-7.vrcscan.com","https://rpc-mainnet-8.vrcscan.com"],"faucets":[],"nativeCurrency":{"name":"VRC Chain","symbol":"VRC","decimals":18},"infoURL":"https://vrccoin.com","shortName":"vrc","chainId":713,"networkId":713,"explorers":[{"name":"vrcscan","url":"https://vrcscan.com","standard":"EIP3091"},{"name":"dxbscan","url":"https://dxb.vrcscan.com","standard":"EIP3091"}],"icon":"vrcscan"},{"name":"Shibarium Beta","chain":"Shibarium","icon":"shibarium","rpc":["https://puppynet.shibrpc.com"],"faucets":[],"nativeCurrency":{"name":"BONE","symbol":"BONE","decimals":18},"infoURL":"https://beta.shibariumtech.com","shortName":"shibarium","chainId":719,"networkId":719,"explorers":[{"name":"shibscan","url":"https://puppyscan.shib.io","standard":"EIP3091"}]},{"name":"Lycan Chain","chain":"LYC","rpc":["https://rpc.lycanchain.com/"],"faucets":[],"nativeCurrency":{"name":"Lycan","symbol":"LYC","decimals":18},"infoURL":"https://lycanchain.com","shortName":"LYC","chainId":721,"networkId":721,"icon":"lycanchain","explorers":[{"name":"blockscout","url":"https://explorer.lycanchain.com","standard":"EIP3091"}]},{"name":"Blucrates","chain":"BLU","rpc":["https://data.bluchain.pro"],"faucets":[],"nativeCurrency":{"name":"Blucrates","symbol":"BLU","decimals":18},"infoURL":"https://www.blucrates.com","shortName":"blu","chainId":727,"networkId":727,"slip44":727},{"name":"Lovely Network Mainnet","chain":"Lovely","icon":"lovely","rpc":["https://rpc.lovely.network"],"faucets":[],"nativeCurrency":{"name":"Lovely","symbol":"LOVELY","decimals":18},"infoURL":"https://lovely.network","shortName":"LOVELY","chainId":730,"networkId":730,"explorers":[{"name":"Lovely Network Mainnet","url":"https://scan.lovely.network","standard":"EIP3091"}]},{"name":"Canto Testnet","chain":"Canto Tesnet","rpc":["https://eth.plexnode.wtf/"],"faucets":[],"nativeCurrency":{"name":"Canto","symbol":"CANTO","decimals":18},"infoURL":"https://canto.io","shortName":"tcanto","chainId":740,"networkId":740,"slip44":1,"explorers":[{"name":"Canto Tesnet Explorer (Neobase)","url":"https://testnet-explorer.canto.neobase.one","standard":"none"}],"status":"deprecated"},{"name":"Vention Smart Chain Testnet","chain":"VSCT","icon":"ventionTestnet","rpc":["https://node-testnet.vention.network"],"faucets":["https://faucet.vention.network"],"nativeCurrency":{"name":"VNT","symbol":"VNT","decimals":18},"infoURL":"https://testnet.ventionscan.io","shortName":"vsct","chainId":741,"networkId":741,"slip44":1,"explorers":[{"name":"ventionscan","url":"https://testnet.ventionscan.io","standard":"EIP3091"}]},{"name":"Script Testnet","chain":"SPAY","rpc":["https://testeth-rpc-api.script.tv/rpc"],"faucets":[],"nativeCurrency":{"name":"Script","symbol":"SPAY","decimals":18},"infoURL":"https://token.script.tv","shortName":"SPAY","chainId":742,"networkId":742,"slip44":1,"explorers":[{"name":"Script Explorer","url":"https://explorer.script.tv","standard":"none"}]},{"name":"Mainnet","chain":"Flow","rpc":["https://mainnet.evm.nodes.onflow.org"],"faucets":[],"nativeCurrency":{"name":"FLOW","symbol":"FLOW","decimals":18},"infoURL":"https://developers.flow.com/evm/about","shortName":"flow-mainnet","chainId":747,"networkId":747,"icon":"flowevm","explorers":[{"name":"Flow Diver","url":"https://flowdiver.io","standard":"none"}]},{"name":"QL1","chain":"QOM","status":"incubating","rpc":["https://rpc.qom.one"],"faucets":[],"nativeCurrency":{"name":"Shiba Predator","symbol":"QOM","decimals":18},"infoURL":"https://qom.one","shortName":"qom","chainId":766,"networkId":766,"icon":"qom","explorers":[{"name":"QL1 Mainnet Explorer","url":"https://mainnet.qom.one","icon":"qom","standard":"EIP3091"}]},{"name":"OpenChain Testnet","chain":"OpenChain Testnet","rpc":[],"faucets":["https://faucet.openchain.info/"],"nativeCurrency":{"name":"Openchain Testnet","symbol":"TOPC","decimals":18},"infoURL":"https://testnet.openchain.info/","shortName":"opc","chainId":776,"networkId":776,"slip44":1,"explorers":[{"name":"OPEN CHAIN TESTNET","url":"https://testnet.openchain.info","standard":"none"}]},{"name":"cheapETH","chain":"cheapETH","rpc":["https://node.cheapeth.org/rpc"],"faucets":[],"nativeCurrency":{"name":"cTH","symbol":"cTH","decimals":18},"infoURL":"https://cheapeth.org/","shortName":"cth","chainId":777,"networkId":777},{"name":"MAAL Chain","chain":"MAAL","icon":"maal","rpc":["https://node1-mainnet.maalscan.io/","https://node2-mainnet.maalscan.io/","https://node3-mainnet.maalscan.io/"],"faucets":[],"nativeCurrency":{"name":"MAAL","symbol":"MAAL","decimals":18},"infoURL":"https://www.maalchain.com/","shortName":"maal","chainId":786,"networkId":786,"explorers":[{"name":"maalscan","url":"https://maalscan.io","standard":"EIP3091"}]},{"name":"Acala Network","chain":"ACA","rpc":["https://eth-rpc-acala.aca-api.network","wss://eth-rpc-acala.aca-api.network"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Acala Token","symbol":"ACA","decimals":18},"infoURL":"https://acala.network","shortName":"aca","chainId":787,"networkId":787,"slip44":787,"explorers":[{"name":"blockscout","url":"https://blockscout.acala.network","standard":"EIP3091"}]},{"name":"Aerochain Testnet","chain":"Aerochain","rpc":["https://testnet-rpc.aerochain.id/"],"faucets":["https://faucet.aerochain.id/"],"nativeCurrency":{"name":"Aerochain Testnet","symbol":"TAero","decimals":18},"infoURL":"https://aerochaincoin.org/","shortName":"taero","chainId":788,"networkId":788,"slip44":1,"explorers":[{"name":"aeroscan","url":"https://testnet.aeroscan.id","standard":"EIP3091"}]},{"name":"Patex","chain":"ETH","icon":"patex","rpc":["https://rpc.patex.io/"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://patex.io/","shortName":"peth","chainId":789,"networkId":789,"explorers":[{"name":"patexscan","url":"https://patexscan.io","icon":"patex","standard":"EIP3091"}]},{"name":"Rupaya Testnet","chain":"Rupaya Testnet","rpc":["https://rpc.testnet.rupaya.io"],"faucets":["https://faucet.testnet.rupaya.io"],"nativeCurrency":{"name":"Test Rupaya","symbol":"TRUPX","decimals":18},"infoURL":"https://www.rupaya.io","shortName":"RupayaTestnet","chainId":799,"networkId":799,"slip44":1,"explorers":[{"name":"rupayascan","url":"https://scan.testnet.rupaya.io","standard":"EIP3091"}]},{"name":"Lucid Blockchain","chain":"Lucid","icon":"lucid","rpc":["https://rpc.lucidcoin.io"],"faucets":["https://faucet.lucidcoin.io"],"nativeCurrency":{"name":"LUCID","symbol":"LUCID","decimals":18},"infoURL":"https://lucidcoin.io","shortName":"LUCID","chainId":800,"networkId":800,"explorers":[{"name":"Lucid Explorer","url":"https://explorer.lucidcoin.io","standard":"none"}]},{"name":"Haic","chain":"Haic","rpc":["https://orig.haichain.io/"],"faucets":[],"nativeCurrency":{"name":"Haicoin","symbol":"HAIC","decimals":18},"infoURL":"https://www.haichain.io/","shortName":"haic","chainId":803,"networkId":803},{"name":"Portal Fantasy Chain Test","chain":"PF","icon":"pf","rpc":["https://subnets.avax.network/portal-fantasy/testnet/rpc"],"faucets":[],"nativeCurrency":{"name":"Portal Fantasy Token","symbol":"PFT","decimals":18},"infoURL":"https://portalfantasy.io","shortName":"PFTEST","chainId":808,"networkId":808,"slip44":1,"explorers":[]},{"name":"Haven1 Testnet","chain":"haven1","rpc":["https://testnet-rpc.haven1.org"],"faucets":["https://www.haven1.org/faucet"],"nativeCurrency":{"name":"Haven1","symbol":"H1","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://www.haven1.org","shortName":"h1","chainId":810,"networkId":810,"icon":"haven1","explorers":[{"name":"Haven1 Explorer","url":"https://testnet-explorer.haven1.org","icon":"haven1","standard":"EIP3091"}]},{"name":"Qitmeer Network Mainnet","chain":"MEER","rpc":["https://evm-dataseed1.meerscan.io","https://evm-dataseed2.meerscan.io","https://evm-dataseed3.meerscan.io","https://evm-dataseed.meerscan.com","https://qng.rpc.qitmeer.io","https://mainnet.meerlabs.com","https://rpc.dimai.ai","https://rpc.woowow.io"],"faucets":[],"nativeCurrency":{"name":"Qitmeer","symbol":"MEER","decimals":18},"infoURL":"https://github.com/Qitmeer","shortName":"meer","chainId":813,"networkId":813,"slip44":813,"icon":"meer","explorers":[{"name":"meerscan","icon":"meer","url":"https://qng.qitmeer.io","standard":"EIP3091"},{"name":"meerscan","icon":"meer","url":"https://qng.meerscan.io","standard":"EIP3091"}]},{"name":"Firechain zkEVM","title":"Firechain zkEVM","chain":"Firechain","rpc":["https://rpc-zkevm.thefirechain.com"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://docs.thefirechain.com/","shortName":"firechan-zkEVM","chainId":814,"networkId":814,"icon":"firechain","explorers":[],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://zkevm-bridge-rpc.thefirechain.com"}]}},{"name":"BeOne Chain Mainnet","chain":"BOC","icon":"beonechain","rpc":["https://dataseed1.beonechain.com","https://dataseed2.beonechain.com","https://dataseed-us1.beonechain.com","https://dataseed-us2.beonechain.com","https://dataseed-uk1.beonechain.com","https://dataseed-uk2.beonechain.com"],"faucets":[],"nativeCurrency":{"name":"BeOne Chain Mainnet","symbol":"BOC","decimals":18},"infoURL":"https://beonechain.com","shortName":"BOC","chainId":818,"networkId":818,"slip44":8181,"explorers":[{"name":"BeOne Chain Mainnet","url":"https://beonescan.com","standard":"EIP3091"}]},{"name":"Callisto Mainnet","chain":"CLO","rpc":["https://rpc.callisto.network/"],"faucets":[],"nativeCurrency":{"name":"Callisto","symbol":"CLO","decimals":18},"infoURL":"https://callisto.network","shortName":"clo","chainId":820,"networkId":1,"slip44":820},{"name":"Callisto Testnet Deprecated","chain":"CLO","rpc":[],"faucets":[],"nativeCurrency":{"name":"Callisto Testnet Ether","symbol":"TCLO","decimals":18},"infoURL":"https://callisto.network","shortName":"tclo","chainId":821,"networkId":2,"slip44":1,"status":"deprecated"},{"name":"Runic Chain Testnet","chain":"Runic","rpc":["https://rpc-testnet.runic.build"],"faucets":["https://faucet.runic.build"],"nativeCurrency":{"name":"Bitcoin","symbol":"rBTC","decimals":18},"infoURL":"https://runic.build","shortName":"runic-testnet","chainId":822,"networkId":822,"status":"active","icon":"runic-testnet","explorers":[{"name":"RunicScan","url":"https://scan.runic.build","icon":"runic-testnet","standard":"EIP3091"}]},{"name":"CheckDot Blockchain Devnet","chain":"CDT Blockchain","rpc":["https://devnet.checkdot.io"],"faucets":[],"nativeCurrency":{"name":"CDT","symbol":"CDT","decimals":18},"infoURL":"https://checkdot.io","shortName":"cdt","chainId":831,"networkId":831,"explorers":[{"name":"CDT Explorer","url":"https://explorer.checkdot.io","standard":"none"}]},{"name":"Taraxa Mainnet","chain":"Tara","icon":"taraxa","rpc":["https://rpc.mainnet.taraxa.io/"],"faucets":[],"nativeCurrency":{"name":"Tara","symbol":"TARA","decimals":18},"infoURL":"https://taraxa.io","shortName":"tara","chainId":841,"networkId":841,"explorers":[{"name":"Taraxa Explorer","url":"https://explorer.mainnet.taraxa.io","standard":"none"}]},{"name":"Taraxa Testnet","chain":"Tara","icon":"taraxa","rpc":["https://rpc.testnet.taraxa.io/"],"faucets":[],"nativeCurrency":{"name":"Tara","symbol":"TARA","decimals":18},"infoURL":"https://taraxa.io","shortName":"taratest","chainId":842,"networkId":842,"slip44":1,"explorers":[{"name":"Taraxa Explorer","url":"https://explorer.testnet.taraxa.io","standard":"none"}]},{"name":"Zeeth Chain Dev","chain":"ZeethChainDev","rpc":["https://rpc.dev.zeeth.io"],"faucets":[],"nativeCurrency":{"name":"Zeeth Token","symbol":"ZTH","decimals":18},"infoURL":"","shortName":"zeethdev","chainId":859,"networkId":859,"explorers":[{"name":"Zeeth Explorer Dev","url":"https://explorer.dev.zeeth.io","standard":"none"}]},{"name":"Fantasia Chain Mainnet","chain":"FSC","rpc":["https://mainnet-data1.fantasiachain.com/","https://mainnet-data2.fantasiachain.com/","https://mainnet-data3.fantasiachain.com/"],"faucets":[],"nativeCurrency":{"name":"FST","symbol":"FST","decimals":18},"infoURL":"https://fantasiachain.com/","shortName":"FSCMainnet","chainId":868,"networkId":868,"explorers":[{"name":"FSCScan","url":"https://explorer.fantasiachain.com","standard":"EIP3091"}]},{"name":"Bandai Namco Research Verse Mainnet","chain":"Bandai Namco Research Verse","icon":"bnken","rpc":["https://rpc.main.oasvrs.bnken.net"],"faucets":[],"nativeCurrency":{"name":"OAS","symbol":"OAS","decimals":18},"infoURL":"https://www.bandainamco-mirai.com/en/","shortName":"BNKEN","chainId":876,"networkId":876,"explorers":[{"name":"Bandai Namco Research Verse Explorer","url":"https://explorer.main.oasvrs.bnken.net","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-248"}},{"name":"Dexit Network","chain":"DXT","rpc":["https://dxt.dexit.network"],"faucets":["https://faucet.dexit.network"],"nativeCurrency":{"name":"Dexit network","symbol":"DXT","decimals":18},"infoURL":"https://dexit.network","shortName":"DXT","chainId":877,"networkId":877,"explorers":[{"name":"dxtscan","url":"https://dxtscan.com","standard":"EIP3091"}]},{"name":"Ambros Chain Mainnet","chain":"ambroschain","rpc":["https://api.ambros.network"],"faucets":[],"nativeCurrency":{"name":"AMBROS","symbol":"AMBROS","decimals":18},"infoURL":"https://ambros.network","shortName":"ambros","chainId":880,"networkId":880,"explorers":[{"name":"Ambros Chain Explorer","url":"https://ambrosscan.com","standard":"none"}]},{"name":"Wanchain","chain":"WAN","rpc":["https://gwan-ssl.wandevs.org:56891/"],"faucets":[],"nativeCurrency":{"name":"Wancoin","symbol":"WAN","decimals":18},"infoURL":"https://www.wanscan.org","shortName":"wan","chainId":888,"networkId":888,"slip44":5718350},{"name":"MAXI Chain Testnet","chain":"MAXI","rpc":["https://rpc-testnet.maxi.network"],"faucets":["https://faucet.maxi.network"],"nativeCurrency":{"name":"MAXICOIN","symbol":"MAXI","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://maxi.network","shortName":"maxi-testnet","chainId":898,"networkId":898,"icon":"maxi","explorers":[{"name":"Maxi Chain Testnet Explorer","url":"https://testnet.maxi.network","standard":"EIP3091"}]},{"name":"Garizon Testnet Stage0","chain":"GAR","icon":"garizon","rpc":["https://s0-testnet.garizon.net/rpc"],"faucets":["https://faucet-testnet.garizon.com"],"nativeCurrency":{"name":"Garizon","symbol":"GAR","decimals":18},"infoURL":"https://garizon.com","shortName":"gar-test-s0","chainId":900,"networkId":900,"explorers":[{"name":"explorer","url":"https://explorer-testnet.garizon.com","icon":"garizon","standard":"EIP3091"}]},{"name":"Garizon Testnet Stage1","chain":"GAR","icon":"garizon","rpc":["https://s1-testnet.garizon.net/rpc"],"faucets":["https://faucet-testnet.garizon.com"],"nativeCurrency":{"name":"Garizon","symbol":"GAR","decimals":18},"infoURL":"https://garizon.com","shortName":"gar-test-s1","chainId":901,"networkId":901,"slip44":1,"explorers":[{"name":"explorer","url":"https://explorer-testnet.garizon.com","icon":"garizon","standard":"EIP3091"}],"parent":{"chain":"eip155-900","type":"shard"}},{"name":"Garizon Testnet Stage2","chain":"GAR","icon":"garizon","rpc":["https://s2-testnet.garizon.net/rpc"],"faucets":["https://faucet-testnet.garizon.com"],"nativeCurrency":{"name":"Garizon","symbol":"GAR","decimals":18},"infoURL":"https://garizon.com","shortName":"gar-test-s2","chainId":902,"networkId":902,"slip44":1,"explorers":[{"name":"explorer","url":"https://explorer-testnet.garizon.com","icon":"garizon","standard":"EIP3091"}],"parent":{"chain":"eip155-900","type":"shard"}},{"name":"Garizon Testnet Stage3","chain":"GAR","icon":"garizon","rpc":["https://s3-testnet.garizon.net/rpc"],"faucets":["https://faucet-testnet.garizon.com"],"nativeCurrency":{"name":"Garizon","symbol":"GAR","decimals":18},"infoURL":"https://garizon.com","shortName":"gar-test-s3","chainId":903,"networkId":903,"slip44":1,"explorers":[{"name":"explorer","url":"https://explorer-testnet.garizon.com","icon":"garizon","standard":"EIP3091"}],"parent":{"chain":"eip155-900","type":"shard"}},{"name":"Portal Fantasy Chain","chain":"PF","icon":"pf","rpc":[],"faucets":[],"nativeCurrency":{"name":"Portal Fantasy Token","symbol":"PFT","decimals":18},"infoURL":"https://portalfantasy.io","shortName":"PF","chainId":909,"networkId":909,"explorers":[],"status":"incubating"},{"name":"DecentraBone Layer1 Testnet","chain":"DBONE","rpc":["https://layer1test.decentrabone.com"],"faucets":[],"nativeCurrency":{"name":"DecentraBone","symbol":"DBONE","decimals":18},"infoURL":"https://decentrabone.com","shortName":"DBONE","chainId":910,"networkId":910,"slip44":1},{"name":"TAPROOT Mainnet","title":"TAPROOT Mainnet","chain":"TAPROOT CHAIN","rpc":["https://rpc.taprootchain.io"],"faucets":[],"nativeCurrency":{"name":"TBTC","symbol":"TBTC","decimals":18},"infoURL":"https://taprootchain.io","shortName":"TAPROOT-Mainnet","chainId":911,"networkId":911,"icon":"taproot","explorers":[{"name":"TAPROOT Scan","url":"https://scan.taprootchain.io","icon":"taproot","standard":"EIP3091"}]},{"name":"Rinia Testnet","chain":"FIRE","icon":"rinia","rpc":["https://rinia-rpc1.thefirechain.com"],"faucets":["https://faucet.thefirechain.com"],"nativeCurrency":{"name":"Firechain","symbol":"FIRE","decimals":18},"infoURL":"https://thefirechain.com","shortName":"tfire","chainId":917,"networkId":917,"slip44":1,"explorers":[{"name":"FireScan","url":"https://rinia.firescan.io","standard":"EIP3091"}]},{"name":"Mode Testnet","chain":"ETH","rpc":["https://sepolia.mode.network"],"faucets":["https://sepoliafaucet.com/"],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://docs.mode.network/","shortName":"modesep","chainId":919,"networkId":919,"slip44":1,"icon":"modeTestnet","explorers":[{"name":"modescout","url":"https://sepolia.explorer.mode.network","standard":"none"}],"parent":{"type":"L2","chain":"eip155-11155111","bridges":[{"url":"https://bridge.mode.network/"}]}},{"name":"Yidark Chain Mainnet","chain":"Yidark","icon":"ydk","rpc":["https://rpc.yidark.io"],"faucets":[],"nativeCurrency":{"name":"Yidark","symbol":"YDK","decimals":18},"infoURL":"https://yidarkscan.com","shortName":"ydk","chainId":927,"networkId":927,"explorers":[{"name":"Yidarkscan","url":"https://yidarkscan.com","standard":"EIP3091"}]},{"name":"PulseChain Testnet","shortName":"tpls","chain":"tPLS","chainId":940,"networkId":940,"slip44":1,"infoURL":"https://pulsechain.com/","rpc":["https://rpc.v2.testnet.pulsechain.com/","wss://rpc.v2.testnet.pulsechain.com/"],"faucets":["https://faucet.v2.testnet.pulsechain.com/"],"status":"deprecated","nativeCurrency":{"name":"Test Pulse","symbol":"tPLS","decimals":18}},{"name":"PulseChain Testnet v2b","shortName":"t2bpls","chain":"t2bPLS","chainId":941,"networkId":941,"slip44":1,"infoURL":"https://pulsechain.com/","rpc":["https://rpc.v2b.testnet.pulsechain.com/","wss://rpc.v2b.testnet.pulsechain.com/"],"faucets":["https://faucet.v2b.testnet.pulsechain.com/"],"status":"deprecated","nativeCurrency":{"name":"Test Pulse","symbol":"tPLS","decimals":18}},{"name":"PulseChain Testnet v3","shortName":"t3pls","chain":"t3PLS","chainId":942,"networkId":942,"slip44":1,"infoURL":"https://pulsechain.com/","rpc":["https://rpc.v3.testnet.pulsechain.com/","wss://rpc.v3.testnet.pulsechain.com/"],"faucets":["https://faucet.v3.testnet.pulsechain.com/"],"status":"deprecated","nativeCurrency":{"name":"Test Pulse","symbol":"tPLS","decimals":18}},{"name":"PulseChain Testnet v4","shortName":"t4pls","chain":"t4PLS","chainId":943,"networkId":943,"icon":"pulsechain","infoURL":"https://pulsechain.com","rpc":["https://rpc.v4.testnet.pulsechain.com","wss://rpc.v4.testnet.pulsechain.com","https://pulsechain-testnet-rpc.publicnode.com","wss://pulsechain-testnet-rpc.publicnode.com","https://rpc-testnet-pulsechain.g4mm4.io","wss://rpc-testnet-pulsechain.g4mm4.io"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":["https://faucet.v4.testnet.pulsechain.com/"],"ens":{"registry":"0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e"},"status":"active","slip44":1,"nativeCurrency":{"name":"Test Pulse","symbol":"tPLS","decimals":18},"explorers":[{"name":"blockscout","url":"https://scan.v4.testnet.pulsechain.com","icon":"blockscout","standard":"EIP3091"},{"name":"blockscout","url":"https://otter-testnet-pulsechain.g4mm4.io","standard":"EIP3091"}]},{"name":"muNode Testnet","chain":"munode","rpc":[],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://munode.dev/","shortName":"munode","chainId":956,"networkId":956,"slip44":1},{"name":"Lyra Chain","chain":"Lyra","rpc":["https://rpc.lyra.finance"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://lyra.finance","shortName":"lyra","chainId":957,"networkId":957,"icon":"lyra","explorers":[{"name":"Lyra Explorer","url":"https://explorer.lyra.finance","icon":"lyra","standard":"EIP3091"}]},{"name":"BTC20 Smart Chain","chain":"BTC20","rpc":["https://rpc.bitcoincode.technology/"],"faucets":[],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"nativeCurrency":{"name":"BTCC","symbol":"BTCC","decimals":18},"infoURL":"https://bitcoincode.technology","shortName":"btc20","chainId":963,"networkId":963,"icon":"btc20","explorers":[{"name":"blockscout","url":"https://scan.bitcoincode.technology","standard":"EIP3091"}]},{"name":"Oort Mainnet","chain":"Oort Mainnet","rpc":["https://mainnet-rpc.oortech.com"],"faucets":[],"nativeCurrency":{"name":"Oort","symbol":"OORT","decimals":18},"infoURL":"https://oortech.com","shortName":"ccn","chainId":970,"networkId":970,"icon":"oort","explorers":[{"name":"Oort Mainnet Explorer","url":"https://mainnet-scan.oortech.com","standard":"none","icon":"oort"}]},{"name":"Oort Huygens","chain":"Huygens","rpc":[],"faucets":[],"nativeCurrency":{"name":"Oort","symbol":"CCN","decimals":18},"infoURL":"https://oortech.com","shortName":"Huygens","chainId":971,"networkId":971,"icon":"ccn"},{"name":"Oort Ascraeus","title":"Oort Ascraeus","chain":"Ascraeus","rpc":["https://ascraeus-rpc.oortech.com"],"faucets":[],"nativeCurrency":{"name":"Oort","symbol":"CCNA","decimals":18},"infoURL":"https://oortech.com","shortName":"Ascraeus","chainId":972,"networkId":972,"icon":"oort","explorers":[{"name":"Oort Ascraeus Explorer","url":"https://ascraeus-scan.oortech.com","standard":"none","icon":"oort"}]},{"name":"Nepal Blockchain Network","chain":"YETI","rpc":["https://api.nepalblockchain.dev","https://api.nepalblockchain.network"],"faucets":["https://faucet.nepalblockchain.network"],"nativeCurrency":{"name":"Nepal Blockchain Network Ether","symbol":"YETI","decimals":18},"infoURL":"https://nepalblockchain.network","shortName":"yeti","chainId":977,"networkId":977},{"name":"TOP Mainnet EVM","chain":"TOP","icon":"top","rpc":["https://ethapi.topnetwork.org"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://www.topnetwork.org/","shortName":"top_evm","chainId":980,"networkId":0,"explorers":[{"name":"topscan.dev","url":"https://www.topscan.io","standard":"none"}]},{"name":"Memo Smart Chain Mainnet","chain":"MEMO","rpc":["https://chain.metamemo.one:8501","wss://chain.metamemo.one:16801"],"faucets":["https://faucet.metamemo.one/"],"nativeCurrency":{"name":"Memo","symbol":"CMEMO","decimals":18},"infoURL":"www.memolabs.org","shortName":"memochain","chainId":985,"networkId":985,"icon":"memo","explorers":[{"name":"Memo Mainnet Explorer","url":"https://scan.metamemo.one:8080","icon":"memo","standard":"EIP3091"}]},{"name":"TOP Mainnet","chain":"TOP","icon":"top","rpc":[],"faucets":[],"nativeCurrency":{"name":"TOP","symbol":"TOP","decimals":6},"infoURL":"https://www.topnetwork.org/","shortName":"top","chainId":989,"networkId":0,"explorers":[{"name":"topscan.dev","url":"https://www.topscan.io","standard":"none"}]},{"name":"eLiberty Mainnet","chain":"$EL","icon":"eLiberty","rpc":["https://rpc.eliberty.ngo"],"faucets":["https://faucet.eliberty.ngo"],"nativeCurrency":{"name":"eLiberty","symbol":"$EL","decimals":18},"infoURL":"https://eliberty.ngo","shortName":"ELm","chainId":990,"networkId":990,"explorers":[{"name":"eLiberty Mainnet","url":"https://explorer.eliberty.ngo","standard":"EIP3091"}]},{"name":"5ireChain Thunder","chain":"5ireChain","rpc":["https://rpc-testnet.5ire.network"],"faucets":["https://explorer.5ire.network/faucet"],"nativeCurrency":{"name":"5ire Token","symbol":"5ire","decimals":18},"infoURL":"https://5ire.org","shortName":"5ire","chainId":997,"networkId":997,"icon":"5ireChain","explorers":[{"name":"5ireChain Explorer","url":"https://explorer.5ire.network","standard":"none","icon":"5ireChain"}]},{"name":"Lucky Network","chain":"LN","rpc":["https://rpc.luckynetwork.org","wss://ws.lnscan.org","https://rpc.lnscan.org"],"faucets":[],"nativeCurrency":{"name":"Lucky","symbol":"L99","decimals":18},"infoURL":"https://luckynetwork.org","shortName":"ln","chainId":998,"networkId":998,"icon":"lucky","explorers":[{"name":"blockscout","url":"https://explorer.luckynetwork.org","standard":"none"},{"name":"expedition","url":"https://lnscan.org","standard":"none"}]},{"name":"Wanchain Testnet","chain":"WAN","rpc":["https://gwan-ssl.wandevs.org:46891/"],"faucets":[],"nativeCurrency":{"name":"Wancoin","symbol":"WAN","decimals":18},"infoURL":"https://testnet.wanscan.org","shortName":"twan","chainId":999,"networkId":999,"slip44":1},{"name":"GTON Mainnet","chain":"GTON","rpc":["https://rpc.gton.network/"],"faucets":[],"nativeCurrency":{"name":"GCD","symbol":"GCD","decimals":18},"infoURL":"https://gton.capital","shortName":"gton","chainId":1000,"networkId":1000,"explorers":[{"name":"GTON Network Explorer","url":"https://explorer.gton.network","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1"}},{"name":"Klaytn Testnet Baobab","chain":"KLAY","rpc":["https://public-en-baobab.klaytn.net","https://api.baobab.klaytn.net:8651"],"faucets":["https://baobab.wallet.klaytn.com/access?next=faucet"],"nativeCurrency":{"name":"KLAY","symbol":"KLAY","decimals":18},"infoURL":"https://klaytn.foundation","shortName":"Baobab","chainId":1001,"networkId":1001,"slip44":1,"explorers":[{"name":"Klaytnscope","url":"https://baobab.klaytnscope.com","standard":"EIP3091"},{"name":"Klaytnfinder","url":"https://baobab.klaytnfinder.io","standard":"EIP3091"}]},{"name":"Tectum Emission Token","chain":"TET","rpc":["https://rpc.softnote.com/"],"faucets":[],"nativeCurrency":{"name":"Tectum","symbol":"TET","decimals":8},"infoURL":"https://softnote.com","shortName":"tet","chainId":1003,"networkId":1003,"explorers":[{"name":"Tectum explorer","url":"https://explorer.tectum.io","icon":"Tettoken256","standard":"EIP3091"}]},{"name":"T-EKTA","title":"EKTA Testnet T-EKTA","chain":"T-EKTA","rpc":["https://test.ekta.io:8545"],"faucets":[],"nativeCurrency":{"name":"T-EKTA","symbol":"T-EKTA","decimals":18},"infoURL":"https://www.ekta.io","shortName":"t-ekta","chainId":1004,"networkId":1004,"icon":"ekta","explorers":[{"name":"test-ektascan","url":"https://test.ektascan.io","icon":"ekta","standard":"EIP3091"}]},{"name":"Newton Testnet","chain":"NEW","rpc":["https://rpc1.newchain.newtonproject.org"],"faucets":[],"nativeCurrency":{"name":"Newton","symbol":"NEW","decimals":18},"infoURL":"https://www.newtonproject.org/","shortName":"tnew","chainId":1007,"networkId":1007,"slip44":1},{"name":"Eurus Mainnet","chain":"EUN","rpc":["https://mainnet.eurus.network/"],"faucets":[],"nativeCurrency":{"name":"Eurus","symbol":"EUN","decimals":18},"infoURL":"https://eurus.network","shortName":"eun","chainId":1008,"networkId":1008,"icon":"eurus","explorers":[{"name":"eurusexplorer","url":"https://explorer.eurus.network","icon":"eurus","standard":"none"}]},{"name":"Jumbochain Mainnet","chain":"Jumbo","rpc":["https://rpcpriv.jumbochain.org"],"faucets":[],"nativeCurrency":{"name":"JNFTC","symbol":"JNFTC","decimals":18},"features":[{"name":"EIP155"}],"infoURL":"https://jumbochain.org","shortName":"Jumboscan","chainId":1009,"networkId":1009,"slip44":1,"explorers":[{"name":"Jumboscan","url":"https://jumboscan.jumbochain.org","standard":"EIP3091"}]},{"name":"Evrice Network","chain":"EVC","rpc":["https://meta.evrice.com"],"faucets":[],"nativeCurrency":{"name":"Evrice","symbol":"EVC","decimals":18},"infoURL":"https://evrice.com","shortName":"EVC","chainId":1010,"networkId":1010,"slip44":1020},{"name":"Newton","chain":"NEW","rpc":["https://global.rpc.mainnet.newtonproject.org"],"faucets":[],"nativeCurrency":{"name":"Newton","symbol":"NEW","decimals":18},"infoURL":"https://www.newtonproject.org/","shortName":"new","chainId":1012,"networkId":1012},{"name":"Sakura","chain":"Sakura","rpc":[],"faucets":[],"nativeCurrency":{"name":"Sakura","symbol":"SKU","decimals":18},"infoURL":"https://clover.finance/sakura","shortName":"sku","chainId":1022,"networkId":1022},{"name":"Clover Testnet","chain":"Clover","rpc":[],"faucets":[],"nativeCurrency":{"name":"Clover","symbol":"CLV","decimals":18},"infoURL":"https://clover.finance","shortName":"tclv","chainId":1023,"networkId":1023,"slip44":1},{"name":"CLV Parachain","chain":"CLV","rpc":["https://api-para.clover.finance"],"faucets":[],"nativeCurrency":{"name":"CLV","symbol":"CLV","decimals":18},"infoURL":"https://clv.org","shortName":"clv","chainId":1024,"networkId":1024},{"name":"BitTorrent Chain Testnet","chain":"BTTC","rpc":["https://testrpc.bittorrentchain.io/"],"faucets":[],"nativeCurrency":{"name":"BitTorrent","symbol":"BTT","decimals":18},"infoURL":"https://bittorrentchain.io/","shortName":"tbtt","chainId":1028,"networkId":1028,"slip44":1,"explorers":[{"name":"testbttcscan","url":"https://testscan.bittorrentchain.io","standard":"none"}]},{"name":"Conflux eSpace","chain":"Conflux","rpc":["https://evm.confluxrpc.com"],"faucets":[],"nativeCurrency":{"name":"CFX","symbol":"CFX","decimals":18},"infoURL":"https://confluxnetwork.org","shortName":"cfx","chainId":1030,"networkId":1030,"icon":"conflux","explorers":[{"name":"Conflux Scan","url":"https://evm.confluxscan.net","standard":"none"}]},{"name":"Proxy Network Testnet","chain":"Proxy Network","rpc":["http://128.199.94.183:8041"],"faucets":[],"nativeCurrency":{"name":"PRX","symbol":"PRX","decimals":18},"infoURL":"https://theproxy.network","shortName":"prx","chainId":1031,"networkId":1031,"slip44":1,"explorers":[{"name":"proxy network testnet","url":"http://testnet-explorer.theproxy.network","standard":"EIP3091"}]},{"name":"Bronos Testnet","chain":"Bronos","rpc":["https://evm-testnet.bronos.org"],"faucets":["https://faucet.bronos.org"],"nativeCurrency":{"name":"tBRO","symbol":"tBRO","decimals":18},"infoURL":"https://bronos.org","shortName":"bronos-testnet","chainId":1038,"networkId":1038,"slip44":1,"icon":"bronos","explorers":[{"name":"Bronos Testnet Explorer","url":"https://tbroscan.bronos.org","standard":"none","icon":"bronos"}]},{"name":"Bronos Mainnet","chain":"Bronos","rpc":[],"faucets":[],"nativeCurrency":{"name":"BRO","symbol":"BRO","decimals":18},"infoURL":"https://bronos.org","shortName":"bronos-mainnet","chainId":1039,"networkId":1039,"icon":"bronos","explorers":[{"name":"Bronos Explorer","url":"https://broscan.bronos.org","standard":"none","icon":"bronos"}]},{"name":"ShimmerEVM Testnet Deprecated","title":"ShimmerEVM Testnet Deprecated","chain":"ShimmerEVM","icon":"shimmerevm","rpc":[],"faucets":["https://evm-toolkit.evm.testnet.shimmer.network","https://evm-faucet.testnet.shimmer.network"],"nativeCurrency":{"name":"SMR","symbol":"SMR","decimals":18},"infoURL":"https://shimmer.network","shortName":"shimmerevm-testnet-deprecated","chainId":1071,"networkId":1071,"slip44":1,"explorers":[{"name":"explorer","url":"https://explorer.evm.testnet.shimmer.network","standard":"EIP3091"}],"status":"deprecated"},{"name":"ShimmerEVM Testnet Deprecated 1072","title":"ShimmerEVM Testnet Deprecated 1072","chain":"ShimmerEVM","icon":"shimmerevm","rpc":[],"faucets":["https://evm-toolkit.evm.testnet.shimmer.network","https://evm-faucet.testnet.shimmer.network"],"nativeCurrency":{"name":"SMR","symbol":"SMR","decimals":6},"infoURL":"https://shimmer.network","shortName":"shimmerevm-testnet-deprecated-1072","chainId":1072,"networkId":1072,"slip44":1,"explorers":[{"name":"explorer","url":"https://explorer.evm.testnet.shimmer.network","standard":"EIP3091"}],"status":"deprecated"},{"name":"ShimmerEVM Testnet","title":"ShimmerEVM Testnet","chain":"ShimmerEVM","icon":"shimmerevm","rpc":["https://json-rpc.evm.testnet.shimmer.network"],"faucets":["https://evm-toolkit.evm.testnet.shimmer.network","https://evm-faucet.testnet.shimmer.network"],"nativeCurrency":{"name":"SMR","symbol":"SMR","decimals":6},"infoURL":"https://shimmer.network","shortName":"shimmerevm-testnet","chainId":1073,"networkId":1073,"slip44":1,"explorers":[{"name":"explorer","url":"https://explorer.evm.testnet.shimmer.network","standard":"EIP3091"}]},{"name":"Mintara Testnet","title":"Mintara Testnet","chain":"Mintara","icon":"mintara","rpc":["https://subnets.avax.network/mintara/testnet/rpc"],"faucets":[],"nativeCurrency":{"name":"MINTARA","symbol":"MNTR","decimals":18},"infoURL":"https://playthink.co.jp","shortName":"mintara-testnet","chainId":1079,"networkId":1079,"slip44":1,"explorers":[{"name":"explorer","url":"https://subnets-test.avax.network/mintara","standard":"EIP3091"}]},{"name":"Mintara Mainnet","title":"Mintara Mainnet","chain":"Mintara","icon":"mintara","rpc":["https://subnets.avax.network/mintara/mainnet/rpc"],"faucets":[],"nativeCurrency":{"name":"MINTARA","symbol":"MNTR","decimals":18},"infoURL":"https://playthink.co.jp","shortName":"mintara","chainId":1080,"networkId":1080,"explorers":[{"name":"explorer","url":"https://subnets.avax.network/mintara","standard":"EIP3091"}]},{"name":"Metis Andromeda Mainnet","chain":"ETH","rpc":["https://andromeda.metis.io/?owner=1088","https://metis.drpc.org","wss://metis.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Metis","symbol":"METIS","decimals":18},"infoURL":"https://www.metis.io","shortName":"metis-andromeda","chainId":1088,"networkId":1088,"explorers":[{"name":"blockscout","url":"https://andromeda-explorer.metis.io","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://bridge.metis.io"}]}},{"name":"Humans.ai Mainnet","chain":"Humans","rpc":["https://jsonrpc.humans.nodestake.top","https://humans-mainnet-evm.itrocket.net","https://humans-evm-rpc.staketab.org:443","https://evm.humans.stakepool.dev.br","https://mainnet-humans-evm.konsortech.xyz","https://evm-rpc.mainnet.humans.zone","https://json-rpc.humans.bh.rocks","https://evm-rpc.humans.huginn.tech"],"faucets":[],"nativeCurrency":{"name":"HEART","symbol":"HEART","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://humans.ai","shortName":"humans","chainId":1089,"networkId":1089,"icon":"humans-dark","explorers":[{"name":"explorer.guru","url":"https://humans.explorers.guru","icon":"humans","standard":"none"}]},{"name":"MOAC mainnet","chain":"MOAC","rpc":[],"faucets":[],"nativeCurrency":{"name":"MOAC","symbol":"mc","decimals":18},"infoURL":"https://moac.io","shortName":"moac","chainId":1099,"networkId":1099,"slip44":314,"explorers":[{"name":"moac explorer","url":"https://explorer.moac.io","standard":"none"}]},{"name":"Dymension","chain":"Dymension","rpc":["https://dymension-evm.blockpi.network/v1/rpc/public","https://dymension-evm-rpc.publicnode.com","wss://dymension-evm-rpc.publicnode.com"],"faucets":[],"nativeCurrency":{"name":"DYM","symbol":"DYM","decimals":18},"infoURL":"https://dymension.xyz","shortName":"dymension","icon":"dymension","chainId":1100,"networkId":1100,"explorers":[{"name":"dym.fyi","url":"https://dym.fyi","standard":"EIP3091"}]},{"name":"Polygon zkEVM","title":"Polygon zkEVM","chain":"Polygon","rpc":["https://zkevm-rpc.com","https://polygon-zkevm.drpc.org","wss://polygon-zkevm.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://polygon.technology/polygon-zkevm","shortName":"zkevm","chainId":1101,"networkId":1101,"icon":"zkevm","explorers":[{"name":"blockscout","url":"https://zkevm.polygonscan.com","icon":"zkevm","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://bridge.zkevm-rpc.com"}]}},{"name":"BLXq Testnet","chain":"BLXQ","icon":"blxq","rpc":["https://testnetq1.blx.org"],"faucets":[],"nativeCurrency":{"name":"BLXQ","symbol":"BLXQ","decimals":18},"infoURL":"https://blx.org","shortName":"tblxq","chainId":1107,"networkId":1107,"slip44":1,"explorers":[{"name":"BLXq Explorer","url":"https://explorer.blx.org","icon":"blxq","standard":"none"}]},{"name":"BLXq Mainnet","chain":"BLXQ","icon":"blxq","rpc":["https://mainnet.blxq.org"],"faucets":[],"nativeCurrency":{"name":"BLXQ","symbol":"BLXQ","decimals":18},"infoURL":"https://blx.org","shortName":"blxq","chainId":1108,"networkId":1108,"explorers":[{"name":"BLXq Explorer","url":"https://explorer.blxq.org","icon":"blxq","standard":"EIP3091"}]},{"name":"WEMIX3.0 Mainnet","chain":"WEMIX","rpc":["https://api.wemix.com","wss://ws.wemix.com"],"faucets":[],"nativeCurrency":{"name":"WEMIX","symbol":"WEMIX","decimals":18},"infoURL":"https://wemix.com","shortName":"wemix","chainId":1111,"networkId":1111,"explorers":[{"name":"WEMIX Block Explorer","url":"https://explorer.wemix.com","standard":"EIP3091"}]},{"name":"WEMIX3.0 Testnet","chain":"TWEMIX","rpc":["https://api.test.wemix.com","wss://ws.test.wemix.com"],"faucets":["https://wallet.test.wemix.com/faucet"],"nativeCurrency":{"name":"TestnetWEMIX","symbol":"tWEMIX","decimals":18},"infoURL":"https://wemix.com","shortName":"twemix","chainId":1112,"networkId":1112,"slip44":1,"explorers":[{"name":"WEMIX Testnet Microscope","url":"https://microscope.test.wemix.com","standard":"EIP3091"}]},{"name":"B2 Hub Habitat Testnet","chain":"BSQ","rpc":["https://habitat-hub-rpc.bsquared.network"],"faucets":[],"nativeCurrency":{"name":"BSquared Token","symbol":"BSQ","decimals":18},"infoURL":"https://www.bsquared.network","shortName":"B2Hub-testnet","chainId":1113,"networkId":1113,"icon":"bsquare","explorers":[{"name":"B2 Hub Habitat Testnet Explorer","url":"https://habitat-hub-explorer.bsquared.network","icon":"bsquare","standard":"EIP3091"}]},{"name":"Core Blockchain Testnet","chain":"Core","icon":"core","rpc":["https://rpc.test.btcs.network/"],"faucets":["https://scan.test.btcs.network/faucet"],"nativeCurrency":{"name":"Core Blockchain Testnet Native Token","symbol":"tCORE","decimals":18},"infoURL":"https://www.coredao.org","shortName":"tcore","chainId":1115,"networkId":1115,"slip44":1,"explorers":[{"name":"Core Scan Testnet","url":"https://scan.test.btcs.network","icon":"core","standard":"EIP3091"}]},{"name":"Core Blockchain Mainnet","chain":"Core","icon":"core","rpc":["https://rpc.coredao.org/","https://rpc-core.icecreamswap.com","https://core.drpc.org","wss://core.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Core Blockchain Native Token","symbol":"CORE","decimals":18},"infoURL":"https://www.coredao.org","shortName":"core","chainId":1116,"networkId":1116,"explorers":[{"name":"Core Scan","url":"https://scan.coredao.org","icon":"core","standard":"EIP3091"}]},{"name":"Dogcoin Mainnet","chain":"DOGS","icon":"dogs","rpc":["https://mainnet-rpc.dogcoin.me"],"faucets":["https://faucet.dogcoin.network"],"nativeCurrency":{"name":"Dogcoin","symbol":"DOGS","decimals":18},"infoURL":"https://dogcoin.network","shortName":"DOGSm","chainId":1117,"networkId":1117,"explorers":[{"name":"Dogcoin","url":"https://explorer.dogcoin.network","standard":"EIP3091"}]},{"name":"B2 Habitat Testnet","title":"B2 Habitat Testnet","chain":"Habitat","rpc":["https://b2habitat-testnet.alt.technology","https://habitat-rpc.bsquared.network","https://habitat-rpc-public.bsquared.network"],"faucets":[],"nativeCurrency":{"name":"Bitcoin","symbol":"BTC","decimals":18},"infoURL":"https://www.bsquared.network","shortName":"B2-testnet","chainId":1123,"networkId":1123,"icon":"bsquare","explorers":[{"name":"blockscout","url":"https://habitat-explorer.bsquared.network","icon":"bsquare","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1113"}},{"name":"DeFiChain EVM Network Mainnet","chain":"defichain-evm","status":"incubating","rpc":[],"faucets":[],"nativeCurrency":{"name":"DeFiChain","symbol":"DFI","decimals":18},"infoURL":"https://meta.defichain.com/","shortName":"DFI","chainId":1130,"networkId":1130,"slip44":1130,"icon":"defichain-network","explorers":[]},{"name":"DeFiChain EVM Network Testnet","chain":"defichain-evm-testnet","status":"incubating","rpc":[],"faucets":[],"nativeCurrency":{"name":"DeFiChain","symbol":"DFI","decimals":18},"infoURL":"https://meta.defichain.com/","shortName":"DFI-T","chainId":1131,"networkId":1131,"slip44":1,"icon":"defichain-network","explorers":[]},{"name":"DeFiMetaChain Changi Testnet","icon":"defichain-network","chain":"DFI","rpc":["https://dmc.mydefichain.com/changi","https://testnet-dmc.mydefichain.com:20551"],"faucets":["http://tc04.mydefichain.com/faucet"],"nativeCurrency":{"name":"DeFiChain Token","symbol":"DFI","decimals":18},"infoURL":"https://meta.defichain.com","shortName":"changi","chainId":1133,"networkId":1133,"explorers":[{"name":"MetaScan","url":"https://meta.defiscan.live","standard":"EIP3091"}]},{"name":"AmStar Testnet","chain":"AmStar","icon":"amstar","rpc":["https://testnet-rpc.amstarscan.com"],"faucets":[],"nativeCurrency":{"name":"SINSO","symbol":"SINSO","decimals":18},"infoURL":"https://sinso.io","shortName":"ASARt","chainId":1138,"networkId":1138,"slip44":1,"explorers":[{"name":"amstarscan-testnet","url":"https://testnet.amstarscan.com","standard":"EIP3091"}]},{"name":"MathChain","chain":"MATH","rpc":["https://mathchain-asia.maiziqianbao.net/rpc","https://mathchain-us.maiziqianbao.net/rpc"],"faucets":[],"nativeCurrency":{"name":"MathChain","symbol":"MATH","decimals":18},"infoURL":"https://mathchain.org","shortName":"MATH","chainId":1139,"networkId":1139},{"name":"MathChain Testnet","chain":"MATH","rpc":["https://galois-hk.maiziqianbao.net/rpc"],"faucets":["https://scan.boka.network/#/Galois/faucet"],"nativeCurrency":{"name":"MathChain","symbol":"MATH","decimals":18},"infoURL":"https://mathchain.org","shortName":"tMATH","chainId":1140,"networkId":1140,"slip44":1},{"name":"Symplexia Smart Chain","chain":"Plexchain","rpc":["https://plex-rpc.plexfinance.us"],"faucets":[],"nativeCurrency":{"name":"Plex Native Token","symbol":"PLEX","decimals":18},"infoURL":"https://plexfinance.us/","shortName":"Plexchain","chainId":1149,"networkId":1149,"icon":"plexchain","explorers":[{"name":"Plexchain Explorer","url":"https://explorer.plexfinance.us","icon":"plexchain","standard":"EIP3091"}]},{"name":"Origin Testnet","chain":"Origin","rpc":["https://json-rpc.origin.uptick.network"],"faucets":[],"nativeCurrency":{"name":"Origin","symbol":"UOC","decimals":18},"infoURL":"https://www.uptick.network","shortName":"auoc","chainId":1170,"networkId":1170,"slip44":1,"icon":"origin","explorers":[{"name":"Origin Explorer","url":"https://evm-explorer.origin.uptick.network","icon":"origin","standard":"none"}]},{"name":"Smart Host Teknoloji TESTNET","chain":"SHT","rpc":["https://s2.tl.web.tr:4041"],"faucets":[],"nativeCurrency":{"name":"Smart Host Teknoloji TESTNET","symbol":"tSHT","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://smart-host.com.tr","shortName":"sht","chainId":1177,"networkId":1177,"slip44":1,"icon":"smarthost","explorers":[{"name":"Smart Host Teknoloji TESTNET Explorer","url":"https://s2.tl.web.tr:4000","icon":"smarthost","standard":"EIP3091"}]},{"name":"Iora Chain","chain":"IORA","icon":"iorachain","rpc":["https://dataseed.iorachain.com"],"faucets":[],"nativeCurrency":{"name":"Iora","symbol":"IORA","decimals":18},"infoURL":"https://iorachain.com","shortName":"iora","chainId":1197,"networkId":1197,"explorers":[{"name":"ioraexplorer","url":"https://explorer.iorachain.com","standard":"EIP3091"}]},{"name":"Evanesco Testnet","chain":"Evanesco Testnet","rpc":["https://seed5.evanesco.org:8547"],"faucets":[],"nativeCurrency":{"name":"AVIS","symbol":"AVIS","decimals":18},"infoURL":"https://evanesco.org/","shortName":"avis","chainId":1201,"networkId":1201,"slip44":1},{"name":"World Trade Technical Chain Mainnet","chain":"WTT","rpc":["https://rpc.cadaut.com","wss://rpc.cadaut.com/ws"],"faucets":[],"nativeCurrency":{"name":"World Trade Token","symbol":"WTT","decimals":18},"infoURL":"http://www.cadaut.com","shortName":"wtt","chainId":1202,"networkId":2048,"explorers":[{"name":"WTTScout","url":"https://explorer.cadaut.com","standard":"EIP3091"}]},{"name":"Popcateum Mainnet","chain":"POPCATEUM","rpc":["https://dataseed.popcateum.org"],"faucets":[],"nativeCurrency":{"name":"Popcat","symbol":"POP","decimals":18},"infoURL":"https://popcateum.org","shortName":"popcat","chainId":1213,"networkId":1213,"explorers":[{"name":"popcateum explorer","url":"https://explorer.popcateum.org","standard":"none"}]},{"name":"EnterChain Mainnet","chain":"ENTER","rpc":["https://tapi.entercoin.net/"],"faucets":[],"nativeCurrency":{"name":"EnterCoin","symbol":"ENTER","decimals":18},"infoURL":"https://entercoin.net","shortName":"enter","chainId":1214,"networkId":1214,"icon":"enter","explorers":[{"name":"Enter Explorer - Expenter","url":"https://explorer.entercoin.net","icon":"enter","standard":"EIP3091"}]},{"name":"Hybrid Testnet","chain":"HYB","icon":"hybridIcon","rpc":["https://testnet-rpc.buildonhybrid.com"],"faucets":[],"nativeCurrency":{"name":"Hybrid","symbol":"HYB","decimals":18},"infoURL":"https://buildonhybrid.com","shortName":"hyb","chainId":1224,"networkId":1224,"explorers":[{"name":"Hybrid Testnet","url":"https://explorer.buildonhybrid.com","standard":"EIP3091"}]},{"name":"Exzo Network Mainnet","chain":"EXZO","icon":"exzo","rpc":["https://mainnet.exzo.technology"],"faucets":[],"nativeCurrency":{"name":"Exzo","symbol":"XZO","decimals":18},"infoURL":"https://exzo.network","shortName":"xzo","chainId":1229,"networkId":1229,"explorers":[{"name":"blockscout","url":"https://exzoscan.io","standard":"EIP3091"}]},{"name":"Ultron Testnet","chain":"Ultron","icon":"ultron","rpc":["https://ultron-dev.io"],"faucets":[],"nativeCurrency":{"name":"Ultron","symbol":"ULX","decimals":18},"infoURL":"https://ultron.foundation","shortName":"UltronTestnet","chainId":1230,"networkId":1230,"slip44":1,"explorers":[{"name":"Ultron Testnet Explorer","url":"https://explorer.ultron-dev.io","icon":"ultron","standard":"none"}]},{"name":"Ultron Mainnet","chain":"Ultron","icon":"ultron","rpc":["https://ultron-rpc.net"],"faucets":[],"nativeCurrency":{"name":"Ultron","symbol":"ULX","decimals":18},"infoURL":"https://ultron.foundation","shortName":"UtronMainnet","chainId":1231,"networkId":1231,"explorers":[{"name":"Ultron Explorer","url":"https://ulxscan.com","icon":"ultron","standard":"none"}]},{"name":"Step Network","title":"Step Main Network","chain":"STEP","icon":"step","rpc":["https://rpc.step.network"],"faucets":[],"nativeCurrency":{"name":"FITFI","symbol":"FITFI","decimals":18},"infoURL":"https://step.network","shortName":"step","chainId":1234,"networkId":1234,"explorers":[{"name":"StepScan","url":"https://stepscan.io","icon":"step","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-43114","bridges":[{"url":"https://bridge.step.network"}]}},{"name":"ARC Mainnet","chain":"ARC","icon":"arc","rpc":["https://rpc-main-1.archiechain.io"],"faucets":[],"nativeCurrency":{"name":"ARC","symbol":"ARC","decimals":18},"infoURL":"https://archiechain.io/","shortName":"ARC","chainId":1243,"networkId":1243,"explorers":[{"name":"archiescan","url":"https://app.archiescan.io","standard":"none"}]},{"name":"ARC Testnet","chain":"ARC","icon":"arc","rpc":["https://rpc-test-1.archiechain.io"],"faucets":["https://faucet.archiechain.io"],"nativeCurrency":{"name":"ARC","symbol":"ARC","decimals":18},"infoURL":"https://archiechain.io/","shortName":"TARC","chainId":1244,"networkId":1244,"slip44":1,"explorers":[{"name":"archiescan","url":"https://testnet.archiescan.io","standard":"none"}]},{"name":"OM Platform Mainnet","chain":"omplatform","rpc":["https://rpc-cnx.omplatform.com/"],"faucets":[],"nativeCurrency":{"name":"OMCOIN","symbol":"OM","decimals":18},"infoURL":"https://omplatform.com/","shortName":"om","chainId":1246,"networkId":1246,"explorers":[{"name":"OMSCAN - Expenter","url":"https://omscan.omplatform.com","standard":"none"}]},{"name":"Dogether Mainnet","chain":"Dogether","rpc":["https://rpc.dogether.dog/"],"faucets":[],"nativeCurrency":{"name":"Dogether","symbol":"dogeth","decimals":18},"infoURL":"https://www.dogether.dog/","shortName":"Dogether","chainId":1248,"networkId":1248,"explorers":[{"name":"DogetherExplorer","url":"https://explorer.dogether.dog","standard":"EIP3091"}]},{"name":"CIC Chain Testnet","chain":"CICT","rpc":["https://testapi.cicscan.com"],"faucets":["https://cicfaucet.com"],"nativeCurrency":{"name":"Crazy Internet Coin","symbol":"CICT","decimals":18},"infoURL":"https://www.cicchain.net","shortName":"CICT","chainId":1252,"networkId":1252,"slip44":1,"icon":"cicchain","explorers":[{"name":"CICscan","url":"https://testnet.cicscan.com","icon":"cicchain","standard":"EIP3091"}]},{"name":"HALO Mainnet","chain":"HALO","rpc":["https://nodes.halo.land"],"faucets":[],"nativeCurrency":{"name":"HALO","symbol":"HO","decimals":18},"infoURL":"https://halo.land/#/","shortName":"HO","chainId":1280,"networkId":1280,"explorers":[{"name":"HALOexplorer","url":"https://browser.halo.land","standard":"none"}]},{"name":"Moonbeam","chain":"MOON","rpc":["https://rpc.api.moonbeam.network","wss://wss.api.moonbeam.network","https://moonbeam-rpc.publicnode.com","wss://moonbeam-rpc.publicnode.com","https://moonbeam.drpc.org","wss://moonbeam.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Glimmer","symbol":"GLMR","decimals":18},"infoURL":"https://moonbeam.network/networks/moonbeam/","shortName":"mbeam","chainId":1284,"networkId":1284,"explorers":[{"name":"moonscan","url":"https://moonbeam.moonscan.io","standard":"none"}]},{"name":"Moonriver","chain":"MOON","rpc":["https://rpc.api.moonriver.moonbeam.network","wss://wss.api.moonriver.moonbeam.network","https://moonriver-rpc.publicnode.com","wss://moonriver-rpc.publicnode.com","https://moonriver.drpc.org","wss://moonriver.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Moonriver","symbol":"MOVR","decimals":18},"infoURL":"https://moonbeam.network/networks/moonriver/","shortName":"mriver","chainId":1285,"networkId":1285,"explorers":[{"name":"moonscan","url":"https://moonriver.moonscan.io","standard":"none"}]},{"name":"Moonrock old","chain":"MOON","rpc":[],"faucets":[],"nativeCurrency":{"name":"Rocs","symbol":"ROC","decimals":18},"infoURL":"","shortName":"mrock-old","chainId":1286,"networkId":1286,"status":"deprecated"},{"name":"Moonbase Alpha","chain":"MOON","rpc":["https://rpc.api.moonbase.moonbeam.network","wss://wss.api.moonbase.moonbeam.network","https://moonbase-alpha.drpc.org","wss://moonbase-alpha.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Dev","symbol":"DEV","decimals":18},"infoURL":"https://docs.moonbeam.network/networks/testnet/","shortName":"mbase","chainId":1287,"networkId":1287,"slip44":1,"explorers":[{"name":"moonscan","url":"https://moonbase.moonscan.io","standard":"none"}]},{"name":"Moonrock","chain":"MOON","rpc":["https://rpc.api.moonrock.moonbeam.network","wss://wss.api.moonrock.moonbeam.network"],"faucets":[],"nativeCurrency":{"name":"Rocs","symbol":"ROC","decimals":18},"infoURL":"https://docs.moonbeam.network/learn/platform/networks/overview/","shortName":"mrock","chainId":1288,"networkId":1288},{"name":"Swisstronik Testnet","chain":"SWTR","rpc":["https://json-rpc.testnet.swisstronik.com"],"faucets":["https://faucet.testnet.swisstronik.com"],"nativeCurrency":{"name":"Swisstronik","symbol":"SWTR","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://www.swisstronik.com","shortName":"swtr","chainId":1291,"networkId":1291,"slip44":1,"icon":"swisstronik","explorers":[{"name":"Swisstronik Scout","url":"https://explorer-evm.testnet.swisstronik.com","standard":"none"}]},{"name":"Bobabeam","chain":"Bobabeam","status":"deprecated","rpc":["https://bobabeam.boba.network","wss://wss.bobabeam.boba.network","https://replica.bobabeam.boba.network","wss://replica-wss.bobabeam.boba.network"],"faucets":[],"nativeCurrency":{"name":"Boba Token","symbol":"BOBA","decimals":18},"infoURL":"https://boba.network","shortName":"Bobabeam","chainId":1294,"networkId":1294,"explorers":[{"name":"Bobabeam block explorer","url":"https://blockexplorer.bobabeam.boba.network","standard":"none"}]},{"name":"Bobabase Testnet","chain":"Bobabase Testnet","status":"deprecated","rpc":["https://bobabase.boba.network","wss://wss.bobabase.boba.network","https://replica.bobabase.boba.network","wss://replica-wss.bobabase.boba.network"],"faucets":[],"nativeCurrency":{"name":"Boba Token","symbol":"BOBA","decimals":18},"infoURL":"https://boba.network","shortName":"Bobabase","chainId":1297,"networkId":1297,"slip44":1,"explorers":[{"name":"Bobabase block explorer","url":"https://blockexplorer.bobabase.boba.network","standard":"none"}]},{"name":"Dos Fuji Subnet","chain":"DOS","rpc":["https://test.doschain.com/jsonrpc"],"faucets":[],"nativeCurrency":{"name":"Dos Native Token","symbol":"DOS","decimals":18},"infoURL":"http://doschain.io/","shortName":"TDOS","chainId":1311,"networkId":1311,"explorers":[{"name":"dos-testnet","url":"https://test.doscan.io","standard":"EIP3091"}]},{"name":"Alyx Mainnet","chain":"ALYX","rpc":["https://rpc.alyxchain.com"],"faucets":[],"nativeCurrency":{"name":"Alyx Chain Native Token","symbol":"ALYX","decimals":18},"infoURL":"https://www.alyxchain.com","shortName":"alyx","chainId":1314,"networkId":1314,"explorers":[{"name":"alyxscan","url":"https://www.alyxscan.com","standard":"EIP3091"}],"icon":"alyx"},{"name":"AIA Mainnet","chain":"AIA","icon":"aia","rpc":["https://aia-dataseed1.aiachain.org","https://aia-dataseed2.aiachain.org","https://aia-dataseed3.aiachain.org","https://aia-dataseed4.aiachain.org"],"faucets":[],"nativeCurrency":{"name":"AIA Mainnet","symbol":"AIA","decimals":18},"infoURL":"https://aiachain.org/","shortName":"aia","chainId":1319,"networkId":1319,"explorers":[{"name":"AIA Chain Explorer Mainnet","url":"https://aiascan.com","standard":"EIP3091"}]},{"name":"AIA Testnet","chain":"AIA","icon":"aia","rpc":["https://aia-dataseed1-testnet.aiachain.org"],"faucets":["https://aia-faucet-testnet.aiachain.org"],"nativeCurrency":{"name":"AIA Testnet","symbol":"AIA","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://aiachain.org","shortName":"aiatestnet","chainId":1320,"networkId":1320,"slip44":1,"explorers":[{"name":"AIA Chain Explorer Testnet","url":"https://testnet.aiascan.com","standard":"EIP3091"}]},{"name":"Geth Testnet","title":"Go Ethereum (Geth) Private Testnet","chain":"ETH","rpc":["http://127.0.0.1:8545"],"faucets":[],"nativeCurrency":{"name":"Geth Testnet Ether","symbol":"ETH","decimals":18},"infoURL":"https://geth.ethereum.org","shortName":"geth","chainId":1337,"networkId":1337,"slip44":1},{"name":"Elysium Testnet","title":"An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged","chain":"Elysium","rpc":["https://elysium-test-rpc.vulcanforged.com"],"faucets":[],"nativeCurrency":{"name":"LAVA","symbol":"LAVA","decimals":18},"infoURL":"https://elysiumscan.vulcanforged.com","shortName":"ELST","chainId":1338,"networkId":1338,"slip44":1,"explorers":[{"name":"Elysium testnet explorer","url":"https://elysium-explorer.vulcanforged.com","standard":"none"}]},{"name":"Elysium Mainnet","title":"An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged","chain":"Elysium","rpc":["https://rpc.elysiumchain.tech/"],"faucets":[],"nativeCurrency":{"name":"LAVA","symbol":"LAVA","decimals":18},"infoURL":"https://elysiumscan.vulcanforged.com","shortName":"ELSM","chainId":1339,"networkId":1339,"explorers":[{"name":"Elysium mainnet explorer","url":"https://explorer.elysiumchain.tech","standard":"none"}]},{"name":"Blitz Subnet","chain":"BLITZ","rpc":["https://subnets.avax.network/blitz/testnet/rpc"],"features":[{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"BLITZ GAS","symbol":"BGAS","decimals":18},"infoURL":"https://blitz.gg","shortName":"blitz","chainId":1343,"networkId":1343,"explorers":[{"name":"BLITZ Explorer","url":"https://subnets-test.avax.network/blitz","standard":"EIP3091"}]},{"name":"CIC Chain Mainnet","chain":"CIC","rpc":["https://xapi.cicscan.com"],"faucets":[],"nativeCurrency":{"name":"Crazy Internet Coin","symbol":"CIC","decimals":18},"infoURL":"https://www.cicchain.net","shortName":"CIC","chainId":1353,"networkId":1353,"icon":"cicchain","explorers":[{"name":"CICscan","url":"https://cicscan.com","icon":"cicchain","standard":"EIP3091"}]},{"name":"Zafirium Mainnet","chain":"ZAFIC","icon":"zafirium","rpc":["https://mainnet.zakumi.io"],"faucets":[],"nativeCurrency":{"name":"Zakumi Chain Native Token","symbol":"ZAFIC","decimals":18},"infoURL":"https://www.zakumi.io","shortName":"zafic","chainId":1369,"networkId":1369,"explorers":[{"name":"zafirium-explorer","url":"https://explorer.zakumi.io","standard":"none"}]},{"name":"Kalar Chain","chain":"KLC","icon":"kalarchain","rpc":["https://rpc-api.kalarchain.tech"],"faucets":[],"nativeCurrency":{"name":"Kalar","symbol":"KLC","decimals":18},"infoURL":"https://kalarchain.tech","shortName":"KLC","chainId":1379,"networkId":1379,"explorers":[{"name":"kalarscan","url":"https://explorer.kalarchain.tech","icon":"kalarscan","standard":"EIP3091"}]},{"name":"AmStar Mainnet","chain":"AmStar","icon":"amstar","rpc":["https://mainnet-rpc.amstarscan.com"],"faucets":[],"nativeCurrency":{"name":"SINSO","symbol":"SINSO","decimals":18},"infoURL":"https://sinso.io","shortName":"ASAR","chainId":1388,"networkId":1388,"explorers":[{"name":"amstarscan","url":"https://mainnet.amstarscan.com","standard":"EIP3091"}]},{"name":"Joseon Mainnet","chain":"Joseon","icon":"joseon","rpc":["https://rpc.modchain.net/blockchain.joseon.com/rpc"],"faucets":[],"nativeCurrency":{"name":"Joseon Mun","symbol":"JSM","decimals":18},"infoURL":"https://www.joseon.com/","shortName":"mun","chainId":1392,"networkId":1392,"explorers":[{"name":"BlockExplorer","url":"https://www.blockexplorer.com","standard":"EIP3091"}]},{"name":"Polygon zkEVM Testnet old","title":"Polygon zkEVM Testnet","chain":"Polygon","rpc":[],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://polygon.technology/solutions/polygon-zkevm/","shortName":"zkevmtest","chainId":1402,"networkId":1402,"slip44":1,"explorers":[{"name":"blockscout","url":"https://explorer.public.zkevm-test.net","standard":"EIP3091"}],"status":"deprecated"},{"name":"Polygon zkEVM Testnet Pre Audit-Upgraded","title":"Polygon zkEVM Testnet Pre Audit-Upgraded","chain":"Polygon","rpc":[],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://polygon.technology/solutions/polygon-zkevm/","shortName":"testnet-zkEVM-mango-pre-audit-upgraded","chainId":1422,"networkId":1422,"slip44":1,"explorers":[{"name":"Polygon zkEVM explorer","url":"https://explorer.public.zkevm-test.net","standard":"EIP3091"}],"status":"deprecated"},{"name":"Rikeza Network Mainnet","title":"Rikeza Network Mainnet","chain":"Rikeza","icon":"rikeza","rpc":["https://rpc.rikscan.com"],"faucets":[],"nativeCurrency":{"name":"Rikeza","symbol":"RIK","decimals":18},"infoURL":"https://rikeza.io","shortName":"RIK","chainId":1433,"networkId":1433,"explorers":[{"name":"Rikeza Blockchain explorer","url":"https://rikscan.com","standard":"EIP3091"}]},{"name":"Living Assets Mainnet","chain":"LAS","icon":"livingassets","rpc":["https://beta.mainnet.livingassets.io/rpc","https://gamma.mainnet.livingassets.io/rpc"],"faucets":[],"nativeCurrency":{"name":"LAS","symbol":"LAS","decimals":18},"infoURL":"https://dev.livingassets.io/","shortName":"LAS","chainId":1440,"networkId":1440},{"name":"Polygon zkEVM Testnet","title":"Polygon zkEVM Testnet","chain":"Polygon","rpc":["https://rpc.public.zkevm-test.net","https://polygon-zkevm-testnet.drpc.org","wss://polygon-zkevm-testnet.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://polygon.technology/solutions/polygon-zkevm/","shortName":"testnet-zkEVM-mango","chainId":1442,"networkId":1442,"slip44":1,"explorers":[{"name":"Polygon zkEVM explorer","url":"https://explorer.public.zkevm-test.net","standard":"EIP3091"}]},{"name":"GIL Testnet","chain":"GIL","icon":"gauss","rpc":["https://rpc.giltestnet.com"],"faucets":[],"nativeCurrency":{"name":"GANG","symbol":"GANG","decimals":18},"infoURL":"https://gaussgang.com/","shortName":"gil","chainId":1452,"networkId":1452,"slip44":1,"explorers":[{"name":"GIL Explorer","url":"https://explorer.giltestnet.com","standard":"EIP3091"}]},{"name":"MetaChain Istanbul","title":"MetaChain Testnet Istanbul","chain":"MTC","icon":"metachain","rpc":["https://istanbul-rpc.metachain.dev"],"faucets":["https://istanbul-faucet.metachain.dev"],"nativeCurrency":{"name":"Metatime Coin","symbol":"MTC","decimals":18},"infoURL":"https://metatime.com/en","shortName":"metatimeistanbul","chainId":1453,"networkId":1453,"slip44":1453,"explorers":[{"name":"MetaExplorer","url":"https://istanbul-explorer.metachain.dev","standard":"EIP3091"}]},{"name":"Ctex Scan Blockchain","chain":"Ctex Scan Blockchain","icon":"ctex","rpc":["https://mainnet-rpc.ctexscan.com/"],"faucets":["https://faucet.ctexscan.com"],"nativeCurrency":{"name":"CTEX","symbol":"CTEX","decimals":18},"infoURL":"https://ctextoken.io","shortName":"CTEX","chainId":1455,"networkId":1455,"explorers":[{"name":"Ctex Scan Explorer","url":"https://ctexscan.com","standard":"none"}]},{"name":"Vitruveo Mainnet","title":"Vitruveo is a blockchain for Creators","chain":"Vitruveo","rpc":["https://rpc.vitruveo.xyz"],"faucets":[],"nativeCurrency":{"name":"Vitruveo Coin","symbol":"VTRU","decimals":18},"features":[{"name":"EIP155"}],"infoURL":"https://www.vitruveo.xyz","shortName":"vitruveo","chainId":1490,"networkId":1490,"icon":"vitruveo","explorers":[{"name":"Vitruveo Explorer","url":"https://explorer.vitruveo.xyz","icon":"vitruveo","standard":"EIP3091"}]},{"name":"BEVM Canary","chain":"ChainX","rpc":["https://rpc-canary-1.bevm.io/","https://rpc-canary-2.bevm.io/"],"faucets":[],"nativeCurrency":{"name":"BTC","symbol":"BTC","decimals":18},"infoURL":"https://chainx.org","shortName":"chainx","chainId":1501,"networkId":1501,"icon":"bevmcanary","explorers":[{"name":"bevm canary scan","url":"https://scan-canary.bevm.io","standard":"none"}]},{"name":"Sherpax Mainnet","chain":"Sherpax Mainnet","rpc":["https://mainnet.sherpax.io/rpc"],"faucets":[],"nativeCurrency":{"name":"KSX","symbol":"KSX","decimals":18},"infoURL":"https://sherpax.io/","shortName":"Sherpax","chainId":1506,"networkId":1506,"explorers":[{"name":"Sherpax Mainnet Explorer","url":"https://evm.sherpax.io","standard":"none"}]},{"name":"Sherpax Testnet","chain":"Sherpax Testnet","rpc":["https://sherpax-testnet.chainx.org/rpc"],"faucets":[],"nativeCurrency":{"name":"KSX","symbol":"KSX","decimals":18},"infoURL":"https://sherpax.io/","shortName":"SherpaxTestnet","chainId":1507,"networkId":1507,"slip44":1,"explorers":[{"name":"Sherpax Testnet Explorer","url":"https://evm-pre.sherpax.io","standard":"none"}]},{"name":"Beagle Messaging Chain","chain":"BMC","rpc":["https://beagle.chat/eth"],"faucets":["https://faucet.beagle.chat/"],"nativeCurrency":{"name":"Beagle","symbol":"BG","decimals":18},"infoURL":"https://beagle.chat/","shortName":"beagle","chainId":1515,"networkId":1515,"explorers":[{"name":"Beagle Messaging Chain Explorer","url":"https://eth.beagle.chat","standard":"EIP3091"}]},{"name":"Tenet","title":"Tenet Mainnet","chain":"TENET","icon":"tenet","rpc":["https://rpc.tenet.org","https://tenet-evm.publicnode.com","wss://tenet-evm.publicnode.com"],"faucets":[],"nativeCurrency":{"name":"TENET","symbol":"TENET","decimals":18},"infoURL":"https://tenet.org/","shortName":"tenet","chainId":1559,"networkId":1559,"explorers":[{"name":"TenetScan Mainnet","url":"https://tenetscan.io","icon":"tenet","standard":"EIP3091"}]},{"name":"Ethereum Inscription Mainnet","chain":"ETINS","rpc":["https://rpc.etins.org"],"faucets":[],"nativeCurrency":{"name":"Ethereum Inscription","symbol":"ETINS","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://www.etins.org","shortName":"etins","chainId":1617,"networkId":1617,"explorers":[{"name":"Ethereum Inscription Explorer","url":"https://explorer.etins.org","standard":"none"}]},{"name":"Catecoin Chain Mainnet","chain":"Catechain","rpc":["https://send.catechain.com"],"faucets":[],"nativeCurrency":{"name":"Catecoin","symbol":"CATE","decimals":18},"infoURL":"https://catechain.com","shortName":"cate","chainId":1618,"networkId":1618},{"name":"Atheios","chain":"ATH","rpc":["https://rpc.atheios.org/"],"faucets":[],"nativeCurrency":{"name":"Atheios Ether","symbol":"ATH","decimals":18},"infoURL":"https://atheios.org","shortName":"ath","chainId":1620,"networkId":11235813,"slip44":1620},{"name":"Btachain","chain":"btachain","rpc":["https://dataseed1.btachain.com/"],"faucets":[],"nativeCurrency":{"name":"Bitcoin Asset","symbol":"BTA","decimals":18},"infoURL":"https://bitcoinasset.io/","shortName":"bta","chainId":1657,"networkId":1657},{"name":"Liquichain","shortName":"Liquichain","chain":"LQC","rpc":[],"faucets":[],"nativeCurrency":{"name":"Licoin","symbol":"LCN","decimals":18},"infoURL":"https://liquichain.io/","chainId":1662,"networkId":1662,"explorers":[{"name":"Liquichain Mainnet","url":"https://mainnet.liquichain.io","standard":"EIP3091"}],"redFlags":["reusedChainId"]},{"name":"Horizen Gobi Testnet","shortName":"Gobi","chain":"Gobi","icon":"eon","rpc":["https://gobi-rpc.horizenlabs.io/ethv1","https://rpc.ankr.com/horizen_gobi_testnet"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":["https://faucet.horizen.io"],"nativeCurrency":{"name":"Testnet Zen","symbol":"tZEN","decimals":18},"infoURL":"https://horizen.io/","chainId":1663,"networkId":1663,"slip44":1,"explorers":[{"name":"Gobi Testnet Block Explorer","url":"https://gobi-explorer.horizen.io","icon":"eon","standard":"EIP3091"}]},{"name":"Mint Testnet","chain":"ETH","rpc":["https://testnet-rpc.mintchain.io"],"faucets":[],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://www.mintchain.io","shortName":"minttest","chainId":1686,"networkId":1686,"icon":"mintTestnet","explorers":[{"name":"blockscout","url":"https://testnet-explorer.mintchain.io","icon":"mintTestnet","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://testnet-bridge.mintchain.io"}]}},{"name":"Mint Sepolia Testnet","chain":"ETH","rpc":["https://sepolia-testnet-rpc.mintchain.io"],"faucets":[],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://www.mintchain.io","shortName":"mintsepoliatest","chainId":1687,"networkId":1687,"icon":"mintTestnet","explorers":[{"name":"blockscout","url":"https://sepolia-testnet-explorer.mintchain.io","icon":"mintTestnet","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://sepolia-testnet-bridge.mintchain.io"}]}},{"name":"LUDAN Mainnet","chain":"LUDAN","rpc":["https://rpc.ludan.org/"],"faucets":[],"nativeCurrency":{"name":"LUDAN","symbol":"LUDAN","decimals":18},"infoURL":"https://www.ludan.org/","shortName":"LUDAN","icon":"ludan","chainId":1688,"networkId":1688},{"name":"Anytype EVM Chain","chain":"ETH","icon":"any","rpc":["https://geth.anytype.io"],"faucets":["https://evm.anytype.io/faucet"],"nativeCurrency":{"name":"ANY","symbol":"ANY","decimals":18},"infoURL":"https://evm.anytype.io","shortName":"AnytypeChain","chainId":1701,"networkId":1701,"explorers":[{"name":"Anytype Explorer","url":"https://explorer.anytype.io","icon":"any","standard":"EIP3091"}]},{"name":"TBSI Mainnet","title":"Thai Blockchain Service Infrastructure Mainnet","chain":"TBSI","rpc":["https://rpc.blockchain.or.th"],"faucets":[],"nativeCurrency":{"name":"Jinda","symbol":"JINDA","decimals":18},"infoURL":"https://blockchain.or.th","shortName":"TBSI","chainId":1707,"networkId":1707,"explorers":[{"name":"blockscout","url":"https://exp.blockchain.or.th","standard":"EIP3091"}]},{"name":"TBSI Testnet","title":"Thai Blockchain Service Infrastructure Testnet","chain":"TBSI","rpc":["https://rpc.testnet.blockchain.or.th"],"faucets":["https://faucet.blockchain.or.th"],"nativeCurrency":{"name":"Jinda","symbol":"JINDA","decimals":18},"infoURL":"https://blockchain.or.th","shortName":"tTBSI","chainId":1708,"networkId":1708,"slip44":1,"explorers":[{"name":"blockscout","url":"https://exp.testnet.blockchain.or.th","standard":"EIP3091"}]},{"name":"Doric Network","chain":"DRC","icon":"doric","rpc":["https://mainnet.doric.network"],"faucets":[],"nativeCurrency":{"name":"Doric Native Token","symbol":"DRC","decimals":18},"infoURL":"https://doric.network","shortName":"DRC","chainId":1717,"networkId":1717,"explorers":[{"name":"Doric Explorer","url":"https://explorer.doric.network","standard":"EIP3091"}]},{"name":"Palette Chain Mainnet","chain":"PLT","rpc":["https://palette-rpc.com:22000"],"faucets":[],"nativeCurrency":{"name":"Palette Token","symbol":"PLT","decimals":18},"features":[],"infoURL":"https://hashpalette.com/","shortName":"PCM","chainId":1718,"networkId":1718,"icon":"PLT","explorers":[{"name":"Palettescan","url":"https://palettescan.com","icon":"PLT","standard":"none"}]},{"name":"Reya Network","chain":"Reya","rpc":["https://rpc.reya.network","wss://ws.reya.network"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://reya.network","shortName":"reya","chainId":1729,"networkId":1729,"explorers":[{"name":"Reya Network Explorer","url":"https://explorer.reya.network","standard":"EIP3091"}]},{"name":"PartyChain","chain":"mainnet","rpc":["https://tea.mining4people.com/rpc","http://172.104.194.36:8545"],"faucets":[],"nativeCurrency":{"name":"Grams","symbol":"GRAMS","decimals":18},"infoURL":"TeaPartyCrypto.com","shortName":"TeaParty","chainId":1773,"networkId":1773,"icon":"grams","status":"incubating","explorers":[{"name":"PartyExplorer","url":"https://partyexplorer.co","icon":"grams","standard":"EIP3091"}]},{"name":"Gauss Mainnet","chain":"Gauss","icon":"gauss","rpc":["https://rpc.gaussgang.com"],"faucets":[],"nativeCurrency":{"name":"GANG","symbol":"GANG","decimals":18},"infoURL":"https://gaussgang.com/","shortName":"gauss","chainId":1777,"networkId":1777,"explorers":[{"name":"Gauss Explorer","url":"https://explorer.gaussgang.com","standard":"EIP3091"}]},{"name":"Kerleano","title":"Proof of Climate awaReness testnet","chain":"CRC","status":"active","rpc":["https://cacib-saturn-test.francecentral.cloudapp.azure.com","wss://cacib-saturn-test.francecentral.cloudapp.azure.com:9443"],"faucets":["https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md"],"nativeCurrency":{"name":"Climate awaReness Coin","symbol":"CRC","decimals":18},"infoURL":"https://github.com/ethereum-pocr/kerleano","shortName":"kerleano","chainId":1804,"networkId":1804,"slip44":1,"icon":"pocr","explorers":[{"name":"Lite Explorer","url":"https://ethereum-pocr.github.io/explorer/kerleano","icon":"pocr","standard":"EIP3091"}]},{"name":"Rabbit Analog Testnet Chain","chain":"rAna","icon":"rabbit","rpc":["https://rabbit.analog-rpc.com"],"faucets":["https://analogfaucet.com"],"nativeCurrency":{"name":"Rabbit Analog Test Chain Native Token ","symbol":"rAna","decimals":18},"infoURL":"https://rabbit.analogscan.com","shortName":"rAna","chainId":1807,"networkId":1807,"slip44":1,"explorers":[{"name":"blockscout","url":"https://rabbit.analogscan.com","standard":"none"}]},{"name":"Cube Chain Mainnet","chain":"Cube","icon":"cube","rpc":["https://http-mainnet.cube.network","wss://ws-mainnet.cube.network","https://http-mainnet-sg.cube.network","wss://ws-mainnet-sg.cube.network","https://http-mainnet-us.cube.network","wss://ws-mainnet-us.cube.network"],"faucets":[],"nativeCurrency":{"name":"Cube Chain Native Token","symbol":"CUBE","decimals":18},"infoURL":"https://www.cube.network","shortName":"cube","chainId":1818,"networkId":1818,"slip44":1818,"explorers":[{"name":"cube-scan","url":"https://cubescan.network","standard":"EIP3091"}]},{"name":"Cube Chain Testnet","chain":"Cube","icon":"cube","rpc":["https://http-testnet.cube.network","wss://ws-testnet.cube.network","https://http-testnet-sg.cube.network","wss://ws-testnet-sg.cube.network","https://http-testnet-jp.cube.network","wss://ws-testnet-jp.cube.network","https://http-testnet-us.cube.network","wss://ws-testnet-us.cube.network"],"faucets":["https://faucet.cube.network"],"nativeCurrency":{"name":"Cube Chain Test Native Token","symbol":"CUBET","decimals":18},"infoURL":"https://www.cube.network","shortName":"cubet","chainId":1819,"networkId":1819,"slip44":1,"explorers":[{"name":"cubetest-scan","url":"https://testnet.cubescan.network","standard":"EIP3091"}]},{"name":"Ruby Smart Chain MAINNET","chain":"RUBY","rpc":["https://mainnet-data.rubychain.io/","https://mainnet.rubychain.io/"],"nativeCurrency":{"name":"RUBY Smart Chain Native Token","symbol":"RUBY","decimals":18},"infoURL":"https://rubychain.io","faucets":[],"shortName":"RUBY","chainId":1821,"networkId":1821,"slip44":1,"icon":"ruby","explorers":[{"name":"RUBY Smart Chain MAINNET Explorer","icon":"ruby","url":"https://rubyscan.net","standard":"none"}]},{"name":"Teslafunds","chain":"TSF","rpc":["https://tsfapi.europool.me"],"faucets":[],"nativeCurrency":{"name":"Teslafunds Ether","symbol":"TSF","decimals":18},"infoURL":"https://teslafunds.io","shortName":"tsf","chainId":1856,"networkId":1},{"name":"Whitechain","chain":"WBT","rpc":["https://rpc.whitechain.io"],"faucets":[],"nativeCurrency":{"name":"WhiteBIT Coin","symbol":"WBT","decimals":18},"infoURL":"https://whitechain.io","shortName":"wbt","chainId":1875,"networkId":1875,"icon":"whitechain","explorers":[{"name":"whitechain-explorer","url":"https://explorer.whitechain.io","standard":"EIP3091"}]},{"name":"Gitshock Cartenz Testnet","chain":"Gitshock Cartenz","icon":"gitshockchain","rpc":["https://rpc.cartenz.works"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Gitshock Cartenz","symbol":"tGTFX","decimals":18},"infoURL":"https://gitshock.com","shortName":"gitshockchain","chainId":1881,"networkId":1881,"slip44":1,"explorers":[{"name":"blockscout","url":"https://scan.cartenz.works","standard":"EIP3091"}]},{"name":"Lightlink Phoenix Mainnet","chain":"Lightlink Phoenix Mainnet","icon":"lightlink","rpc":["https://replicator.phoenix.lightlink.io/rpc/v1"],"features":[{"name":"EIP155"}],"faucets":[],"nativeCurrency":{"name":"Ethereum","symbol":"ETH","decimals":18},"infoURL":"https://lightlink.io","shortName":"lightlink_phoenix","chainId":1890,"networkId":1890,"explorers":[{"name":"phoenix","url":"https://phoenix.lightlink.io","icon":"lightlink","standard":"EIP3091"}]},{"name":"Lightlink Pegasus Testnet","chain":"Lightlink Pegasus Testnet","icon":"lightlink","rpc":["https://replicator.pegasus.lightlink.io/rpc/v1"],"features":[{"name":"EIP155"}],"faucets":["https://faucet.pegasus.lightlink.io/"],"nativeCurrency":{"name":"Ethereum","symbol":"ETH","decimals":18},"infoURL":"https://lightlink.io","shortName":"lightlink_pegasus","chainId":1891,"networkId":1891,"slip44":1,"explorers":[{"name":"pegasus","url":"https://pegasus.lightlink.io","icon":"lightlink","standard":"EIP3091"}]},{"name":"BON Network","chain":"BON","rpc":["http://rpc.boyanet.org:8545","ws://rpc.boyanet.org:8546"],"faucets":[],"nativeCurrency":{"name":"BOYACoin","symbol":"BOY","decimals":18},"infoURL":"https://boyanet.org","shortName":"boya","chainId":1898,"networkId":1,"explorers":[{"name":"explorer","url":"https://explorer.boyanet.org:4001","standard":"EIP3091"}]},{"name":"Sports Chain Network","chain":"SCN","rpc":["https://rpc.sportschainnetwork.xyz/"],"faucets":[],"nativeCurrency":{"name":"SCN","symbol":"SCN","decimals":18},"infoURL":"https://sportschainnetwork.xyz","shortName":"SCN","chainId":1904,"networkId":1904,"icon":"scn","explorers":[{"name":"blockscout","url":"https://explorer.sportschainnetwork.xyz","standard":"EIP3091"}]},{"name":"Bitcichain Mainnet","chain":"BITCI","icon":"bitci","rpc":["https://rpc.bitci.com"],"faucets":[],"nativeCurrency":{"name":"Bitci","symbol":"BITCI","decimals":18},"infoURL":"https://www.bitcichain.com","shortName":"bitci","chainId":1907,"networkId":1907,"explorers":[{"name":"Bitci Explorer","url":"https://bitciexplorer.com","standard":"EIP3091"}]},{"name":"Bitcichain Testnet","chain":"TBITCI","icon":"bitci","rpc":["https://testnet.bitcichain.com"],"faucets":["https://faucet.bitcichain.com"],"nativeCurrency":{"name":"Test Bitci","symbol":"TBITCI","decimals":18},"infoURL":"https://www.bitcichain.com","shortName":"tbitci","chainId":1908,"networkId":1908,"slip44":1,"explorers":[{"name":"Bitci Explorer Testnet","url":"https://testnet.bitciexplorer.com","standard":"EIP3091"}]},{"name":"Merkle Scan","chain":"MRK","icon":"merklescan","rpc":["https://marklechain-rpc.merklescan.com"],"faucets":[],"nativeCurrency":{"name":"Merkle","symbol":"MRK","decimals":18},"infoURL":"https://merklescan.com","shortName":"MRK","chainId":1909,"networkId":1909,"explorers":[{"name":"blockscout","url":"https://merklescan.com","standard":"none"}]},{"name":"Scalind","chain":"ETH","icon":"scalind","rpc":["https://rpc.scalind.com"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://scalind.com","shortName":"scal","chainId":1911,"networkId":1911,"explorers":[{"name":"scalind","url":"https://explorer.scalind.com","standard":"EIP3091"}]},{"name":"Ruby Smart Chain Testnet","chain":"RUBY","rpc":["https://testnet-rchain.rubychain.io/"],"nativeCurrency":{"name":"RUBY Smart Chain Native Token","symbol":"tRUBY","decimals":18},"infoURL":"https://rubychain.io","faucets":["https://claim-faucet.rubychain.io/"],"shortName":"tRUBY","chainId":1912,"networkId":1912,"slip44":1,"icon":"ruby","explorers":[{"name":"RUBY Smart Chain Testnet Explorer","icon":"ruby","url":"https://testnet.rubyscan.net","standard":"none"}]},{"name":"ONUS Chain Testnet","title":"ONUS Chain Testnet","chain":"onus","rpc":["https://rpc-testnet.onuschain.io"],"faucets":[],"nativeCurrency":{"name":"ONUS","symbol":"ONUS","decimals":18},"infoURL":"https://onuschain.io","shortName":"onus-testnet","chainId":1945,"networkId":1945,"slip44":1,"explorers":[{"name":"Onus explorer testnet","url":"https://explorer-testnet.onuschain.io","icon":"onus","standard":"EIP3091"}]},{"name":"D-Chain Mainnet","chain":"D-Chain","rpc":["https://mainnet.d-chain.network/ext/bc/2ZiR1Bro5E59siVuwdNuRFzqL95NkvkbzyLBdrsYR9BLSHV7H4/rpc"],"nativeCurrency":{"name":"DOINX","symbol":"DOINX","decimals":18},"shortName":"dchain-mainnet","chainId":1951,"networkId":1951,"icon":"dchain","faucets":[],"infoURL":""},{"name":"Selendra Network Testnet","chain":"tSEL","rpc":["https://rpc0-testnet.selendra.org","https://rpc1-testnet.selendra.org"],"faucets":[],"nativeCurrency":{"name":"Selendra","symbol":"tSEL","decimals":18},"infoURL":"https://selendra.org","shortName":"tSEL","chainId":1953,"networkId":1953,"icon":"selendra"},{"name":"Dexilla Testnet","chain":"Dexilla","rpc":["https://rpc.dexilla.com"],"faucets":[],"icon":"dxz","nativeCurrency":{"name":"Dexilla Native Token","symbol":"DXZ","decimals":18},"infoURL":"https://dexilla.com","shortName":"Dexilla","chainId":1954,"networkId":1954,"slip44":1,"explorers":[{"name":"dos-mainnet","url":"https://exp.dexilla.com","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111","bridges":[{"url":"https://bridge.dexilla.com"}]}},{"name":"Selendra Network Mainnet","chain":"SEL","rpc":["https://rpc0.selendra.org","https://rpc1.selendra.org"],"faucets":[],"nativeCurrency":{"name":"Selendra","symbol":"SEL","decimals":18},"infoURL":"https://selendra.org","shortName":"SEL","chainId":1961,"networkId":1961,"icon":"selendra","explorers":[{"name":"Selendra Scan","url":"https://scan.selendra.org","standard":"none"}]},{"name":"Eleanor","title":"Metatime Testnet Eleanor","chain":"MTC","rpc":["https://rpc.metatime.com/eleanor","wss://ws.metatime.com/eleanor"],"faucets":["https://faucet.metatime.com/eleanor"],"nativeCurrency":{"name":"Eleanor Metacoin","symbol":"MTC","decimals":18},"infoURL":"https://eleanor.metatime.com","shortName":"mtc","chainId":1967,"networkId":1967,"slip44":1,"explorers":[{"name":"metaexplorer-eleanor","url":"https://explorer.metatime.com/eleanor","standard":"EIP3091"}]},{"name":"Super Smart Chain Testnet","chain":"TSCS","rpc":["https://testnetrpc.scschain.com"],"faucets":["https://testnet.scschain.com"],"nativeCurrency":{"name":"Super Chain Native Token","symbol":"TSCS","decimals":18},"infoURL":"https://testnet.scschain.com","shortName":"tscs","chainId":1969,"networkId":1969,"slip44":1,"icon":"super","explorers":[{"name":"blockscout","url":"https://testnetscan.scschain.com","standard":"EIP3091"}]},{"name":"Super Smart Chain Mainnet","chain":"SCS","rpc":["https://rpc.scschain.com"],"faucets":[],"nativeCurrency":{"name":"Super Chain Native Token","symbol":"SCS","decimals":18},"infoURL":"https://scschain.com","shortName":"scs","chainId":1970,"networkId":1970,"icon":"super","explorers":[{"name":"blockscout","url":"https://scan.scschain.com","standard":"EIP3091"}]},{"name":"Atelier","title":"Atelier Test Network","chain":"ALTR","rpc":["https://1971.network/atlr","wss://1971.network/atlr"],"faucets":[],"nativeCurrency":{"name":"ATLR","symbol":"ATLR","decimals":18},"infoURL":"https://1971.network/","shortName":"atlr","chainId":1971,"networkId":1971,"slip44":1,"icon":"atlr"},{"name":"RedeCoin","chain":"REDEV2","rpc":["https://rpc2.redecoin.eu"],"faucets":[],"nativeCurrency":{"name":"RedeCoin","symbol":"REDEV2","decimals":18},"infoURL":"https://www.redecoin.eu","shortName":"rede","chainId":1972,"networkId":1972,"explorers":[{"name":"RedeCoin Explorer","url":"https://explorer3.redecoin.eu","standard":"none"}]},{"name":"ONUS Chain Mainnet","title":"ONUS Chain Mainnet","chain":"onus","rpc":["https://rpc.onuschain.io","wss://ws.onuschain.io"],"faucets":[],"nativeCurrency":{"name":"ONUS","symbol":"ONUS","decimals":18},"infoURL":"https://onuschain.io","shortName":"onus-mainnet","chainId":1975,"networkId":1975,"explorers":[{"name":"Onus explorer mainnet","url":"https://explorer.onuschain.io","icon":"onus","standard":"EIP3091"}]},{"name":"Eurus Testnet","chain":"EUN","rpc":["https://testnet.eurus.network"],"faucets":[],"nativeCurrency":{"name":"Eurus","symbol":"EUN","decimals":18},"infoURL":"https://eurus.network","shortName":"euntest","chainId":1984,"networkId":1984,"slip44":1,"icon":"eurus","explorers":[{"name":"testnetexplorer","url":"https://testnetexplorer.eurus.network","icon":"eurus","standard":"none"}]},{"name":"SatoshIE","chain":"TUSHY","rpc":["http://rpc.satosh.ie"],"faucets":[],"nativeCurrency":{"name":"Tushy Token","symbol":"TUSHY","decimals":18},"infoURL":"https://satosh.ie","shortName":"satoshie","chainId":1985,"networkId":1985,"icon":"satoshie","explorers":[{"name":"mainnetexplorer","url":"http://explore.satosh.ie","icon":"satoshie","standard":"none"}]},{"name":"SatoshIE Testnet","chain":"TUSHY","rpc":["http://testnet.satosh.ie"],"faucets":[],"nativeCurrency":{"name":"Tushy Token","symbol":"TUSHY","decimals":18},"infoURL":"https://satosh.ie","shortName":"satoshie_testnet","chainId":1986,"networkId":1986,"slip44":1,"icon":"satoshie","explorers":[{"name":"testnetexplorer","url":"http://explore-testnet.satosh.ie","icon":"satoshie","standard":"none"}]},{"name":"EtherGem","chain":"EGEM","rpc":["https://jsonrpc.egem.io/custom"],"faucets":[],"nativeCurrency":{"name":"EtherGem Ether","symbol":"EGEM","decimals":18},"infoURL":"https://egem.io","shortName":"egem","chainId":1987,"networkId":1987,"slip44":1987},{"name":"Hubble Exchange","chain":"Hubblenet","icon":"hubblenet","rpc":["https://rpc.hubble.exchange","wss://ws-rpc.hubble.exchange"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"USD Coin","symbol":"USDC","decimals":18},"infoURL":"https://www.hubble.exchange","shortName":"hubblenet","chainId":1992,"networkId":1992,"slip44":60,"explorers":[{"name":"routescan","url":"https://explorer.hubble.exchange","standard":"EIP3091"}]},{"name":"Ekta","chain":"EKTA","rpc":["https://main.ekta.io"],"faucets":[],"nativeCurrency":{"name":"EKTA","symbol":"EKTA","decimals":18},"infoURL":"https://www.ekta.io","shortName":"ekta","chainId":1994,"networkId":1994,"icon":"ekta","explorers":[{"name":"ektascan","url":"https://ektascan.io","icon":"ekta","standard":"EIP3091"}]},{"name":"edeXa Testnet","chain":"edeXa TestNetwork","rpc":["https://testnet.edexa.com/rpc","https://io-dataseed1.testnet.edexa.io-market.com/rpc"],"faucets":["https://faucet.edexa.com/"],"nativeCurrency":{"name":"EDEXA","symbol":"EDX","decimals":18},"infoURL":"https://edexa.com/","shortName":"edx","chainId":1995,"networkId":1995,"slip44":1,"icon":"edexa","explorers":[{"name":"edexa-testnet","url":"https://explorer.testnet.edexa.com","standard":"EIP3091"}]},{"name":"Kyoto Testnet","chain":"KYOTO","rpc":["https://rpc.testnet.kyotoprotocol.io:8545"],"faucets":["https://faucet.kyotoprotocol.io"],"nativeCurrency":{"name":"Kyoto","symbol":"KYOTO","decimals":18},"features":[{"name":"EIP155"}],"infoURL":"https://kyotoprotocol.io","shortName":"kyoto-testnet","chainId":1998,"networkId":1998,"slip44":1,"explorers":[{"name":"Kyotoscan","url":"https://testnet.kyotoscan.io","standard":"EIP3091"}]},{"name":"Dogechain Mainnet","chain":"DC","icon":"dogechain","rpc":["https://rpc.dogechain.dog","https://rpc01-sg.dogechain.dog","https://rpc.ankr.com/dogechain"],"faucets":[],"nativeCurrency":{"name":"Dogecoin","symbol":"DOGE","decimals":18},"infoURL":"https://dogechain.dog","shortName":"dc","chainId":2000,"networkId":2000,"explorers":[{"name":"dogechain explorer","url":"https://explorer.dogechain.dog","standard":"EIP3091"}]},{"name":"Milkomeda C1 Mainnet","chain":"milkAda","icon":"milkomeda","rpc":["https://rpc-mainnet-cardano-evm.c1.milkomeda.com","wss://rpc-mainnet-cardano-evm.c1.milkomeda.com"],"faucets":[],"nativeCurrency":{"name":"milkAda","symbol":"mADA","decimals":18},"infoURL":"https://milkomeda.com","shortName":"milkAda","chainId":2001,"networkId":2001,"explorers":[{"name":"Blockscout","url":"https://explorer-mainnet-cardano-evm.c1.milkomeda.com","standard":"none"}]},{"name":"Milkomeda A1 Mainnet","chain":"milkALGO","icon":"milkomeda","rpc":["https://rpc-mainnet-algorand-rollup.a1.milkomeda.com","wss://rpc-mainnet-algorand-rollup.a1.milkomeda.com/ws"],"faucets":[],"nativeCurrency":{"name":"milkALGO","symbol":"mALGO","decimals":18},"infoURL":"https://milkomeda.com","shortName":"milkALGO","chainId":2002,"networkId":2002,"explorers":[{"name":"Blockscout","url":"https://explorer-mainnet-algorand-rollup.a1.milkomeda.com","standard":"none"}]},{"name":"CloudWalk Testnet","chain":"CloudWalk Testnet","rpc":[],"faucets":[],"nativeCurrency":{"name":"CloudWalk Native Token","symbol":"CWN","decimals":18},"infoURL":"https://cloudwalk.io","shortName":"cloudwalk_testnet","chainId":2008,"networkId":2008,"slip44":1,"explorers":[{"name":"CloudWalk Testnet Explorer","url":"https://explorer.testnet.cloudwalk.io","standard":"none"}]},{"name":"CloudWalk Mainnet","chain":"CloudWalk Mainnet","rpc":[],"faucets":[],"nativeCurrency":{"name":"CloudWalk Native Token","symbol":"CWN","decimals":18},"infoURL":"https://cloudwalk.io","shortName":"cloudwalk_mainnet","chainId":2009,"networkId":2009,"explorers":[{"name":"CloudWalk Mainnet Explorer","url":"https://explorer.mainnet.cloudwalk.io","standard":"none"}]},{"name":"MainnetZ Mainnet","chain":"NetZ","icon":"mainnetz","rpc":["https://mainnet-rpc.mainnetz.io","https://eu-rpc.mainnetz.io"],"faucets":[],"nativeCurrency":{"name":"MainnetZ","symbol":"NetZ","decimals":18},"infoURL":"https://mainnetz.io","shortName":"netz","chainId":2016,"networkId":2016,"explorers":[{"name":"MainnetZ","url":"https://explorer.mainnetz.io","standard":"EIP3091"}]},{"name":"PublicMint Devnet","title":"Public Mint Devnet","chain":"PublicMint","rpc":["https://rpc.dev.publicmint.io:8545"],"faucets":[],"nativeCurrency":{"name":"USD","symbol":"USD","decimals":18},"infoURL":"https://publicmint.com","shortName":"pmint_dev","chainId":2018,"networkId":2018,"slip44":60,"explorers":[{"name":"PublicMint Explorer","url":"https://explorer.dev.publicmint.io","standard":"EIP3091"}]},{"name":"PublicMint Testnet","title":"Public Mint Testnet","chain":"PublicMint","rpc":["https://rpc.tst.publicmint.io:8545"],"faucets":[],"nativeCurrency":{"name":"USD","symbol":"USD","decimals":18},"infoURL":"https://publicmint.com","shortName":"pmint_test","chainId":2019,"networkId":2019,"slip44":1,"explorers":[{"name":"PublicMint Explorer","url":"https://explorer.tst.publicmint.io","standard":"EIP3091"}]},{"name":"PublicMint Mainnet","title":"Public Mint Mainnet","chain":"PublicMint","rpc":["https://rpc.publicmint.io:8545"],"faucets":[],"nativeCurrency":{"name":"USD","symbol":"USD","decimals":18},"infoURL":"https://publicmint.com","shortName":"pmint","chainId":2020,"networkId":2020,"slip44":60,"explorers":[{"name":"PublicMint Explorer","url":"https://explorer.publicmint.io","standard":"EIP3091"}]},{"name":"Edgeware EdgeEVM Mainnet","chain":"EDG","icon":"edgeware","rpc":["https://edgeware-evm.jelliedowl.net","https://mainnet2.edgewa.re/evm","https://mainnet3.edgewa.re/evm","https://mainnet4.edgewa.re/evm","https://mainnet5.edgewa.re/evm","wss://edgeware.jelliedowl.net","wss://mainnet2.edgewa.re","wss://mainnet3.edgewa.re","wss://mainnet4.edgewa.re","wss://mainnet5.edgewa.re"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Edgeware","symbol":"EDG","decimals":18},"infoURL":"https://edgeware.io","shortName":"edg","chainId":2021,"networkId":2021,"slip44":523,"explorers":[{"name":"Edgscan by Bharathcoorg","url":"https://edgscan.live","standard":"EIP3091"},{"name":"Subscan","url":"https://edgeware.subscan.io","standard":"none","icon":"subscan"}]},{"name":"Beresheet BereEVM Testnet","chain":"EDG","rpc":["https://beresheet-evm.jelliedowl.net","wss://beresheet.jelliedowl.net"],"faucets":[],"nativeCurrency":{"name":"Testnet EDG","symbol":"tEDG","decimals":18},"infoURL":"https://edgeware.io/build","shortName":"edgt","chainId":2022,"networkId":2022,"slip44":1,"explorers":[{"name":"Edgscan by Bharathcoorg","url":"https://testnet.edgscan.live","standard":"EIP3091"}]},{"name":"Taycan Testnet","chain":"Taycan","rpc":["https://test-taycan.hupayx.io"],"faucets":["https://ttaycan-faucet.hupayx.io/"],"nativeCurrency":{"name":"test-Shuffle","symbol":"tSFL","decimals":18},"infoURL":"https://hupayx.io","shortName":"taycan-testnet","chainId":2023,"networkId":2023,"slip44":1,"icon":"shuffle","explorers":[{"name":"Taycan Explorer(Blockscout)","url":"https://evmscan-test.hupayx.io","standard":"none","icon":"shuffle"},{"name":"Taycan Cosmos Explorer","url":"https://cosmoscan-test.hupayx.io","standard":"none","icon":"shuffle"}]},{"name":"Swan Saturn Testnet","chain":"SWAN","rpc":["https://saturn-rpc.swanchain.io"],"faucets":[],"nativeCurrency":{"name":"SWANETH","symbol":"sETH","decimals":18},"infoURL":"https://swanchain.io/","shortName":"swan","chainId":2024,"networkId":2024},{"name":"Rangers Protocol Mainnet","chain":"Rangers","icon":"rangers","rpc":["https://mainnet.rangersprotocol.com/api/jsonrpc"],"faucets":[],"nativeCurrency":{"name":"Rangers Protocol Gas","symbol":"RPG","decimals":18},"infoURL":"https://rangersprotocol.com","shortName":"rpg","chainId":2025,"networkId":2025,"slip44":1008,"explorers":[{"name":"rangersscan","url":"https://scan.rangersprotocol.com","standard":"none"}]},{"name":"Edgeless Network","chain":"Edgeless","rpc":["https://rpc.edgeless.network/http"],"features":[{"name":"EIP155"}],"faucets":[],"nativeCurrency":{"name":"Edgeless Wrapped Eth","symbol":"EwEth","decimals":18},"infoURL":"https://edgeless.network","shortName":"edgeless","chainId":2026,"networkId":2026,"explorers":[{"name":"Edgeless Explorer","url":"https://explorer.edgeless.network","standard":"EIP3091"}]},{"name":"Centrifuge","chain":"CFG","icon":"centrifuge","rpc":["https://fullnode.centrifuge.io","wss://fullnode.centrifuge.io","https://centrifuge-parachain.api.onfinality.io/public","wss://centrifuge-parachain.api.onfinality.io/public-ws","https://centrifuge-rpc.dwellir.com","wss://centrifuge-rpc.dwellir.com","https://rpc-centrifuge.luckyfriday.io","wss://rpc-centrifuge.luckyfriday.io"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Centrifuge","symbol":"CFG","decimals":18},"infoURL":"https://centrifuge.io","shortName":"cfg","chainId":2031,"networkId":2031,"explorers":[{"name":"subscan","url":"https://centrifuge.subscan.io","standard":"EIP3091","icon":"subscan"}]},{"name":"Catalyst","chain":"CFG","rpc":["wss://fullnode.catalyst.cntrfg.com"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Catalyst CFG","symbol":"NCFG","decimals":18},"infoURL":"https://centrifuge.io","shortName":"ncfg","chainId":2032,"networkId":2032},{"name":"Phala Network","chain":"PHA","rpc":[],"faucets":[],"nativeCurrency":{"name":"Phala","symbol":"PHA","decimals":18},"infoURL":"https://phala.network","shortName":"pha","chainId":2035,"networkId":2035},{"name":"Kiwi Subnet","chain":"KIWI","rpc":["https://subnets.avax.network/kiwi/testnet/rpc"],"features":[{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Shrapgas","symbol":"SHRAP","decimals":18},"infoURL":"","shortName":"kiwi","chainId":2037,"networkId":2037,"slip44":1,"explorers":[{"name":"KIWI Explorer","url":"https://subnets-test.avax.network/kiwi","standard":"EIP3091"}]},{"name":"Shrapnel Testnet","chain":"SHRAPNEL","rpc":["https://subnets.avax.network/shrapnel/testnet/rpc"],"features":[{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"SHRAPG","symbol":"SHRAPG","decimals":18},"infoURL":"https://www.shrapnel.com/","shortName":"shraptest","chainId":2038,"networkId":2038,"slip44":1,"explorers":[{"name":"SHRAPNEL Explorer","url":"https://subnets-test.avax.network/shrapnel","standard":"EIP3091"}]},{"name":"Vanar Mainnet","title":"Vanarchain","chain":"VANAR","rpc":["https://rpc.vanarchain.com","wss://ws.vanarchain.com"],"faucets":[],"nativeCurrency":{"name":"VANRY","symbol":"VANRY","decimals":18},"features":[{"name":"EIP155"}],"infoURL":"https://vanarchain.com","shortName":"Vanar","chainId":2040,"networkId":2040,"icon":"vanar"},{"name":"OriginTrail Parachain","chain":"OTP","rpc":["https://astrosat.origintrail.network","wss://parachain-rpc.origin-trail.network"],"faucets":[],"nativeCurrency":{"name":"OriginTrail Parachain Token","symbol":"OTP","decimals":12},"infoURL":"https://parachain.origintrail.io","shortName":"otp","chainId":2043,"networkId":2043},{"name":"Shrapnel Subnet","chain":"shrapnel","rpc":["https://subnets.avax.network/shrapnel/mainnet/rpc"],"faucets":[],"nativeCurrency":{"name":"Shrapnel Gas Token","symbol":"SHRAPG","decimals":18},"infoURL":"https://www.shrapnel.com/","shortName":"Shrapnel","chainId":2044,"networkId":2044},{"name":"Stratos Testnet","chain":"STOS","rpc":["https://web3-rpc-mesos.thestratos.org"],"faucets":[],"nativeCurrency":{"name":"STOS","symbol":"STOS","decimals":18},"infoURL":"https://www.thestratos.org","shortName":"stos-testnet","chainId":2047,"networkId":2047,"slip44":1,"explorers":[{"name":"Stratos EVM Explorer (Blockscout)","url":"https://web3-explorer-mesos.thestratos.org","standard":"none"},{"name":"Stratos Cosmos Explorer (BigDipper)","url":"https://big-dipper-mesos.thestratos.org","standard":"none"}]},{"name":"Stratos","chain":"STOS","rpc":["https://web3-rpc.thestratos.org"],"faucets":[],"nativeCurrency":{"name":"STOS","symbol":"STOS","decimals":18},"infoURL":"https://www.thestratos.org","shortName":"stos-mainnet","chainId":2048,"networkId":2048,"explorers":[{"name":"Stratos EVM Explorer (Blockscout)","url":"https://web3-explorer.thestratos.org","standard":"none"},{"name":"Stratos Cosmos Explorer (BigDipper)","url":"https://explorer.thestratos.org","standard":"none"}]},{"name":"Movo Smart Chain Mainnet","chain":"MOVO","icon":"movo","rpc":["https://msc-rpc.movoscan.com","https://msc-rpc.movochain.org","https://msc-rpc.movoswap.com"],"faucets":[],"nativeCurrency":{"name":"Movo Smart Chain","symbol":"MOVO","decimals":18},"infoURL":"https://movo.uk","shortName":"movo","chainId":2049,"networkId":2049,"slip44":2050,"explorers":[{"name":"movoscan","url":"https://movoscan.com","icon":"movoscan","standard":"none"}]},{"name":"Quokkacoin Mainnet","chain":"Qkacoin","rpc":["https://rpc.qkacoin.org"],"faucets":[],"nativeCurrency":{"name":"Qkacoin","symbol":"QKA","decimals":18},"infoURL":"https://qkacoin.org","shortName":"QKA","chainId":2077,"networkId":2077,"explorers":[{"name":"blockscout","url":"https://explorer.qkacoin.org","standard":"EIP3091"}]},{"name":"Altair","chain":"AIR","icon":"altair","rpc":["wss://fullnode.altair.centrifuge.io","wss://altair.api.onfinality.io/public-ws"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Altair","symbol":"AIR","decimals":18},"infoURL":"https://centrifuge.io","shortName":"air","chainId":2088,"networkId":2088},{"name":"Algol","chain":"algol","status":"deprecated","rpc":["wss://fullnode.algol.cntrfg.com"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Algol","symbol":"ALGL","decimals":18},"infoURL":"https://centrifuge.io","shortName":"algl","chainId":2089,"networkId":2089},{"name":"Ecoball Mainnet","chain":"ECO","rpc":["https://api.ecoball.org/ecoball/"],"faucets":[],"nativeCurrency":{"name":"Ecoball Coin","symbol":"ECO","decimals":18},"infoURL":"https://ecoball.org","shortName":"eco","chainId":2100,"networkId":2100,"explorers":[{"name":"Ecoball Explorer","url":"https://scan.ecoball.org","standard":"EIP3091"}]},{"name":"Ecoball Testnet Espuma","chain":"ECO","rpc":["https://api.ecoball.org/espuma/"],"faucets":[],"nativeCurrency":{"name":"Espuma Coin","symbol":"ECO","decimals":18},"infoURL":"https://ecoball.org","shortName":"esp","chainId":2101,"networkId":2101,"slip44":1,"explorers":[{"name":"Ecoball Testnet Explorer","url":"https://espuma-scan.ecoball.org","standard":"EIP3091"}]},{"name":"Exosama Network","chain":"EXN","rpc":["https://rpc.exosama.com","wss://rpc.exosama.com"],"faucets":[],"nativeCurrency":{"name":"Sama Token","symbol":"SAMA","decimals":18},"infoURL":"https://moonsama.com","shortName":"exn","chainId":2109,"networkId":2109,"slip44":2109,"icon":"exn","explorers":[{"name":"blockscout","url":"https://explorer.exosama.com","icon":"blockscout","standard":"EIP3091"}]},{"name":"Catena Mainnet","chain":"CMCX","rpc":["https://rpc1.catenarpc.com"],"faucets":[],"nativeCurrency":{"name":"Catena","symbol":"CMCX","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://catena.network","shortName":"cmcx","chainId":2121,"networkId":2121,"icon":"catena","explorers":[{"name":"catenascan","url":"https://catenascan.com","standard":"EIP3091"}]},{"name":"Metaplayerone Mainnet","chain":"METAD","icon":"metad","rpc":["https://rpc.metaplayer.one/"],"faucets":[],"nativeCurrency":{"name":"METAD","symbol":"METAD","decimals":18},"infoURL":"https://docs.metaplayer.one/","shortName":"Metad","chainId":2122,"networkId":2122,"explorers":[{"name":"Metad Scan","url":"https://scan.metaplayer.one","icon":"metad","standard":"EIP3091"}]},{"name":"Metaplayerone Dubai Testnet","chain":"MP1 Dubai-Testnet","rpc":["https://rpc-dubai.mp1network.com/"],"faucets":[],"nativeCurrency":{"name":"Metaunit","symbol":"MEU","decimals":18},"infoURL":"https://docs.metaplayer.one/","shortName":"MEU","chainId":2124,"networkId":2124,"slip44":1,"explorers":[{"name":"MP1Scan","url":"https://dubai.mp1scan.io","standard":"EIP3091"}]},{"name":"BigShortBets","chain":"BIGSB","rpc":["https://market.bigsb.io","wss://market.bigsb.io"],"faucets":[],"nativeCurrency":{"name":"USD Coin","symbol":"USDC","decimals":18},"infoURL":"https://bigshortbets.com/","shortName":"bigsb","chainId":2137,"networkId":2137,"explorers":[]},{"name":"Defi Oracle Meta Testnet","chain":"dfiometatest","icon":"defioraclemeta","rpc":["https://rpc.public-2138.defi-oracle.io","wss://rpc.public-2138.defi-oracle.io"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"testEther","symbol":"tETH","decimals":18},"infoURL":"https://defi-oracle.io/","shortName":"dfio-meta-test","chainId":2138,"networkId":21,"slip44":1,"ens":{"registry":"0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85"},"explorers":[{"name":"Quorum Explorer","url":"https://public-2138.defi-oracle.io","standard":"none"}]},{"name":"BOSagora Mainnet","chain":"ETH","rpc":["https://mainnet.bosagora.org","https://rpc.bosagora.org"],"faucets":[],"nativeCurrency":{"name":"BOSAGORA","symbol":"BOA","decimals":18},"infoURL":"https://docs.bosagora.org","shortName":"boa","chainId":2151,"networkId":2151,"icon":"agora","explorers":[{"name":"BOASCAN","url":"https://boascan.io","icon":"agora","standard":"EIP3091"}]},{"name":"Findora Mainnet","chain":"Findora","rpc":["https://rpc-mainnet.findora.org"],"faucets":[],"nativeCurrency":{"name":"FRA","symbol":"FRA","decimals":18},"infoURL":"https://findora.org/","shortName":"fra","chainId":2152,"networkId":2152,"explorers":[{"name":"findorascan","url":"https://evm.findorascan.io","standard":"EIP3091"}]},{"name":"Findora Testnet","chain":"Testnet-anvil","rpc":["https://prod-testnet.prod.findora.org:8545/"],"faucets":[],"nativeCurrency":{"name":"FRA","symbol":"FRA","decimals":18},"infoURL":"https://findora.org/","shortName":"findora-testnet","chainId":2153,"networkId":2153,"slip44":1,"explorers":[{"name":"findorascan","url":"https://testnet-anvil.evm.findorascan.io","standard":"EIP3091"}]},{"name":"Findora Forge","chain":"Testnet-forge","rpc":["https://prod-forge.prod.findora.org:8545/"],"faucets":[],"nativeCurrency":{"name":"FRA","symbol":"FRA","decimals":18},"infoURL":"https://findora.org/","shortName":"findora-forge","chainId":2154,"networkId":2154,"slip44":1,"explorers":[{"name":"findorascan","url":"https://testnet-forge.evm.findorascan.io","standard":"EIP3091"}]},{"name":"Moonsama Network","chain":"MSN","rpc":["https://rpc.moonsama.com","wss://rpc.moonsama.com/ws"],"faucets":["https://multiverse.moonsama.com/faucet"],"nativeCurrency":{"name":"Sama Token","symbol":"SAMA","decimals":18},"infoURL":"https://moonsama.com","shortName":"msn","chainId":2199,"networkId":2199,"slip44":2199,"icon":"msn","explorers":[{"name":"blockscout","url":"https://explorer.moonsama.com","icon":"blockscout","standard":"EIP3091"}]},{"name":"Antofy Mainnet","chain":"ABN","icon":"antofy","rpc":["https://rpc.antofy.io"],"faucets":["https://faucet.antofy.io"],"nativeCurrency":{"name":"Antofy","symbol":"ABN","decimals":18},"infoURL":"https://antofy.io","shortName":"ABNm","chainId":2202,"networkId":2202,"explorers":[{"name":"Antofy Mainnet","url":"https://antofyscan.com","standard":"EIP3091"}]},{"name":"Bitcoin EVM","chain":"Bitcoin EVM","rpc":["https://connect.bitcoinevm.com"],"faucets":[],"nativeCurrency":{"name":"Bitcoin","symbol":"BTC","decimals":18},"infoURL":"https://bitcoinevm.com","shortName":"BTC","chainId":2203,"networkId":2203,"icon":"ebtc","explorers":[{"name":"Explorer","url":"https://explorer.bitcoinevm.com","icon":"ebtc","standard":"none"}]},{"name":"Evanesco Mainnet","chain":"EVA","rpc":["https://seed4.evanesco.org:8546"],"faucets":[],"nativeCurrency":{"name":"EVA","symbol":"EVA","decimals":18},"infoURL":"https://evanesco.org/","shortName":"evanesco","chainId":2213,"networkId":2213,"icon":"evanesco","explorers":[{"name":"Evanesco Explorer","url":"https://explorer.evanesco.org","standard":"none"}]},{"name":"Kava Testnet","chain":"KAVA","rpc":["https://evm.testnet.kava.io","https://kava-evm-testnet.rpc.thirdweb.com","wss://wevm.testnet.kava.io","https://kava-testnet.drpc.org","wss://kava-testnet.drpc.org"],"faucets":["https://faucet.kava.io"],"nativeCurrency":{"name":"TKava","symbol":"TKAVA","decimals":18},"infoURL":"https://www.kava.io","shortName":"tkava","chainId":2221,"networkId":2221,"icon":"kava","explorers":[{"name":"Kava Testnet Explorer","url":"http://testnet.kavascan.com","standard":"EIP3091","icon":"kava"}]},{"name":"Kava","chain":"KAVA","rpc":["https://evm.kava.io","https://kava-rpc.gateway.pokt.network","https://kava-evm.rpc.thirdweb.com","wss://wevm.kava.io","https://kava-evm-rpc.publicnode.com","wss://kava-evm-rpc.publicnode.com","https://evm.kava-rpc.com","https://rpc.ankr.com/kava_evm","wss://wevm.kava-rpc.com","https://kava.drpc.org","wss://kava.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Kava","symbol":"KAVA","decimals":18},"infoURL":"https://www.kava.io","shortName":"kava","chainId":2222,"networkId":2222,"icon":"kava","explorers":[{"name":"Kava EVM Explorer","url":"https://kavascan.com","standard":"EIP3091","icon":"kava"}]},{"name":"VChain Mainnet","chain":"VChain","rpc":["https://bc.vcex.xyz"],"faucets":[],"nativeCurrency":{"name":"VNDT","symbol":"VNDT","decimals":18},"infoURL":"https://bo.vcex.xyz/","shortName":"VChain","chainId":2223,"networkId":2223,"explorers":[{"name":"VChain Scan","url":"https://scan.vcex.xyz","standard":"EIP3091"}]},{"name":"Krest Network","chain":"Krest","icon":"krest","rpc":["https://erpc-krest.peaq.network","https://krest.unitedbloc.com"],"faucets":[],"nativeCurrency":{"name":"Krest","symbol":"KRST","decimals":18},"infoURL":"https://www.peaq.network","shortName":"KRST","chainId":2241,"networkId":2241,"explorers":[{"name":"Polkadot.js","url":"https://polkadot.js.org/apps/?rpc=wss://wss-krest.peaq.network#/explorer","standard":"none"},{"name":"Subscan","url":"https://krest.subscan.io","standard":"none"}]},{"name":"BOMB Chain","chain":"BOMB","rpc":["https://rpc.bombchain.com"],"faucets":[],"nativeCurrency":{"name":"BOMB Token","symbol":"BOMB","decimals":18},"infoURL":"https://www.bombchain.com","shortName":"bomb","chainId":2300,"networkId":2300,"icon":"bomb","explorers":[{"name":"bombscan","icon":"bomb","url":"https://bombscan.com","standard":"EIP3091"}]},{"name":"Ebro Network","chain":"ebro","rpc":["https://greendinoswap.com"],"faucets":[],"nativeCurrency":{"name":"Ebro","symbol":"ebro","decimals":18},"infoURL":"https://www.ebrochain.com","shortName":"ebro","chainId":2306,"networkId":2306},{"name":"Arevia","chain":"Arevia","rpc":[],"faucets":[],"nativeCurrency":{"name":"Arev","symbol":"ARÉV","decimals":18},"infoURL":"","shortName":"arevia","chainId":2309,"networkId":2309,"explorers":[],"status":"incubating"},{"name":"SOMA Network Testnet","chain":"SOMA","rpc":["https://data-testnet-v1.somanetwork.io/","https://testnet-au-server-2.somanetwork.io","https://testnet-au-server-1.somanetwork.io","https://testnet-sg-server-1.somanetwork.io","https://testnet-sg-server-2.somanetwork.io"],"faucets":["https://faucet.somanetwork.io"],"nativeCurrency":{"name":"SMA","symbol":"tSMA","decimals":18},"infoURL":"https://somanetwork.io","shortName":"sma","chainId":2323,"networkId":2323,"slip44":1,"icon":"soma","explorers":[{"name":"SOMA Testnet Explorer","icon":"soma","url":"https://testnet.somascan.io","standard":"none"}]},{"name":"Altcoinchain","chain":"mainnet","rpc":["https://rpc0.altcoinchain.org/rpc"],"faucets":[],"nativeCurrency":{"name":"Altcoin","symbol":"ALT","decimals":18},"infoURL":"https://altcoinchain.org","shortName":"alt","chainId":2330,"networkId":2330,"icon":"altcoinchain","status":"active","explorers":[{"name":"expedition","url":"http://expedition.altcoinchain.org","icon":"altcoinchain","standard":"none"}]},{"name":"RSS3 VSL Sepolia Testnet","chain":"RSS3","rpc":["https://rpc.testnet.rss3.io"],"faucets":[],"nativeCurrency":{"name":"RSS3","symbol":"RSS3","decimals":18},"infoURL":"https://rss3.io","shortName":"rss3-testnet","chainId":2331,"networkId":2331,"icon":"rss3-testnet","explorers":[{"name":"RSS3 VSL Sepolia Testnet Scan","url":"https://scan.testnet.rss3.io","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111","bridges":[{"url":"https://explorer.testnet.rss3.io/bridge"}]}},{"name":"SOMA Network Mainnet","chain":"SOMA","rpc":["https://data-mainnet-v1.somanetwork.io/","https://id-mainnet.somanetwork.io","https://hk-mainnet.somanetwork.io","https://sg-mainnet.somanetwork.io"],"faucets":["https://airdrop.somanetwork.io"],"nativeCurrency":{"name":"Soma Native Token","symbol":"SMA","decimals":18},"infoURL":"https://somanetwork.io","shortName":"smam","chainId":2332,"networkId":2332,"icon":"soma","status":"incubating","explorers":[{"name":"SOMA Explorer Mainnet","icon":"soma","url":"https://somascan.io","standard":"none"}]},{"name":"Atleta Testnet","chain":"Atleta","rpc":["https://atleta-testnet-rpc.quark.blue:9944"],"faucets":["https://faucet.atleta.network"],"nativeCurrency":{"name":"Atla","symbol":"ATLA","decimals":18},"infoURL":"https://atleta.network","shortName":"atla","chainId":2340,"networkId":2340,"slip44":1,"icon":"atleta","explorers":[{"name":"Atleta Testnet Explorer","icon":"atleta","url":"http://185.234.69.18/?rpc=wss%3A%2F%2Fatleta-testnet-rpc.quark.blue%3A9944#/explorer","standard":"none"}]},{"name":"Omnia Chain","chain":"OMNIA","icon":"omnia","rpc":["https://rpc.omniaverse.io"],"faucets":["https://www.omniaverse.io"],"nativeCurrency":{"name":"Omnia","symbol":"OMNIA","decimals":18},"infoURL":"https://www.omniaverse.io","shortName":"omnia","chainId":2342,"networkId":2342,"explorers":[{"name":"OmniaVerse Explorer","url":"https://scan.omniaverse.io","standard":"EIP3091"}]},{"name":"(deprecated) Kroma Sepolia","title":"(deprecated) Kroma Testnet Sepolia","chainId":2357,"shortName":"deprecated-kroma-sepolia","chain":"ETH","networkId":2357,"slip44":1,"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"rpc":["https://api.sepolia-deprecated.kroma.network"],"faucets":[],"infoURL":"https://kroma.network","icon":"kroma","explorers":[{"name":"blockscout","url":"https://blockscout.sepolia-deprecated.kroma.network","icon":"kroma","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111","bridges":[{"url":"https://kroma.network/bridge"}]},"status":"deprecated"},{"name":"Kroma Sepolia","title":"Kroma Testnet Sepolia","chainId":2358,"shortName":"kroma-sepolia","chain":"ETH","networkId":2358,"slip44":1,"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"rpc":["https://api.sepolia.kroma.network"],"faucets":[],"infoURL":"https://kroma.network","icon":"kroma","explorers":[{"name":"blockscout","url":"https://blockscout.sepolia.kroma.network","icon":"kroma","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111","bridges":[{"url":"https://kroma.network/bridge"}]}},{"name":"BOMB Chain Testnet","chain":"BOMB","rpc":["https://bombchain-testnet.ankr.com/bas_full_rpc_1"],"faucets":["https://faucet.bombchain-testnet.ankr.com/"],"nativeCurrency":{"name":"BOMB Token","symbol":"tBOMB","decimals":18},"infoURL":"https://www.bombmoney.com","shortName":"bombt","chainId":2399,"networkId":2399,"slip44":1,"icon":"bomb","explorers":[{"name":"bombscan-testnet","icon":"bomb","url":"https://explorer.bombchain-testnet.ankr.com","standard":"EIP3091"}]},{"name":"TCG Verse Mainnet","chain":"TCG Verse","icon":"tcg_verse","rpc":["https://rpc.tcgverse.xyz"],"faucets":[],"nativeCurrency":{"name":"OAS","symbol":"OAS","decimals":18},"infoURL":"https://tcgverse.xyz/","shortName":"TCGV","chainId":2400,"networkId":2400,"explorers":[{"name":"TCG Verse Explorer","url":"https://explorer.tcgverse.xyz","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-248"}},{"name":"Karak Mainnet","chain":"Karak","icon":"karak","rpc":["https://rpc.karak.network"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://karak.network","shortName":"karak-mainnet","chainId":2410,"networkId":2410,"explorers":[{"name":"Karak Mainnet Explorer","url":"https://explorer.karak.network","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1"}},{"name":"XODEX","chain":"XODEX","rpc":["https://mainnet.xo-dex.com/rpc","https://xo-dex.io"],"faucets":[],"nativeCurrency":{"name":"XODEX Native Token","symbol":"XODEX","decimals":18},"infoURL":"https://xo-dex.com","shortName":"xodex","chainId":2415,"networkId":10,"icon":"xodex","explorers":[{"name":"XODEX Explorer","url":"https://explorer.xo-dex.com","standard":"EIP3091","icon":"xodex"}]},{"name":"King Of Legends Devnet","title":"King Of Legends Devnet","chain":"KOL","icon":"kol","rpc":["https://rpc-devnet.kinggamer.org/"],"faucets":[],"nativeCurrency":{"name":"King Of Legends","symbol":"KOL","decimals":18},"infoURL":"https://kingoflegends.net/","shortName":"kol","chainId":2425,"networkId":2425,"slip44":1,"explorers":[{"name":"King Of Legends Devnet Explorer","url":"https://devnet.kingscan.org","icon":"kol","standard":"EIP3091"}]},{"name":"Polygon zkEVM Cardona Testnet","title":"Polygon zkEVM Cardona Testnet","chain":"Polygon","rpc":["https://rpc.cardona.zkevm-rpc.com"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://polygon.technology/polygon-zkevm","shortName":"zkevm-testnet-cardona","chainId":2442,"networkId":2442,"icon":"zkevm","explorers":[{"name":"polygonscan","url":"https://cardona-zkevm.polygonscan.com","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://bridge-ui.cardona.zkevm-rpc.com"}]}},{"name":"Hybrid Chain Network Testnet","chain":"HYBRID","rpc":["https://rpc-testnet.hybridchain.ai/"],"faucets":["https://faucet-testnet.hybridchain.ai"],"nativeCurrency":{"name":"Hybrid Chain Native Token","symbol":"tHRC","decimals":18},"infoURL":"https://hybridchain.ai","shortName":"thrc","chainId":2458,"networkId":2458,"slip44":1,"icon":"hybrid","explorers":[{"name":"Hybrid Chain Explorer Testnet","icon":"hybrid","url":"https://testnet.hybridscan.ai","standard":"none"}]},{"name":"Hybrid Chain Network Mainnet","chain":"HYBRID","rpc":["https://coredata-mainnet.hybridchain.ai/","https://rpc-mainnet.hybridchain.ai"],"faucets":["https://faucet-testnet.hybridchain.ai"],"nativeCurrency":{"name":"Hybrid Chain Native Token","symbol":"HRC","decimals":18},"infoURL":"https://hybridchain.ai","shortName":"hrc","chainId":2468,"networkId":2468,"icon":"hybrid","explorers":[{"name":"Hybrid Chain Explorer Mainnet","icon":"hybrid","url":"https://hybridscan.ai","standard":"none"}]},{"name":"Unicorn Ultra Nebulas Testnet","chain":"u2u","rpc":["https://rpc-nebulas-testnet.uniultra.xyz"],"faucets":["https://faucet.uniultra.xyz"],"nativeCurrency":{"name":"Unicorn Ultra Nebulas Testnet","symbol":"U2U","decimals":18},"infoURL":"https://uniultra.xyz","shortName":"u2u_nebulas","chainId":2484,"networkId":2484,"slip44":1,"icon":"u2u_nebulas","explorers":[{"icon":"u2u_nebulas","name":"U2U Explorer","url":"https://testnet.u2uscan.xyz","standard":"EIP3091"}]},{"name":"Karak Goerli","chain":"Karak","icon":"karak","status":"deprecated","rpc":["https://goerli.node1.karak.network"],"faucets":[],"nativeCurrency":{"name":"Karak","symbol":"KRK","decimals":18},"infoURL":"https://karak.network","shortName":"karak-goerli","chainId":2511,"networkId":2511,"explorers":[{"name":"Karak Goerli Explorer","url":"https://goerli.scan.karak.network","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-5"}},{"name":"Fraxtal Testnet","chain":"FRAX","rpc":["https://rpc.testnet.frax.com"],"faucets":[],"nativeCurrency":{"name":"Frax Ether","symbol":"frxETH","decimals":18},"infoURL":"https://testnet.frax.com","shortName":"fraxtal-testnet","chainId":2522,"networkId":2522,"slip44":1,"icon":"fraxtal","explorers":[{"name":"fraxscan","url":"https://holesky.fraxscan.com","standard":"EIP3091"}],"status":"active"},{"name":"inEVM Mainnet","chain":"inEVM","icon":"inevm","rpc":["https://mainnet.rpc.inevm.com/http"],"faucets":[],"nativeCurrency":{"name":"Injective","symbol":"INJ","decimals":18},"infoURL":"https://inevm.com","shortName":"inevm","chainId":2525,"networkId":2525,"explorers":[],"status":"active"},{"name":"Kortho Mainnet","chain":"Kortho Chain","rpc":["https://www.kortho-chain.com"],"faucets":[],"nativeCurrency":{"name":"KorthoChain","symbol":"KTO","decimals":11},"infoURL":"https://www.kortho.io/","shortName":"ktoc","chainId":2559,"networkId":2559},{"name":"TechPay Mainnet","chain":"TPC","rpc":["https://api.techpay.io/"],"faucets":[],"nativeCurrency":{"name":"TechPay","symbol":"TPC","decimals":18},"infoURL":"https://techpay.io/","shortName":"tpc","chainId":2569,"networkId":2569,"icon":"techpay","explorers":[{"name":"tpcscan","url":"https://tpcscan.com","icon":"techpay","standard":"EIP3091"}]},{"name":"PoCRNet","title":"Proof of Climate awaReness mainnet","chain":"CRC","status":"active","rpc":["https://pocrnet.westeurope.cloudapp.azure.com/http","wss://pocrnet.westeurope.cloudapp.azure.com/ws"],"faucets":[],"nativeCurrency":{"name":"Climate awaReness Coin","symbol":"CRC","decimals":18},"infoURL":"https://github.com/ethereum-pocr/pocrnet","shortName":"pocrnet","chainId":2606,"networkId":2606,"icon":"pocr","explorers":[{"name":"Lite Explorer","url":"https://ethereum-pocr.github.io/explorer/pocrnet","icon":"pocr","standard":"EIP3091"}]},{"name":"Redlight Chain Mainnet","chain":"REDLC","rpc":["https://dataseed2.redlightscan.finance"],"faucets":[],"nativeCurrency":{"name":"Redlight Coin","symbol":"REDLC","decimals":18},"infoURL":"https://redlight.finance/","shortName":"REDLC","chainId":2611,"networkId":2611,"explorers":[{"name":"REDLC Explorer","url":"https://redlightscan.finance","standard":"EIP3091"}]},{"name":"EZChain C-Chain Mainnet","chain":"EZC","rpc":["https://api.ezchain.com/ext/bc/C/rpc"],"faucets":[],"nativeCurrency":{"name":"EZChain","symbol":"EZC","decimals":18},"infoURL":"https://ezchain.com","shortName":"EZChain","chainId":2612,"networkId":2612,"icon":"ezchain","explorers":[{"name":"ezchain","url":"https://cchain-explorer.ezchain.com","standard":"EIP3091"}]},{"name":"EZChain C-Chain Testnet","chain":"EZC","rpc":["https://testnet-api.ezchain.com/ext/bc/C/rpc"],"faucets":["https://testnet-faucet.ezchain.com"],"nativeCurrency":{"name":"EZChain","symbol":"EZC","decimals":18},"infoURL":"https://ezchain.com","shortName":"Fuji-EZChain","chainId":2613,"networkId":2613,"slip44":1,"icon":"ezchain","explorers":[{"name":"ezchain","url":"https://testnet-cchain-explorer.ezchain.com","standard":"EIP3091"}]},{"name":"Whitechain Testnet","chain":"WBT","rpc":["https://rpc-testnet.whitechain.io"],"faucets":["https://testnet.whitechain.io/faucet"],"nativeCurrency":{"name":"WhiteBIT Coin","symbol":"WBT","decimals":18},"infoURL":"https://whitechain.io","shortName":"twbt","chainId":2625,"networkId":2625,"slip44":1,"icon":"whitechain-testnet","explorers":[{"name":"whitechain-testnet-explorer","url":"https://testnet.whitechain.io","standard":"EIP3091"}]},{"name":"APEX","status":"incubating","chain":"ETH","rpc":[],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://apexlayer.xyz/","shortName":"apexmainnet","chainId":2662,"networkId":2662,"icon":"apexmainnet","explorers":[],"parent":{"type":"L2","chain":"eip155-1"}},{"name":"Morph Testnet","chain":"ETH","rpc":["https://rpc-testnet.morphl2.io"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://morphl2.io","shortName":"tmorph","chainId":2710,"networkId":2710,"slip44":1,"explorers":[{"name":"Morph Testnet Explorer","url":"https://explorer-testnet.morphl2.io","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://bridge-testnet.morphl2.io"}]}},{"name":"K-LAOS","title":"K-LAOS: LAOS on Kusama","chain":"K-LAOS","icon":"k-laos","rpc":["https://rpc.klaos.laosfoundation.io","wss://rpc.klaos.laosfoundation.io"],"faucets":[],"nativeCurrency":{"name":"KLAOS","symbol":"KLAOS","decimals":18},"infoURL":"https://www.laosfoundation.io/","shortName":"k-laos","chainId":2718,"networkId":2718,"explorers":[{"name":"blockscout","url":"https://blockscout.klaos.laosfoundation.io","icon":"k-laos","standard":"EIP3091"}]},{"name":"Elizabeth Testnet","chain":"Elizabeth","rpc":["https://testnet-rpc.timenetwork.io"],"faucets":[],"nativeCurrency":{"name":"TIME","symbol":"TIME","decimals":18},"infoURL":"https://whitepaper.anttime.net/overview/anttime","shortName":"TIME","chainId":2731,"networkId":2731,"icon":"timenet","explorers":[{"name":"Time Network Explorer","url":"https://testnet-scanner.timenetwork.io","standard":"none","icon":"timenet"}]},{"name":"Boba Network Goerli Testnet","chain":"ETH","status":"deprecated","rpc":["https://goerli.boba.network/","wss://wss.goerli.boba.network/"],"faucets":[],"nativeCurrency":{"name":"Goerli Ether","symbol":"ETH","decimals":18},"infoURL":"https://boba.network","shortName":"BobaGoerli","chainId":2888,"networkId":2888,"slip44":1,"explorers":[{"name":"Blockscout","url":"https://testnet.bobascan.com","standard":"none"}],"parent":{"type":"L2","chain":"eip155-5","bridges":[{"url":"https://gateway.boba.network"}]}},{"name":"Elux Chain","chain":"ELUX","icon":"eluxchain","rpc":["https://rpc.eluxscan.com"],"faucets":[],"nativeCurrency":{"name":"Elux Chain","symbol":"ELUX","decimals":18},"infoURL":"https://eluxscan.com","shortName":"ELUX","chainId":2907,"networkId":2907,"explorers":[{"name":"blockscout","url":"https://eluxscan.com","standard":"none"}]},{"name":"HYCHAIN","chainId":2911,"shortName":"hychain","chain":"ETH","networkId":2911,"nativeCurrency":{"name":"TOPIA","symbol":"TOPIA","decimals":18},"rpc":["https://rpc.hychain.com/http"],"faucets":[],"infoURL":"https://www.hychain.com","icon":"hychain","explorers":[{"name":"blockscout","url":"https://explorer.hychain.com","icon":"hychain","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://bridge.hychain.com"}]}},{"name":"Xenon Chain Testnet","chain":"XEN","rpc":["https://testnet-chain.xenonchain.com/","https://testnet-dev.xenonchain.com/"],"faucets":["https://xfaucet.xenonchain.com"],"nativeCurrency":{"name":"Xenon Testnet","symbol":"tXEN","decimals":18},"infoURL":"https://xenonchain.com","shortName":"xenon","chainId":2941,"networkId":2941,"icon":"xenon","slip44":1,"explorers":[{"name":"Xenon testnet Explorer","url":"https://testnet.xenonchain.com","standard":"none"}]},{"name":"BitYuan Mainnet","chain":"BTY","rpc":["https://mainnet.bityuan.com/eth"],"faucets":[],"nativeCurrency":{"name":"BTY","symbol":"BTY","decimals":18},"infoURL":"https://www.bityuan.com","shortName":"bty","chainId":2999,"networkId":2999,"icon":"bty","explorers":[{"name":"BitYuan Block Chain Explorer","url":"https://mainnet.bityuan.com","standard":"none"}]},{"name":"CENNZnet Rata","chain":"CENNZnet","rpc":[],"faucets":["https://app-faucet.centrality.me"],"nativeCurrency":{"name":"CPAY","symbol":"CPAY","decimals":18},"infoURL":"https://cennz.net","shortName":"cennz-r","chainId":3000,"networkId":3000,"icon":"cennz"},{"name":"CENNZnet Nikau","chain":"CENNZnet","rpc":["https://nikau.centrality.me/public"],"faucets":["https://app-faucet.centrality.me"],"nativeCurrency":{"name":"CPAY","symbol":"CPAY","decimals":18},"infoURL":"https://cennz.net","shortName":"cennz-n","chainId":3001,"networkId":3001,"icon":"cennz","explorers":[{"name":"UNcover","url":"https://www.uncoverexplorer.com/?network=Nikau","standard":"none"}]},{"name":"Canxium Mainnet","chain":"CAU","icon":"canxium","rpc":["https://rpc.canxium.org"],"faucets":[],"nativeCurrency":{"name":"Canxium","symbol":"CAU","decimals":18},"infoURL":"https://canxium.org","shortName":"cau","chainId":3003,"networkId":3003,"explorers":[{"name":"canxium explorer","url":"https://explorer.canxium.org","standard":"none"}]},{"name":"PLAYA3ULL GAMES","chain":"3ULL","rpc":["https://api.mainnet.playa3ull.games"],"faucets":[],"nativeCurrency":{"name":"3ULL","symbol":"3ULL","decimals":18},"features":[{"name":"EIP1559"}],"infoURL":"https://playa3ull.games","shortName":"3ULL","chainId":3011,"networkId":3011,"icon":"playa3ull","explorers":[{"name":"PLAYA3ULL GAMES Explorer","url":"https://3011.routescan.io","icon":"playa3ull","standard":"EIP3091"}]},{"name":"Orlando Chain","chain":"ORL","rpc":["https://rpc-testnet.orlchain.com"],"faucets":[],"nativeCurrency":{"name":"Orlando","symbol":"ORL","decimals":18},"infoURL":"https://orlchain.com","shortName":"ORL","chainId":3031,"networkId":3031,"icon":"orl","explorers":[{"name":"Orlando (ORL) Explorer","url":"https://orlscan.com","icon":"orl","standard":"EIP3091"}]},{"name":"Bifrost Mainnet","title":"Bifrost Network Mainnet","chain":"BFC","rpc":["https://public-01.mainnet.bifrostnetwork.com/rpc","https://public-02.mainnet.bifrostnetwork.com/rpc"],"faucets":[],"nativeCurrency":{"name":"Bifrost","symbol":"BFC","decimals":18},"infoURL":"https://bifrostnetwork.com","shortName":"bfc","chainId":3068,"networkId":3068,"icon":"bifrost","explorers":[{"name":"explorer-thebifrost","url":"https://explorer.mainnet.bifrostnetwork.com","standard":"EIP3091"}]},{"name":"Immu3 EVM","chain":"EVMCC","rpc":["https://fraa-dancebox-3043-rpc.a.dancebox.tanssi.network","wss://fraa-dancebox-3043-rpc.a.dancebox.tanssi.network"],"faucets":[],"nativeCurrency":{"name":"IMMU","symbol":"IMMU","decimals":18},"infoURL":"https://immu3.io","shortName":"Immu3","chainId":3100,"networkId":3100,"explorers":[]},{"name":"Vulture EVM Beta","chain":"VFIEVMCC","rpc":["https://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network","wss://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network"],"faucets":[],"nativeCurrency":{"name":"VFI","symbol":"VFI","decimals":18},"infoURL":"https://vulture.finance","shortName":"VFI","chainId":3102,"networkId":3102,"explorers":[]},{"name":"SatoshiVM Alpha Mainnet","chain":"SatoshiVM","rpc":["https://alpha-rpc-node-http.svmscan.io"],"faucets":[],"nativeCurrency":{"name":"BTC","symbol":"BTC","decimals":18},"infoURL":"https://www.satoshivm.io/","shortName":"SAVM","chainId":3109,"networkId":3109,"icon":"satoshivm"},{"name":"SatoshiVM Testnet","chain":"SatoshiVM","rpc":["https://test-rpc-node-http.svmscan.io"],"faucets":[],"nativeCurrency":{"name":"BTC","symbol":"BTC","decimals":18},"infoURL":"https://www.satoshivm.io/","shortName":"tSAVM","chainId":3110,"networkId":3110,"icon":"satoshivm"},{"name":"Filecoin - Hyperspace testnet","status":"deprecated","chain":"FIL","icon":"filecoin","rpc":[],"faucets":[],"nativeCurrency":{"name":"testnet filecoin","symbol":"tFIL","decimals":18},"infoURL":"https://filecoin.io","shortName":"filecoin-hyperspace","chainId":3141,"networkId":3141,"slip44":1,"explorers":[]},{"name":"Dubxcoin network","chain":"DUBX","rpc":["https://rpcmain.arabianchain.org"],"faucets":[],"nativeCurrency":{"name":"Dubxcoin mainnet","symbol":"DUBX","decimals":18},"infoURL":"https://arabianchain.org","shortName":"dubx","chainId":3269,"networkId":3269},{"name":"Dubxcoin testnet","chain":"TESTDUBX","rpc":["https://rpctestnet.arabianchain.org"],"faucets":["https://faucet.arabianchain.org/"],"nativeCurrency":{"name":"Dubxcoin testnet","symbol":"TDUBX","decimals":18},"infoURL":"https://arabianchain.org","shortName":"testdubx","chainId":3270,"networkId":3270,"slip44":1},{"name":"Debounce Subnet Testnet","chain":"Debounce Network","icon":"debounce","rpc":["https://dev-rpc.debounce.network"],"faucets":[],"nativeCurrency":{"name":"Debounce Network","symbol":"DB","decimals":18},"infoURL":"https://debounce.network","shortName":"debounce-devnet","chainId":3306,"networkId":3306,"slip44":1,"explorers":[{"name":"Debounce Devnet Explorer","url":"https://explorer.debounce.network","standard":"EIP3091"}]},{"name":"ZCore Testnet","chain":"Beach","icon":"zcore","rpc":["https://rpc-testnet.zcore.cash"],"faucets":["https://faucet.zcore.cash"],"nativeCurrency":{"name":"ZCore","symbol":"ZCR","decimals":18},"infoURL":"https://zcore.cash","shortName":"zcrbeach","chainId":3331,"networkId":3331,"slip44":1},{"name":"Web3Q Testnet","chain":"Web3Q","rpc":["https://testnet.web3q.io:8545"],"faucets":[],"nativeCurrency":{"name":"Web3Q","symbol":"W3Q","decimals":18},"infoURL":"https://testnet.web3q.io/home.w3q/","shortName":"w3q-t","chainId":3333,"networkId":3333,"slip44":1,"explorers":[{"name":"w3q-testnet","url":"https://explorer.testnet.web3q.io","standard":"EIP3091"}]},{"name":"Web3Q Galileo","chain":"Web3Q","rpc":["https://galileo.web3q.io:8545"],"faucets":[],"nativeCurrency":{"name":"Web3Q","symbol":"W3Q","decimals":18},"infoURL":"https://galileo.web3q.io/home.w3q/","shortName":"w3q-g","chainId":3334,"networkId":3334,"explorers":[{"name":"w3q-galileo","url":"https://explorer.galileo.web3q.io","standard":"EIP3091"}]},{"name":"Paribu Net Mainnet","chain":"PRB","rpc":["https://rpc.paribu.network"],"faucets":[],"nativeCurrency":{"name":"PRB","symbol":"PRB","decimals":18},"infoURL":"https://net.paribu.com","shortName":"prb","chainId":3400,"networkId":3400,"icon":"prb","explorers":[{"name":"Paribu Net Explorer","url":"https://explorer.paribu.network","standard":"EIP3091"}]},{"name":"EVOLVE Mainnet","chain":"EVO","icon":"evolveIcon","rpc":["https://rpc.evolveblockchain.io"],"faucets":[],"nativeCurrency":{"name":"Evolve","symbol":"EVO","decimals":18},"infoURL":"https://evolveblockchain.io","shortName":"EVOm","chainId":3424,"networkId":3424,"explorers":[{"name":"Evolve Mainnet Explorer","url":"https://evoexplorer.com","standard":"EIP3091"}]},{"name":"SecureChain Testnet","chain":"SCAI","icon":"scaiIcon","rpc":["https://testnet-rpc.securechain.ai"],"faucets":["https://faucet.securechain.ai"],"nativeCurrency":{"name":"SCAI","symbol":"SCAI","decimals":18},"infoURL":"https://securechain.ai","shortName":"SCAIt","chainId":3434,"networkId":3434,"slip44":1,"explorers":[{"name":"SecureChain","url":"https://testnet.securechain.ai","standard":"EIP3091"}]},{"name":"Paribu Net Testnet","chain":"PRB","rpc":["https://rpc.testnet.paribuscan.com"],"faucets":["https://faucet.paribuscan.com"],"nativeCurrency":{"name":"PRB","symbol":"PRB","decimals":18},"infoURL":"https://net.paribu.com","shortName":"prbtestnet","chainId":3500,"networkId":3500,"slip44":1,"icon":"prb","explorers":[{"name":"Paribu Net Testnet Explorer","url":"https://testnet.paribuscan.com","standard":"EIP3091"}]},{"name":"JFIN Chain","chain":"JFIN","rpc":["https://rpc.jfinchain.com"],"faucets":[],"nativeCurrency":{"name":"JFIN Coin","symbol":"JFIN","decimals":18},"infoURL":"https://jfinchain.com","shortName":"JFIN","chainId":3501,"networkId":3501,"explorers":[{"name":"JFIN Chain Explorer","url":"https://exp.jfinchain.com","standard":"EIP3091"}]},{"name":"PandoProject Mainnet","chain":"PandoProject","icon":"pando","rpc":["https://eth-rpc-api.pandoproject.org/rpc"],"faucets":[],"nativeCurrency":{"name":"pando-token","symbol":"PTX","decimals":18},"infoURL":"https://www.pandoproject.org/","shortName":"pando-mainnet","chainId":3601,"networkId":3601,"explorers":[{"name":"Pando Mainnet Explorer","url":"https://explorer.pandoproject.org","standard":"none"}]},{"name":"PandoProject Testnet","chain":"PandoProject","icon":"pando","rpc":["https://testnet.ethrpc.pandoproject.org/rpc"],"faucets":[],"nativeCurrency":{"name":"pando-token","symbol":"PTX","decimals":18},"infoURL":"https://www.pandoproject.org/","shortName":"pando-testnet","chainId":3602,"networkId":3602,"slip44":1,"explorers":[{"name":"Pando Testnet Explorer","url":"https://testnet.explorer.pandoproject.org","standard":"none"}]},{"name":"Botanix Testnet","chain":"BOTANIX","icon":"botanix","rpc":["https://node.botanixlabs.dev"],"faucets":["https://faucet.botanixlabs.dev"],"nativeCurrency":{"name":"Botanix","symbol":"BTC","decimals":18},"infoURL":"https://botanixlabs.xyz","shortName":"BTNX","chainId":3636,"networkId":3636,"slip44":1,"explorers":[{"name":"3xpl","url":"https://3xpl.com/botanix","standard":"EIP3091"},{"name":"Blockscout","url":"https://blockscout.botanixlabs.dev","standard":"EIP3091"}]},{"name":"Botanix Mainnet","chain":"BTC","icon":"botanix","rpc":["https://rpc.btxtestchain.com"],"faucets":["https://faucet.btxtestchain.com"],"nativeCurrency":{"name":"Botanix","symbol":"BTC","decimals":18},"infoURL":"https://btxtestchain.com","shortName":"BTCm","chainId":3637,"networkId":3637,"explorers":[{"name":"Botanix","url":"https://btxtestchain.com","standard":"EIP3091"}]},{"name":"iChain Network","chain":"iChain","rpc":["https://rpc.ichainscan.com"],"faucets":[],"nativeCurrency":{"name":"ISLAMICOIN","symbol":"ISLAMI","decimals":18},"infoURL":"https://islamicoin.finance","shortName":"ISLAMI","chainId":3639,"networkId":3639,"explorers":[{"name":"iChainscan","url":"https://ichainscan.com","standard":"EIP3091"}]},{"name":"Jouleverse Mainnet","chain":"Jouleverse","rpc":["https://rpc.jnsdao.com:8503"],"faucets":[],"nativeCurrency":{"name":"J","symbol":"J","decimals":18},"infoURL":"https://jnsdao.com","shortName":"jouleverse","chainId":3666,"networkId":3666,"explorers":[{"name":"jscan","url":"https://jscan.jnsdao.com","standard":"EIP3091"}]},{"name":"Bittex Mainnet","chain":"BTX","rpc":["https://rpc1.bittexscan.info","https://rpc2.bittexscan.info"],"faucets":[],"nativeCurrency":{"name":"Bittex","symbol":"BTX","decimals":18},"infoURL":"https://bittexscan.com","shortName":"btx","chainId":3690,"networkId":3690,"explorers":[{"name":"bittexscan","url":"https://bittexscan.com","standard":"EIP3091"}]},{"name":"Empire Network","chain":"EMPIRE","rpc":["https://rpc.empirenetwork.io"],"faucets":[],"nativeCurrency":{"name":"Empire","symbol":"EMPIRE","decimals":18},"infoURL":"https://www.empirenetwork.io/","shortName":"empire","chainId":3693,"networkId":3693,"explorers":[{"name":"Empire Explorer","url":"https://explorer.empirenetwork.io","standard":"none"}]},{"name":"SenjePowers Testnet","chain":"SPC","icon":"SenjePowers","rpc":["https://testnet-rpc.senjepowersscan.com"],"faucets":["https://faucet.senjepowersscan.com"],"nativeCurrency":{"name":"SenjePowers","symbol":"SPC","decimals":18},"infoURL":"https://senjepowersscan.com","shortName":"SPCt","chainId":3698,"networkId":3698,"slip44":1,"explorers":[{"name":"SenjePowers","url":"https://testnet.senjepowersscan.com","standard":"EIP3091"}]},{"name":"SenjePowers Mainnet","chain":"SPC","icon":"SenjePowers","rpc":["https://rpc.senjepowersscan.com"],"faucets":["https://faucet.senjepowersscan.com"],"nativeCurrency":{"name":"SenjePowers","symbol":"SPC","decimals":18},"infoURL":"https://senjepowersscan.com","shortName":"SPCm","chainId":3699,"networkId":3699,"explorers":[{"name":"SenjePowers","url":"https://senjepowersscan.com","standard":"EIP3091"}]},{"name":"Xpla Testnet","chain":"XPLATest","rpc":["https://dimension-rpc.xpla.dev"],"faucets":["https://faucet.xpla.io"],"nativeCurrency":{"name":"XPLA","symbol":"XPLA","decimals":18},"infoURL":"https://xpla.io","shortName":"xplatest","chainId":3701,"networkId":3701,"slip44":1,"icon":"xpla","explorers":[{"name":"XPLA Explorer","url":"https://explorer.xpla.io","standard":"none"}],"status":"deprecated"},{"name":"Crossbell","chain":"Crossbell","rpc":["https://rpc.crossbell.io"],"faucets":["https://faucet.crossbell.io"],"nativeCurrency":{"name":"Crossbell Token","symbol":"CSB","decimals":18},"infoURL":"https://crossbell.io","shortName":"csb","chainId":3737,"networkId":3737,"icon":"crossbell","explorers":[{"name":"Crossbell Explorer","url":"https://scan.crossbell.io","standard":"EIP3091"}]},{"name":"Astar zkEVM","shortName":"astrzk","title":"Astar zkEVM Mainnet","chain":"ETH","icon":"astar","rpc":["https://rpc.startale.com/astar-zkevm"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://astar.network","chainId":3776,"networkId":3776,"explorers":[{"name":"Blockscout Astar zkEVM explorer","url":"https://astar-zkevm.explorer.startale.com","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://portal.astar.network"}]}},{"name":"AlveyChain Mainnet","chain":"ALV","rpc":["https://elves-core1.alvey.io","https://elves-core2.alvey.io","https://elves-core3.alvey.io"],"faucets":[],"nativeCurrency":{"name":"AlveyCoin","symbol":"ALV","decimals":18},"infoURL":"https://alveychain.com/","shortName":"alv","chainId":3797,"networkId":3797,"icon":"alveychain","explorers":[{"name":"AlveyScan","url":"https://alveyscan.com","icon":"alveychain","standard":"EIP3091"}]},{"name":"Tangle Testnet","chain":"Tangle Testnet","icon":"tangle","rpc":["https://testnet-rpc.tangle.tools","https://testnet-rpc-archive.tangle.tools","wss://testnet-rpc.tangle.tools","wss://testnet-rpc-archive.tangle.tools"],"faucets":["https://faucet.tangle.tools"],"nativeCurrency":{"name":"Testnet Tangle Network Token","symbol":"tTNT","decimals":18},"infoURL":"https://docs.tangle.tools","shortName":"tTangle","chainId":3799,"networkId":3799,"explorers":[{"name":"ttntscan","url":"https://testnet-explorer.tangle.tools","icon":"blockscout","standard":"EIP3091"}]},{"name":"Firechain zkEVM Ghostrider","title":"Firechain zkEVM Testnet","chain":"Firechain","rpc":["https://rpc-zkevm-ghostrider.thefirechain.com"],"faucets":["zkevm-faucet.thefirechain.com"],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://docs.thefirechain.com/","shortName":"firechain-zkEVM-testnet","chainId":3885,"networkId":3885,"explorers":[]},{"name":"KalyChain Mainnet","chain":"KLC","icon":"kalychain","rpc":["https://rpc.kalychain.io/rpc"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"KalyCoin","symbol":"KLC","decimals":18},"infoURL":"https://kalychain.io","shortName":"kalymainnet","chainId":3888,"networkId":3888,"explorers":[{"name":"KalyScan","url":"https://kalyscan.io","standard":"EIP3091"}]},{"name":"KalyChain Testnet","chain":"KLC","icon":"kalychain","rpc":["https://testnetrpc.kalychain.io/rpc"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"KalyCoin","symbol":"KLC","decimals":18},"infoURL":"https://kalychain.io","shortName":"kalytestnet","chainId":3889,"networkId":3889,"slip44":1,"explorers":[{"name":"KalyScan","url":"https://testnet.kalyscan.io","standard":"EIP3091"}]},{"name":"DRAC Network","chain":"DRAC","rpc":["https://www.dracscan.com/rpc"],"faucets":["https://www.dracscan.io/faucet"],"nativeCurrency":{"name":"DRAC","symbol":"DRAC","decimals":18},"infoURL":"https://drac.io/","shortName":"drac","features":[{"name":"EIP155"},{"name":"EIP1559"}],"chainId":3912,"networkId":3912,"icon":"drac","explorers":[{"name":"DRAC_Network Scan","url":"https://www.dracscan.io","standard":"EIP3091"}]},{"name":"DOS Tesnet","chain":"DOS","rpc":["https://test.doschain.com"],"faucets":[],"nativeCurrency":{"name":"DOS","symbol":"DOS","decimals":18},"infoURL":"http://doschain.io/","shortName":"dost","chainId":3939,"networkId":3939,"slip44":1,"icon":"doschain","explorers":[{"name":"DOScan-Test","url":"https://test.doscan.io","icon":"doschain","standard":"EIP3091"}]},{"name":"DYNO Mainnet","chain":"DYNO","rpc":["https://api.dynoprotocol.com"],"faucets":["https://faucet.dynoscan.io"],"nativeCurrency":{"name":"DYNO Token","symbol":"DYNO","decimals":18},"infoURL":"https://dynoprotocol.com","shortName":"dyno","chainId":3966,"networkId":3966,"explorers":[{"name":"DYNO Explorer","url":"https://dynoscan.io","standard":"EIP3091"}]},{"name":"DYNO Testnet","chain":"DYNO","rpc":["https://tapi.dynoprotocol.com"],"faucets":["https://faucet.dynoscan.io"],"nativeCurrency":{"name":"DYNO Token","symbol":"tDYNO","decimals":18},"infoURL":"https://dynoprotocol.com","shortName":"tdyno","chainId":3967,"networkId":3967,"slip44":1,"explorers":[{"name":"DYNO Explorer","url":"https://testnet.dynoscan.io","standard":"EIP3091"}]},{"name":"APEX Testnet","chain":"ETH","rpc":["https://rpc-testnet.apexlayer.xyz"],"faucets":["https://sepoliafaucet.com/"],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://docs.apexlayer.xyz/","shortName":"apexsep","chainId":3993,"networkId":3993,"slip44":1,"icon":"apextestnet","explorers":[{"name":"blockscout","url":"https://exp-testnet.apexlayer.xyz","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111","bridges":[{"url":"https://apexlayer.xyz/bridge"}]}},{"name":"YuanChain Mainnet","chain":"YCC","rpc":["https://mainnet.yuan.org/eth"],"faucets":[],"nativeCurrency":{"name":"YCC","symbol":"YCC","decimals":18},"infoURL":"https://www.yuan.org","shortName":"ycc","chainId":3999,"networkId":3999,"icon":"ycc","explorers":[{"name":"YuanChain Explorer","url":"https://mainnet.yuan.org","standard":"none"}]},{"name":"Ozone Chain Mainnet","chain":"OZONE","rpc":["https://node1.ozonechain.io"],"faucets":[],"nativeCurrency":{"name":"OZONE","symbol":"OZO","decimals":18},"infoURL":"https://ozonechain.io","shortName":"ozo","chainId":4000,"networkId":4000,"icon":"ozonechain","explorers":[{"name":"OZONE Scan","url":"https://ozonescan.io","standard":"EIP3091"}]},{"name":"Peperium Chain Testnet","chain":"PERIUM","rpc":["https://rpc-testnet.peperium.io"],"faucets":[],"nativeCurrency":{"name":"Peperium Chain Testnet","symbol":"PERIUM","decimals":18},"infoURL":"https://peperium.io","shortName":"PERIUM","chainId":4001,"networkId":4001,"slip44":1,"icon":"peperium","explorers":[{"name":"Peperium Chain Explorer","url":"https://scan-testnet.peperium.io","icon":"peperium","standard":"EIP3091"}]},{"name":"Fantom Testnet","chain":"FTM","rpc":["https://rpc.testnet.fantom.network","https://fantom-testnet-rpc.publicnode.com","wss://fantom-testnet-rpc.publicnode.com","https://fantom-testnet.drpc.org","wss://fantom-testnet.drpc.org"],"faucets":["https://faucet.fantom.network"],"nativeCurrency":{"name":"Fantom","symbol":"FTM","decimals":18},"infoURL":"https://docs.fantom.foundation/quick-start/short-guide#fantom-testnet","shortName":"tftm","chainId":4002,"networkId":4002,"slip44":1,"icon":"fantom","explorers":[{"name":"ftmscan","url":"https://testnet.ftmscan.com","icon":"ftmscan","standard":"EIP3091"}]},{"name":"X1 Fastnet","chain":"X1","rpc":["https://x1-fastnet.xen.network"],"faucets":[],"nativeCurrency":{"name":"XN","symbol":"XN","decimals":18},"infoURL":"https://docs.xen.network/go-x1/","shortName":"x1-fastnet","chainId":4003,"networkId":4003,"slip44":1,"explorers":[{"name":"Blockscout","url":"https://explorer.x1-fastnet.xen.network","icon":"blockscout","standard":"EIP3091"}]},{"name":"Bobaopera Testnet","chain":"Bobaopera Testnet","status":"deprecated","rpc":["https://testnet.bobaopera.boba.network","wss://wss.testnet.bobaopera.boba.network","https://replica.testnet.bobaopera.boba.network","wss://replica-wss.testnet.bobaopera.boba.network"],"faucets":[],"nativeCurrency":{"name":"Boba Token","symbol":"BOBA","decimals":18},"infoURL":"https://boba.network","shortName":"BobaoperaTestnet","chainId":4051,"networkId":4051,"slip44":1,"explorers":[{"name":"Bobaopera Testnet block explorer","url":"https://blockexplorer.testnet.bobaopera.boba.network","standard":"none"}]},{"name":"Nahmii 3 Mainnet","chain":"Nahmii","rpc":[],"status":"incubating","faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://nahmii.io","shortName":"Nahmii3Mainnet","chainId":4061,"networkId":4061,"icon":"nahmii","parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://bridge.nahmii.io"}]}},{"name":"Nahmii 3 Testnet","chain":"Nahmii","rpc":["https://ngeth.testnet.n3.nahmii.io"],"faucets":[],"nativeCurrency":{"name":"Goerli Ether","symbol":"ETH","decimals":18},"infoURL":"https://nahmii.io","shortName":"Nahmii3Testnet","chainId":4062,"networkId":4062,"slip44":1,"icon":"nahmii","explorers":[{"name":"Nahmii 3 Testnet Explorer","url":"https://explorer.testnet.n3.nahmii.io","icon":"nahmii","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-3","bridges":[{"url":"https://bridge.testnet.n3.nahmii.io"}]}},{"name":"Muster Mainnet","chainId":4078,"shortName":"muster","chain":"Muster","icon":"muster","networkId":4078,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://muster.alt.technology"],"faucets":[],"explorers":[{"name":"Musterscan","url":"https://muster-explorer.alt.technology","standard":"EIP3091"}],"infoURL":"","parent":{"type":"L2","chain":"eip155-42161","bridges":[]}},{"name":"Fastex Chain (Bahamut) Oasis Testnet","title":"Bahamut testnet Oasis","icon":"bahamut","chain":"Fastex Chain (Bahamut)","rpc":["https://rpc1.oasis.bahamutchain.com"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":["https://faucet.oasis.fastexchain.com"],"nativeCurrency":{"name":"FTN","symbol":"FTN","decimals":18},"infoURL":"https://fastexchain.com","shortName":"Oasis","chainId":4090,"networkId":4090,"slip44":1,"explorers":[{"name":"blockscout","url":"https://oasis.ftnscan.com","standard":"none"}]},{"name":"Bitindi Testnet","chain":"BNI","icon":"bitindiTestnet","rpc":["https://testnet-rpc.bitindi.org"],"faucets":["https://faucet.bitindi.org"],"nativeCurrency":{"name":"BNI","symbol":"$BNI","decimals":18},"infoURL":"https://bitindi.org","shortName":"BNIt","chainId":4096,"networkId":4096,"slip44":1,"explorers":[{"name":"Bitindi","url":"https://testnet.bitindiscan.com","standard":"EIP3091"}]},{"name":"Bitindi Mainnet","chain":"BNI","icon":"bitindi","rpc":["https://mainnet-rpc.bitindi.org"],"faucets":["https://faucet.bitindi.org"],"nativeCurrency":{"name":"BNI","symbol":"$BNI","decimals":18},"infoURL":"https://bitindi.org","shortName":"BNIm","chainId":4099,"networkId":4099,"explorers":[{"name":"Bitindi","url":"https://bitindiscan.com","standard":"EIP3091"}]},{"name":"AIOZ Network Testnet","chain":"AIOZ","icon":"aioz","rpc":["https://eth-ds.testnet.aioz.network"],"faucets":[],"nativeCurrency":{"name":"testAIOZ","symbol":"AIOZ","decimals":18},"infoURL":"https://aioz.network","shortName":"aioz-testnet","chainId":4102,"networkId":4102,"slip44":1,"explorers":[{"name":"AIOZ Network Testnet Explorer","url":"https://testnet.explorer.aioz.network","standard":"EIP3091"}]},{"name":"Humans.ai Testnet","chain":"Humans Testnet","rpc":["https://evm-rpc.testnet.humans.zone"],"faucets":[],"nativeCurrency":{"name":"HEART","symbol":"HEART","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://humans.ai","shortName":"humans_testnet","chainId":4139,"networkId":4139,"slip44":1,"icon":"humans-dark"},{"name":"Tipboxcoin Testnet","chain":"TPBX","icon":"tipboxcoinIcon","rpc":["https://testnet-rpc.tipboxcoin.net"],"faucets":["https://faucet.tipboxcoin.net"],"nativeCurrency":{"name":"Tipboxcoin","symbol":"TPBX","decimals":18},"infoURL":"https://tipboxcoin.net","shortName":"TPBXt","chainId":4141,"networkId":4141,"slip44":1,"explorers":[{"name":"Tipboxcoin","url":"https://testnet.tipboxcoin.net","standard":"EIP3091"}]},{"name":"CrossFi Testnet","title":"CrossFi Testnet","chain":"XFI","rpc":["https://rpc.testnet.ms"],"faucets":[],"nativeCurrency":{"name":"XFI","symbol":"XFI","decimals":18},"infoURL":"https://crossfi.org/","shortName":"crossfi-testnet","chainId":4157,"networkId":4157,"slip44":1,"explorers":[{"name":"CrossFi Testnet Scan","url":"https://scan.testnet.ms","standard":"EIP3091"}]},{"name":"PHI Network V1","chain":"PHI V1","rpc":["https://rpc1.phi.network","https://rpc2.phi.network"],"faucets":[],"nativeCurrency":{"name":"PHI","symbol":"Φ","decimals":18},"infoURL":"https://phi.network","shortName":"PHIv1","chainId":4181,"networkId":4181,"icon":"phi","explorers":[{"name":"PHI Explorer","url":"https://explorer.phi.network","icon":"phi","standard":"none"}]},{"name":"Merlin Mainnet","title":"Merlin Mainnet","chain":"Merlin","rpc":["https://rpc.merlinchain.io"],"faucets":[],"nativeCurrency":{"name":"BTC","symbol":"BTC","decimals":18},"infoURL":"https://merlinchain.io","shortName":"Merlin-Mainnet","chainId":4200,"networkId":4200,"icon":"merlin","explorers":[{"name":"blockscout","url":"https://scan.merlinchain.io","icon":"merlin","standard":"EIP3091"}]},{"name":"LUKSO Testnet","chain":"LUKSO Testnet","icon":"lukso","rpc":["https://rpc.testnet.lukso.network","wss://ws-rpc.testnet.lukso.network"],"faucets":["https://faucet.testnet.lukso.network"],"nativeCurrency":{"name":"TestLYX","symbol":"LYXt","decimals":18},"explorers":[{"name":"Blockscout","url":"https://explorer.execution.testnet.lukso.network","standard":"none"}],"infoURL":"https://lukso.network","shortName":"lukso-testnet","chainId":4201,"networkId":4201,"slip44":1,"features":[{"name":"EIP155"},{"name":"EIP1559"}]},{"name":"Lisk Sepolia Testnet","chain":"ETH","rpc":["https://rpc.sepolia-api.lisk.com"],"faucets":[],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://lisk.com","shortName":"lisksep","chainId":4202,"networkId":4202,"slip44":134,"explorers":[{"name":"liskscout","url":"https://sepolia-blockscout.lisk.com","icon":"blockscout","standard":"EIP3091"}]},{"name":"Nexi Mainnet","chain":"Nexi","icon":"nexi","rpc":["https://rpc.chain.nexi.technology/","https://chain.nexilix.com","https://chain.nexi.evmnode.online"],"faucets":[],"nativeCurrency":{"name":"Nexi","symbol":"NEXI","decimals":18},"infoURL":"https://www.nexi.technology/","shortName":"nexi","chainId":4242,"networkId":4242,"slip44":2500,"explorers":[{"name":"nexiscan","url":"https://www.nexiscan.com","standard":"EIP3091"}]},{"name":"Nexi V2 Mainnet","chain":"Nexi V2","icon":"nexi","rpc":["https://chain.nexiv2.nexilix.com","https://rpc.chainv1.nexi.technology"],"faucets":[],"nativeCurrency":{"name":"NexiV2","symbol":"NEXI","decimals":18},"infoURL":"https://www.nexi.technology/","shortName":"NexiV2","chainId":4243,"networkId":4243,"slip44":2500,"explorers":[{"name":"nexiscan","url":"https://www.nexiscan.com","standard":"EIP3091"}]},{"name":"Bobafuji Testnet","chain":"Bobafuji Testnet","status":"deprecated","rpc":["https://testnet.avax.boba.network","wss://wss.testnet.avax.boba.network","https://replica.testnet.avax.boba.network"],"faucets":[],"nativeCurrency":{"name":"Boba Token","symbol":"BOBA","decimals":18},"infoURL":"https://boba.network","shortName":"BobaFujiTestnet","chainId":4328,"networkId":4328,"slip44":1,"explorers":[{"name":"Bobafuji Testnet block explorer","url":"https://blockexplorer.testnet.avax.boba.network","standard":"none"}],"parent":{"type":"L2","chain":"eip155-5","bridges":[{"url":"https://gateway.boba.network"}]}},{"name":"Beam","chain":"BEAM","rpc":["https://build.onbeam.com/rpc","wss://build.onbeam.com/ws","https://subnets.avax.network/beam/mainnet/rpc","wss://subnets.avax.network/beam/mainnet/ws"],"features":[{"name":"EIP1559"}],"faucets":["https://faucet.onbeam.com"],"nativeCurrency":{"name":"Beam","symbol":"BEAM","decimals":18},"infoURL":"https://www.onbeam.com","shortName":"beam","icon":"beam","chainId":4337,"networkId":4337,"explorers":[{"name":"Beam Explorer","url":"https://subnets.avax.network/beam","standard":"EIP3091"}]},{"name":"Credit Smart Chain Mainnet","chain":"CREDIT","rpc":["https://rpc.creditsmartchain.com"],"faucets":[],"nativeCurrency":{"name":"Credit","symbol":"CREDIT","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://creditsmartchain.com","shortName":"CreditEdge","chainId":4400,"networkId":4400,"icon":"credit","explorers":[{"name":"Creditscan","url":"https://scan.creditsmartchain.com","icon":"credit","standard":"EIP3091"}]},{"name":"Htmlcoin Mainnet","chain":"mainnet","rpc":["https://janus.htmlcoin.com/api/"],"faucets":["https://gruvin.me/htmlcoin"],"nativeCurrency":{"name":"Htmlcoin","symbol":"HTML","decimals":8},"infoURL":"https://htmlcoin.com","shortName":"html","chainId":4444,"networkId":4444,"icon":"htmlcoin","status":"active","explorers":[{"name":"htmlcoin","url":"https://explorer.htmlcoin.com","icon":"htmlcoin","standard":"none"}]},{"name":"Orderly Sepolia Testnet","chain":"ETH","rpc":["https://l2-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz"],"faucets":[],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"www.orderly.network","shortName":"orderlyl2","chainId":4460,"networkId":4460,"slip44":1,"icon":"orderlyTestnet","explorers":[{"name":"basescout","url":"https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz","icon":"blockscout","standard":"EIP3091"}]},{"name":"Emoney Network Testnet","chain":"Emoney","rpc":["https://testnet.emoney.network/"],"faucets":["https://faucet.emoney.network/faucet"],"nativeCurrency":{"name":"Emoney Network","symbol":"EMYC","decimals":18},"infoURL":"https://emoney.network/","shortName":"emoney","chainId":4544,"networkId":4544,"slip44":118,"icon":"emoney","explorers":[{"name":"EMoney ethscan","url":"https://ethscan.emoney.network","icon":"emoney","standard":"EIP3091"}]},{"name":"Gold Chain","title":"Gold Chain","chain":"Gold","rpc":["https://chain-rpc.gold.dev"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://gold.dev","shortName":"gold","chainId":4653,"networkId":4653,"status":"incubating","icon":"gold"},{"name":"IoTeX Network Mainnet","chain":"iotex.io","rpc":["https://babel-api.mainnet.iotex.io"],"faucets":[],"nativeCurrency":{"name":"IoTeX","symbol":"IOTX","decimals":18},"infoURL":"https://iotex.io","shortName":"iotex-mainnet","chainId":4689,"networkId":4689,"explorers":[{"name":"iotexscan","url":"https://iotexscan.io","standard":"EIP3091"}]},{"name":"IoTeX Network Testnet","chain":"iotex.io","rpc":["https://babel-api.testnet.iotex.io"],"faucets":["https://faucet.iotex.io/"],"nativeCurrency":{"name":"IoTeX","symbol":"IOTX","decimals":18},"infoURL":"https://iotex.io","shortName":"iotex-testnet","chainId":4690,"networkId":4690,"slip44":1,"explorers":[{"name":"testnet iotexscan","url":"https://testnet.iotexscan.io","standard":"EIP3091"}]},{"name":"MEVerse Chain Testnet","chain":"MEVerse","rpc":["https://rpc.meversetestnet.io"],"faucets":[],"nativeCurrency":{"name":"MEVerse","symbol":"MEV","decimals":18},"infoURL":"https://www.meverse.sg","shortName":"TESTMEV","chainId":4759,"networkId":4759,"slip44":1,"icon":"meverse","explorers":[{"name":"MEVerse Chain Testnet Explorer","url":"https://testnet.meversescan.io","standard":"none","icon":"meverse"}]},{"name":"BlackFort Exchange Network Testnet","chain":"TBXN","rpc":["https://testnet.blackfort.network/rpc"],"faucets":[],"nativeCurrency":{"name":"BlackFort Testnet Token","symbol":"TBXN","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://blackfort.exchange","shortName":"TBXN","chainId":4777,"networkId":4777,"slip44":1,"icon":"bxn","explorers":[{"name":"blockscout","url":"https://testnet-explorer.blackfort.network","icon":"blockscout","standard":"EIP3091"}]},{"name":"Globel Chain","chain":"GC","icon":"globelchain","rpc":["https://rpc.gcscan.io"],"faucets":[],"nativeCurrency":{"name":"Globel Chain","symbol":"GC","decimals":18},"infoURL":"https://gcscan.io","shortName":"GC","chainId":4893,"networkId":4893,"explorers":[{"name":"blockscout","url":"https://gcscan.io","standard":"none"}]},{"name":"Venidium Testnet","chain":"XVM","rpc":["https://rpc-evm-testnet.venidium.io"],"faucets":[],"nativeCurrency":{"name":"Venidium","symbol":"XVM","decimals":18},"infoURL":"https://venidium.io","shortName":"txvm","chainId":4918,"networkId":4918,"slip44":1,"explorers":[{"name":"Venidium EVM Testnet Explorer","url":"https://evm-testnet.venidiumexplorer.com","standard":"EIP3091"}]},{"name":"Venidium Mainnet","chain":"XVM","icon":"venidium","rpc":["https://rpc.venidium.io"],"faucets":[],"nativeCurrency":{"name":"Venidium","symbol":"XVM","decimals":18},"infoURL":"https://venidium.io","shortName":"xvm","chainId":4919,"networkId":4919,"explorers":[{"name":"Venidium Explorer","url":"https://evm.venidiumexplorer.com","standard":"EIP3091"}]},{"name":"BlackFort Exchange Network","chain":"BXN","rpc":["https://mainnet.blackfort.network/rpc","https://mainnet-1.blackfort.network/rpc","https://mainnet-2.blackfort.network/rpc","https://mainnet-3.blackfort.network/rpc"],"faucets":[],"nativeCurrency":{"name":"BlackFort Token","symbol":"BXN","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://blackfort.exchange","shortName":"BXN","chainId":4999,"networkId":4999,"icon":"bxn","explorers":[{"name":"blockscout","url":"https://explorer.blackfort.network","icon":"blockscout","standard":"EIP3091"}]},{"name":"Mantle","chain":"ETH","icon":"mantle","rpc":["https://rpc.mantle.xyz","https://mantle-rpc.publicnode.com","wss://mantle-rpc.publicnode.com"],"faucets":[],"nativeCurrency":{"name":"Mantle","symbol":"MNT","decimals":18},"infoURL":"https://mantle.xyz","shortName":"mantle","chainId":5000,"networkId":5000,"explorers":[{"name":"Mantle Explorer","url":"https://explorer.mantle.xyz","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://bridge.mantle.xyz"}]}},{"name":"Mantle Testnet","chain":"ETH","rpc":["https://rpc.testnet.mantle.xyz"],"faucets":["https://faucet.testnet.mantle.xyz"],"nativeCurrency":{"name":"Testnet Mantle","symbol":"MNT","decimals":18},"infoURL":"https://mantle.xyz","shortName":"mantle-testnet","chainId":5001,"networkId":5001,"slip44":1,"explorers":[{"name":"Mantle Testnet Explorer","url":"https://explorer.testnet.mantle.xyz","standard":"EIP3091"}]},{"name":"Treasurenet Mainnet Alpha","chain":"Treasurenet Mainnet Alpha","icon":"treasurenet","rpc":["https://node0.treasurenet.io","https://node1.treasurenet.io","https://node2.treasurenet.io","https://node3.treasurenet.io"],"features":[{"name":"EIP155"}],"faucets":[],"nativeCurrency":{"name":"UNIT","symbol":"UNIT","decimals":18},"infoURL":"https://www.treasurenet.io","shortName":"treasurenet","chainId":5002,"networkId":5002,"explorers":[{"name":"Treasurenet EVM BlockExplorer","url":"https://evmexplorer.treasurenet.io","icon":"treasurenet","standard":"none"}]},{"name":"Mantle Sepolia Testnet","chain":"ETH","rpc":["https://rpc.sepolia.mantle.xyz"],"faucets":["https://faucet.sepolia.mantle.xyz"],"nativeCurrency":{"name":"Sepolia Mantle","symbol":"MNT","decimals":18},"infoURL":"https://mantle.xyz","shortName":"mnt-sep","chainId":5003,"networkId":5003,"slip44":1,"explorers":[{"name":"blockscout","url":"https://explorer.sepolia.mantle.xyz","standard":"EIP3091"}]},{"name":"Treasurenet Testnet","chain":"Treasurenet Testnet","icon":"treasurenet","rpc":["https://node0.testnet.treasurenet.io","https://node1.testnet.treasurenet.io","https://node2.testnet.treasurenet.io","https://node3.testnet.treasurenet.io"],"features":[{"name":"EIP155"}],"faucets":[],"nativeCurrency":{"name":"UNIT","symbol":"UNIT","decimals":18},"infoURL":"https://www.testnet.treasurenet.io","shortName":"tntest","chainId":5005,"networkId":5005,"slip44":1,"explorers":[{"name":"Treasurenet EVM BlockExplorer","url":"https://evmexplorer.testnet.treasurenet.io","icon":"treasurenet","standard":"none"}]},{"name":"ONIGIRI Test Subnet","chain":"ONIGIRI","rpc":["https://subnets.avax.network/onigiri/testnet/rpc"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"ONIGIRI","symbol":"ONGR","decimals":18},"infoURL":"https://www.ongr.org/","shortName":"onigiri","chainId":5039,"networkId":5039,"explorers":[{"name":"ONIGIRI Explorer","url":"https://subnets-test.avax.network/onigiri","standard":"EIP3091"}]},{"name":"Nollie Skatechain Testnet","chain":"Skatechain","rpc":["https://nollie-rpc.skatechain.org/"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"features":[{"name":"EIP155"}],"infoURL":"","shortName":"nollie-testnet","chainId":5051,"networkId":5051,"icon":"nollie","explorers":[{"name":"Nollie Skate Chain Testnet Explorer","url":"https://nolliescan.skatechain.org","standard":"EIP3091"}],"status":"active"},{"name":"Syndicate Testnet","title":"Syndicate Testnet","chain":"Syndicate","rpc":["https://rpc-testnet.syndicate.io"],"faucets":[],"nativeCurrency":{"name":"S-Ether","symbol":"ETH","decimals":18},"infoURL":"https://syndicate.io","shortName":"syndicate-chain-testnet","chainId":5100,"networkId":5100,"status":"incubating","icon":"syndicate"},{"name":"Syndicate Frame Chain","title":"Syndicate Frame Chain","chain":"Syndicate Frame","rpc":["https://rpc-frame.syndicate.io"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://syndicate.io","shortName":"syndicate-chain-frame","chainId":5101,"networkId":5101,"status":"incubating","icon":"syndicate"},{"name":"SIC Testnet","chain":"SIC Testnet","rpc":["https://rpc-sic-testnet-zvr7tlkzsi.t.conduit.xyz"],"faucets":[],"nativeCurrency":{"name":"ETH","symbol":"ETH","decimals":18},"infoURL":"https://www.fwb.help/","shortName":"sic-testnet","chainId":5102,"networkId":5102,"explorers":[{"name":"blockscout","url":"https://explorerl2new-sic-testnet-zvr7tlkzsi.t.conduit.xyz","standard":"EIP3091"}]},{"name":"Coordinape Testnet","chain":"Coordinape Testnet","rpc":["https://rpc-coordinape-testnet-vs9se3oc4v.t.conduit.xyz"],"faucets":[],"nativeCurrency":{"name":"ETH","symbol":"ETH","decimals":18},"infoURL":"https://coordinape.com/","shortName":"coordinape-testnet","chainId":5103,"networkId":5103},{"name":"Charmverse Testnet","chain":"Charmverse Testnet","rpc":["https://rpc-charmverse-testnet-g6blnaebes.t.conduit.xyz"],"faucets":[],"nativeCurrency":{"name":"ETH","symbol":"ETH","decimals":18},"infoURL":"https://charmverse.io/","shortName":"charmverse-testnet","chainId":5104,"networkId":5104},{"name":"Superloyalty Testnet","chain":"Superloyalty Testnet","rpc":["https://rpc-superloyalty-testnet-1m5gwjbsv1.t.conduit.xyz"],"faucets":[],"nativeCurrency":{"name":"ETH","symbol":"ETH","decimals":18},"infoURL":"https://www.superloyal.com/","shortName":"superloyalty-testnet","chainId":5105,"networkId":5105},{"name":"Azra Testnet","chain":"Azra Testnet","rpc":["https://rpc-azra-testnet-6hz86owb1n.t.conduit.xyz"],"faucets":[],"nativeCurrency":{"name":"ETH","symbol":"ETH","decimals":18},"infoURL":"https://azragames.com","shortName":"azra-testnet","chainId":5106,"networkId":5106,"explorers":[{"name":"blockscout","url":"https://explorerl2new-azra-testnet-6hz86owb1n.t.conduit.xyz","standard":"EIP3091"}]},{"name":"Bahamut","title":"Bahamut mainnet","chain":"Bahamut","icon":"bahamut","rpc":["https://rpc1.bahamut.io","https://rpc2.bahamut.io","wss://ws1.sahara.bahamutchain.com","wss://ws2.sahara.bahamutchain.com","https://bahamut-rpc.publicnode.com","wss://bahamut-rpc.publicnode.com"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"FTN","symbol":"FTN","decimals":18},"shortName":"ftn","infoURL":"https://bahamut.io","chainId":5165,"networkId":5165,"explorers":[{"name":"blockscout","url":"https://ftnscan.com","standard":"none"}]},{"name":"Smart Layer Network","chain":"SLN","rpc":["https://rpc.main.smartlayer.network"],"faucets":[],"nativeCurrency":{"name":"Service Unit Token","symbol":"SU","decimals":18},"infoURL":"https://www.smartlayer.network/","shortName":"SLN","chainId":5169,"networkId":5169,"explorers":[{"name":"SLN Mainnet Explorer","url":"https://explorer.main.smartlayer.network","standard":"EIP3091"}]},{"name":"TLChain Network Mainnet","chain":"TLC","icon":"tlc","rpc":["https://mainnet-rpc.tlxscan.com/"],"faucets":[],"nativeCurrency":{"name":"TLChain Network","symbol":"TLC","decimals":18},"infoURL":"https://tlchain.network/","shortName":"tlc","chainId":5177,"networkId":5177,"explorers":[{"name":"TLChain Explorer","url":"https://explorer.tlchain.network","standard":"none"}]},{"name":"EraSwap Mainnet","chain":"ESN","icon":"eraswap","rpc":["https://mainnet.eraswap.network","https://rpc-mumbai.mainnet.eraswap.network"],"faucets":[],"nativeCurrency":{"name":"EraSwap","symbol":"ES","decimals":18},"infoURL":"https://eraswap.info/","shortName":"es","chainId":5197,"networkId":5197},{"name":"Humanode Mainnet","chain":"HMND","rpc":["https://explorer-rpc-http.mainnet.stages.humanode.io"],"faucets":[],"nativeCurrency":{"name":"eHMND","symbol":"eHMND","decimals":18},"infoURL":"https://humanode.io","shortName":"hmnd","chainId":5234,"networkId":5234,"icon":"humanode","explorers":[{"name":"Subscan","url":"https://humanode.subscan.io","standard":"EIP3091","icon":"subscan"}]},{"name":"Firechain Mainnet Old","chain":"FIRE","icon":"firechain","rpc":["https://mainnet.rpc1.thefirechain.com"],"faucets":[],"nativeCurrency":{"name":"Firechain","symbol":"FIRE","decimals":18},"infoURL":"https://thefirechain.com","shortName":"_old_fire","chainId":5290,"networkId":5290,"explorers":[],"status":"deprecated"},{"name":"Uzmi Network Mainnet","chain":"UZMI","rpc":["https://network.uzmigames.com.br/"],"faucets":[],"nativeCurrency":{"name":"UZMI","symbol":"UZMI","decimals":18},"infoURL":"https://uzmigames.com.br/","shortName":"UZMI","chainId":5315,"networkId":5315},{"name":"OpTrust Testnet","chain":"OpTrust","rpc":["https://rpctest.optrust.io"],"faucets":[],"nativeCurrency":{"name":"TestBSC","symbol":"tBNB","decimals":18},"infoURL":"https://optrust.io","shortName":"toptrust","chainId":5317,"networkId":5317,"icon":"optrust","explorers":[{"name":"OpTrust Testnet explorer","url":"https://scantest.optrust.io","icon":"optrust","standard":"none"}]},{"name":"Tritanium Testnet","chain":"TRITANIUM","rpc":["https://nodetestnet-station-one.tritanium.network/","https://nodetestnet-station-two.tritanium.network/"],"faucets":["https://faucet.tritanium.network"],"nativeCurrency":{"name":"Tritanium Native Token","symbol":"tTRN","decimals":18},"infoURL":"https://tritanium.network","shortName":"ttrn","chainId":5353,"networkId":5353,"slip44":1,"icon":"tritanium","explorers":[{"name":"TRITANIUM Testnet Explorer","icon":"tritanium","url":"https://testnet.tritanium.network","standard":"none"}]},{"name":"Egochain","chainId":5439,"shortName":"egax","chain":"EGAX","networkId":5439,"nativeCurrency":{"name":"EGAX","symbol":"EGAX","decimals":18},"rpc":["https://mainnet.egochain.org"],"faucets":[],"infoURL":"https://docs.egochain.org/","explorers":[{"name":"egoscan","url":"https://egoscan.io","standard":"EIP3091"}]},{"name":"VEX EVM TESTNET","chain":"vex","icon":"vex","rpc":["https://testnet.vexascan.com/evmapi"],"faucets":["https://t.me/vexfaucetbot"],"nativeCurrency":{"name":"VEX EVM TESTNET","symbol":"VEX","decimals":18},"infoURL":"https://vexanium.com","shortName":"VEX","chainId":5522,"networkId":5522,"slip44":1,"explorers":[{"name":"Vexascan-EVM-TestNet","url":"https://testnet.vexascan.com/evmexplorer","standard":"EIP3091"}]},{"name":"Nahmii Mainnet","chain":"Nahmii","rpc":["https://l2.nahmii.io"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://nahmii.io","shortName":"Nahmii","chainId":5551,"networkId":5551,"icon":"nahmii","explorers":[{"name":"Nahmii mainnet explorer","url":"https://explorer.nahmii.io","icon":"nahmii","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://bridge.nahmii.io"}]}},{"name":"Nahmii Testnet","chain":"Nahmii","rpc":["https://l2.testnet.nahmii.io"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://nahmii.io","shortName":"NahmiiTestnet","chainId":5553,"networkId":5553,"slip44":1,"icon":"nahmii","explorers":[{"name":"blockscout","url":"https://explorer.testnet.nahmii.io","icon":"nahmii","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-3","bridges":[{"url":"https://bridge.nahmii.io"}]}},{"name":"Chain Verse Mainnet","chain":"CVERSE","icon":"chain_verse","rpc":["https://rpc.chainverse.info"],"faucets":[],"nativeCurrency":{"name":"Oasys","symbol":"OAS","decimals":18},"infoURL":"https://chainverse.info","shortName":"cverse","chainId":5555,"networkId":5555,"explorers":[{"name":"Chain Verse Explorer","url":"https://explorer.chainverse.info","standard":"EIP3091"}]},{"name":"opBNB Testnet","chain":"opBNB","icon":"bnbchain","rpc":["https://opbnb-testnet-rpc.bnbchain.org","https://opbnb-testnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3","wss://opbnb-testnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3","https://opbnb-testnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5","wss://opbnb-testnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5","https://opbnb-testnet-rpc.publicnode.com","wss://opbnb-testnet-rpc.publicnode.com"],"faucets":["https://testnet.bnbchain.org/faucet-smart"],"nativeCurrency":{"name":"BNB Chain Native Token","symbol":"tBNB","decimals":18},"infoURL":"https://opbnb.bnbchain.org/en","shortName":"obnbt","chainId":5611,"networkId":5611,"slip44":1,"explorers":[{"name":"bscscan-opbnb-testnet","url":"https://opbnb-testnet.bscscan.com","standard":"EIP3091"},{"name":"opbnbscan","url":"https://opbnbscan.com","standard":"EIP3091"}]},{"name":"Arcturus Testneet","chain":"Arcturus","rpc":["https://rpc-testnet.arcturuschain.io/"],"faucets":["https://faucet.arcturuschain.io"],"nativeCurrency":{"name":"tARC","symbol":"tARC","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://arcturuschain.io","shortName":"arcturus-testnet","chainId":5615,"networkId":5615,"explorers":[{"name":"explorer-arcturus-testnet","url":"https://testnet.arcscan.net","standard":"EIP3091"}]},{"name":"Arcturus Chain Testnet","chain":"ARCTURUS","rpc":["http://185.99.196.3:8545"],"faucets":[],"nativeCurrency":{"name":"Test Arct","symbol":"tARCT","decimals":18},"infoURL":"https://arcturuschain.io","shortName":"ARCT","chainId":5616,"networkId":5616,"slip44":1},{"name":"QIE Blockchain","chain":"QIE","icon":"qie","rpc":["https://rpc-main1.qiblockchain.online/","https://rpc-main2.qiblockchain.online/"],"faucets":[],"nativeCurrency":{"name":"QIE Blockchain","symbol":"QIE","decimals":18},"infoURL":"https://qiblockchain.online/","shortName":"QIE","chainId":5656,"networkId":5656,"explorers":[{"name":"QIE Explorer","url":"https://mainnet.qiblockchain.online","standard":"EIP3091"}]},{"name":"Filenova Testnet","chain":"Filenova","rpc":["https://rpctest.filenova.org"],"faucets":[],"nativeCurrency":{"name":"Test Filecoin","symbol":"tFIL","decimals":18},"infoURL":"https://filenova.org","shortName":"tfilenova","chainId":5675,"networkId":5675,"icon":"filenova","explorers":[{"name":"filenova testnet explorer","url":"https://scantest.filenova.org","icon":"filenova","standard":"none"}]},{"name":"Tanssi EVM ContainerChain","chain":"EVMCC","rpc":["https://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network","wss://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network"],"faucets":[],"nativeCurrency":{"name":"TANGO","symbol":"TANGO","decimals":18},"infoURL":"https://tanssi.network","shortName":"TanssiCC","chainId":5678,"networkId":5678,"explorers":[]},{"name":"Syscoin Tanenbaum Testnet","chain":"SYS","rpc":["https://rpc.tanenbaum.io","wss://rpc.tanenbaum.io/wss","https://syscoin-tanenbaum-evm.publicnode.com","wss://syscoin-tanenbaum-evm.publicnode.com"],"faucets":["https://faucet.tanenbaum.io"],"nativeCurrency":{"name":"Testnet Syscoin","symbol":"tSYS","decimals":18},"infoURL":"https://syscoin.org","shortName":"tsys","chainId":5700,"networkId":5700,"slip44":1,"explorers":[{"name":"Syscoin Testnet Block Explorer","url":"https://tanenbaum.io","standard":"EIP3091"}]},{"name":"Hika Network Testnet","title":"Hika Network Testnet","chain":"HIK","icon":"hik","rpc":["https://rpc-testnet.hika.network/"],"faucets":[],"nativeCurrency":{"name":"Hik Token","symbol":"HIK","decimals":18},"infoURL":"https://hika.network/","shortName":"hik","chainId":5729,"networkId":5729,"explorers":[{"name":"Hika Network Testnet Explorer","url":"https://scan-testnet.hika.network","standard":"none"}]},{"name":"SatoshiChain Testnet","chain":"SATS","icon":"satoshichain","rpc":["https://testnet-rpc.satoshichain.io"],"faucets":["https://faucet.satoshichain.io"],"nativeCurrency":{"name":"SatoshiChain Coin","symbol":"SATS","decimals":18},"infoURL":"https://satoshichain.net","shortName":"satst","chainId":5758,"networkId":5758,"slip44":1,"explorers":[{"name":"SatoshiChain Testnet Explorer","url":"https://testnet.satoshiscan.io","standard":"EIP3091"}]},{"name":"Ganache","title":"Ganache GUI Ethereum Testnet","chain":"ETH","icon":"ganache","rpc":["https://127.0.0.1:7545"],"faucets":[],"nativeCurrency":{"name":"Ganache Test Ether","symbol":"ETH","decimals":18},"infoURL":"https://trufflesuite.com/ganache/","shortName":"ggui","chainId":5777,"networkId":5777,"slip44":1,"explorers":[]},{"name":"Tangle","chain":"Tangle","rpc":["https://rpc.tangle.tools","wss://rpc.tangle.tools"],"faucets":[],"nativeCurrency":{"name":"Tangle","symbol":"TNT","decimals":18},"infoURL":"https://docs.tangle.tools","shortName":"tangle","chainId":5845,"networkId":5845,"icon":"tangle","explorers":[{"name":"Tangle EVM Explorer","url":"https://explorer.tangle.tools","standard":"EIP3091","icon":"tangle"}]},{"name":"Ontology Testnet","chain":"Ontology","icon":"ontology","rpc":["http://polaris1.ont.io:20339","http://polaris2.ont.io:20339","http://polaris3.ont.io:20339","http://polaris4.ont.io:20339","https://polaris1.ont.io:10339","https://polaris2.ont.io:10339","https://polaris3.ont.io:10339","https://polaris4.ont.io:10339"],"faucets":["https://developer.ont.io/"],"nativeCurrency":{"name":"ONG","symbol":"ONG","decimals":18},"infoURL":"https://ont.io/","shortName":"OntologyTestnet","chainId":5851,"networkId":5851,"slip44":1,"explorers":[{"name":"explorer","url":"https://explorer.ont.io/testnet","standard":"EIP3091"}]},{"name":"Wegochain Rubidium Mainnet","chain":"RBD","rpc":["https://proxy.wegochain.io","http://wallet.wegochain.io:7764"],"faucets":[],"nativeCurrency":{"name":"Rubid","symbol":"RBD","decimals":18},"infoURL":"https://www.wegochain.io","shortName":"rbd","chainId":5869,"networkId":5869,"explorers":[{"name":"wegoscan2","url":"https://scan2.wegochain.io","standard":"EIP3091"}]},{"name":"BounceBit Testnet","chain":"BounceBit","rpc":["https://fullnode-testnet.bouncebitapi.com/"],"faucets":[],"nativeCurrency":{"name":"BounceBit","symbol":"BB","decimals":18},"infoURL":"https://bouncebit.io","shortName":"bouncebit-testnet","chainId":6000,"networkId":6000,"explorers":[{"name":"BBScan Testnet Explorer","url":"https://bbscan.io","standard":"none"}]},{"name":"BounceBit Mainnet","chain":"BounceBit","rpc":["https://fullnode-mainnet.bouncebitapi.com/"],"faucets":[],"nativeCurrency":{"name":"BounceBit","symbol":"BB","decimals":18},"infoURL":"https://bouncebit.io","shortName":"bouncebit-mainnet","chainId":6001,"networkId":6001,"explorers":[{"name":"BBScan Mainnet Explorer","url":"https://bbscan.io","standard":"none"}]},{"name":"Tres Testnet","chain":"TresLeches","rpc":["https://rpc-test.tresleches.finance/"],"faucets":["http://faucet.tresleches.finance:8080"],"nativeCurrency":{"name":"TRES","symbol":"TRES","decimals":18},"infoURL":"https://treschain.com","shortName":"TRESTEST","chainId":6065,"networkId":6065,"slip44":1,"icon":"tresleches","explorers":[{"name":"treslechesexplorer","url":"https://explorer-test.tresleches.finance","icon":"treslechesexplorer","standard":"EIP3091"}]},{"name":"Tres Mainnet","chain":"TresLeches","rpc":["https://rpc.tresleches.finance/","https://rpc.treschain.io/"],"faucets":[],"nativeCurrency":{"name":"TRES","symbol":"TRES","decimals":18},"infoURL":"https://treschain.com","shortName":"TRESMAIN","chainId":6066,"networkId":6066,"icon":"tresleches","explorers":[{"name":"treslechesexplorer","url":"https://explorer.tresleches.finance","icon":"treslechesexplorer","standard":"EIP3091"}]},{"name":"Cascadia Testnet","chain":"Cascadia","rpc":["https://testnet.cascadia.foundation"],"faucets":["https://www.cascadia.foundation/faucet"],"nativeCurrency":{"name":"CC","symbol":"tCC","decimals":18},"infoURL":"https://www.cascadia.foundation","shortName":"cascadia","chainId":6102,"networkId":6102,"icon":"cascadia","explorers":[{"name":"Cascadia EVM Explorer","url":"https://explorer.cascadia.foundation","standard":"none","icon":"cascadia"},{"name":"Cascadia Cosmos Explorer","url":"https://validator.cascadia.foundation","standard":"none","icon":"cascadia"}]},{"name":"UPTN Testnet","chain":"UPTN","icon":"uptn","rpc":["https://node-api.alp.uptn.io/v1/ext/rpc"],"features":[{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"UPTN","symbol":"UPTN","decimals":18},"infoURL":"https://uptn.io","shortName":"UPTN-TEST","chainId":6118,"networkId":6118,"slip44":1,"explorers":[{"name":"UPTN Testnet Explorer","url":"https://testnet.explorer.uptn.io","standard":"EIP3091"}]},{"name":"UPTN","chain":"UPTN","icon":"uptn","rpc":["https://node-api.uptn.io/v1/ext/rpc"],"features":[{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"UPTN","symbol":"UPTN","decimals":18},"infoURL":"https://uptn.io","shortName":"UPTN","chainId":6119,"networkId":6119,"explorers":[{"name":"UPTN Explorer","url":"https://explorer.uptn.io","standard":"EIP3091"}]},{"name":"Digit Soul Smart Chain","chain":"DGS","rpc":["https://dsc-rpc.digitsoul.co.th"],"faucets":[],"icon":"pnet","nativeCurrency":{"name":"Digit Coin","symbol":"DGC","decimals":18},"infoURL":"","shortName":"DGS","chainId":6363,"networkId":6363},{"name":"Peerpay","chain":"P2P","rpc":["https://peerpay.su.gy/p2p"],"faucets":[],"nativeCurrency":{"name":"Peerpay","symbol":"P2P","decimals":18},"infoURL":"https://peerpay.su.gy","shortName":"Peerpay","chainId":6502,"networkId":6502,"explorers":[]},{"name":"Scolcoin WeiChain Testnet","chain":"SCOLWEI-testnet","rpc":["https://testnet-rpc.scolcoin.com"],"faucets":["https://faucet.scolcoin.com"],"nativeCurrency":{"name":"Scolcoin","symbol":"SCOL","decimals":18},"infoURL":"https://scolcoin.com","shortName":"SRC-test","chainId":6552,"networkId":6552,"slip44":1,"icon":"scolcoin","explorers":[{"name":"Scolscan Testnet Explorer","url":"https://testnet-explorer.scolcoin.com","standard":"EIP3091"}]},{"name":"Fox Testnet Network","chain":"FOX","rpc":["https://rpc-testnet-v1.foxchain.app/","https://rpc2-testnet-v1.foxchain.app/","https://rpc3-testnet-v1.foxchain.app"],"faucets":["https://faucet.foxchain.app"],"nativeCurrency":{"name":"FOX Native Token","symbol":"tFOX","decimals":18},"infoURL":"https://foxchain.app","shortName":"fox","chainId":6565,"networkId":6565,"slip44":1,"icon":"fox","explorers":[{"name":"FOX Testnet Explorer","icon":"fox","url":"https://testnet.foxscan.app","standard":"none"}]},{"name":"Pixie Chain Mainnet","chain":"PixieChain","rpc":["https://http-mainnet.chain.pixie.xyz","wss://ws-mainnet.chain.pixie.xyz"],"faucets":[],"nativeCurrency":{"name":"Pixie Chain Native Token","symbol":"PIX","decimals":18},"infoURL":"https://chain.pixie.xyz","shortName":"pixie-chain","chainId":6626,"networkId":6626,"explorers":[{"name":"blockscout","url":"https://scan.chain.pixie.xyz","standard":"none"}]},{"name":"Latest Chain Testnet","chain":"LATEST","icon":"latestChain","rpc":["https://testnet-rpc.latestcoin.io"],"faucets":["http://faucet.latestchain.io"],"nativeCurrency":{"name":"Latest","symbol":"LATEST","decimals":18},"infoURL":"https://latestcoin.io","shortName":"LATESTt","chainId":6660,"networkId":6660,"explorers":[{"name":"Latest Chain","url":"http://testnet.latestchain.io","standard":"EIP3091"}]},{"name":"Cybria Mainnet","chain":"CYBA","rpc":["https://rpc-mainnet.cybria.io"],"faucets":[],"nativeCurrency":{"name":"Cybria","symbol":"CYBA","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://cybria.io","shortName":"cyba","chainId":6661,"networkId":6661,"icon":"cybria","explorers":[{"name":"Cybria Explorer","url":"https://cybascan.io","icon":"cybascan","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155420","bridges":[{"url":"https://app.optimism.io/bridge"}]}},{"name":"Cybria Testnet","chain":"CYBA","rpc":["https://l2-rpc.cybascan.io"],"faucets":["https://faucet.cybascan.io"],"nativeCurrency":{"name":"Cybria","symbol":"CYBA","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://cybria.io","shortName":"tcyba","chainId":6666,"networkId":6666,"icon":"cybria","explorers":[{"name":"Cybria Explorer","url":"https://explorer.cybascan.io","icon":"cybascan","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155420","bridges":[{"url":"https://app.optimism.io/bridge"}]}},{"name":"IRIShub","chain":"IRIShub","rpc":["https://evmrpc.irishub-1.irisnet.org","https://iris-evm.publicnode.com","wss://iris-evm.publicnode.com"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Eris","symbol":"ERIS","decimals":18},"infoURL":"https://www.irisnet.org","shortName":"iris","chainId":6688,"networkId":6688,"icon":"irishub","explorers":[{"name":"IRISHub Cosmos Explorer (IOBScan)","url":"https://irishub.iobscan.io","standard":"none","icon":"irishub"}]},{"name":"PAXB Mainnet","chain":"PAXB","rpc":["https://chain.paxb.io"],"faucets":[],"nativeCurrency":{"name":"PAXB","symbol":"PAXB","decimals":18},"infoURL":"https://paxb.io/","shortName":"PAXB","chainId":6701,"networkId":6701,"icon":"paxb","explorers":[{"name":"PAXB Explorer","url":"https://scan.paxb.io","icon":"paxb","standard":"EIP3091"}]},{"name":"Compverse Mainnet","chain":"CPV","icon":"compverse","rpc":["https://rpc.compverse.io/","https://rpc-useast1.compverse.io/"],"faucets":[],"nativeCurrency":{"name":"compverse","symbol":"CPV","decimals":18},"infoURL":"https://compverse.io","shortName":"compverse","chainId":6779,"networkId":6779,"slip44":7779,"explorers":[{"name":"cpvscan","url":"https://scan.compverse.io","standard":"EIP3091"}]},{"name":"Gold Smart Chain Mainnet","chain":"STAND","icon":"stand","rpc":["https://rpc-mainnet.goldsmartchain.com"],"faucets":["https://faucet.goldsmartchain.com"],"nativeCurrency":{"name":"Standard in Gold","symbol":"STAND","decimals":18},"infoURL":"https://goldsmartchain.com","shortName":"STANDm","chainId":6789,"networkId":6789,"explorers":[{"name":"Gold Smart Chain","url":"https://mainnet.goldsmartchain.com","standard":"EIP3091"}]},{"name":"Tomb Chain Mainnet","chain":"Tomb Chain","rpc":["https://rpc.tombchain.com/"],"faucets":[],"nativeCurrency":{"name":"Tomb","symbol":"TOMB","decimals":18},"infoURL":"https://tombchain.com/","shortName":"tombchain","chainId":6969,"networkId":6969,"explorers":[{"name":"tombscout","url":"https://tombscout.com","standard":"none"}],"parent":{"type":"L2","chain":"eip155-250","bridges":[{"url":"https://lif3.com/bridge"}]}},{"name":"PolySmartChain","chain":"PSC","rpc":["https://seed0.polysmartchain.com/","https://seed1.polysmartchain.com/","https://seed2.polysmartchain.com/"],"faucets":[],"nativeCurrency":{"name":"PSC","symbol":"PSC","decimals":18},"infoURL":"https://www.polysmartchain.com/","shortName":"psc","chainId":6999,"networkId":6999},{"name":"ZetaChain Mainnet","chain":"ZetaChain","icon":"zetachain","rpc":["https://zetachain-evm.blockpi.network/v1/rpc/public","https://zetachain-mainnet-archive.allthatnode.com:8545"],"faucets":[],"nativeCurrency":{"name":"Zeta","symbol":"ZETA","decimals":18},"infoURL":"https://zetachain.com/docs/","shortName":"zetachain-mainnet","chainId":7000,"networkId":7000,"status":"active","explorers":[{"name":"ZetaChain Mainnet Explorer","url":"https://explorer.mainnet.zetachain.com","standard":"none"}]},{"name":"ZetaChain Athens 3 Testnet","chain":"ZetaChain","icon":"zetachain","rpc":["https://zetachain-athens-evm.blockpi.network/v1/rpc/public","wss://zetachain-athens.blockpi.network/rpc/v1/public/websocket","https://zetachain-testnet-archive.allthatnode.com:8545"],"faucets":["https://labs.zetachain.com/get-zeta"],"nativeCurrency":{"name":"Zeta","symbol":"ZETA","decimals":18},"infoURL":"https://zetachain.com/docs","shortName":"zetachain-athens","chainId":7001,"networkId":7001,"slip44":1,"status":"active","explorers":[{"name":"ZetaChain Athens Testnet Explorer","url":"https://athens3.explorer.zetachain.com","standard":"none"},{"name":"blockscout","url":"https://zetachain-athens-3.blockscout.com","icon":"blockscout","standard":"EIP3091"}]},{"name":"BST Chain","chain":"BSTC","rpc":["https://rpc.bstchain.io/"],"faucets":[],"nativeCurrency":{"name":"BST Chain","symbol":"BSTC","decimals":18},"infoURL":"https://bstchain.io","shortName":"BSTC","chainId":7007,"networkId":7007,"icon":"bstc","explorers":[{"name":"blockscout","url":"https://bstscan.com","standard":"EIP3091"}]},{"name":"Ella the heart","chain":"ella","icon":"ella","rpc":["https://rpc.ella.network"],"faucets":[],"nativeCurrency":{"name":"Ella","symbol":"ELLA","decimals":18},"infoURL":"https://ella.network","shortName":"ELLA","chainId":7027,"networkId":7027,"explorers":[{"name":"Ella","url":"https://ella.network","standard":"EIP3091"}]},{"name":"Planq Mainnet","chain":"Planq","icon":"planq","rpc":["https://evm-rpc.planq.network"],"faucets":[],"nativeCurrency":{"name":"Planq","symbol":"PLQ","decimals":18},"infoURL":"https://planq.network","shortName":"planq","chainId":7070,"networkId":7070,"explorers":[{"name":"Planq EVM Explorer (Blockscout)","url":"https://evm.planq.network","standard":"none"},{"name":"Planq Cosmos Explorer (BigDipper)","url":"https://explorer.planq.network","standard":"none"}]},{"name":"Nume","title":"Nume","chain":"Nume","rpc":["https://rpc.numecrypto.com"],"faucets":[],"nativeCurrency":{"name":"Dai Stablecoin","symbol":"DAI","decimals":18},"infoURL":"https://numecrypto.com","shortName":"nume","chainId":7100,"networkId":7100,"icon":"nume","explorers":[{"name":"numeexplorer","url":"https://explorer.numecrypto.com","icon":"nume","standard":"none"}]},{"name":"Help The Homeless","chain":"mainnet","rpc":[],"faucets":[],"nativeCurrency":{"name":"Help The Homeless Coin","symbol":"HTH","decimals":18},"infoURL":"https://hth.world","shortName":"hth","chainId":7118,"networkId":7118,"icon":"hth","status":"incubating","explorers":[]},{"name":"Bitrock Mainnet","chain":"Bitrock","icon":"bitrock","rpc":["https://connect.bit-rock.io","https://brockrpc.io"],"faucets":[],"nativeCurrency":{"name":"BITROCK","symbol":"BROCK","decimals":18},"infoURL":"https://bit-rock.io","shortName":"bitrock","chainId":7171,"networkId":7171,"explorers":[{"name":"Bitrock Explorer","url":"https://explorer.bit-rock.io","standard":"EIP3091"}]},{"name":"KLYNTAR","chain":"KLY","rpc":["https://evm.klyntar.org/kly_evm_rpc","https://evm.klyntarscan.org/kly_evm_rpc"],"faucets":[],"nativeCurrency":{"name":"KLYNTAR","symbol":"KLY","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://klyntar.org","shortName":"kly","chainId":7331,"networkId":7331,"icon":"klyntar","explorers":[],"status":"incubating"},{"name":"Horizen EON Mainnet","shortName":"EON","chain":"EON","icon":"eon","rpc":["https://eon-rpc.horizenlabs.io/ethv1","https://rpc.ankr.com/horizen_eon"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Zencash","symbol":"ZEN","decimals":18},"infoURL":"https://horizen.io/","chainId":7332,"networkId":7332,"slip44":121,"explorers":[{"name":"Horizen EON Block Explorer","url":"https://eon-explorer.horizenlabs.io","icon":"eon","standard":"EIP3091"}]},{"name":"Shyft Mainnet","chain":"SHYFT","icon":"shyft","rpc":["https://rpc.shyft.network/"],"faucets":[],"nativeCurrency":{"name":"Shyft","symbol":"SHYFT","decimals":18},"infoURL":"https://shyft.network","shortName":"shyft","chainId":7341,"networkId":7341,"slip44":2147490989,"explorers":[{"name":"Shyft BX","url":"https://bx.shyft.network","standard":"EIP3091"}]},{"name":"Raba Network Mainnet","chain":"Raba","icon":"raba","rpc":["https://rpc.x.raba.app/","wss://rpc.x.raba.app/ws/"],"faucets":[],"nativeCurrency":{"name":"Raba","symbol":"RABA","decimals":18},"infoURL":"https://x.raba.app/","shortName":"raba","chainId":7484,"networkId":7484,"explorers":[{"name":"raba","url":"https://x.raba.app/explorer","standard":"none"}]},{"name":"MEVerse Chain Mainnet","chain":"MEVerse","rpc":["https://rpc.meversemainnet.io"],"faucets":[],"nativeCurrency":{"name":"MEVerse","symbol":"MEV","decimals":18},"infoURL":"https://www.meverse.sg","shortName":"MEV","chainId":7518,"networkId":7518,"icon":"meverse","explorers":[{"name":"MEVerse Chain Explorer","url":"https://www.meversescan.io","standard":"none","icon":"meverse"}]},{"name":"ADIL Testnet","chain":"ADIL","icon":"adil","rpc":["https://testnet.adilchain-rpc.io"],"faucets":["https://testnet-faucet.adil-scan.io"],"nativeCurrency":{"name":"Testnet ADIL","symbol":"ADIL","decimals":18},"infoURL":"https://adilchain.io","shortName":"tadil","chainId":7575,"networkId":7575,"slip44":1,"explorers":[{"name":"ADIL Testnet Explorer","url":"https://testnet.adilchain-scan.io","standard":"EIP3091"}]},{"name":"Adil Chain V2 Mainnet","chain":"ADIL","icon":"adil","rpc":["https://adilchain-rpc.io"],"faucets":[],"nativeCurrency":{"name":"ADIL","symbol":"ADIL","decimals":18},"infoURL":"https://adilchain.io","shortName":"adil","chainId":7576,"networkId":7576,"explorers":[{"name":"ADIL Mainnet Explorer","url":"https://adilchain-scan.io","standard":"EIP3091"}]},{"name":"The Root Network - Mainnet","chain":"TRN","rpc":["https://root.rootnet.live/archive","wss://root.rootnet.live/archive/ws"],"faucets":[],"nativeCurrency":{"name":"XRP","symbol":"XRP","decimals":6},"infoURL":"https://www.futureverse.com/technology/root","shortName":"trn-mainnet","chainId":7668,"networkId":7668,"explorers":[{"name":"rootnet","url":"https://explorer.rootnet.live","standard":"EIP3091"}]},{"name":"The Root Network - Porcini Testnet","chain":"TRN","rpc":["https://porcini.rootnet.app/archive","wss://porcini.rootnet.app/archive/ws"],"faucets":[],"nativeCurrency":{"name":"XRP","symbol":"XRP","decimals":6},"infoURL":"https://www.futureverse.com/technology/root","shortName":"trn-porcini","chainId":7672,"networkId":7672,"slip44":1,"explorers":[{"name":"rootnet","url":"https://explorer.rootnet.cloud","standard":"EIP3091"}]},{"name":"Canto","chain":"Canto","rpc":["https://canto.slingshot.finance","https://canto-rpc.ansybl.io","https://mainnode.plexnode.org:8545","https://canto.gravitychain.io/"],"faucets":[],"nativeCurrency":{"name":"Canto","symbol":"CANTO","decimals":18},"infoURL":"https://canto.io","shortName":"canto","chainId":7700,"networkId":7700,"explorers":[{"name":"Canto Explorer (OKLink)","url":"https://www.oklink.com/canto","standard":"EIP3091"},{"name":"Canto EVM Explorer (Blockscout)","url":"https://tuber.build","standard":"EIP3091"},{"name":"dexguru","url":"https://canto.dex.guru","icon":"dexguru","standard":"EIP3091"}]},{"name":"Canto Tesnet","chain":"Canto","rpc":["https://testnet-archive.plexnode.wtf"],"faucets":[],"nativeCurrency":{"name":"Testnet Canto","symbol":"CANTO","decimals":18},"infoURL":"https://canto.io","shortName":"TestnetCanto","chainId":7701,"networkId":7701,"slip44":1,"explorers":[{"name":"Canto Testnet EVM Explorer (Blockscout)","url":"https://testnet.tuber.build","standard":"none"},{"name":"dexguru","url":"https://canto-test.dex.guru","icon":"dexguru","standard":"EIP3091"}]},{"name":"Bitrock Testnet","chain":"Bitrock","icon":"bitrock","rpc":["https://testnet.bit-rock.io"],"faucets":["https://faucet.bit-rock.io"],"nativeCurrency":{"name":"BITROCK","symbol":"BROCK","decimals":18},"infoURL":"https://bit-rock.io","shortName":"tbitrock","chainId":7771,"networkId":7771,"slip44":1,"explorers":[{"name":"Bitrock Testnet Explorer","url":"https://testnetscan.bit-rock.io","standard":"EIP3091"}]},{"name":"Rise of the Warbots Testnet","chain":"nmactest","rpc":["https://testnet1.riseofthewarbots.com","https://testnet2.riseofthewarbots.com","https://testnet3.riseofthewarbots.com","https://testnet4.riseofthewarbots.com","https://testnet5.riseofthewarbots.com"],"faucets":[],"nativeCurrency":{"name":"Nano Machines","symbol":"NMAC","decimals":18},"infoURL":"https://riseofthewarbots.com/","shortName":"RiseOfTheWarbotsTestnet","chainId":7777,"networkId":7777,"slip44":1,"explorers":[{"name":"avascan","url":"https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy","standard":"none"}]},{"name":"Orenium Mainnet Protocol","chain":"ORE","rpc":["https://validator-mainnet.orenium.org","https://rpc-oracle-mainnet.orenium.org","https://portalmainnet.orenium.org"],"nativeCurrency":{"name":"ORENIUM","symbol":"ORE","decimals":18},"infoURL":"https://orenium.org","shortName":"ore","chainId":7778,"networkId":7778,"slip44":1,"icon":"ore","faucets":[],"explorers":[{"name":"ORE Mainnet Explorer","icon":"ore","url":"https://oreniumscan.org","standard":"none"}]},{"name":"OpenEX LONG Testnet","title":"OpenEX LONG Testnet","chain":"OEX","icon":"oex","rpc":["https://long.rpc.openex.network/"],"faucets":["https://long.hub.openex.network/faucet"],"nativeCurrency":{"name":"USDT Testnet","symbol":"USDT","decimals":18},"infoURL":"https://openex.network","shortName":"oex","chainId":7798,"networkId":7798,"slip44":1,"explorers":[{"name":"OpenEX Long Testnet Explorer","url":"https://scan.long.openex.network","icon":"oex","standard":"EIP3091"}]},{"name":"MaalChain Testnet","chain":"MaalChain Testnet","icon":"maal-test","rpc":["https://node1.maalscan.io/","https://rpc-bntest.maalscan.io/"],"faucets":["https://faucet-testnet.maalscan.io/"],"nativeCurrency":{"name":"MAAL","symbol":"MAAL","decimals":18},"infoURL":"https://www.maalchain.com/","shortName":"maal-test","chainId":7860,"networkId":7860,"slip44":1,"explorers":[{"name":"maalscan testnet","url":"https://testnet.maalscan.io","standard":"EIP3091"}]},{"name":"Hazlor Testnet","chain":"SCAS","rpc":["https://hatlas.rpc.hazlor.com:8545","wss://hatlas.rpc.hazlor.com:8546"],"faucets":["https://faucet.hazlor.com"],"nativeCurrency":{"name":"Hazlor Test Coin","symbol":"TSCAS","decimals":18},"infoURL":"https://hazlor.com","shortName":"tscas","chainId":7878,"networkId":7878,"slip44":1,"explorers":[{"name":"Hazlor Testnet Explorer","url":"https://explorer.hazlor.com","standard":"none"}]},{"name":"Kinto Mainnet","chain":"Kinto Mainnet","rpc":["https://rpc.kinto.xyz/http","https://kinto-mainnet.calderachain.xyz/http"],"faucets":[],"nativeCurrency":{"name":"Ethereum","symbol":"ETH","decimals":18},"infoURL":"https://kinto.xyz","shortName":"kintoMainnet","chainId":7887,"networkId":7887,"icon":"kinto","explorers":[{"name":"Kinto Explorer","url":"https://explorer.kinto.xyz","icon":"kinto","standard":"EIP3091"}]},{"name":"ARDENIUM Athena","chain":"ATHENA","rpc":["https://rpc-athena.ardescan.com/"],"faucets":["https://faucet-athena.ardescan.com/"],"nativeCurrency":{"name":"ARD","symbol":"tARD","decimals":18},"infoURL":"https://ardenium.org","shortName":"ard","chainId":7895,"networkId":7895,"icon":"ard","explorers":[{"name":"ARDENIUM Athena Explorer","icon":"ard","url":"https://testnet.ardscan.com","standard":"none"}]},{"name":"Dot Blox","chain":"DTBX","icon":"dotblox","rpc":["https://rpc.dotblox.io"],"faucets":[],"nativeCurrency":{"name":"Dot Blox","symbol":"DTBX","decimals":18},"infoURL":"https://explorer.dotblox.io","shortName":"DTBX","chainId":7923,"networkId":7923,"explorers":[{"name":"blockscout","url":"https://explorer.dotblox.io","standard":"none"}]},{"name":"DOS Chain","chain":"DOS","rpc":["https://main.doschain.com"],"faucets":[],"nativeCurrency":{"name":"DOS","symbol":"DOS","decimals":18},"infoURL":"https://doschain.io","shortName":"dos","chainId":7979,"networkId":7979,"icon":"doschain","explorers":[{"name":"DOScan","url":"https://doscan.io","icon":"doschain","standard":"EIP3091"}]},{"name":"Teleport","chain":"Teleport","rpc":["https://evm-rpc.teleport.network"],"faucets":[],"nativeCurrency":{"name":"Tele","symbol":"TELE","decimals":18},"infoURL":"https://teleport.network","shortName":"teleport","chainId":8000,"networkId":8000,"icon":"teleport","explorers":[{"name":"Teleport EVM Explorer (Blockscout)","url":"https://evm-explorer.teleport.network","standard":"none","icon":"teleport"},{"name":"Teleport Cosmos Explorer (Big Dipper)","url":"https://explorer.teleport.network","standard":"none","icon":"teleport"}]},{"name":"Teleport Testnet","chain":"Teleport","rpc":["https://evm-rpc.testnet.teleport.network"],"faucets":["https://chain-docs.teleport.network/testnet/faucet.html"],"nativeCurrency":{"name":"Tele","symbol":"TELE","decimals":18},"infoURL":"https://teleport.network","shortName":"teleport-testnet","chainId":8001,"networkId":8001,"slip44":1,"icon":"teleport","explorers":[{"name":"Teleport EVM Explorer (Blockscout)","url":"https://evm-explorer.testnet.teleport.network","standard":"none","icon":"teleport"},{"name":"Teleport Cosmos Explorer (Big Dipper)","url":"https://explorer.testnet.teleport.network","standard":"none","icon":"teleport"}]},{"name":"MDGL Testnet","chain":"MDGL","rpc":["https://testnet.mdgl.io"],"faucets":[],"nativeCurrency":{"name":"MDGL Token","symbol":"MDGLT","decimals":18},"infoURL":"https://mdgl.io","shortName":"mdgl","chainId":8029,"networkId":8029,"slip44":1},{"name":"Karak Sepolia","title":"Karak Testnet Sepolia","chain":"Karak","icon":"karak","rpc":["https://rpc.sepolia.karak.network"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://karak.network","shortName":"karak-sepolia","chainId":8054,"networkId":8054,"explorers":[{"name":"Karak Sepolia Explorer","url":"https://explorer.sepolia.karak.network","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111"}},{"name":"Shardeum Liberty 1.X","chain":"Shardeum","icon":"shardeum","rpc":["https://liberty10.shardeum.org/"],"faucets":["https://faucet.liberty10.shardeum.org"],"nativeCurrency":{"name":"Shardeum SHM","symbol":"SHM","decimals":18},"infoURL":"https://docs.shardeum.org/","shortName":"Liberty10","chainId":8080,"networkId":8080,"explorers":[{"name":"Shardeum Scan","url":"https://explorer-liberty10.shardeum.org","standard":"EIP3091"}],"redFlags":["reusedChainId"]},{"name":"Shardeum Liberty 2.X","chain":"Shardeum","icon":"shardeum","rpc":["https://liberty20.shardeum.org/"],"faucets":["https://faucet.liberty20.shardeum.org"],"nativeCurrency":{"name":"Shardeum SHM","symbol":"SHM","decimals":18},"infoURL":"https://docs.shardeum.org/","shortName":"Liberty20","chainId":8081,"networkId":8081,"explorers":[{"name":"Shardeum Scan","url":"https://explorer-liberty20.shardeum.org","standard":"EIP3091"}],"redFlags":["reusedChainId"]},{"name":"Shardeum Sphinx 1.X","chain":"Shardeum","icon":"shardeum","rpc":["https://sphinx.shardeum.org/"],"faucets":["https://faucet-sphinx.shardeum.org/"],"nativeCurrency":{"name":"Shardeum SHM","symbol":"SHM","decimals":18},"infoURL":"https://docs.shardeum.org/","shortName":"Sphinx10","chainId":8082,"networkId":8082,"explorers":[{"name":"Shardeum Scan","url":"https://explorer-sphinx.shardeum.org","standard":"EIP3091"}],"redFlags":["reusedChainId"]},{"name":"Bitcoin Chain","chain":"BTC","rpc":["https://rpc.biteth.org"],"faucets":[],"nativeCurrency":{"name":"Bitcoin","symbol":"BTC","decimals":18},"infoURL":"https://biteth.org","shortName":"Bitcoin","chainId":8086,"networkId":8086,"explorers":[]},{"name":"E-Dollar","chain":"USD","rpc":["https://rpc.e-dollar.org"],"faucets":[],"nativeCurrency":{"name":"E-Dollar","symbol":"USD","decimals":18},"infoURL":"https://e-dollar.org","shortName":"E-Dollar","chainId":8087,"networkId":8087,"explorers":[]},{"name":"StreamuX Blockchain","chain":"StreamuX","rpc":["https://u0ma6t6heb:KDNwOsRDGcyM2Oeui1p431Bteb4rvcWkuPgQNHwB4FM@u0xy4x6x82-u0e2mg517m-rpc.us0-aws.kaleido.io/"],"faucets":[],"nativeCurrency":{"name":"StreamuX","symbol":"SmuX","decimals":18},"infoURL":"https://www.streamux.cloud","shortName":"StreamuX","chainId":8098,"networkId":8098},{"name":"Qitmeer Network Testnet","chain":"MEER","rpc":["https://testnet-qng.rpc.qitmeer.io","https://testnet.meerlabs.com","https://meer.testnet.meerfans.club"],"faucets":["https://faucet.qitmeer.io"],"nativeCurrency":{"name":"Qitmeer Testnet","symbol":"MEER-T","decimals":18},"infoURL":"https://github.com/Qitmeer","shortName":"meertest","chainId":8131,"networkId":8131,"slip44":1,"icon":"meer","explorers":[{"name":"meerscan testnet","icon":"meer","url":"https://testnet-qng.qitmeer.io","standard":"EIP3091"}]},{"name":"Qitmeer Network Mixnet","chain":"MEER","rpc":[],"faucets":[],"nativeCurrency":{"name":"Qitmeer Mixnet","symbol":"MEER-M","decimals":18},"infoURL":"https://github.com/Qitmeer","shortName":"meermix","icon":"meer","chainId":8132,"networkId":8132,"status":"incubating"},{"name":"Qitmeer Network Privnet","chain":"MEER","rpc":[],"faucets":[],"nativeCurrency":{"name":"Qitmeer Privnet","symbol":"MEER-P","decimals":18},"infoURL":"https://github.com/Qitmeer","shortName":"meerpriv","icon":"meer","chainId":8133,"networkId":8133,"status":"incubating"},{"name":"Amana","chain":"MEER","rpc":[],"faucets":[],"nativeCurrency":{"name":"Amana Mainnet","symbol":"MEER","decimals":18},"infoURL":"https://github.com/Qitmeer","shortName":"amana","icon":"meer","chainId":8134,"networkId":8134,"status":"incubating"},{"name":"Flana","chain":"MEER","rpc":[],"faucets":[],"nativeCurrency":{"name":"Flana Mainnet","symbol":"MEER","decimals":18},"infoURL":"https://github.com/Qitmeer","shortName":"flana","icon":"meer","chainId":8135,"networkId":8135,"status":"incubating"},{"name":"Mizana","chain":"MEER","rpc":[],"faucets":[],"nativeCurrency":{"name":"Mizana Mainnet","symbol":"MEER","decimals":18},"infoURL":"https://github.com/Qitmeer","shortName":"mizana","icon":"meer","chainId":8136,"networkId":8136,"status":"incubating"},{"name":"Testnet BeOne Chain","chain":"tBOC","rpc":["https://pre-boc1.beonechain.com"],"faucets":["https://testnet.beonescan.com/faucet"],"nativeCurrency":{"name":"Testnet BeOne Chain","symbol":"tBOC","decimals":18},"infoURL":"https://testnet.beonescan.com","shortName":"tBOC","chainId":8181,"networkId":8181,"slip44":1,"icon":"beonechain","explorers":[{"name":"Testnet BeOne Chain","url":"https://testnet.beonescan.com","icon":"beonechain","standard":"none"}]},{"name":"Torus Mainnet","chain":"TQF","icon":"torus","rpc":["https://rpc.toruschain.com"],"faucets":[],"nativeCurrency":{"name":"TQF","symbol":"TQF","decimals":18},"infoURL":"https://docs.toruschain.com","shortName":"tqf","chainId":8192,"networkId":8192,"explorers":[{"name":"blockscout","url":"https://toruscan.com","icon":"blockscout","standard":"EIP3091"}]},{"name":"Torus Testnet","chain":"TQF","icon":"torus","rpc":["https://rpc.testnet.toruschain.com"],"faucets":[],"nativeCurrency":{"name":"tTQF","symbol":"TTQF","decimals":18},"infoURL":"https://docs.toruschain.com","shortName":"ttqf","chainId":8194,"networkId":8194,"slip44":1,"explorers":[{"name":"blockscout","url":"https://testnet.toruscan.com","icon":"blockscout","standard":"EIP3091"}]},{"name":"Klaytn Mainnet Cypress","chain":"KLAY","rpc":["https://public-en-cypress.klaytn.net"],"faucets":[],"nativeCurrency":{"name":"KLAY","symbol":"KLAY","decimals":18},"infoURL":"https://klaytn.foundation","shortName":"Cypress","chainId":8217,"networkId":8217,"slip44":8217,"explorers":[{"name":"Klaytnscope","url":"https://scope.klaytn.com","standard":"EIP3091"},{"name":"Klaytnfinder","url":"https://klaytnfinder.io","standard":"EIP3091"}]},{"name":"Blockton Blockchain","chain":"Blockton Blockchain","icon":"bton","rpc":["https://rpc.blocktonscan.com/"],"faucets":["https://faucet.blocktonscan.com/"],"nativeCurrency":{"name":"BLOCKTON","symbol":"BTON","decimals":18},"infoURL":"https://blocktoncoin.com","shortName":"BTON","chainId":8272,"networkId":8272,"explorers":[{"name":"Blockton Explorer","url":"https://blocktonscan.com","standard":"none"}]},{"name":"KorthoTest","chain":"Kortho","rpc":["https://www.krotho-test.net"],"faucets":[],"nativeCurrency":{"name":"Kortho Test","symbol":"KTO","decimals":11},"infoURL":"https://www.kortho.io/","shortName":"Kortho","chainId":8285,"networkId":8285,"slip44":1},{"name":"Dracones Financial Services","title":"The Dracones Mainnet","chain":"FUCK","rpc":["https://api.dracones.net/"],"faucets":[],"nativeCurrency":{"name":"Functionally Universal Coin Kind","symbol":"FUCK","decimals":18},"infoURL":"https://wolfery.com","shortName":"fuck","chainId":8387,"networkId":8387,"icon":"dracones","explorers":[]},{"name":"Base","chain":"ETH","rpc":["https://mainnet.base.org/","https://developer-access-mainnet.base.org/","https://base.gateway.tenderly.co","wss://base.gateway.tenderly.co","https://base-rpc.publicnode.com","wss://base-rpc.publicnode.com"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://base.org","shortName":"base","chainId":8453,"networkId":8453,"icon":"base","explorers":[{"name":"basescan","url":"https://basescan.org","standard":"none"},{"name":"basescout","url":"https://base.blockscout.com","icon":"blockscout","standard":"EIP3091"},{"name":"dexguru","url":"https://base.dex.guru","icon":"dexguru","standard":"EIP3091"}],"status":"active"},{"name":"Toki Network","chain":"TOKI","rpc":["https://mainnet.buildwithtoki.com/v0/rpc"],"faucets":[],"nativeCurrency":{"name":"Toki","symbol":"TOKI","decimals":18},"infoURL":"https://www.buildwithtoki.com","shortName":"toki","chainId":8654,"networkId":8654,"icon":"toki","explorers":[]},{"name":"Toki Testnet","chain":"TOKI","rpc":["https://testnet.buildwithtoki.com/v0/rpc"],"faucets":[],"nativeCurrency":{"name":"Toki","symbol":"TOKI","decimals":18},"infoURL":"https://www.buildwithtoki.com","shortName":"toki-testnet","chainId":8655,"networkId":8655,"slip44":1,"icon":"toki","explorers":[]},{"name":"Hela Official Runtime Mainnet","chain":"Hela","icon":"hela","rpc":["https://mainnet-rpc.helachain.com"],"faucets":[],"nativeCurrency":{"name":"Hela HLUSD","symbol":"HLUSD","decimals":18},"infoURL":"https://helalabs.com","shortName":"hela","chainId":8668,"networkId":8668,"explorers":[{"name":"Hela Official Runtime Mainnet Explorer","url":"https://mainnet-blockexplorer.helachain.com","standard":"EIP3091"}]},{"name":"TOOL Global Mainnet","chain":"OLO","rpc":["https://mainnet-web3.wolot.io"],"faucets":[],"nativeCurrency":{"name":"TOOL Global","symbol":"OLO","decimals":18},"infoURL":"https://ibdt.io","shortName":"olo","chainId":8723,"networkId":8723,"slip44":479,"explorers":[{"name":"OLO Block Explorer","url":"https://www.olo.network","standard":"EIP3091"}]},{"name":"TOOL Global Testnet","chain":"OLO","rpc":["https://testnet-web3.wolot.io"],"faucets":["https://testnet-explorer.wolot.io"],"nativeCurrency":{"name":"TOOL Global","symbol":"OLO","decimals":18},"infoURL":"https://testnet-explorer.wolot.io","shortName":"tolo","chainId":8724,"networkId":8724,"slip44":1},{"name":"Storagechain Mainnet","chain":"Storagechain","rpc":["https://mainnet-validator.storagechain.io"],"icon":"storagechain","faucets":[],"shortName":"stor","nativeCurrency":{"name":"Storagechain","symbol":"STOR","decimals":18},"infoURL":"https://storagechain.io/about-us","chainId":8726,"networkId":8726,"explorers":[{"name":"Storscan","url":"https://explorer-storagechain.invo.zone/?network=StorageChain","standard":"none"}]},{"name":"Storagechain Testnet","chain":"Storagechain","rpc":["https://testnet-validator.storagechain.io"],"icon":"storagechain","faucets":[],"nativeCurrency":{"name":"Storagechain","symbol":"STOR","decimals":18},"shortName":"tstor","infoURL":"https://storagechain.io/about-us","chainId":8727,"networkId":8727,"explorers":[{"name":"Storscan","url":"https://explorer-storagechain.invo.zone/?network=StorageChain%20Testnet","standard":"none"}]},{"name":"Alph Network","chain":"ALPH","rpc":["https://rpc.alph.network","wss://rpc.alph.network"],"faucets":[],"nativeCurrency":{"name":"Alph Network","symbol":"ALPH","decimals":18},"infoURL":"https://alph.network","shortName":"alph","chainId":8738,"networkId":8738,"explorers":[{"name":"alphscan","url":"https://explorer.alph.network","standard":"EIP3091"}]},{"name":"TMY Chain","chain":"TMY","icon":"tmychain","rpc":["https://node1.tmyblockchain.org/rpc"],"faucets":["https://faucet.tmychain.org/"],"nativeCurrency":{"name":"TMY","symbol":"TMY","decimals":18},"infoURL":"https://tmychain.org/","shortName":"tmy","chainId":8768,"networkId":8768},{"name":"IOTA EVM","title":"IOTA EVM","chain":"IOTA EVM","rpc":["https://json-rpc.evm.iotaledger.net"],"faucets":[],"nativeCurrency":{"name":"IOTA","symbol":"IOTA","decimals":18},"infoURL":"https://www.iota.org","shortName":"iotaevm","chainId":8822,"networkId":8822,"icon":"iotaevm","explorers":[{"name":"explorer","url":"https://iota-evm.blockscout.com","icon":"iotaevm","standard":"EIP3091"}]},{"name":"MARO Blockchain Mainnet","chain":"MARO Blockchain","icon":"MARO","rpc":["https://rpc-mainnet.ma.ro"],"faucets":[],"nativeCurrency":{"name":"MARO","symbol":"MARO","decimals":18},"infoURL":"https://ma.ro/","shortName":"maro","chainId":8848,"networkId":8848,"explorers":[{"name":"MARO Scan","url":"https://scan.ma.ro/#","standard":"none"}]},{"name":"SuperLumio","chain":"SuperLumio","icon":"superlumio","rpc":["https://mainnet.lumio.io/"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://lumio.io/","shortName":"superlumio","chainId":8866,"networkId":8866,"explorers":[{"name":"Lumio explorer","url":"https://explorer.lumio.io","standard":"none"}]},{"name":"Unique","icon":"unique","chain":"UNQ","rpc":["https://rpc.unique.network","https://eu-rpc.unique.network","https://asia-rpc.unique.network","https://us-rpc.unique.network"],"faucets":[],"nativeCurrency":{"name":"Unique","symbol":"UNQ","decimals":18},"infoURL":"https://unique.network","shortName":"unq","chainId":8880,"networkId":8880,"explorers":[{"name":"Unique Scan","url":"https://uniquescan.io/unique","standard":"none"}]},{"name":"Quartz by Unique","icon":"quartz","chain":"UNQ","rpc":["https://rpc-quartz.unique.network","https://quartz.api.onfinality.io/public-ws","https://eu-rpc-quartz.unique.network","https://asia-rpc-quartz.unique.network","https://us-rpc-quartz.unique.network"],"faucets":[],"nativeCurrency":{"name":"Quartz","symbol":"QTZ","decimals":18},"infoURL":"https://unique.network","shortName":"qtz","chainId":8881,"networkId":8881,"explorers":[{"name":"Unique Scan / Quartz","url":"https://uniquescan.io/quartz","standard":"none"}]},{"name":"Opal testnet by Unique","icon":"opal","chain":"UNQ","rpc":["https://rpc-opal.unique.network","https://us-rpc-opal.unique.network","https://eu-rpc-opal.unique.network","https://asia-rpc-opal.unique.network"],"faucets":["https://t.me/unique2faucet_opal_bot"],"nativeCurrency":{"name":"Opal","symbol":"UNQ","decimals":18},"infoURL":"https://unique.network","shortName":"opl","chainId":8882,"networkId":8882,"slip44":1,"explorers":[{"name":"Unique Scan / Opal","url":"https://uniquescan.io/opal","standard":"none"}]},{"name":"Sapphire by Unique","icon":"sapphire","chain":"UNQ","rpc":["https://rpc-sapphire.unique.network","https://us-rpc-sapphire.unique.network","https://eu-rpc-sapphire.unique.network","https://asia-rpc-sapphire.unique.network"],"faucets":[],"nativeCurrency":{"name":"Quartz","symbol":"QTZ","decimals":18},"infoURL":"https://unique.network","shortName":"sph","chainId":8883,"networkId":8883,"explorers":[{"name":"Unique Scan / Sapphire","url":"https://uniquescan.io/sapphire","standard":"none"}]},{"name":"XANAChain","chain":"XANAChain","rpc":["https://mainnet.xana.net/rpc"],"faucets":[],"nativeCurrency":{"name":"XETA","symbol":"XETA","decimals":18},"infoURL":"https://xanachain.xana.net/","shortName":"XANAChain","chainId":8888,"networkId":8888,"icon":"xeta","explorers":[{"name":"XANAChain","url":"https://xanachain.xana.net","standard":"EIP3091"}],"redFlags":["reusedChainId"]},{"name":"Vyvo Smart Chain","chain":"VSC","rpc":["https://vsc-dataseed.vyvo.org:8889"],"faucets":[],"nativeCurrency":{"name":"VSC","symbol":"VSC","decimals":18},"infoURL":"https://vsc-dataseed.vyvo.org","shortName":"vsc","chainId":8889,"networkId":8889},{"name":"Orenium Testnet Protocol","chain":"ORE","rpc":["https://rpc-dev-testnet.orenium.org/","https://rpc-testnet.orenium.org/","https://rpc-orc.oredex.finance","https://testnet-rpc.oredex.finance","https://oredex-node.oredex.finance"],"nativeCurrency":{"name":"ORENIUM","symbol":"tORE","decimals":18},"infoURL":"https://orenium.org","shortName":"tore","chainId":8890,"networkId":8890,"slip44":1,"icon":"ore","faucets":["https://faucetcoin.orenium.org"],"explorers":[{"name":"ORE Testnet Explorer","icon":"ore","url":"https://testnet.oreniumscan.org","standard":"none"}]},{"name":"Mammoth Mainnet","title":"Mammoth Chain","chain":"MMT","rpc":["https://dataseed.mmtscan.io","https://dataseed1.mmtscan.io","https://dataseed2.mmtscan.io"],"faucets":["https://faucet.mmtscan.io/"],"nativeCurrency":{"name":"Mammoth Token","symbol":"MMT","decimals":18},"infoURL":"https://mmtchain.io/","shortName":"mmt","chainId":8898,"networkId":8898,"icon":"mmt","explorers":[{"name":"mmtscan","url":"https://mmtscan.io","standard":"EIP3091","icon":"mmt"}]},{"name":"JIBCHAIN L1","chain":"JBC","rpc":["https://rpc-l1.jibchain.net","https://jib-rpc.inan.in.th"],"faucets":[],"icon":"jbc","features":[{"name":"EIP155"},{"name":"EIP1559"}],"nativeCurrency":{"name":"JIBCOIN","symbol":"JBC","decimals":18},"infoURL":"https://jibchain.net","shortName":"jbc","chainId":8899,"networkId":8899,"explorers":[{"name":"JIBCHAIN Explorer","url":"https://exp-l1.jibchain.net","standard":"EIP3091"}]},{"name":"Giant Mammoth Mainnet","title":"Giant Mammoth Chain","chain":"GMMT","rpc":["https://rpc-asia.gmmtchain.io"],"faucets":[],"nativeCurrency":{"name":"Giant Mammoth Coin","symbol":"GMMT","decimals":18},"infoURL":"https://gmmtchain.io/","shortName":"gmmt","chainId":8989,"networkId":8989,"icon":"gmmt","explorers":[{"name":"gmmtscan","url":"https://scan.gmmtchain.io","standard":"EIP3091","icon":"gmmt"}]},{"name":"bloxberg","chain":"bloxberg","rpc":["https://core.bloxberg.org"],"faucets":["https://faucet.bloxberg.org/"],"nativeCurrency":{"name":"BERG","symbol":"U+25B3","decimals":18},"infoURL":"https://bloxberg.org","shortName":"berg","chainId":8995,"networkId":8995},{"name":"Evmos Testnet","chain":"Evmos","rpc":["https://evmos-testnet.lava.build","https://eth.bd.evmos.dev:8545"],"faucets":["https://faucet.evmos.dev"],"nativeCurrency":{"name":"test-Evmos","symbol":"tEVMOS","decimals":18},"infoURL":"https://evmos.org","shortName":"evmos-testnet","chainId":9000,"networkId":9000,"slip44":1,"icon":"evmos","explorers":[{"name":"Evmos Explorer (Escan)","url":"https://testnet.escan.live","standard":"none","icon":"evmos"}]},{"name":"Evmos","chain":"Evmos","rpc":["https://evmos.lava.build","wss://evmos.lava.build/websocket","https://evmos-evm.publicnode.com","wss://evmos-evm.publicnode.com"],"faucets":[],"nativeCurrency":{"name":"Evmos","symbol":"EVMOS","decimals":18},"infoURL":"https://evmos.org","shortName":"evmos","chainId":9001,"networkId":9001,"icon":"evmos","explorers":[{"name":"Evmos Explorer (Escan)","url":"https://escan.live","standard":"none","icon":"evmos"}]},{"name":"Shido Testnet Block","chain":"Shido Testnet","rpc":["https://rpc-testnet-nodes.shidoscan.com","wss://wss-testnet-nodes.shidoscan.com"],"faucets":["https://testnet.shidoscan.com/faucet"],"nativeCurrency":{"name":"Shido Testnet Token","symbol":"SHIDO","decimals":18},"infoURL":"https://www.nexablock.io","shortName":"ShidoTestnet","chainId":9007,"networkId":9007,"icon":"shidoChain","explorers":[{"name":"Shidoblock Testnet Explorer","url":"https://testnet.shidoscan.com","standard":"none","icon":"shidoChain"}]},{"name":"Shido Mainnet Block","chain":"Shido Mainnet","rpc":["https://rpc-nodes.shidoscan.com","wss://wss-nodes.shidoscan.com","https://rpc-delta-nodes.shidoscan.com","wss://wss-delta-nodes.shidoscan.com"],"faucets":[],"nativeCurrency":{"name":"Shido Mainnet Token","symbol":"SHIDO","decimals":18},"infoURL":"https://shido.io","shortName":"Shido","chainId":9008,"networkId":9008,"icon":"shidoChain","explorers":[{"name":"Shidoblock Mainnet Explorer","url":"https://shidoscan.com","standard":"none","icon":"shidoChain"}]},{"name":"BerylBit Mainnet","chain":"BRB","rpc":["https://mainnet.berylbit.io"],"faucets":["https://t.me/BerylBit"],"nativeCurrency":{"name":"BerylBit Chain Native Token","symbol":"BRB","decimals":18},"infoURL":"https://www.beryl-bit.com","shortName":"brb","chainId":9012,"networkId":9012,"icon":"berylbit","explorers":[{"name":"berylbit-explorer","url":"https://explorer.berylbit.io","standard":"EIP3091"}]},{"name":"Nexa Testnet Block","chain":"Nexa Testnet","rpc":["https://rpc-testnet-nodes.nexablockscan.io"],"faucets":["https://testnet.nexablockscan.io/faucet"],"nativeCurrency":{"name":"Nexa Testnet Token","symbol":"NEXB","decimals":18},"infoURL":"https://www.nexablock.io","shortName":"NexaTestnet","chainId":9024,"networkId":9024,"icon":"nexaChain","explorers":[{"name":"Nexablock Testnet Explorer","url":"https://testnet.nexablockscan.io","standard":"none","icon":"nexaChain"}]},{"name":"Nexa Mainnet Block","chain":"Nexa Mainnet","rpc":["https://rpc-nodes.nexablockscan.io","wss://wss-nodes.nexablockscan.io","https://rpc-nodes-delta.nexablockscan.io"],"faucets":[],"nativeCurrency":{"name":"Nexa Mainnet Token","symbol":"NEXB","decimals":18},"infoURL":"https://www.nexablock.io","shortName":"Nexa","chainId":9025,"networkId":9025,"icon":"nexaChain","explorers":[{"name":"Nexablock Mainnet Explorer","url":"https://nexablockscan.io","standard":"none","icon":"nexaChain"}]},{"name":"Genesis Coin","chain":"Genesis","rpc":["https://genesis-gn.com","wss://genesis-gn.com"],"faucets":[],"nativeCurrency":{"name":"GN Coin","symbol":"GNC","decimals":18},"infoURL":"https://genesis-gn.com","shortName":"GENEC","chainId":9100,"networkId":9100},{"name":"Rinia Testnet Old","chain":"FIRE","icon":"rinia","rpc":[],"faucets":["https://faucet.thefirechain.com"],"nativeCurrency":{"name":"Firechain","symbol":"FIRE","decimals":18},"infoURL":"https://thefirechain.com","shortName":"_old_tfire","chainId":9170,"networkId":9170,"slip44":1,"explorers":[],"status":"deprecated"},{"name":"Codefin Mainnet","chain":"COF","icon":"codefin","rpc":["https://chain-rpc.codefin.pro"],"faucets":[],"nativeCurrency":{"name":"Codefin","symbol":"COF","decimals":18},"infoURL":"https://network.codefin.pro","shortName":"COF","chainId":9223,"networkId":9223,"explorers":[{"name":"Codefin Net Explorer","url":"https://explorer.codefin.pro","standard":"EIP3091"}]},{"name":"Dogcoin Testnet","chain":"DOGS","icon":"dogs","rpc":["https://testnet-rpc.dogcoin.me"],"faucets":["https://faucet.dogcoin.network"],"nativeCurrency":{"name":"Dogcoin","symbol":"DOGS","decimals":18},"infoURL":"https://dogcoin.network","shortName":"DOGSt","chainId":9339,"networkId":9339,"slip44":1,"explorers":[{"name":"Dogcoin","url":"https://testnet.dogcoin.network","standard":"EIP3091"}]},{"name":"Dela Sepolia Testnet","chain":"ETH","rpc":["https://sepolia-dela.deperp.com"],"faucets":[],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://www.deperp.com/dela","shortName":"delasep","chainId":9393,"networkId":9393,"slip44":1,"icon":"delaTestnet","explorers":[{"name":"basescout","url":"https://sepolia-delascan.deperp.com","icon":"blockscout","standard":"EIP3091"}]},{"name":"Evoke Mainnet","chain":"MTHN","icon":"mthn","rpc":["https://mainnet-rpc.evokescan.org"],"faucets":[],"nativeCurrency":{"name":"MTHN","symbol":"MTHN","decimals":18},"infoURL":"https://explorer.evokescan.org","shortName":"MTHN","chainId":9395,"networkId":9395,"explorers":[{"name":"Evoke SmartChain Explorer","url":"https://explorer.evokescan.org","standard":"EIP3091"}]},{"name":"Rangers Protocol Testnet Robin","chain":"Rangers","icon":"rangers","rpc":["https://robin.rangersprotocol.com/api/jsonrpc"],"faucets":["https://robin-faucet.rangersprotocol.com"],"nativeCurrency":{"name":"Rangers Protocol Gas","symbol":"tRPG","decimals":18},"infoURL":"https://rangersprotocol.com","shortName":"trpg","chainId":9527,"networkId":9527,"slip44":1,"explorers":[{"name":"rangersscan-robin","url":"https://robin-rangersscan.rangersprotocol.com","standard":"none"}]},{"name":"QEasyWeb3 Testnet","chain":"QET","rpc":["https://qeasyweb3.com"],"faucets":["http://faucet.qeasyweb3.com"],"nativeCurrency":{"name":"QET","symbol":"QET","decimals":18},"infoURL":"https://www.qeasyweb3.com","shortName":"QETTest","chainId":9528,"networkId":9528,"slip44":1,"explorers":[{"name":"QEasyWeb3 Explorer","url":"https://www.qeasyweb3.com","standard":"EIP3091"}]},{"name":"Neonlink Testnet","chain":"Neonlink","rpc":["https://testnet.neonlink.io"],"faucets":["https://faucet.neonlink.io/"],"nativeCurrency":{"name":"Neonlink Native Token","symbol":"tNEON","decimals":18},"infoURL":"https://neonlink.io","shortName":"testneon","chainId":9559,"networkId":9559,"slip44":1,"icon":"neonlink","explorers":[{"name":"Neon Blockchain Explorer","url":"https://testnet-scan.neonlink.io","standard":"EIP3091","icon":"neonlink"}]},{"name":"Oort MainnetDev","title":"Oort MainnetDev","chain":"MainnetDev","rpc":["https://dev-rpc.oortech.com"],"faucets":[],"nativeCurrency":{"name":"Oort","symbol":"OORT","decimals":18},"infoURL":"https://oortech.com","shortName":"MainnetDev","chainId":9700,"networkId":9700,"icon":"oort","explorers":[{"name":"Oort MainnetDev Scan","url":"https://dev-scan.oortech.com","standard":"none","icon":"oort"}]},{"name":"Boba BNB Testnet","chain":"Boba BNB Testnet","rpc":["https://testnet.bnb.boba.network","wss://wss.testnet.bnb.boba.network","https://replica.testnet.bnb.boba.network","wss://replica-wss.testnet.bnb.boba.network","https://boba-bnb-testnet.gateway.tenderly.co","wss://boba-bnb-testnet.gateway.tenderly.co"],"faucets":[],"nativeCurrency":{"name":"Boba Token","symbol":"BOBA","decimals":18},"infoURL":"https://boba.network","shortName":"BobaBnbTestnet","chainId":9728,"networkId":9728,"slip44":1,"explorers":[{"name":"Boba BNB Testnet block explorer","url":"https://testnet.bobascan.com","standard":"none"}],"parent":{"type":"L2","chain":"eip155-5","bridges":[{"url":"https://gateway.boba.network"}]}},{"name":"MainnetZ Testnet","chain":"NetZ","icon":"mainnetzTestnet","rpc":["https://testnet-rpc.mainnetz.io"],"faucets":["https://faucet.mainnetz.io"],"nativeCurrency":{"name":"MainnetZ","symbol":"NetZ","decimals":18},"infoURL":"https://testnet.mainnetz.io","shortName":"NetZt","chainId":9768,"networkId":9768,"slip44":1,"explorers":[{"name":"MainnetZ","url":"https://testnet.mainnetz.io","standard":"EIP3091"}]},{"name":"PepeNetwork Mainnet","chain":"PepeNetwork","rpc":["https://rpc-mainnet.pepenetwork.io"],"faucets":[],"nativeCurrency":{"name":"Pepe","symbol":"WPEPE","decimals":18},"infoURL":"https://pepenetwork.io","shortName":"pn","chainId":9779,"networkId":9779,"icon":"pepenetwork","explorers":[{"name":"Pepe Explorer","url":"https://explorer.pepenetwork.io","icon":"pepenetwork","standard":"none"}]},{"name":"Carbon EVM","chain":"Carbon","icon":"carbon","rpc":["https://evm-api.carbon.network/"],"faucets":[],"nativeCurrency":{"name":"swth","symbol":"SWTH","decimals":18},"infoURL":"https://carbon.network/","shortName":"carbon","chainId":9790,"networkId":9790,"explorers":[]},{"name":"Carbon EVM Testnet","chain":"Carbon","icon":"carbon","rpc":["https://test-evm-api.carbon.network/"],"faucets":[],"nativeCurrency":{"name":"swth","symbol":"SWTH","decimals":18},"infoURL":"https://carbon.network/","shortName":"carbon-testnet","chainId":9792,"networkId":9792,"slip44":1,"explorers":[]},{"name":"IMPERIUM TESTNET","chain":"tIMP","rpc":["https://data-aws-testnet.imperiumchain.com","https://data-aws2-testnet.imperiumchain.com"],"faucets":["https://faucet.imperiumchain.com/"],"nativeCurrency":{"name":"tIMP","symbol":"tIMP","decimals":18},"infoURL":"https://imperiumchain.com","shortName":"tIMP","chainId":9818,"networkId":9818,"slip44":1,"icon":"timp","explorers":[{"name":"IMPERIUM TESTNET Explorer","icon":"timp","url":"https://network.impscan.com","standard":"none"}]},{"name":"IMPERIUM MAINNET","chain":"IMP","rpc":["https://data-aws-mainnet.imperiumchain.com","https://data-aws2-mainnet.imperiumchain.com"],"faucets":["https://faucet.imperiumchain.com/"],"nativeCurrency":{"name":"IMP","symbol":"IMP","decimals":18},"infoURL":"https://imperiumchain.com","shortName":"IMP","chainId":9819,"networkId":9819,"icon":"imp","explorers":[{"name":"IMPERIUM Explorer","icon":"imp","url":"https://impscan.com","standard":"none"}]},{"name":"Dogelayer Mainnet","chain":"Dogelayer","rpc":["https://dl-rpc.dogelayer.org"],"faucets":[],"nativeCurrency":{"name":"Dogecoin","symbol":"DOGE","decimals":18},"infoURL":"https://dogelayer.org","shortName":"Dogelayer","chainId":9888,"networkId":9888,"explorers":[{"name":"Dogelayer mainnet explorer","url":"https://dl-explorer.dogelayer.org","standard":"EIP3091"}]},{"name":"Larissa Chain","title":"Larissa Chain","chain":"Larissa","rpc":["https://rpc.larissa.network"],"faucets":[],"nativeCurrency":{"name":"Larissa","symbol":"LRS","decimals":18},"infoURL":"https://larissa.network","shortName":"lrs","chainId":9898,"networkId":1,"slip44":9898,"status":"active","icon":"larissa","explorers":[{"name":"Larissa Scan","url":"https://scan.larissa.network","standard":"EIP3091"}]},{"name":"Espento Mainnet","chain":"SPENT","rpc":["https://rpc.escscan.com/"],"faucets":[],"nativeCurrency":{"name":"ESPENTO","symbol":"SPENT","decimals":18},"infoURL":"https://espento.network","shortName":"spent","chainId":9911,"networkId":9911,"icon":"espento","explorers":[{"name":"escscan","url":"https://escscan.com","icon":"espento","standard":"EIP3091"}]},{"name":"Mind Smart Chain Testnet","chain":"tMIND","icon":"mindchain","rpc":["https://testnet-msc.mindchain.info/","wss://testnet-msc.mindchain.info/ws"],"faucets":["https://faucet.mindchain.info/"],"nativeCurrency":{"name":"MIND Coin","symbol":"tMIND","decimals":18},"infoURL":"https://mindchain.info","shortName":"tMIND","chainId":9977,"networkId":9977,"slip44":1,"explorers":[{"name":"Mind Chain explorer","url":"https://testnet.mindscan.info","standard":"EIP3091"}]},{"name":"Combo Mainnet","chain":"Combo","icon":"combo","rpc":["https://rpc.combonetwork.io"],"faucets":[],"nativeCurrency":{"name":"BNB Chain Native Token","symbol":"BNB","decimals":18},"infoURL":"https://combonetwork.io","shortName":"combo-mainnet","chainId":9980,"networkId":9980,"explorers":[{"name":"combotrace explorer","url":"https://combotrace.nodereal.io","standard":"EIP3091"}]},{"name":"Agung Network","chain":"Agung","icon":"agung","rpc":["https://rpcpc1-qa.agung.peaq.network"],"faucets":[],"nativeCurrency":{"name":"Agung","symbol":"AGNG","decimals":18},"infoURL":"https://www.peaq.network","shortName":"AGNG","chainId":9990,"networkId":9990,"explorers":[{"name":"Polkadot.js","url":"https://polkadot.js.org/apps/?rpc=wss://wsspc1-qa.agung.peaq.network#/explorer","standard":"none"},{"name":"Subscan","url":"https://agung.subscan.io","standard":"none"}]},{"name":"Mind Smart Chain Mainnet","chain":"MIND","icon":"mindchain","rpc":["https://rpc-msc.mindchain.info/","https://seednode.mindchain.info","https://archive.mindchain.info/","https://mind-smart-chain.rpc.thirdweb.com","wss://archive.mindchain.info/ws","wss://seednode.mindchain.info/ws"],"faucets":[],"nativeCurrency":{"name":"MIND Coin","symbol":"MIND","decimals":18},"infoURL":"https://mindchain.info","shortName":"MIND","chainId":9996,"networkId":9996,"explorers":[{"name":"Mind Chain explorer","url":"https://mainnet.mindscan.info","standard":"EIP3091"}]},{"name":"AltLayer Testnet","chain":"ETH","rpc":["https://testnet-rollup-api.altlayer.io"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://altlayer.io","shortName":"alt-testnet","chainId":9997,"networkId":9997,"slip44":1,"icon":"altlayer","explorers":[{"name":"blockscout","url":"https://testnet-rollup-explorer.altlayer.io","icon":"blockscout","standard":"EIP3091"}]},{"name":"Ztc Mainnet","chain":"ZTC","rpc":["https://zitcoin.us"],"faucets":[],"nativeCurrency":{"name":"Ztcer","symbol":"ZTC","decimals":5},"infoURL":"https://ztc.best","shortName":"ZTC","chainId":9998,"networkId":9998},{"name":"myOwn Testnet","chain":"myOwn","rpc":["https://geth.dev.bccloud.net"],"faucets":[],"nativeCurrency":{"name":"MYN","symbol":"MYN","decimals":18},"infoURL":"https://docs.bccloud.net/","shortName":"myn","chainId":9999,"networkId":9999,"slip44":1},{"name":"Smart Bitcoin Cash","chain":"smartBCH","rpc":["https://smartbch.greyh.at","https://rpc-mainnet.smartbch.org","https://smartbch.fountainhead.cash/mainnet","https://smartbch.devops.cash/mainnet"],"faucets":[],"nativeCurrency":{"name":"Bitcoin Cash","symbol":"BCH","decimals":18},"infoURL":"https://smartbch.org/","shortName":"smartbch","chainId":10000,"networkId":10000},{"name":"Smart Bitcoin Cash Testnet","chain":"smartBCHTest","rpc":["https://rpc-testnet.smartbch.org","https://smartbch.devops.cash/testnet"],"faucets":[],"nativeCurrency":{"name":"Bitcoin Cash Test Token","symbol":"BCHT","decimals":18},"infoURL":"http://smartbch.org/","shortName":"smartbchtest","chainId":10001,"networkId":10001,"slip44":1},{"name":"Gon Chain","chain":"GonChain","icon":"gonchain","rpc":["https://node1.testnet.gaiaopen.network","https://node1.mainnet.gon.network","https://node2.mainnet.gon.network","https://node3.mainnet.gon.network","https://node4.mainnet.gon.network"],"faucets":[],"nativeCurrency":{"name":"Gon Token","symbol":"GT","decimals":18},"infoURL":"","shortName":"gon","chainId":10024,"networkId":10024,"explorers":[{"name":"Gon Explorer","url":"https://gonscan.com","standard":"none"}]},{"name":"Japan Open Chain Testnet","chain":"JOCT","rpc":["https://rpc-1.testnet.japanopenchain.org:8545","https://rpc-2.testnet.japanopenchain.org:8545"],"faucets":[],"nativeCurrency":{"name":"Japan Open Chain Testnet Token","symbol":"JOCT","decimals":18},"infoURL":"https://www.japanopenchain.org/","shortName":"joct","chainId":10081,"networkId":10081,"slip44":1,"explorers":[{"name":"Testnet Block Explorer","url":"https://explorer.testnet.japanopenchain.org","standard":"EIP3091"}]},{"name":"SJATSH","chain":"ETH","rpc":["http://geth.free.idcfengye.com"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://sjis.me","shortName":"SJ","chainId":10086,"networkId":10086},{"name":"Blockchain Genesis Mainnet","chain":"GEN","rpc":["https://eu.mainnet.xixoio.com","https://us.mainnet.xixoio.com","https://asia.mainnet.xixoio.com"],"faucets":[],"nativeCurrency":{"name":"GEN","symbol":"GEN","decimals":18},"infoURL":"https://www.xixoio.com/","shortName":"GEN","chainId":10101,"networkId":10101},{"name":"Gnosis Chiado Testnet","chain":"GNO","icon":"gnosis","rpc":["https://rpc.chiadochain.net","https://rpc.chiado.gnosis.gateway.fm","wss://rpc.chiadochain.net/wss","https://gnosis-chiado-rpc.publicnode.com","wss://gnosis-chiado-rpc.publicnode.com","https://gnosis-chiado.drpc.org","wss://gnosis-chiado.drpc.org"],"faucets":["https://gnosisfaucet.com"],"nativeCurrency":{"name":"Chiado xDAI","symbol":"XDAI","decimals":18},"infoURL":"https://docs.gnosischain.com","shortName":"chi","chainId":10200,"networkId":10200,"slip44":1,"explorers":[{"name":"blockscout-chiadochain","url":"https://blockscout.chiadochain.net","icon":"blockscout","standard":"EIP3091"},{"name":"blockscout","url":"https://gnosis-chiado.blockscout.com","icon":"blockscout","standard":"EIP3091"}]},{"name":"MaxxChain Mainnet","chain":"MaxxChain","rpc":["https://rpc.maxxchain.org","https://rpc1.maxxchain.org","https://rpc2.maxxchain.org"],"faucets":["https://faucet.maxxchain.org"],"nativeCurrency":{"name":"Power","symbol":"PWR","decimals":18},"icon":"pwr","infoURL":"https://www.maxxchain.org/","shortName":"PWR","chainId":10201,"networkId":10201,"explorers":[{"name":"MaxxChain Block Explorer","url":"https://explorer.maxxchain.org","standard":"EIP3091"}]},{"name":"Arthera Mainnet","chain":"AA","icon":"arthera","rpc":["https://rpc.arthera.net"],"faucets":[],"nativeCurrency":{"name":"Arthera","symbol":"AA","decimals":18},"infoURL":"https://docs.arthera.net/build/developing-sc/using-hardhat","shortName":"aa","chainId":10242,"networkId":10242,"slip44":10242,"explorers":[{"name":"blockscout","url":"https://explorer.arthera.net","icon":"blockscout","standard":"EIP3091"}]},{"name":"Arthera Testnet","chain":"AA","icon":"arthera","rpc":["https://rpc-test.arthera.net"],"faucets":["https://faucet.arthera.net"],"nativeCurrency":{"name":"Arthera","symbol":"AA","decimals":18},"infoURL":"https://docs.arthera.net","shortName":"aat","chainId":10243,"networkId":10243,"slip44":1,"explorers":[{"name":"blockscout","url":"https://explorer-test.arthera.net","icon":"blockscout","standard":"EIP3091"}]},{"name":"0XTade","chain":"0XTade Chain","rpc":["https://node.0xtchain.com"],"faucets":[],"nativeCurrency":{"name":"0XT","symbol":"0XT","decimals":18},"infoURL":"https://www.0xtrade.finance/","shortName":"0xt","chainId":10248,"networkId":10248,"explorers":[{"name":"0xtrade Scan","url":"https://www.0xtscan.com","standard":"none"}]},{"name":"Worldland Testnet","chain":"Worldland","icon":"worldland","rpc":["https://gwangju.worldland.foundation"],"faucets":[],"nativeCurrency":{"name":"Worldland","symbol":"WLC","decimals":18},"infoURL":"https://worldland.foundation","shortName":"TWLC","chainId":10395,"networkId":10395,"slip44":1,"explorers":[{"name":"Worldland Explorer","url":"https://testscan.worldland.foundation","standard":"EIP3091"}]},{"name":"Numbers Mainnet","chain":"NUM","icon":"num","rpc":["https://mainnetrpc.num.network"],"faucets":[],"nativeCurrency":{"name":"NUM Token","symbol":"NUM","decimals":18},"infoURL":"https://numbersprotocol.io","shortName":"Jade","chainId":10507,"networkId":10507,"explorers":[{"name":"ethernal","url":"https://mainnet.num.network","standard":"EIP3091"}]},{"name":"Numbers Testnet","chain":"NUM","icon":"num","rpc":["https://testnetrpc.num.network"],"faucets":["https://faucet.avax.network/?subnet=num","https://faucet.num.network"],"nativeCurrency":{"name":"NUM Token","symbol":"NUM","decimals":18},"infoURL":"https://numbersprotocol.io","shortName":"Snow","chainId":10508,"networkId":10508,"slip44":1,"explorers":[{"name":"ethernal","url":"https://testnet.num.network","standard":"EIP3091"}]},{"name":"CryptoCoinPay","chain":"CCP","rpc":["http://node106.cryptocoinpay.info:8545","ws://node106.cryptocoinpay.info:8546"],"faucets":[],"icon":"ccp","nativeCurrency":{"name":"CryptoCoinPay","symbol":"CCP","decimals":18},"infoURL":"https://www.cryptocoinpay.co","shortName":"CCP","chainId":10823,"networkId":10823,"explorers":[{"name":"CCP Explorer","url":"https://cryptocoinpay.info","standard":"EIP3091"}]},{"name":"Quadrans Blockchain","chain":"QDC","icon":"quadrans","rpc":["https://rpc.quadrans.io","https://rpcna.quadrans.io","https://rpceu.quadrans.io"],"faucets":[],"nativeCurrency":{"name":"Quadrans Coin","symbol":"QDC","decimals":18},"infoURL":"https://quadrans.io","shortName":"quadrans","chainId":10946,"networkId":10946,"explorers":[{"name":"explorer","url":"https://explorer.quadrans.io","icon":"quadrans","standard":"EIP3091"}]},{"name":"Quadrans Blockchain Testnet","chain":"tQDC","icon":"quadrans","rpc":["https://rpctest.quadrans.io","https://rpctest2.quadrans.io"],"faucets":["https://faucetpage.quadrans.io"],"nativeCurrency":{"name":"Quadrans Testnet Coin","symbol":"tQDC","decimals":18},"infoURL":"https://quadrans.io","shortName":"quadranstestnet","chainId":10947,"networkId":10947,"slip44":1,"explorers":[{"name":"explorer","url":"https://explorer.testnet.quadrans.io","icon":"quadrans","standard":"EIP3091"}]},{"name":"Astra","chain":"Astra","rpc":["https://rpc.astranaut.io","https://rpc1.astranaut.io"],"faucets":[],"nativeCurrency":{"name":"Astra","symbol":"ASA","decimals":18},"infoURL":"https://astranaut.io","shortName":"astra","chainId":11110,"networkId":11110,"icon":"astra","explorers":[{"name":"Astra EVM Explorer (Blockscout)","url":"https://explorer.astranaut.io","standard":"none","icon":"astra"},{"name":"Astra PingPub Explorer","url":"https://ping.astranaut.io/astra","standard":"none","icon":"astra"}]},{"name":"WAGMI","chain":"WAGMI","icon":"wagmi","rpc":["https://subnets.avax.network/wagmi/wagmi-chain-testnet/rpc"],"faucets":["https://faucet.avax.network/?subnet=wagmi"],"nativeCurrency":{"name":"WAGMI","symbol":"WGM","decimals":18},"infoURL":"https://subnets-test.avax.network/wagmi/details","shortName":"WAGMI","chainId":11111,"networkId":11111,"explorers":[{"name":"Avalanche Subnet Explorer","url":"https://subnets-test.avax.network/wagmi","standard":"EIP3091"}]},{"name":"Astra Testnet","chain":"Astra","rpc":["https://rpc.astranaut.dev"],"faucets":["https://faucet.astranaut.dev"],"nativeCurrency":{"name":"test-Astra","symbol":"tASA","decimals":18},"infoURL":"https://astranaut.io","shortName":"astra-testnet","chainId":11115,"networkId":11115,"slip44":1,"icon":"astra","explorers":[{"name":"Astra EVM Explorer","url":"https://explorer.astranaut.dev","standard":"EIP3091","icon":"astra"},{"name":"Astra PingPub Explorer","url":"https://ping.astranaut.dev/astra","standard":"none","icon":"astra"}]},{"name":"HashBit Mainnet","chain":"HBIT","rpc":["https://mainnet-rpc.hashbit.org","https://rpc.hashbit.org"],"faucets":[],"nativeCurrency":{"name":"HashBit Native Token","symbol":"HBIT","decimals":18},"infoURL":"https://hashbit.org","shortName":"hbit","chainId":11119,"networkId":11119,"explorers":[{"name":"hashbitscan","url":"https://explorer.hashbit.org","standard":"EIP3091"}]},{"name":"Shine Chain","chain":"SC20","rpc":["https://rpc.shinescan.io"],"faucets":[],"nativeCurrency":{"name":"Shine","symbol":"SC20","decimals":18},"infoURL":"https://shinechain.tech","shortName":"SC20","chainId":11221,"networkId":11221,"icon":"shine","explorers":[{"name":"shinescan","url":"https://shinescan.io","icon":"shine","standard":"none"}]},{"name":"Haqq Network","chain":"Haqq","rpc":["https://rpc.eth.haqq.network","https://haqq-evm-rpc.publicnode.com","wss://haqq-evm-rpc.publicnode.com","https://haqq.drpc.org","wss://haqq.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Islamic Coin","symbol":"ISLM","decimals":18},"infoURL":"https://islamiccoin.net","shortName":"ISLM","chainId":11235,"networkId":11235,"explorers":[{"name":"Mainnet HAQQ Explorer","url":"https://explorer.haqq.network","standard":"EIP3091"}]},{"name":"Shyft Testnet","chain":"SHYFTT","icon":"shyft","rpc":[],"faucets":[],"nativeCurrency":{"name":"Shyft Test Token","symbol":"SHYFTT","decimals":18},"infoURL":"https://shyft.network","shortName":"shyftt","chainId":11437,"networkId":11437,"slip44":1,"explorers":[{"name":"Shyft Testnet BX","url":"https://bx.testnet.shyft.network","standard":"EIP3091"}]},{"name":"BEVM Mainnet","chain":"BEVM","rpc":["https://rpc-mainnet-1.bevm.io/","https://rpc-mainnet-2.bevm.io/"],"faucets":[],"nativeCurrency":{"name":"BTC","symbol":"BTC","decimals":18},"infoURL":"https://bevm.io","shortName":"bevm","chainId":11501,"networkId":11501,"icon":"bevm","explorers":[{"name":"bevm mainnet scan","url":"https://scan-mainnet.bevm.io","standard":"none"}]},{"name":"BEVM Testnet","chain":"BEVM","rpc":["https://testnet.bevm.io/"],"faucets":[],"nativeCurrency":{"name":"BTC","symbol":"BTC","decimals":18},"infoURL":"https://bevm.io","shortName":"bevm-test","chainId":11503,"networkId":11503,"icon":"bevm","explorers":[{"name":"bevm testnet scan","url":"https://scan-testnet.bevm.io","standard":"none"}]},{"name":"Sardis Testnet","chain":"SRDX","icon":"sardisTestnet","rpc":["https://testnet-rpc.sardisnetwork.com"],"faucets":["https://faucet.sardisnetwork.com"],"nativeCurrency":{"name":"Sardis","symbol":"SRDX","decimals":18},"infoURL":"https://mysardis.com","shortName":"SRDXt","chainId":11612,"networkId":11612,"slip44":1,"explorers":[{"name":"Sardis","url":"https://testnet.sardisnetwork.com","standard":"EIP3091"}]},{"name":"Santiment Intelligence Network","chain":"Santiment Intelligence Network","rpc":["https://sanrchain-node.santiment.net"],"faucets":[],"nativeCurrency":{"name":"SANR","symbol":"SANR","decimals":18},"infoURL":"https://sanr.app","shortName":"SAN","chainId":11888,"networkId":11888,"icon":"sanrchain","parent":{"chain":"eip155-1","type":"L2","bridges":[{"url":"https://sanr.app"}]},"explorers":[{"name":"Santiment Intelligence Explorer","url":"https://app-explorer-pos.sanr.app","standard":"none"}]},{"name":"Polygon Supernet Arianee","chain":"Arianee","rpc":["https://rpc.polygonsupernet.public.arianee.net"],"faucets":[],"nativeCurrency":{"name":"Arianee","symbol":"ARIA20","decimals":18},"infoURL":"https://arianee.org","shortName":"Arianee","chainId":11891,"networkId":11891,"explorers":[{"name":"Polygon Supernet Arianee Explorer","url":"https://polygonsupernet.explorer.arianee.net","standard":"EIP3091"}],"parent":{"chain":"eip155-1","type":"L2"}},{"name":"SatoshiChain Mainnet","chain":"SATS","icon":"satoshichain","rpc":["https://mainnet-rpc.satoshichain.io"],"faucets":[],"nativeCurrency":{"name":"SatoshiChain Coin","symbol":"SATS","decimals":18},"infoURL":"https://satoshichain.net","shortName":"sats","chainId":12009,"networkId":12009,"explorers":[{"name":"SatoshiChain Explorer","url":"https://satoshiscan.io","standard":"EIP3091"}]},{"name":"Aternos","chain":"Aternos","icon":"aternos","rpc":["https://rpc.aternoschain.com"],"faucets":["https://faucet.aternoschain.com"],"nativeCurrency":{"name":"Aternos","symbol":"ATR","decimals":18},"infoURL":"https://aternoschain.com","shortName":"ATR","chainId":12020,"networkId":12020,"explorers":[{"name":"blockscout","url":"https://explorer.aternoschain.com","icon":"blockscout","standard":"EIP3091"}]},{"name":"Singularity ZERO Testnet","chain":"ZERO","rpc":["https://betaenv.singularity.gold:18545"],"faucets":["https://nft.singularity.gold"],"nativeCurrency":{"name":"ZERO","symbol":"tZERO","decimals":18},"infoURL":"https://www.singularity.gold","shortName":"tZERO","chainId":12051,"networkId":12051,"slip44":1,"explorers":[{"name":"zeroscan","url":"https://betaenv.singularity.gold:18002","standard":"EIP3091"}]},{"name":"Singularity ZERO Mainnet","chain":"ZERO","rpc":["https://zerorpc.singularity.gold"],"faucets":["https://zeroscan.singularity.gold"],"nativeCurrency":{"name":"ZERO","symbol":"ZERO","decimals":18},"infoURL":"https://www.singularity.gold","shortName":"ZERO","chainId":12052,"networkId":12052,"slip44":621,"explorers":[{"name":"zeroscan","url":"https://zeroscan.singularity.gold","standard":"EIP3091"}]},{"name":"BRC Chain Mainnet","chain":"BRC","rpc":["https://rpc.brcchain.io"],"faucets":["https://faucet.brcchain.io"],"nativeCurrency":{"name":"BRC Chain mainnet native token","symbol":"BRC","decimals":18},"infoURL":"https://bridge.brcchain.io","shortName":"BRC","chainId":12123,"networkId":12123,"icon":"brcchain","explorers":[{"name":"BRC Chain Explorer","url":"https://scan.brcchain.io","standard":"EIP3091"}]},{"name":"Fibonacci Mainnet","chain":"FIBO","icon":"fibonacci","rpc":["https://node1.fibo-api.asia","https://node2.fibo-api.asia","https://node3.fibo-api.asia","https://node4.fibo-api.asia","https://node5.fibo-api.asia","https://node6.fibo-api.asia","https://node7.fibo-api.asia","https://node1.fibo-rpc.asia","https://node2.fibo-rpc.asia","https://node3.fibo-rpc.asia","https://node4.fibo-rpc.asia","https://node5.fibo-rpc.asia","https://node6.fibo-rpc.asia","https://node7.fibo-rpc.asia"],"faucets":["https://test.fibochain.org/faucets"],"nativeCurrency":{"name":"FIBONACCI UTILITY TOKEN","symbol":"FIBO","decimals":18},"infoURL":"https://fibochain.org","shortName":"fibo","chainId":12306,"networkId":1230,"explorers":[{"name":"fiboscan","url":"https://scan.fibochain.org","standard":"EIP3091"}]},{"name":"BLG Testnet","chain":"BLG","icon":"blg","rpc":["https://rpc.blgchain.com"],"faucets":["https://faucet.blgchain.com"],"nativeCurrency":{"name":"Blg","symbol":"BLG","decimals":18},"infoURL":"https://blgchain.com","shortName":"blgchain","chainId":12321,"networkId":12321,"slip44":1},{"name":"Step Testnet","title":"Step Test Network","chain":"STEP","icon":"step","rpc":["https://rpc.testnet.step.network"],"faucets":["https://faucet.step.network"],"nativeCurrency":{"name":"FITFI","symbol":"FITFI","decimals":18},"infoURL":"https://step.network","shortName":"steptest","chainId":12345,"networkId":12345,"slip44":1,"explorers":[{"name":"StepScan","url":"https://testnet.stepscan.io","icon":"step","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-43113"}},{"name":"RSS3 VSL Mainnet","chain":"RSS3","rpc":["https://rpc.rss3.io"],"faucets":[],"nativeCurrency":{"name":"RSS3","symbol":"RSS3","decimals":18},"infoURL":"https://rss3.io","shortName":"rss3","chainId":12553,"networkId":12553,"icon":"rss3","explorers":[{"name":"RSS3 VSL Scan","url":"https://scan.rss3.io","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://explorer.rss3.io/bridge"}]}},{"name":"Rikeza Network Testnet","title":"Rikeza Network Testnet","chain":"Rikeza","icon":"rikeza","rpc":["https://testnet-rpc.rikscan.com"],"faucets":[],"nativeCurrency":{"name":"Rikeza","symbol":"RIK","decimals":18},"infoURL":"https://rikeza.io","shortName":"tRIK","chainId":12715,"networkId":12715,"slip44":1,"explorers":[{"name":"Rikeza Blockchain explorer","url":"https://testnet.rikscan.com","standard":"EIP3091"}]},{"name":"Quantum Chain Testnet","chain":"tQNET","icon":"qnet","rpc":["https://testnet-rpc.quantumscan.org"],"faucets":[],"nativeCurrency":{"name":"Quantum Chain","symbol":"tQNET","decimals":18},"infoURL":"https://quantumnetwork.gg","shortName":"tqnet","chainId":12890,"networkId":12890,"slip44":1,"explorers":[{"name":"Quantum Scan Testnet","url":"https://testnet.quantumscan.org","standard":"EIP3091"}]},{"name":"SPS","chain":"SPS","rpc":["https://rpc.ssquad.games"],"faucets":[],"nativeCurrency":{"name":"ECG","symbol":"ECG","decimals":18},"infoURL":"https://ssquad.games/","shortName":"SPS","chainId":13000,"networkId":13000,"explorers":[{"name":"SPS Explorer","url":"http://spsscan.ssquad.games","standard":"EIP3091"}]},{"name":"Credit Smart Chain","chain":"CREDIT","rpc":["https://rpc.creditsmartchain.com"],"faucets":[],"nativeCurrency":{"name":"Credit","symbol":"CREDIT","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://creditsmartchain.com","shortName":"Credit","chainId":13308,"networkId":13308,"icon":"credit","explorers":[{"name":"Creditscan","url":"https://scan.creditsmartchain.com","icon":"credit","standard":"EIP3091"}]},{"name":"Beam Testnet","chain":"BEAM","rpc":["https://build.onbeam.com/rpc/testnet","wss://build.onbeam.com/ws/testnet","https://subnets.avax.network/beam/testnet/rpc","wss://subnets.avax.network/beam/testnet/ws"],"features":[{"name":"EIP1559"}],"faucets":["https://faucet.avax.network/?subnet=beam","https://faucet.onbeam.com"],"nativeCurrency":{"name":"Beam","symbol":"BEAM","decimals":18},"infoURL":"https://www.onbeam.com","shortName":"beam-testnet","icon":"beam","chainId":13337,"networkId":13337,"slip44":1,"explorers":[{"name":"Beam Explorer","url":"https://subnets-test.avax.network/beam","standard":"EIP3091"}]},{"name":"Immutable zkEVM","chain":"Immutable zkEVM","rpc":["https://rpc.immutable.com","https://immutable-zkevm.drpc.org","wss://immutable-zkevm.drpc.org"],"faucets":["https://docs.immutable.com/docs/zkEVM/guides/faucet"],"nativeCurrency":{"name":"IMX","symbol":"IMX","decimals":18},"infoURL":"https://www.immutable.com","shortName":"imx","chainId":13371,"networkId":13371,"icon":"immutable","explorers":[{"name":"Immutable explorer","url":"https://explorer.immutable.com","standard":"EIP3091","icon":"immutable"}]},{"name":"Phoenix Mainnet","chain":"Phoenix","rpc":["https://rpc.phoenixplorer.com/"],"faucets":[],"nativeCurrency":{"name":"Phoenix","symbol":"PHX","decimals":18},"infoURL":"https://cryptophoenix.org/phoenix","shortName":"Phoenix","chainId":13381,"networkId":13381,"icon":"phoenix","explorers":[{"name":"phoenixplorer","url":"https://phoenixplorer.com","standard":"EIP3091"}]},{"name":"Masa","chain":"MASA","icon":"masa","rpc":["https://subnets.avax.network/masanetwork/mainnet/rpc"],"features":[{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Masa Token","symbol":"MASA","decimals":18},"infoURL":"https://masa.finance","shortName":"masa","chainId":13396,"networkId":13396,"explorers":[{"name":"Masa Explorer","url":"https://subnets.avax.network/masa","standard":"EIP3091"}]},{"name":"Immutable zkEVM Testnet","chain":"Immutable zkEVM","rpc":["https://rpc.testnet.immutable.com","https://immutable-zkevm-testnet.drpc.org","wss://immutable-zkevm-testnet.drpc.org"],"faucets":["https://docs.immutable.com/docs/zkEVM/guides/faucet"],"nativeCurrency":{"name":"Test IMX","symbol":"tIMX","decimals":18},"infoURL":"https://www.immutable.com","shortName":"imx-testnet","chainId":13473,"networkId":13473,"slip44":1,"icon":"immutable","explorers":[{"name":"Immutable Testnet explorer","url":"https://explorer.testnet.immutable.com","standard":"EIP3091","icon":"immutable"}]},{"name":"Kronobit Mainnet","title":"Kronobit Mainnet","chain":"KNB","rpc":["https://mainnet-rpc.qbitscan.com"],"faucets":[],"nativeCurrency":{"name":"Kronobit","symbol":"KNB","decimals":18},"infoURL":"https://kronobit.org","shortName":"KNB","chainId":13600,"networkId":13600,"icon":"kronobit","explorers":[{"name":"qbitscan","url":"https://explorer.qbitscan.com","icon":"kronobit","standard":"EIP3091"}]},{"name":"Susono","chain":"SUS","rpc":["https://gateway.opn.network/node/ext/bc/2VsZe5DstWw2bfgdx3YbjKcMsJnNDjni95sZorBEdk9L9Qr9Fr/rpc"],"faucets":[],"nativeCurrency":{"name":"Susono","symbol":"OPN","decimals":18},"infoURL":"","shortName":"sus","chainId":13812,"networkId":13812,"explorers":[{"name":"Susono","url":"http://explorer.opn.network","standard":"none"}]},{"name":"SPS Testnet","chain":"SPS-Testnet","rpc":["https://www.3sps.net"],"faucets":[],"nativeCurrency":{"name":"ECG","symbol":"ECG","decimals":18},"infoURL":"https://ssquad.games/","shortName":"SPS-Test","chainId":14000,"networkId":14000,"slip44":1,"explorers":[{"name":"SPS Test Explorer","url":"https://explorer.3sps.net","standard":"EIP3091"}]},{"name":"EVOLVE Testnet","chain":"EVO","icon":"evolveIcon","rpc":["https://testnet-rpc.evolveblockchain.io"],"faucets":["https://faucet.evolveblockchain.io"],"nativeCurrency":{"name":"Evolve","symbol":"EVO","decimals":18},"infoURL":"https://evolveblockchain.io","shortName":"evo","chainId":14324,"networkId":14324,"explorers":[{"name":"Evolve Testnet Explorer","url":"https://testnet.evolveblockchain.io","standard":"EIP3091"}]},{"name":"Vitruveo Testnet","title":"Vitruveo is a blockchain for Creators","chain":"Vitruveo","rpc":["https://test-rpc.vitruveo.xyz"],"faucets":["https://faucet.vitruveo.xyz"],"nativeCurrency":{"name":"Vitruveo Test Coin","symbol":"tVTRU","decimals":18},"features":[{"name":"EIP155"}],"infoURL":"https://www.vitruveo.xyz","shortName":"vitruveo-test","chainId":14333,"networkId":14333,"icon":"vitruveo","explorers":[{"name":"Vitruveo Testnet Explorer","url":"https://test-explorer.vitruveo.xyz","icon":"vitruveo","standard":"EIP3091"}]},{"name":"Humanode Testnet 5 Israfel","chain":"Humanode Testnet 5","rpc":["https://explorer-rpc-http.testnet5.stages.humanode.io"],"faucets":["https://t.me/HumanodeTestnet5FaucetBot"],"nativeCurrency":{"name":"eHMND","symbol":"eHMND","decimals":18},"infoURL":"https://humanode.io","shortName":"hmnd-t5","chainId":14853,"networkId":14853,"slip44":1,"icon":"humanode","explorers":[]},{"name":"Immutable zkEVM Devnet","chain":"Immutable zkEVM","rpc":["https://rpc.dev.immutable.com"],"faucets":["https://docs.immutable.com/docs/zkEVM/guides/faucet"],"nativeCurrency":{"name":"Dev IMX","symbol":"dIMX","decimals":18},"infoURL":"https://www.immutable.com","shortName":"imx-devnet","chainId":15003,"networkId":15003,"icon":"immutable","explorers":[{"name":"Immutable Devnet explorer","url":"https://explorer.dev.immutable.com","standard":"EIP3091","icon":"immutable"}]},{"name":"LoopNetwork Mainnet","chain":"LoopNetwork","rpc":["https://api.mainnetloop.com"],"faucets":[],"nativeCurrency":{"name":"LOOP","symbol":"LOOP","decimals":18},"infoURL":"http://theloopnetwork.org/","shortName":"loop","chainId":15551,"networkId":15551,"explorers":[{"name":"loopscan","url":"http://explorer.mainnetloop.com","standard":"none"}]},{"name":"Trust EVM Testnet","chain":"Trust EVM Testnet","rpc":["https://api.testnet-dev.trust.one"],"faucets":["https://faucet.testnet-dev.trust.one/"],"nativeCurrency":{"name":"Trust EVM","symbol":"EVM","decimals":18},"infoURL":"https://www.trust.one/","shortName":"TrustTestnet","chainId":15555,"networkId":15555,"slip44":1,"explorers":[{"name":"Trust EVM Explorer","url":"https://trustscan.one","standard":"EIP3091"}]},{"name":"EOS EVM Network Testnet","chain":"EOS","icon":"eos","rpc":["https://api.testnet.evm.eosnetwork.com"],"faucets":[],"nativeCurrency":{"name":"EOS","symbol":"EOS","decimals":18},"infoURL":"https://eosnetwork.com/eos-evm","shortName":"eos-testnet","chainId":15557,"networkId":15557,"slip44":1,"explorers":[{"name":"EOS EVM Explorer","url":"https://explorer.testnet.evm.eosnetwork.com","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://bridge.testnet.evm.eosnetwork.com"}]}},{"name":"MetaDot Mainnet","chain":"MTT","rpc":["https://mainnet.metadot.network"],"faucets":[],"nativeCurrency":{"name":"MetaDot Token","symbol":"MTT","decimals":18},"infoURL":"https://metadot.network","shortName":"mtt","chainId":16000,"networkId":16000},{"name":"MetaDot Testnet","chain":"MTTTest","rpc":["https://testnet.metadot.network"],"faucets":["https://faucet.metadot.network/"],"nativeCurrency":{"name":"MetaDot Token TestNet","symbol":"MTTest","decimals":18},"infoURL":"https://metadot.network","shortName":"mtttest","chainId":16001,"networkId":16001,"slip44":1},{"name":"Genesys Mainnet","chain":"Genesys","icon":"genesys","rpc":["https://rpc.genesys.network"],"faucets":[],"nativeCurrency":{"name":"Genesys","symbol":"GSYS","decimals":18},"infoURL":"https://www.genesys.network/","shortName":"Genesys","chainId":16507,"networkId":16507,"explorers":[{"name":"GchainExplorer","url":"https://gchainexplorer.genesys.network","standard":"EIP3091"}]},{"name":"IRIShub Testnet","chain":"IRIShub","rpc":["https://evmrpc.nyancat.irisnet.org"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Eris","symbol":"ERIS","decimals":18},"infoURL":"https://www.irisnet.org","shortName":"nyancat","chainId":16688,"networkId":16688,"slip44":1,"icon":"nyancat","explorers":[{"name":"IRISHub Testnet Cosmos Explorer (IOBScan)","url":"https://nyancat.iobscan.io","standard":"none","icon":"nyancat"}]},{"name":"AirDAO Mainnet","chain":"ambnet","icon":"airdao","rpc":["https://network.ambrosus.io"],"faucets":[],"nativeCurrency":{"name":"Amber","symbol":"AMB","decimals":18},"infoURL":"https://airdao.io","shortName":"airdao","chainId":16718,"networkId":16718,"explorers":[{"name":"AirDAO Network Explorer","url":"https://airdao.io/explorer","standard":"none"}]},{"name":"IVAR Chain Testnet","chain":"IVAR","icon":"ivar","rpc":["https://testnet-rpc.ivarex.com"],"faucets":["https://tfaucet.ivarex.com/"],"nativeCurrency":{"name":"tIvar","symbol":"tIVAR","decimals":18},"infoURL":"https://ivarex.com","shortName":"tivar","chainId":16888,"networkId":16888,"slip44":1,"explorers":[{"name":"ivarscan","url":"https://testnet.ivarscan.com","standard":"EIP3091"}]},{"name":"Holesky","title":"Ethereum Testnet Holesky","chain":"ETH","rpc":["https://rpc.holesky.ethpandaops.io","https://ethereum-holesky-rpc.publicnode.com","wss://ethereum-holesky-rpc.publicnode.com","https://holesky.drpc.org","wss://holesky.drpc.org"],"faucets":["https://faucet.holesky.ethpandaops.io","https://holesky-faucet.pk910.de"],"nativeCurrency":{"name":"Testnet ETH","symbol":"ETH","decimals":18},"infoURL":"https://holesky.ethpandaops.io","shortName":"holesky","chainId":17000,"networkId":17000,"slip44":1,"icon":"ethereum","status":"incubating","explorers":[{"name":"Holesky Explorer","url":"https://holesky.beaconcha.in","icon":"ethereum","standard":"EIP3091"},{"name":"otterscan-holesky","url":"https://holesky.otterscan.io","icon":"ethereum","standard":"EIP3091"},{"name":"Holesky Etherscan","url":"https://holesky.etherscan.io","icon":"ethereum","standard":"EIP3091"}]},{"name":"Redstone Holesky Testnet","chain":"ETH","rpc":["https://rpc.holesky.redstone.xyz"],"faucets":[],"nativeCurrency":{"name":"Redstone Testnet Ether","symbol":"ETH","decimals":18},"infoURL":"https://redstone.xyz/docs/network-info","shortName":"redstone","chainId":17001,"networkId":17001,"slip44":1,"icon":"redstone","explorers":[{"name":"Redstone Holesky Explorer","url":"https://explorer.holesky.redstone.xyz","icon":"ethereum","standard":"EIP3091"}]},{"name":"G8Chain Mainnet","chain":"G8C","icon":"G8Chain","rpc":["https://mainnet-rpc.oneg8.network"],"faucets":["https://faucet.oneg8.network"],"nativeCurrency":{"name":"G8Chain","symbol":"G8C","decimals":18},"infoURL":"https://oneg8.one","shortName":"G8Cm","chainId":17171,"networkId":17171,"explorers":[{"name":"G8Chain","url":"https://mainnet.oneg8.network","standard":"EIP3091"}]},{"name":"Eclipse Subnet","chain":"ECLIPSE","rpc":["https://subnets.avax.network/eclipse/testnet/rpc"],"features":[{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Eclipse","symbol":"ECLP","decimals":16},"infoURL":"http://eclipsenet.io","shortName":"eclipse","chainId":17172,"networkId":17172,"explorers":[{"name":"ECLIPSE Explorer","url":"https://subnets-test.avax.network/eclipse","standard":"EIP3091"}]},{"name":"Palette Chain Testnet","chain":"PLT","rpc":["https://palette-opennet.com:22000"],"faucets":[],"nativeCurrency":{"name":"Palette Token","symbol":"PLT","decimals":18},"features":[],"infoURL":"https://hashpalette.com/","shortName":"PCT","chainId":17180,"networkId":17180,"slip44":1,"icon":"PLT","explorers":[{"name":"Palettescan","url":"https://testnet.palettescan.com","icon":"PLT","standard":"none"}]},{"name":"KONET Mainnet","chain":"KONET","rpc":["https://api.kon-wallet.com"],"faucets":[],"nativeCurrency":{"name":"KONET","symbol":"KONET","decimals":18},"infoURL":"https://konetmain.com","shortName":"KONET","chainId":17217,"networkId":17217,"slip44":1,"icon":"konet","explorers":[{"name":"konet-explorer","url":"https://explorer.kon-wallet.com","standard":"EIP3091"}]},{"name":"EOS EVM Network","chain":"EOS","icon":"eos","rpc":["https://api.evm.eosnetwork.com"],"faucets":[],"nativeCurrency":{"name":"EOS","symbol":"EOS","decimals":18},"infoURL":"https://eosnetwork.com/eos-evm","shortName":"eos","chainId":17777,"networkId":17777,"explorers":[{"name":"EOS EVM Explorer","url":"https://explorer.evm.eosnetwork.com","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://bridge.evm.eosnetwork.com"},{"url":"https://app.multichain.org"}]}},{"name":"Frontier of Dreams Testnet","chain":"Game Network","rpc":["https://rpc.fod.games/"],"nativeCurrency":{"name":"ZKST","symbol":"ZKST","decimals":18},"faucets":[],"shortName":"ZKST","chainId":18000,"networkId":18000,"slip44":1,"infoURL":"https://goexosphere.com","explorers":[{"name":"Game Network","url":"https://explorer.fod.games","standard":"EIP3091"}]},{"name":"Smart Trade Networks","chain":"Smart Trade Networks","rpc":["https://beefledgerwallet.com:8544"],"faucets":[],"nativeCurrency":{"name":"STN","symbol":"STN","decimals":18},"infoURL":"https://www.smarttradenetworks.com","shortName":"STN","chainId":18122,"networkId":18122,"icon":"stn","explorers":[{"name":"stnscan","url":"https://stnscan.com","icon":"stn","standard":"none"}]},{"name":"Proof Of Memes","title":"Proof Of Memes Mainnet","chain":"POM","icon":"pom","rpc":["https://mainnet-rpc.memescan.io","https://mainnet-rpc2.memescan.io","https://mainnet-rpc3.memescan.io","https://mainnet-rpc4.memescan.io"],"faucets":[],"nativeCurrency":{"name":"Proof Of Memes","symbol":"POM","decimals":18},"infoURL":"https://proofofmemes.org","shortName":"pom","chainId":18159,"networkId":18159,"explorers":[{"name":"explorer-proofofmemes","url":"https://memescan.io","standard":"EIP3091"}]},{"name":"G8Chain Testnet","chain":"G8C","icon":"G8Chain","rpc":["https://testnet-rpc.oneg8.network"],"faucets":["https://faucet.oneg8.network"],"nativeCurrency":{"name":"G8Coin","symbol":"G8C","decimals":18},"infoURL":"https://oneg8.one","shortName":"G8Ct","chainId":18181,"networkId":18181,"slip44":1,"explorers":[{"name":"G8Chain","url":"https://testnet.oneg8.network","standard":"EIP3091"}]},{"name":"unreal-old","title":"unreal testnet for re.al","chain":"unreal","rpc":["https://rpc.unreal.gelato.digital","wss://ws.unreal.gelato.digital"],"nativeCurrency":{"name":"unreal Ether","symbol":"ETH","decimals":18},"infoURL":"https://raas.gelato.network/rollups/details/public/unreal","faucets":[],"shortName":"unreal-old","chainId":18231,"networkId":18231,"slip44":60,"icon":"unreal","explorers":[{"name":"blockscout","url":"https://unreal.blockscout.com","icon":"unreal","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111","bridges":[]},"status":"deprecated"},{"name":"unreal","title":"unreal testnet for re.al","chain":"unreal","rpc":["https://rpc.unreal-orbit.gelato.digital","wss://ws.unreal-orbit.gelato.digital"],"nativeCurrency":{"name":"unreal Ether","symbol":"reETH","decimals":18},"infoURL":"https://raas.gelato.network/rollups/details/public/unreal","faucets":[],"shortName":"unreal","chainId":18233,"networkId":18233,"slip44":60,"icon":"unreal","explorers":[{"name":"blockscout","url":"https://unreal.blockscout.com","icon":"unreal","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-17000","bridges":[{"url":"https://bridge.gelato.network/bridge/unreal"}]}},{"name":"MXC zkEVM Moonchain","chain":"MXC zkEVM","icon":"mxczkevm","rpc":["https://rpc.mxc.com"],"faucets":[],"nativeCurrency":{"name":"MXC zkEVM Moonchain","symbol":"MXC","decimals":18},"infoURL":"https://doc.mxc.com/docs/intro","shortName":"MXCzkEVM","chainId":18686,"networkId":18686,"explorers":[{"name":"MXC zkEVM Moonchain","url":"https://explorer.moonchain.com","standard":"EIP3091"}]},{"name":"Titan (TKX)","chain":"Titan (TKX)","rpc":["https://titan-json-rpc.titanlab.io"],"faucets":[],"nativeCurrency":{"name":"Titan tkx","symbol":"TKX","decimals":18},"infoURL":"https://titanlab.io","shortName":"titan_tkx","chainId":18888,"networkId":18888,"slip44":1,"icon":"titan_tkx","explorers":[{"name":"Titan Explorer","url":"https://titan-explorer-light.titanlab.io/Titan","standard":"none","icon":"titan_tkx"}]},{"name":"Titan (TKX) Testnet","chain":"Titan (TKX)","rpc":["https://titan-testnet-json-rpc.titanlab.io","https://titan-testnet-json-rpc-1.titanlab.io","https://titan-testnet-json-rpc-2.titanlab.io"],"faucets":[],"nativeCurrency":{"name":"Titan tkx","symbol":"TKX","decimals":18},"infoURL":"https://titanlab.io","shortName":"titan_tkx-testnet","chainId":18889,"networkId":18889,"slip44":1,"icon":"titan_tkx","explorers":[{"name":"Titan Explorer","url":"https://titan-testnet-explorer-light.titanlab.io/Titan%20Testnet","standard":"none","icon":"titan_tkx"}]},{"name":"HOME Verse Mainnet","chain":"HOME Verse","icon":"home_verse","rpc":["https://rpc.mainnet.oasys.homeverse.games/"],"faucets":[],"nativeCurrency":{"name":"OAS","symbol":"OAS","decimals":18},"infoURL":"https://www.homeverse.games/","shortName":"HMV","chainId":19011,"networkId":19011,"explorers":[{"name":"HOME Verse Explorer","url":"https://explorer.oasys.homeverse.games","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-248"}},{"name":"Decentraconnect Social","chain":"DCSM","icon":"dcsmIcon","rpc":["https://rpc.decentraconnect.io"],"faucets":[],"nativeCurrency":{"name":"Decentraconnect Social","symbol":"DCSM","decimals":18},"infoURL":"https://docs.decentraconnect.io","shortName":"DCSMs","chainId":19224,"networkId":19224,"explorers":[{"name":"Decentraconnect Social","url":"https://decentraconnect.io","standard":"EIP3091"}]},{"name":"Magnet Network","chain":"Magnet","rpc":["https://magnet-rpc.magport.io/"],"faucets":[],"nativeCurrency":{"name":"Magnet Network","symbol":"DOT","decimals":18},"infoURL":"https://magnet.magport.io/","shortName":"mgt","chainId":19527,"networkId":19527,"explorers":[]},{"name":"BTCIX Network","chain":"BTCIX","rpc":["https://seed.btcix.org/rpc"],"faucets":[],"nativeCurrency":{"name":"BTCIX Network","symbol":"BTCIX","decimals":18},"infoURL":"https://bitcolojix.org","shortName":"btcix","chainId":19845,"networkId":19845,"explorers":[{"name":"BTCIXScan","url":"https://btcixscan.com","standard":"none"}]},{"name":"Camelark Mainnet","chainId":20001,"shortName":"Camelark","chain":"ETHW","icon":"camelark","networkId":20001,"nativeCurrency":{"name":"EthereumPoW","symbol":"ETHW","decimals":18},"rpc":["https://mainnet-http-rpc.camelark.com"],"faucets":[],"explorers":[{"name":"CamelarkScan","url":"https://scan.camelark.com","standard":"EIP3091"}],"infoURL":"https://www.camelark.com"},{"name":"Callisto Testnet","chain":"CLO","rpc":["https://testnet-rpc.callisto.network/"],"faucets":["https://faucet.callisto.network/"],"nativeCurrency":{"name":"Callisto","symbol":"CLO","decimals":18},"infoURL":"https://callisto.network","shortName":"CLOTestnet","chainId":20729,"networkId":79,"slip44":1},{"name":"P12 Chain","chain":"P12","icon":"p12","rpc":["https://rpc-chain.p12.games"],"faucets":[],"nativeCurrency":{"name":"Hooked P2","symbol":"hP2","decimals":18},"infoURL":"https://p12.network","features":[{"name":"EIP155"},{"name":"EIP1559"}],"shortName":"p12","chainId":20736,"networkId":20736,"explorers":[{"name":"P12 Chain Explorer","url":"https://explorer.p12.games","standard":"EIP3091"}]},{"name":"Jono11 Subnet","chain":"JONO11","icon":"jono11","rpc":["https://subnets.avax.network/jono11/testnet/rpc"],"features":[{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Jono11 Token","symbol":"JONO","decimals":18},"infoURL":"","shortName":"jono11","chainId":20765,"networkId":20765,"explorers":[{"name":"JONO11 Explorer","url":"https://subnets-test.avax.network/jono11","standard":"EIP3091"}]},{"name":"C4EI","chain":"C4EI","rpc":["https://rpc.c4ei.net"],"faucets":["https://play.google.com/store/apps/details?id=net.c4ei.fps2"],"nativeCurrency":{"name":"C4EI","symbol":"C4EI","decimals":18},"infoURL":"https://c4ei.net","shortName":"c4ei","chainId":21004,"networkId":21004,"explorers":[{"name":"C4EI sirato","url":"https://exp.c4ei.net","icon":"c4ei","standard":"none"}]},{"name":"All About Healthy","chain":"AAH","rpc":["https://rpc.c4ex.net"],"faucets":["https://t.me/c4eiAirdrop"],"nativeCurrency":{"name":"AAH","symbol":"AAH","decimals":18},"infoURL":"https://c4ex.net","shortName":"aah","chainId":21133,"networkId":21133,"explorers":[{"name":"AAH Blockscout","url":"https://exp.c4ex.net","icon":"aah","standard":"EIP3091"}]},{"name":"CENNZnet Azalea","chain":"CENNZnet","rpc":["https://cennznet.unfrastructure.io/public"],"faucets":[],"nativeCurrency":{"name":"CPAY","symbol":"CPAY","decimals":18},"infoURL":"https://cennz.net","shortName":"cennz-a","chainId":21337,"networkId":21337,"icon":"cennz","explorers":[{"name":"UNcover","url":"https://uncoverexplorer.com","standard":"none"}]},{"name":"omChain Mainnet","chain":"OML","icon":"omlira","rpc":["https://seed.omchain.io"],"faucets":[],"nativeCurrency":{"name":"omChain","symbol":"OMC","decimals":18},"infoURL":"https://omchain.io","shortName":"omc","chainId":21816,"networkId":21816,"explorers":[{"name":"omChain Explorer","url":"https://explorer.omchain.io","standard":"EIP3091"}]},{"name":"BSL Mainnet","chain":"BSL","rpc":["http://rpc-mainnet.nftruth.io:8545","ws://rpc-mainnet.nftruth.io:8645"],"faucets":[],"nativeCurrency":{"name":"Origin NFT","symbol":"ONF","decimals":18},"infoURL":"https://bsquarelab.com/","shortName":"onf","chainId":21912,"networkId":21912,"explorers":[{"name":"BSL Mainnet Explorer","url":"https://scan.nftruth.io","standard":"EIP3091"}]},{"name":"Taycan","chain":"Taycan","rpc":["https://taycan-rpc.hupayx.io:8545"],"faucets":[],"nativeCurrency":{"name":"shuffle","symbol":"SFL","decimals":18},"infoURL":"https://hupayx.io","shortName":"SFL","chainId":22023,"networkId":22023,"icon":"shuffle","explorers":[{"name":"Taycan Explorer(Blockscout)","url":"https://taycan-evmscan.hupayx.io","standard":"none","icon":"shuffle"},{"name":"Taycan Cosmos Explorer(BigDipper)","url":"https://taycan-cosmoscan.hupayx.io","standard":"none","icon":"shuffle"}]},{"name":"AirDAO Testnet","chain":"ambnet-test","icon":"airdao","rpc":["https://network.ambrosus-test.io"],"faucets":[],"nativeCurrency":{"name":"Amber","symbol":"AMB","decimals":18},"infoURL":"https://testnet.airdao.io","shortName":"airdao-test","chainId":22040,"networkId":22040,"slip44":1,"explorers":[{"name":"AirDAO Network Explorer","url":"https://testnet.airdao.io/explorer","standard":"none"}]},{"name":"Nautilus Mainnet","chain":"ETH","icon":"nautilus","rpc":["https://api.nautilus.nautchain.xyz"],"faucets":[],"nativeCurrency":{"name":"Zebec","symbol":"ZBC","decimals":18},"infoURL":"https://docs.nautchain.xyz","shortName":"NAUTCHAIN","chainId":22222,"networkId":22222,"explorers":[{"name":"Nautscan","url":"https://nautscan.com","standard":"EIP3091","icon":"nautilus"}]},{"name":"GoldXChain Testnet","chain":"GoldXTestnet","rpc":["https://testnet-rpc.goldxchain.io"],"faucets":["https://faucet.goldxchain.io"],"nativeCurrency":{"name":"GoldX","symbol":"GOLDX","decimals":18},"infoURL":"https://goldxchain.io","shortName":"goldx-testnet","chainId":22324,"networkId":22324,"explorers":[{"name":"GoldXChain Testnet Explorer","url":"https://testnet-explorer.goldxchain.io","standard":"EIP3091"}]},{"name":"MAP Protocol","chain":"MAPO","icon":"map","rpc":["https://rpc.maplabs.io"],"faucets":[],"nativeCurrency":{"name":"MAPO","symbol":"MAPO","decimals":18},"infoURL":"https://mapprotocol.io/","shortName":"mapo","chainId":22776,"networkId":22776,"slip44":60,"explorers":[{"name":"maposcan","url":"https://maposcan.io","standard":"EIP3091"}]},{"name":"Antofy Testnet","chain":"ABN","icon":"antofy","rpc":["https://testnet-rpc.antofy.io"],"faucets":["https://faucet.antofy.io"],"nativeCurrency":{"name":"Antofy","symbol":"ABN","decimals":18},"infoURL":"https://antofy.io","shortName":"ABNt","chainId":23006,"networkId":23006,"slip44":1,"explorers":[{"name":"Antofy Testnet","url":"https://test.antofyscan.com","standard":"EIP3091"}]},{"name":"Opside Testnet","chain":"Opside","rpc":["https://testrpc.opside.network"],"faucets":["https://faucet.opside.network"],"nativeCurrency":{"name":"IDE","symbol":"IDE","decimals":18},"infoURL":"https://opside.network","shortName":"opside","chainId":23118,"networkId":23118,"slip44":1,"icon":"opside","explorers":[{"name":"opsideInfo","url":"https://opside.info","standard":"EIP3091"}]},{"name":"Oasis Sapphire","chain":"Sapphire","icon":"oasis","rpc":["https://sapphire.oasis.io","wss://sapphire.oasis.io/ws"],"faucets":[],"nativeCurrency":{"name":"Sapphire Rose","symbol":"ROSE","decimals":18},"infoURL":"https://docs.oasis.io/dapp/sapphire","shortName":"sapphire","chainId":23294,"networkId":23294,"explorers":[{"name":"Oasis Sapphire Explorer","url":"https://explorer.oasis.io/mainnet/sapphire","standard":"EIP3091"}]},{"name":"Oasis Sapphire Testnet","chain":"Sapphire","icon":"oasis","rpc":["https://testnet.sapphire.oasis.io","wss://testnet.sapphire.oasis.io/ws"],"faucets":[],"nativeCurrency":{"name":"Sapphire Test Rose","symbol":"TEST","decimals":18},"infoURL":"https://docs.oasis.io/dapp/sapphire","shortName":"sapphire-testnet","chainId":23295,"networkId":23295,"slip44":1,"explorers":[{"name":"Oasis Sapphire Testnet Explorer","url":"https://explorer.oasis.io/testnet/sapphire","standard":"EIP3091"}]},{"name":"DreyerX Mainnet","chain":"DreyerX","rpc":["https://rpc.dreyerx.com"],"faucets":[],"nativeCurrency":{"name":"DreyerX","symbol":"DRX","decimals":18},"infoURL":"https://dreyerx.com","shortName":"dreyerx","chainId":23451,"networkId":23451,"icon":"dreyerx","explorers":[{"name":"drxscan","url":"https://scan.dreyerx.com","icon":"dreyerx","standard":"EIP3091"}]},{"name":"DreyerX Testnet","chain":"DreyerX","rpc":["https://testnet-rpc.dreyerx.com"],"faucets":[],"nativeCurrency":{"name":"DreyerX","symbol":"DRX","decimals":18},"infoURL":"https://dreyerx.com","shortName":"dreyerx-testnet","chainId":23452,"networkId":23452,"icon":"dreyerx","explorers":[{"name":"drxscan","url":"https://testnet-scan.dreyerx.com","icon":"dreyerx","standard":"EIP3091"}]},{"name":"Blast Testnet","chain":"ETH","icon":"blastIcon","rpc":["http://testnet-rpc.blastblockchain.com"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://docs.blastblockchain.com","shortName":"blastT","chainId":23888,"networkId":23888,"explorers":[{"name":"Blast Testnet","url":"http://testnet-explorer.blastblockchain.com","standard":"EIP3091"}]},{"name":"Webchain","chain":"WEB","rpc":[],"faucets":[],"nativeCurrency":{"name":"Webchain Ether","symbol":"WEB","decimals":18},"infoURL":"https://webchain.network","shortName":"web","chainId":24484,"networkId":37129,"slip44":227},{"name":"MintMe.com Coin","chain":"MINTME","rpc":["https://node1.mintme.com"],"faucets":[],"nativeCurrency":{"name":"MintMe.com Coin","symbol":"MINTME","decimals":18},"infoURL":"https://www.mintme.com","shortName":"mintme","chainId":24734,"networkId":37480},{"name":"LiquidLayer Mainnet","chain":"LiquidLayer","icon":"lila","rpc":["https://mainnet.liquidlayer.network"],"faucets":[],"nativeCurrency":{"name":"LiquidLayer","symbol":"LILA","decimals":18},"infoURL":"https://scan.liquidlayer.network","shortName":"LILA","chainId":25186,"networkId":25186,"explorers":[{"name":"LiquidLayer Mainnet Explorer","url":"https://scan.liquidlayer.network","standard":"EIP3091"}]},{"name":"AlveyChain Testnet","chain":"tALV","rpc":["https://testnet-rpc.alvey.io"],"faucets":["https://faucet.alveytestnet.com"],"nativeCurrency":{"name":"AlveyCoin Testnet","symbol":"tALV","decimals":18},"infoURL":"https://alveychain.com/","shortName":"talv","chainId":25839,"networkId":25839,"icon":"alveychain","explorers":[{"name":"AlveyScan Testnet","url":"https://alveytestnet.com","icon":"alveychain","standard":"EIP3091"}]},{"name":"Hammer Chain Mainnet","chain":"HammerChain","rpc":["https://www.hammerchain.io/rpc"],"faucets":[],"nativeCurrency":{"name":"GOLDT","symbol":"GOLDT","decimals":18},"infoURL":"https://www.hammerchain.io","shortName":"GOLDT","chainId":25888,"networkId":25888,"explorers":[{"name":"Hammer Chain Explorer","url":"https://www.hammerchain.io","standard":"none"}]},{"name":"Bitkub Chain Testnet","chain":"BKC","icon":"bkc","rpc":["https://rpc-testnet.bitkubchain.io","wss://wss-testnet.bitkubchain.io"],"faucets":["https://faucet.bitkubchain.com"],"nativeCurrency":{"name":"Bitkub Coin","symbol":"tKUB","decimals":18},"infoURL":"https://www.bitkubchain.com/","shortName":"bkct","chainId":25925,"networkId":25925,"slip44":1,"explorers":[{"name":"bkcscan-testnet","url":"https://testnet.bkcscan.com","standard":"none","icon":"bkc"}]},{"name":"Ferrum Testnet","chain":"tFRM","rpc":["http://testnet.dev.svcs.ferrumnetwork.io:9933"],"faucets":["https://testnet.faucet.ferrumnetwork.io"],"nativeCurrency":{"name":"Ferrum","symbol":"tFRM","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://ferrum.network","shortName":"frm","chainId":26026,"networkId":26026,"slip44":1,"explorers":[{"name":"polkadotjs","url":"https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Ftestnet.dev.svcs.ferrumnetwork.io#/explorer","standard":"none"}]},{"name":"Hertz Network Mainnet","chain":"HTZ","rpc":["https://mainnet-rpc.hertzscan.com"],"faucets":[],"nativeCurrency":{"name":"Hertz","symbol":"HTZ","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://www.hertz-network.com","shortName":"HTZ","chainId":26600,"networkId":26600,"icon":"hertz-network","explorers":[{"name":"Hertz Scan","url":"https://hertzscan.com","icon":"hertz-network","standard":"EIP3091"}]},{"name":"OasisChain Mainnet","chain":"OasisChain","rpc":["https://rpc1.oasischain.io","https://rpc2.oasischain.io","https://rpc3.oasischain.io"],"faucets":["http://faucet.oasischain.io"],"nativeCurrency":{"name":"OAC","symbol":"OAC","decimals":18},"infoURL":"https://scan.oasischain.io","shortName":"OAC","chainId":26863,"networkId":26863,"explorers":[{"name":"OasisChain Explorer","url":"https://scan.oasischain.io","standard":"EIP3091"}]},{"name":"Vizing Mainnet","title":"Vizing Mainnet","chain":"Vizing Mainnet","rpc":["https://rpc.vizing.com"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://vizing.com","shortName":"Vizing","chainId":28518,"networkId":28518,"icon":"vizing","explorers":[{"name":"blockscout","url":"https://explorer.vizing.com","icon":"vizing","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://bridge.vizing.com"}]}},{"name":"Optimism Bedrock (Goerli Alpha Testnet)","chain":"ETH","rpc":["https://alpha-1-replica-0.bedrock-goerli.optimism.io","https://alpha-1-replica-1.bedrock-goerli.optimism.io","https://alpha-1-replica-2.bedrock-goerli.optimism.io","https://alpha-1-replica-2.bedrock-goerli.optimism.io"],"faucets":[],"nativeCurrency":{"name":"Goerli Ether","symbol":"ETH","decimals":18},"infoURL":"https://community.optimism.io/docs/developers/bedrock","shortName":"obgor","chainId":28528,"networkId":28528,"slip44":1,"explorers":[{"name":"blockscout","url":"https://blockscout.com/optimism/bedrock-alpha","standard":"EIP3091"}]},{"name":"Boba Sepolia","chain":"ETH","rpc":["https://sepolia.boba.network","https://boba-sepolia.gateway.tenderly.co","https://gateway.tenderly.co/public/boba-sepolia","wss://boba-sepolia.gateway.tenderly.co/","wss://gateway.tenderly.co/public/boba-sepolia"],"faucets":["https://www.l2faucet.com/boba"],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://boba.network","shortName":"BobaSepolia","chainId":28882,"networkId":28882,"explorers":[{"name":"Bobascan","url":"https://testnet.bobascan.com","standard":"none"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://gateway.boba.network"}]}},{"name":"HYCHAIN Testnet","chainId":29112,"shortName":"hychain-testnet","chain":"ETH","networkId":29112,"nativeCurrency":{"name":"TOPIA","symbol":"TOPIA","decimals":18},"rpc":["https://testnet-rpc.hychain.com/http"],"faucets":[],"infoURL":"https://www.hychain.com","icon":"hychain","explorers":[{"name":"blockscout","url":"https://testnet.explorer.hychain.com","icon":"hychain","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-58008","bridges":[]}},{"name":"KaiChain Testnet","chain":"KaiChain","rpc":["https://testnet-rpc.kaichain.net"],"faucets":["https://faucet.kaichain.net"],"nativeCurrency":{"name":"KaiChain Testnet Native Token","symbol":"KEC","decimals":18},"infoURL":"https://kaichain.net","shortName":"tkec","chainId":29536,"networkId":29536,"explorers":[{"name":"KaiChain Explorer","url":"https://testnet-explorer.kaichain.net","standard":"EIP3091"}]},{"name":"MCH Verse Mainnet","chain":"MCH Verse","icon":"mch_verse","rpc":["https://rpc.oasys.mycryptoheroes.net"],"faucets":[],"nativeCurrency":{"name":"OAS","symbol":"OAS","decimals":18},"infoURL":"https://www.mycryptoheroes.net/verse","shortName":"MCHV","chainId":29548,"networkId":29548,"explorers":[{"name":"MCH Verse Explorer","url":"https://explorer.oasys.mycryptoheroes.net","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-248"}},{"name":"Piece testnet","chain":"PieceNetwork","icon":"piecechain","rpc":["https://testnet-rpc0.piecenetwork.com"],"faucets":["https://piecenetwork.com/faucet"],"nativeCurrency":{"name":"ECE","symbol":"ECE","decimals":18},"infoURL":"https://piecenetwork.com","shortName":"Piece","chainId":30067,"networkId":30067,"slip44":1,"explorers":[{"name":"Piece Scan","url":"https://testnet-scan.piecenetwork.com","standard":"EIP3091"}]},{"name":"Cerium Testnet","chain":"CAU","icon":"canxium","rpc":["https://cerium-rpc.canxium.net"],"faucets":[],"nativeCurrency":{"name":"Canxium","symbol":"CAU","decimals":18},"infoURL":"https://canxium.org","shortName":"ceri","chainId":30103,"networkId":30103,"slip44":1,"explorers":[{"name":"canxium explorer","url":"https://cerium-explorer.canxium.net","standard":"none"}]},{"name":"Ethersocial Network","chain":"ESN","rpc":["https://api.esn.gonspool.com"],"faucets":[],"nativeCurrency":{"name":"Ethersocial Network Ether","symbol":"ESN","decimals":18},"infoURL":"https://ethersocial.org","shortName":"esn","chainId":31102,"networkId":1,"slip44":31102},{"name":"CloudTx Mainnet","chain":"CLD","icon":"cloudtx","rpc":["https://mainnet-rpc.cloudtx.finance"],"faucets":[],"nativeCurrency":{"name":"CloudTx","symbol":"CLD","decimals":18},"infoURL":"https://cloudtx.finance","shortName":"CLDTX","chainId":31223,"networkId":31223,"explorers":[{"name":"cloudtxscan","url":"https://scan.cloudtx.finance","standard":"EIP3091"}]},{"name":"CloudTx Testnet","chain":"CloudTx","icon":"cloudtx","rpc":["https://testnet-rpc.cloudtx.finance"],"faucets":["https://faucet.cloudtx.finance"],"nativeCurrency":{"name":"CloudTx","symbol":"CLD","decimals":18},"infoURL":"https://cloudtx.finance/","shortName":"CLD","chainId":31224,"networkId":31224,"slip44":1,"explorers":[{"name":"cloudtxexplorer","url":"https://explorer.cloudtx.finance","standard":"EIP3091"}]},{"name":"GoChain Testnet","chain":"GO","rpc":["https://testnet-rpc.gochain.io"],"faucets":[],"nativeCurrency":{"name":"GoChain Coin","symbol":"GO","decimals":18},"infoURL":"https://gochain.io","shortName":"got","chainId":31337,"networkId":31337,"slip44":1,"explorers":[{"name":"GoChain Testnet Explorer","url":"https://testnet-explorer.gochain.io","standard":"EIP3091"}]},{"name":"Evoke Testnet","chain":"Evoke","icon":"mthn","rpc":["https://testnet-rpc.evokescan.org"],"faucets":["https://faucet.evokescan.org"],"nativeCurrency":{"name":"MTHN Testnet","symbol":"MTHN","decimals":18},"infoURL":"https://testnet-explorer.evokescan.org","shortName":"tmthn","chainId":31414,"networkId":31414,"explorers":[{"name":"Evoke SmartChain Testnet Explorer","url":"https://testnet-explorer.evokescan.org","standard":"EIP3091"}]},{"name":"Filecoin - Wallaby testnet","status":"deprecated","chain":"FIL","icon":"filecoin","rpc":[],"faucets":[],"nativeCurrency":{"name":"testnet filecoin","symbol":"tFIL","decimals":18},"infoURL":"https://filecoin.io","shortName":"filecoin-wallaby","chainId":31415,"networkId":31415,"slip44":1,"explorers":[]},{"name":"W3Gamez Holesky Testnet","chain":"ETH","rpc":["https://rpc-holesky.w3gamez.network"],"faucets":[],"nativeCurrency":{"name":"W3Gamez Testnet Ether","symbol":"ETH","decimals":18},"infoURL":"https://web3games.com/","shortName":"w3gamez","chainId":32001,"networkId":32001,"slip44":1,"icon":"w3gamez","explorers":[{"name":"W3Gamez Holesky Explorer","url":"https://w3gamez-holesky.web3games.com","icon":"web3games","standard":"EIP3091"}]},{"name":"Bitgert Mainnet","chain":"Brise","rpc":["https://rpc.icecreamswap.com","https://mainnet-rpc.brisescan.com","https://chainrpc.com","https://serverrpc.com"],"faucets":[],"nativeCurrency":{"name":"Bitrise Token","symbol":"Brise","decimals":18},"infoURL":"https://bitgert.com/","shortName":"Brise","chainId":32520,"networkId":32520,"icon":"brise","explorers":[{"name":"Brise Scan","url":"https://brisescan.com","icon":"brise","standard":"EIP3091"}]},{"name":"Fusion Mainnet","chain":"FSN","icon":"fusion","rpc":["https://mainnet.fusionnetwork.io","wss://mainnet.fusionnetwork.io"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Fusion","symbol":"FSN","decimals":18},"infoURL":"https://fusion.org","shortName":"fsn","chainId":32659,"networkId":32659,"slip44":288,"explorers":[{"name":"fsnscan","url":"https://fsnscan.com","icon":"fsnscan","standard":"EIP3091"}]},{"name":"Zilliqa EVM","chain":"ZIL","rpc":["https://api.zilliqa.com"],"faucets":[],"nativeCurrency":{"name":"Zilliqa","symbol":"ZIL","decimals":18},"infoURL":"https://www.zilliqa.com/","shortName":"zil","chainId":32769,"networkId":32769,"icon":"zilliqa","explorers":[{"name":"Zilliqa EVM Explorer","url":"https://evmx.zilliqa.com","standard":"none"}]},{"name":"Zilliqa EVM Isolated Server","chain":"ZIL","rpc":["https://zilliqa-isolated-server.zilliqa.com/"],"faucets":["https://dev-wallet.zilliqa.com/faucet?network=isolated_server"],"nativeCurrency":{"name":"Zilliqa","symbol":"ZIL","decimals":18},"infoURL":"https://www.zilliqa.com/","shortName":"zil-isolated-server","chainId":32990,"networkId":32990,"icon":"zilliqa","explorers":[{"name":"Zilliqa EVM Isolated Server Explorer","url":"https://devex.zilliqa.com/?network=https://zilliqa-isolated-server.zilliqa.com","standard":"none"}]},{"name":"Zilliqa EVM Testnet","chain":"ZIL","rpc":["https://dev-api.zilliqa.com"],"faucets":["https://dev-wallet.zilliqa.com/faucet?network=testnet"],"nativeCurrency":{"name":"Zilliqa","symbol":"ZIL","decimals":18},"infoURL":"https://www.zilliqa.com/","shortName":"zil-testnet","chainId":33101,"networkId":33101,"slip44":1,"explorers":[{"name":"Zilliqa EVM Explorer","url":"https://evmx.zilliqa.com","standard":"none"}]},{"name":"Cloudverse Subnet","chain":"CLOUDVERSE","rpc":["https://subnets.avax.network/cloudverse/mainnet/rpc"],"features":[{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"XCLOUD","symbol":"XCLOUD","decimals":18},"infoURL":"https://muadao.build/","shortName":"cloudverse","chainId":33210,"networkId":33210,"explorers":[{"name":"CLOUDVERSE Explorer","url":"https://subnets.avax.network/cloudverse","standard":"EIP3091"}]},{"name":"Aves Mainnet","chain":"AVS","rpc":["https://rpc.avescoin.io"],"faucets":[],"nativeCurrency":{"name":"Aves","symbol":"AVS","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://avescoin.io","shortName":"avs","chainId":33333,"networkId":33333,"icon":"aves","explorers":[{"name":"avescan","url":"https://avescan.io","icon":"avescan","standard":"EIP3091"}]},{"name":"Zilliqa EVM Devnet","chain":"ZIL","rpc":["https://api.devnet.zilliqa.com/"],"faucets":["https://faucet.devnet.zilliqa.com/"],"nativeCurrency":{"name":"Zilliqa","symbol":"ZIL","decimals":18},"infoURL":"https://www.zilliqa.com/","shortName":"zil-devnet","chainId":33385,"networkId":33385,"icon":"zilliqa","explorers":[{"name":"Zilliqa EVM Devnet Explorer","url":"https://otterscan.devnet.zilliqa.com","standard":"EIP3091"}]},{"name":"Zilliqa-2 EVM Devnet","chain":"ZIL","rpc":["https://api.zq2-devnet.zilliqa.com"],"faucets":["https://faucet.zq2-devnet.zilliqa.com"],"nativeCurrency":{"name":"Zilliqa","symbol":"ZIL","decimals":18},"infoURL":"https://www.zilliqa.com/","shortName":"zq2-devnet","chainId":33469,"networkId":33469,"icon":"zilliqa","explorers":[{"name":"Zilliqa-2 EVM Devnet Explorer","url":"https://explorer.zq2-devnet.zilliqa.com","standard":"EIP3091"}]},{"name":"Mode","chain":"ETH","rpc":["https://mainnet.mode.network","https://mode.drpc.org","wss://mode.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://docs.mode.network/","shortName":"mode","chainId":34443,"networkId":34443,"icon":"mode","explorers":[{"name":"modescout","url":"https://explorer.mode.network","standard":"none"}]},{"name":"J2O Taro","chain":"TARO","rpc":["https://rpc.j2o.io"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"TARO Coin","symbol":"taro","decimals":18},"infoURL":"https://j2o.io","shortName":"j2o","chainId":35011,"networkId":35011,"explorers":[{"name":"J2O Taro Explorer","url":"https://exp.j2o.io","icon":"j2otaro","standard":"EIP3091"}]},{"name":"Q Mainnet","chain":"Q","rpc":["https://rpc.q.org"],"faucets":[],"nativeCurrency":{"name":"QGOV","symbol":"QGOV","decimals":18},"infoURL":"https://q.org","shortName":"q","chainId":35441,"networkId":35441,"icon":"q","explorers":[{"name":"Q explorer","url":"https://explorer.q.org","icon":"q","standard":"EIP3091"}]},{"name":"Q Testnet","chain":"Q","rpc":["https://rpc.qtestnet.org"],"faucets":[],"nativeCurrency":{"name":"Q token","symbol":"Q","decimals":18},"infoURL":"https://q.org/","shortName":"q-testnet","chainId":35443,"networkId":35443,"slip44":1,"icon":"q","explorers":[{"name":"Q explorer","url":"https://explorer.qtestnet.org","icon":"q","standard":"EIP3091"}]},{"name":"ConnectorManager","chain":"Rangers","icon":"rangers","rpc":["https://cm.rangersprotocol.com/api/jsonrpc"],"faucets":[],"nativeCurrency":{"name":"Rangers Protocol Gas","symbol":"cmRPG","decimals":18},"infoURL":"https://rangersprotocol.com","shortName":"cmrpg","chainId":38400,"networkId":38400,"explorers":[{"name":"rangersscan","url":"https://scan.rangersprotocol.com","standard":"none"}]},{"name":"ConnectorManager Robin","chain":"Rangers","icon":"rangers","rpc":["https://robin-cm.rangersprotocol.com/api/jsonrpc"],"faucets":["https://robin-faucet.rangersprotocol.com"],"nativeCurrency":{"name":"Rangers Protocol Gas","symbol":"ttRPG","decimals":18},"infoURL":"https://rangersprotocol.com","shortName":"ttrpg","chainId":38401,"networkId":38401,"explorers":[{"name":"rangersscan-robin","url":"https://robin-rangersscan.rangersprotocol.com","standard":"none"}]},{"name":"Energi Mainnet","chain":"NRG","rpc":["https://nodeapi.energi.network"],"faucets":[],"nativeCurrency":{"name":"Energi","symbol":"NRG","decimals":18},"infoURL":"https://www.energi.world/","shortName":"nrg","chainId":39797,"networkId":39797,"slip44":39797},{"name":"OHO Mainnet","chain":"OHO","rpc":["https://mainnet.oho.ai"],"faucets":[],"nativeCurrency":{"name":"OHO","symbol":"OHO","decimals":18},"infoURL":"https://oho.ai","shortName":"oho","chainId":39815,"networkId":39815,"icon":"oho","explorers":[{"name":"ohoscan","url":"https://ohoscan.com","icon":"ohoscan","standard":"EIP3091"}]},{"name":"Opulent-X BETA","chainId":41500,"shortName":"ox-beta","chain":"Opulent-X","networkId":41500,"nativeCurrency":{"name":"Oxyn Gas","symbol":"OXYN","decimals":18},"rpc":["https://connect.opulent-x.com"],"faucets":[],"infoURL":"https://beta.opulent-x.com","explorers":[{"name":"Opulent-X BETA Explorer","url":"https://explorer.opulent-x.com","standard":"none"}]},{"name":"pegglecoin","chain":"42069","rpc":[],"faucets":[],"nativeCurrency":{"name":"pegglecoin","symbol":"peggle","decimals":18},"infoURL":"https://teampeggle.com","shortName":"PC","chainId":42069,"networkId":42069},{"name":"Arbitrum One","chainId":42161,"shortName":"arb1","chain":"ETH","networkId":42161,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}","https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}","https://arb1.arbitrum.io/rpc","https://arbitrum-one.publicnode.com","wss://arbitrum-one.publicnode.com"],"faucets":[],"explorers":[{"name":"Arbiscan","url":"https://arbiscan.io","standard":"EIP3091"},{"name":"Arbitrum Explorer","url":"https://explorer.arbitrum.io","standard":"EIP3091"},{"name":"dexguru","url":"https://arbitrum.dex.guru","icon":"dexguru","standard":"EIP3091"}],"infoURL":"https://arbitrum.io","parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://bridge.arbitrum.io"}]}},{"name":"Arbitrum Nova","chainId":42170,"shortName":"arb-nova","chain":"ETH","networkId":42170,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://nova.arbitrum.io/rpc","https://arbitrum-nova.publicnode.com","wss://arbitrum-nova.publicnode.com"],"faucets":[],"explorers":[{"name":"Arbitrum Nova Chain Explorer","url":"https://nova-explorer.arbitrum.io","icon":"blockscout","standard":"EIP3091"},{"name":"dexguru","url":"https://nova.dex.guru","icon":"dexguru","standard":"EIP3091"}],"infoURL":"https://arbitrum.io","parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://bridge.arbitrum.io"}]}},{"name":"Celo Mainnet","chainId":42220,"shortName":"celo","chain":"CELO","networkId":42220,"nativeCurrency":{"name":"CELO","symbol":"CELO","decimals":18},"rpc":["https://forno.celo.org","wss://forno.celo.org/ws"],"faucets":[],"infoURL":"https://docs.celo.org/","explorers":[{"name":"Celoscan","url":"https://celoscan.io","standard":"EIP3091"},{"name":"blockscout","url":"https://explorer.celo.org","standard":"none"}]},{"name":"Oasis Emerald Testnet","chain":"Emerald","icon":"oasis","rpc":["https://testnet.emerald.oasis.io/","wss://testnet.emerald.oasis.io/ws"],"faucets":["https://faucet.testnet.oasis.io/"],"nativeCurrency":{"name":"Emerald Rose","symbol":"ROSE","decimals":18},"infoURL":"https://docs.oasis.io/dapp/emerald","shortName":"emerald-testnet","chainId":42261,"networkId":42261,"slip44":1,"explorers":[{"name":"Oasis Emerald Testnet Explorer","url":"https://explorer.oasis.io/testnet/emerald","standard":"EIP3091"}]},{"name":"Oasis Emerald","chain":"Emerald","icon":"oasis","rpc":["https://emerald.oasis.io","wss://emerald.oasis.io/ws"],"faucets":[],"nativeCurrency":{"name":"Emerald Rose","symbol":"ROSE","decimals":18},"infoURL":"https://docs.oasis.io/dapp/emerald","shortName":"emerald","chainId":42262,"networkId":42262,"explorers":[{"name":"Oasis Emerald Explorer","url":"https://explorer.oasis.io/mainnet/emerald","standard":"EIP3091"}]},{"name":"GoldXChain Mainnet","chain":"GoldX","rpc":["https://mainnet-rpc.goldxchain.io"],"faucets":[],"nativeCurrency":{"name":"GoldX","symbol":"GOLDX","decimals":18},"infoURL":"https://goldxchain.io","shortName":"goldx","chainId":42355,"networkId":42355,"explorers":[{"name":"GoldXChain Explorer","url":"https://explorer.goldxchain.io","standard":"EIP3091"}]},{"name":"ZKFair Mainnet","title":"ZKFair Mainnet","chain":"ZKFair","rpc":["https://rpc.zkfair.io"],"faucets":[],"nativeCurrency":{"name":"USDC Token","symbol":"USDC","decimals":18},"infoURL":"https://zkfair.io","shortName":"ZKFair-Mainnet","chainId":42766,"networkId":42766,"icon":"zkfair","explorers":[{"name":"blockscout","url":"https://scan.zkfair.io","icon":"zkfair","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://wallet.zkfair.io"}]}},{"name":"Gesoten Verse Testnet","chain":"Gesoten Verse","rpc":["https://rpc.testnet.verse.gesoten.com/"],"faucets":[],"nativeCurrency":{"name":"OAS","symbol":"OAS","decimals":18},"infoURL":"https://gesoten.com/","shortName":"GST","icon":"gesoten","chainId":42801,"networkId":42801,"slip44":1,"explorers":[{"name":"Gesoten Verse Testnet Explorer","url":"https://explorer.testnet.verse.gesoten.com","standard":"EIP3091"}]},{"name":"Kinto Testnet","title":"Kinto Testnet","chain":"ETH","rpc":["http://35.215.120.180:8545"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://ethereum.org","shortName":"keth","chainId":42888,"networkId":42888,"slip44":1,"explorers":[{"name":"kintoscan","url":"http://35.215.120.180:4000","standard":"EIP3091"}]},{"name":"Athereum","chain":"ATH","rpc":["https://ava.network:21015/ext/evm/rpc"],"faucets":["http://athfaucet.ava.network//?address=${ADDRESS}"],"nativeCurrency":{"name":"Athereum Ether","symbol":"ATH","decimals":18},"infoURL":"https://athereum.ava.network","shortName":"avaeth","chainId":43110,"networkId":43110},{"name":"Hemi Network","chain":"ETH","rpc":[],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://hemi.xyz","shortName":"hemi","chainId":43111,"networkId":43111,"explorers":[],"parent":{"type":"L2","chain":"eip155-1"},"status":"incubating"},{"name":"Avalanche Fuji Testnet","chain":"AVAX","icon":"avax","rpc":["https://api.avax-test.network/ext/bc/C/rpc","https://avalanche-fuji-c-chain-rpc.publicnode.com","wss://avalanche-fuji-c-chain-rpc.publicnode.com"],"faucets":["https://faucet.avax-test.network/"],"nativeCurrency":{"name":"Avalanche","symbol":"AVAX","decimals":18},"infoURL":"https://cchain.explorer.avax-test.network","shortName":"Fuji","chainId":43113,"networkId":1,"slip44":1,"explorers":[{"name":"snowtrace","url":"https://testnet.snowtrace.io","standard":"EIP3091"}]},{"name":"Avalanche C-Chain","chain":"AVAX","icon":"avax","rpc":["https://api.avax.network/ext/bc/C/rpc","https://avalanche-c-chain-rpc.publicnode.com","wss://avalanche-c-chain-rpc.publicnode.com"],"features":[{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Avalanche","symbol":"AVAX","decimals":18},"infoURL":"https://www.avax.network/","shortName":"avax","chainId":43114,"networkId":43114,"slip44":9005,"explorers":[{"name":"snowtrace","url":"https://snowtrace.io","standard":"EIP3091"}]},{"name":"Boba Avax","chain":"Boba Avax","status":"deprecated","rpc":["https://avax.boba.network","wss://wss.avax.boba.network","https://replica.avax.boba.network","wss://replica-wss.avax.boba.network"],"faucets":[],"nativeCurrency":{"name":"Boba Token","symbol":"BOBA","decimals":18},"infoURL":"https://docs.boba.network/for-developers/network-avalanche","shortName":"bobaavax","chainId":43288,"networkId":43288,"explorers":[{"name":"Boba Avax Explorer","url":"https://blockexplorer.avax.boba.network","standard":"none"}]},{"name":"ZKFair Testnet","chain":"ETH","rpc":["https://testnet-rpc.zkfair.io"],"faucets":[],"nativeCurrency":{"name":"USDC Token","symbol":"USDC","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://zkfair.io","shortName":"ZKFair-Testnet","chainId":43851,"networkId":43851,"slip44":1,"icon":"zkfair","explorers":[{"name":"ZKFair Testnet Info","url":"https://testnet-scan.zkfair.io","icon":"zkfair","standard":"EIP3091"}]},{"name":"Frenchain","chain":"fren","rpc":["https://rpc-02.frenscan.io"],"faucets":[],"nativeCurrency":{"name":"FREN","symbol":"FREN","decimals":18},"infoURL":"https://frenchain.app","shortName":"FREN","chainId":44444,"networkId":44444,"icon":"fren","explorers":[{"name":"blockscout","url":"https://frenscan.io","icon":"fren","standard":"EIP3091"}]},{"name":"Quantum Network","chain":"Quantum","rpc":["https://rpcqtm.avescoin.io"],"faucets":[],"nativeCurrency":{"name":"Quantum","symbol":"QTM","decimals":18},"infoURL":"https://avescoin.io/","shortName":"QTM","chainId":44445,"networkId":44445,"icon":"quantum","explorers":[{"name":"Quantum Explorer","url":"https://qtm.avescoin.io","icon":"quantum","standard":"EIP3091"}]},{"name":"Celo Alfajores Testnet","chainId":44787,"shortName":"ALFA","chain":"CELO","networkId":44787,"slip44":1,"nativeCurrency":{"name":"CELO","symbol":"CELO","decimals":18},"rpc":["https://alfajores-forno.celo-testnet.org","wss://alfajores-forno.celo-testnet.org/ws"],"faucets":["https://celo.org/developers/faucet","https://cauldron.pretoriaresearchlab.io/alfajores-faucet"],"infoURL":"https://docs.celo.org/","explorers":[{"name":"Alfajoresscan","url":"https://alfajores.celoscan.io","standard":"EIP3091"}]},{"name":"Autobahn Network","chain":"TXL","rpc":["https://rpc.autobahn.network"],"faucets":[],"nativeCurrency":{"name":"TXL","symbol":"TXL","decimals":18},"infoURL":"https://autobahn.network","shortName":"AutobahnNetwork","chainId":45000,"networkId":45000,"icon":"autobahn","explorers":[{"name":"autobahn explorer","url":"https://explorer.autobahn.network","icon":"autobahn","standard":"EIP3091"}]},{"name":"Swamps L2","chain":"SWP","icon":"swamps","rpc":["https://swamps.tc.l2aas.com"],"faucets":[],"nativeCurrency":{"name":"SWP","symbol":"SWP","decimals":18},"infoURL":"https://www.swamps.fi","shortName":"SWP","chainId":45454,"networkId":45454,"explorers":[{"name":"blockscout","url":"https://swamps-explorer.tc.l2aas.com","icon":"blockscout","standard":"EIP3091"}]},{"name":"Deelance Mainnet","title":"Deelance Network Mainnet","chain":"DEE","rpc":["https://rpc.deelance.com"],"faucets":["https://faucet.deelance.com"],"nativeCurrency":{"name":"Deelance","symbol":"DEE","decimals":18},"infoURL":"https://deelance.com","shortName":"dee","chainId":45510,"networkId":45510,"icon":"deelance","explorers":[{"name":"Deelance Mainnet Explorer","url":"https://deescan.com","standard":"EIP3091"}]},{"name":"Fusion Testnet","chain":"FSN","icon":"fusion","rpc":["https://testnet.fusionnetwork.io","wss://testnet.fusionnetwork.io"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Testnet Fusion","symbol":"T-FSN","decimals":18},"infoURL":"https://fusion.org","shortName":"tfsn","chainId":46688,"networkId":46688,"slip44":1,"explorers":[{"name":"fsnscan","url":"https://testnet.fsnscan.com","icon":"fsnscan","standard":"EIP3091"}]},{"name":"REI Network","chain":"REI","rpc":["https://rpc.rei.network","wss://rpc.rei.network"],"faucets":[],"nativeCurrency":{"name":"REI","symbol":"REI","decimals":18},"infoURL":"https://rei.network/","shortName":"REI","chainId":47805,"networkId":47805,"explorers":[{"name":"rei-scan","url":"https://scan.rei.network","standard":"none"}]},{"name":"Wireshape Floripa Testnet","title":"Wireshape Floripa Testnet","chain":"Wireshape","icon":"wireshape","rpc":["https://rpc-floripa.wireshape.org","https://wireshape-floripa-testnet.rpc.thirdweb.com"],"faucets":[],"nativeCurrency":{"name":"WIRE","symbol":"WIRE","decimals":18},"infoURL":"https://wireshape.org","shortName":"floripa","chainId":49049,"networkId":49049,"slip44":1,"explorers":[{"name":"Wire Explorer","url":"https://floripa-explorer.wireshape.org","standard":"EIP3091"}]},{"name":"Bifrost Testnet","title":"Bifrost Network Testnet","chain":"BFC","rpc":["https://public-01.testnet.bifrostnetwork.com/rpc","https://public-02.testnet.bifrostnetwork.com/rpc"],"faucets":[],"nativeCurrency":{"name":"Bifrost","symbol":"BFC","decimals":18},"infoURL":"https://bifrostnetwork.com","shortName":"tbfc","chainId":49088,"networkId":49088,"slip44":1,"icon":"bifrost","explorers":[{"name":"explorer-thebifrost","url":"https://explorer.testnet.bifrostnetwork.com","standard":"EIP3091"}]},{"name":"GUNZ Testnet","chain":"tGUN","rpc":["https://rpc.gunz.dev/ext/bc/ryk9vkvNuKtewME2PeCgybo9sdWXGmCkBrrx4VPuZPdVdAak8/rpc"],"faucets":[],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"nativeCurrency":{"name":"GUN","symbol":"GUN","decimals":18},"icon":"guntestnet","infoURL":"https://gunbygunz.com","shortName":"Stork","chainId":49321,"networkId":49321,"explorers":[{"name":"blockscout","url":"https://testnet.gunzscan.io","standard":"EIP3091"}]},{"name":"Energi Testnet","chain":"NRG","rpc":["https://nodeapi.test.energi.network"],"faucets":[],"nativeCurrency":{"name":"Energi","symbol":"NRG","decimals":18},"infoURL":"https://www.energi.world/","shortName":"tnrg","chainId":49797,"networkId":49797,"slip44":1},{"name":"Liveplex OracleEVM","chain":"Liveplex OracleEVM Network","rpc":["https://rpc.oracle.liveplex.io"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"","shortName":"LOE","chainId":50001,"networkId":50001,"explorers":[]},{"name":"Yooldo Verse Mainnet","chain":"Yooldo Verse","icon":"yooldo_verse","rpc":["https://rpc.yooldo-verse.xyz/"],"faucets":[],"nativeCurrency":{"name":"OAS","symbol":"OAS","decimals":18},"infoURL":"https://yooldo.gg/","shortName":"YVM","chainId":50005,"networkId":50005,"explorers":[{"name":"Yooldo Verse Explorer","url":"https://explorer.yooldo-verse.xyz","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-248"}},{"name":"Yooldo Verse Testnet","chain":"Yooldo Verse","icon":"yooldo_verse","rpc":["https://rpc.testnet.yooldo-verse.xyz/"],"faucets":[],"nativeCurrency":{"name":"OAS","symbol":"OAS","decimals":18},"infoURL":"https://yooldo.gg/","shortName":"YVT","chainId":50006,"networkId":50006,"slip44":1,"explorers":[{"name":"Yooldo Verse Explorer","url":"https://explorer.testnet.yooldo-verse.xyz","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-248"}},{"name":"GTON Testnet","chain":"GTON Testnet","rpc":["https://testnet.gton.network/"],"faucets":[],"nativeCurrency":{"name":"GCD","symbol":"GCD","decimals":18},"infoURL":"https://gton.capital","shortName":"tgton","chainId":50021,"networkId":50021,"slip44":1,"explorers":[{"name":"GTON Testnet Network Explorer","url":"https://explorer.testnet.gton.network","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-3"}},{"name":"Lumoz Testnet Alpha","chain":"ETH","rpc":["https://alpha-us-http-geth.lumoz.org","https://alpha-hk-http-geth.lumoz.org"],"faucets":[],"nativeCurrency":{"name":"Lumoz Test Token","symbol":"MOZ","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://lumoz.org","shortName":"Lumoz-Testnet","chainId":51178,"networkId":51178,"slip44":1,"icon":"opside-new","explorers":[{"name":"LumozTestnetInfo","url":"https://lumoz.info","icon":"opside-new","standard":"EIP3091"}]},{"name":"Sardis Mainnet","chain":"SRDX","icon":"sardis","rpc":["https://mainnet-rpc.sardisnetwork.com"],"faucets":["https://faucet.sardisnetwork.com"],"nativeCurrency":{"name":"Sardis","symbol":"SRDX","decimals":18},"infoURL":"https://mysardis.com","shortName":"SRDXm","chainId":51712,"networkId":51712,"explorers":[{"name":"Sardis","url":"https://contract-mainnet.sardisnetwork.com","standard":"EIP3091"}]},{"name":"Electroneum Mainnet","chain":"Electroneum","rpc":["https://rpc.electroneum.com"],"faucets":[],"nativeCurrency":{"name":"Electroneum","symbol":"ETN","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://electroneum.com","shortName":"etn-mainnet","chainId":52014,"networkId":52014,"icon":"electroneum","explorers":[{"name":"blockscout","url":"https://blockexplorer.electroneum.com","icon":"electroneum","standard":"EIP3091"}]},{"name":"DOID","chain":"DOID","rpc":["https://rpc.doid.tech"],"faucets":[],"nativeCurrency":{"name":"DOID","symbol":"DOID","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://doid.tech","shortName":"DOID","chainId":53277,"networkId":53277,"icon":"doid","explorers":[{"name":"DOID Scan","url":"https://scan.doid.tech","icon":"doid","standard":"EIP3091"}]},{"name":"DFK Chain","chain":"DFK","icon":"dfk","rpc":["https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc"],"faucets":[],"nativeCurrency":{"name":"Jewel","symbol":"JEWEL","decimals":18},"infoURL":"https://defikingdoms.com","shortName":"DFK","chainId":53935,"networkId":53935,"explorers":[{"name":"ethernal","url":"https://explorer.dfkchain.com","icon":"ethereum","standard":"none"}]},{"name":"Haqq Chain Testnet","chain":"TestEdge2","rpc":["https://rpc.eth.testedge2.haqq.network"],"faucets":["https://testedge2.haqq.network"],"nativeCurrency":{"name":"Islamic Coin","symbol":"ISLMT","decimals":18},"infoURL":"https://islamiccoin.net","shortName":"ISLMT","chainId":54211,"networkId":54211,"slip44":1,"explorers":[{"name":"TestEdge HAQQ Explorer","url":"https://explorer.testedge2.haqq.network","standard":"EIP3091"}]},{"name":"Toronet Testnet","chain":"Toronet","icon":"toronet","rpc":["http://testnet.toronet.org/rpc"],"faucets":[],"nativeCurrency":{"name":"Toro","symbol":"TORO","decimals":18},"infoURL":"https://toronet.org","shortName":"ToronetTestnet","chainId":54321,"networkId":54321,"slip44":1,"ens":{"registry":"0x059C474f26D65B0458F9da10A649a7322aB02C09"},"explorers":[{"name":"toronet_explorer","url":"https://testnet.toronet.org","standard":"none"}]},{"name":"Titan","chain":"ETH","rpc":["https://rpc.titan.tokamak.network","wss://rpc.titan.tokamak.network"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://tokamak.network","shortName":"teth","chainId":55004,"networkId":55004,"explorers":[{"name":"blockscout","url":"https://explorer.titan.tokamak.network","standard":"EIP3091"}]},{"name":"REI Chain Mainnet","chain":"REI","icon":"reichain","rpc":["https://rei-rpc.moonrhythm.io"],"faucets":["http://kururu.finance/faucet?chainId=55555"],"nativeCurrency":{"name":"Rei","symbol":"REI","decimals":18},"infoURL":"https://reichain.io","shortName":"reichain","chainId":55555,"networkId":55555,"explorers":[{"name":"reiscan","url":"https://reiscan.com","standard":"EIP3091"}]},{"name":"REI Chain Testnet","chain":"REI","icon":"reichain","rpc":["https://rei-testnet-rpc.moonrhythm.io"],"faucets":["http://kururu.finance/faucet?chainId=55556"],"nativeCurrency":{"name":"tRei","symbol":"tREI","decimals":18},"infoURL":"https://reichain.io","shortName":"trei","chainId":55556,"networkId":55556,"slip44":1,"explorers":[{"name":"reiscan","url":"https://testnet.reiscan.com","standard":"EIP3091"}]},{"name":"Boba BNB Mainnet","chain":"Boba BNB Mainnet","rpc":["https://bnb.boba.network","https://boba-bnb.gateway.tenderly.co/","https://gateway.tenderly.co/public/boba-bnb","https://replica.bnb.boba.network","wss://boba-bnb.gateway.tenderly.co/","wss://gateway.tenderly.co/public/boba-bnb"],"faucets":[],"nativeCurrency":{"name":"Boba Token","symbol":"BOBA","decimals":18},"infoURL":"https://boba.network","shortName":"BobaBnb","chainId":56288,"networkId":56288,"explorers":[{"name":"Boba BNB block explorer","url":"https://bobascan.com","standard":"none"}],"parent":{"type":"L2","chain":"eip155-5","bridges":[{"url":"https://gateway.boba.network"}]}},{"name":"VELO Labs Mainnet","chain":"NOVA chain","rpc":["https://nova.velo.org"],"faucets":["https://nova-faucet.velo.org"],"nativeCurrency":{"name":"Nova","symbol":"NOVA","decimals":18},"infoURL":"https://velo.org","shortName":"VELO","chainId":56789,"networkId":56789,"icon":"novachain","explorers":[{"name":"novascan","url":"https://novascan.velo.org","standard":"EIP3091"}]},{"name":"DOID Testnet","chain":"DOID","rpc":["https://rpc.testnet.doid.tech"],"faucets":[],"nativeCurrency":{"name":"DOID","symbol":"DOID","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://doid.tech","shortName":"doidTestnet","chainId":56797,"networkId":56797,"icon":"doid","explorers":[{"name":"DOID Testnet Scan","url":"https://scan.testnet.doid.tech","icon":"doid","standard":"EIP3091"}]},{"name":"Rollux Testnet","chain":"SYS","rpc":["https://rpc-tanenbaum.rollux.com","https://rpc.ankr.com/rollux_testnet/${ANKR_API_KEY}","wss://rpc-tanenbaum.rollux.com/wss","https://rollux.rpc.tanenbaum.io","wss://rollux.rpc.tanenbaum.io/wss"],"faucets":["https://rollux.id/faucetapp"],"nativeCurrency":{"name":"Testnet Syscoin","symbol":"TSYS","decimals":18},"infoURL":"https://rollux.com","shortName":"tsys-rollux","chainId":57000,"networkId":57000,"slip44":1,"explorers":[{"name":"Rollux Testnet Explorer","url":"https://rollux.tanenbaum.io","standard":"EIP3091"}]},{"name":"Sepolia PGN (Public Goods Network)","chain":"ETH","rpc":["https://sepolia.publicgoods.network"],"faucets":[],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://publicgoods.network/","shortName":"sepPGN","chainId":58008,"networkId":58008,"icon":"publicGoodsNetwork","explorers":[{"name":"blockscout","url":"https://explorer.sepolia.publicgoods.network","icon":"blockscout","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111","bridges":[{"url":"https://pgn-bridge.vercel.app/bridge"}]}},{"name":"Linea Goerli","title":"Linea Goerli Testnet","chain":"ETH","rpc":["https://rpc.goerli.linea.build","wss://rpc.goerli.linea.build","https://linea-goerli.infura.io/v3/${INFURA_API_KEY}","wss://linea-goerli.infura.io/ws/v3/${INFURA_API_KEY}"],"faucets":["https://faucetlink.to/goerli"],"nativeCurrency":{"name":"Linea Ether","symbol":"ETH","decimals":18},"infoURL":"https://linea.build","shortName":"linea-goerli","chainId":59140,"networkId":59140,"slip44":1,"icon":"linea","parent":{"type":"L2","chain":"eip155-5","bridges":[{"url":"https://goerli.hop.exchange/#/send?token=ETH&sourceNetwork=ethereum&destNetwork=linea"}]},"explorers":[{"name":"Etherscan","url":"https://goerli.lineascan.build","standard":"EIP3091","icon":"linea"},{"name":"Blockscout","url":"https://explorer.goerli.linea.build","standard":"EIP3091","icon":"linea"}],"status":"active"},{"name":"Linea Sepolia","title":"Linea Sepolia Testnet","chain":"ETH","rpc":["https://rpc.sepolia.linea.build","wss://rpc.sepolia.linea.build","https://linea-sepolia.infura.io/v3/${INFURA_API_KEY}","wss://linea-sepolia.infura.io/ws/v3/${INFURA_API_KEY}"],"faucets":[],"nativeCurrency":{"name":"Linea Ether","symbol":"ETH","decimals":18},"infoURL":"https://linea.build","shortName":"linea-sepolia","chainId":59141,"networkId":59141,"slip44":1,"icon":"linea","parent":{"type":"L2","chain":"eip155-5","bridges":[{"url":"https://bridge.linea.build/"}]},"explorers":[{"name":"Etherscan","url":"https://sepolia.lineascan.build","standard":"EIP3091","icon":"linea"},{"name":"Blockscout","url":"https://explorer.sepolia.linea.build","standard":"EIP3091","icon":"linea"}],"status":"active"},{"name":"Linea","title":"Linea Mainnet","chain":"ETH","rpc":["https://rpc.linea.build","wss://rpc.linea.build","https://linea-mainnet.infura.io/v3/${INFURA_API_KEY}","wss://linea-mainnet.infura.io/ws/v3/${INFURA_API_KEY}"],"faucets":[],"nativeCurrency":{"name":"Linea Ether","symbol":"ETH","decimals":18},"infoURL":"https://linea.build","shortName":"linea","chainId":59144,"networkId":59144,"icon":"linea","parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://bridge.linea.build"}]},"explorers":[{"name":"Etherscan","url":"https://lineascan.build","standard":"EIP3091","icon":"linea"},{"name":"Blockscout","url":"https://explorer.linea.build","standard":"EIP3091","icon":"linea"},{"name":"L2scan","url":"https://linea.l2scan.co","standard":"EIP3091","icon":"linea"}],"status":"active"},{"name":"Genesys Code Mainnet","chain":"GCODE","rpc":["https://mainnet.genesyscode.io/"],"faucets":[],"nativeCurrency":{"name":"GenesysCode","symbol":"GCODE","decimals":18},"infoURL":"https://genesyscode.io","shortName":"gcode","chainId":59971,"networkId":59971,"icon":"genesyscode","explorers":[{"name":"Genesys Scan","url":"https://genesysscan.io","icon":"genesyscode","standard":"none"}]},{"name":"Thinkium Testnet Chain 0","chain":"Thinkium","rpc":["https://test.thinkiumrpc.net/"],"faucets":["https://www.thinkiumdev.net/faucet"],"nativeCurrency":{"name":"TKM","symbol":"TKM","decimals":18},"infoURL":"https://thinkium.net/","shortName":"TKM-test0","chainId":60000,"networkId":60000,"slip44":1,"explorers":[{"name":"thinkiumscan","url":"https://test0.thinkiumscan.net","standard":"EIP3091"}]},{"name":"Thinkium Testnet Chain 1","chain":"Thinkium","rpc":["https://test1.thinkiumrpc.net/"],"faucets":["https://www.thinkiumdev.net/faucet"],"nativeCurrency":{"name":"TKM","symbol":"TKM","decimals":18},"infoURL":"https://thinkium.net/","shortName":"TKM-test1","chainId":60001,"networkId":60001,"slip44":1,"explorers":[{"name":"thinkiumscan","url":"https://test1.thinkiumscan.net","standard":"EIP3091"}]},{"name":"Thinkium Testnet Chain 2","chain":"Thinkium","rpc":["https://test2.thinkiumrpc.net/"],"faucets":["https://www.thinkiumdev.net/faucet"],"nativeCurrency":{"name":"TKM","symbol":"TKM","decimals":18},"infoURL":"https://thinkium.net/","shortName":"TKM-test2","chainId":60002,"networkId":60002,"slip44":1,"explorers":[{"name":"thinkiumscan","url":"https://test2.thinkiumscan.net","standard":"EIP3091"}]},{"name":"Thinkium Testnet Chain 103","chain":"Thinkium","rpc":["https://test103.thinkiumrpc.net/"],"faucets":["https://www.thinkiumdev.net/faucet"],"nativeCurrency":{"name":"TKM","symbol":"TKM","decimals":18},"infoURL":"https://thinkium.net/","shortName":"TKM-test103","chainId":60103,"networkId":60103,"slip44":1,"explorers":[{"name":"thinkiumscan","url":"https://test103.thinkiumscan.net","standard":"EIP3091"}]},{"name":"BOB","chain":"ETH","rpc":[],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://gobob.xyz","shortName":"bob","chainId":60808,"networkId":60808,"status":"incubating"},{"name":"KaiChain","chain":"KaiChain","rpc":["https://mainnet-rpc.kaichain.net"],"faucets":[],"nativeCurrency":{"name":"KaiChain Native Token","symbol":"KEC","decimals":18},"infoURL":"https://kaichain.net","shortName":"kec","chainId":61406,"networkId":61406,"explorers":[{"name":"KaiChain Explorer","url":"https://explorer.kaichain.net","standard":"EIP3091"}]},{"name":"AxelChain Dev-Net","chain":"AXEL","rpc":["https://aium-rpc-dev.viacube.com"],"faucets":[],"nativeCurrency":{"name":"Axelium","symbol":"AIUM","decimals":18},"infoURL":"https://www.axel.org","shortName":"aium-dev","chainId":61800,"networkId":61800,"icon":"axelium","explorers":[{"name":"AxelChain Dev-Net Explorer","url":"https://devexplorer2.viacube.com","standard":"EIP3091"}]},{"name":"Etica Mainnet","chain":"Etica Protocol (ETI/EGAZ)","icon":"etica","rpc":["https://eticamainnet.eticascan.org","https://eticamainnet.eticaprotocol.org"],"faucets":["http://faucet.etica-stats.org/"],"nativeCurrency":{"name":"EGAZ","symbol":"EGAZ","decimals":18},"infoURL":"https://eticaprotocol.org","shortName":"Etica","chainId":61803,"networkId":61803,"explorers":[{"name":"eticascan","url":"https://eticascan.org","standard":"EIP3091"},{"name":"eticastats","url":"http://explorer.etica-stats.org","standard":"EIP3091"}]},{"name":"DoKEN Super Chain Mainnet","chain":"DoKEN Super Chain","rpc":["https://sgrpc.doken.dev","https://nyrpc.doken.dev","https://ukrpc.doken.dev"],"faucets":[],"nativeCurrency":{"name":"DoKEN","symbol":"DKN","decimals":18},"infoURL":"https://doken.dev/","shortName":"DoKEN","chainId":61916,"networkId":61916,"icon":"doken","explorers":[{"name":"DSC Scan","url":"https://explore.doken.dev","icon":"doken","standard":"EIP3091"}]},{"name":"OPTOPIA Testnet","chain":"ETH","rpc":["https://rpc-testnet.optopia.ai"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"features":[{"name":"EIP1559"}],"infoURL":"https://optopia.ai","shortName":"OPTOPIA-Testnet","chainId":62049,"networkId":62049,"icon":"optopia","explorers":[{"name":"optopia-testnet-scan","url":"https://scan-testnet.optopia.ai","icon":"optopia","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111","bridges":[{"url":"https://bridge-testnet.optopia.ai"}]}},{"name":"Optopia Mainnet","status":"incubating","chain":"ETH","rpc":[],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"features":[{"name":"EIP1559"}],"infoURL":"https://optopia.ai","shortName":"Optopia","chainId":62050,"networkId":62050,"icon":"optopia","explorers":[],"parent":{"type":"L2","chain":"eip155-1"}},{"name":"Celo Baklava Testnet","chainId":62320,"shortName":"BKLV","chain":"CELO","networkId":62320,"slip44":1,"nativeCurrency":{"name":"CELO","symbol":"CELO","decimals":18},"rpc":["https://baklava-forno.celo-testnet.org"],"faucets":["https://docs.google.com/forms/d/e/1FAIpQLSdfr1BwUTYepVmmvfVUDRCwALejZ-TUva2YujNpvrEmPAX2pg/viewform","https://cauldron.pretoriaresearchlab.io/baklava-faucet"],"infoURL":"https://docs.celo.org/"},{"name":"MultiVAC Mainnet","chain":"MultiVAC","icon":"multivac","rpc":["https://rpc.mtv.ac","https://rpc-eu.mtv.ac"],"faucets":[],"nativeCurrency":{"name":"MultiVAC","symbol":"MTV","decimals":18},"infoURL":"https://mtv.ac","shortName":"mtv","chainId":62621,"networkId":62621,"explorers":[{"name":"MultiVAC Explorer","url":"https://e.mtv.ac","standard":"none"}]},{"name":"eCredits Mainnet","chain":"ECS","rpc":["https://rpc.ecredits.com"],"faucets":[],"nativeCurrency":{"name":"eCredits","symbol":"ECS","decimals":18},"infoURL":"https://ecredits.com","shortName":"ecs","chainId":63000,"networkId":63000,"icon":"ecredits","explorers":[{"name":"eCredits MainNet Explorer","url":"https://explorer.ecredits.com","icon":"ecredits","standard":"EIP3091"}]},{"name":"eCredits Testnet","chain":"ECS","rpc":["https://rpc.tst.ecredits.com"],"faucets":["https://faucet.tst.ecredits.com"],"nativeCurrency":{"name":"eCredits","symbol":"ECS","decimals":18},"infoURL":"https://ecredits.com","shortName":"ecs-testnet","chainId":63001,"networkId":63001,"slip44":1,"icon":"ecredits","explorers":[{"name":"eCredits TestNet Explorer","url":"https://explorer.tst.ecredits.com","icon":"ecredits","standard":"EIP3091"}]},{"name":"Scolcoin Mainnet","chain":"SCOLWEI","rpc":["https://mainnet-rpc.scolcoin.com"],"faucets":[],"nativeCurrency":{"name":"Scolcoin","symbol":"SCOL","decimals":18},"infoURL":"https://scolcoin.com","shortName":"SRC","chainId":65450,"networkId":65450,"icon":"scolcoin","explorers":[{"name":"Scolscan Explorer","url":"https://explorer.scolcoin.com","standard":"EIP3091"}]},{"name":"Janus Testnet","chain":"JanusNetwork","icon":"janusnetwork","rpc":["https://rpc.test.janusnetwork.io"],"faucets":[],"nativeCurrency":{"name":"Janus","symbol":"JNS","decimals":18},"infoURL":"https://janus-network.gitbook.io/janus","shortName":"janusnetwork-testnet","chainId":66988,"networkId":66988,"slip44":1,"status":"active","explorers":[{"name":"JanusNetwork Testnet Explorer","url":"https://beta.scan.janusnetwork.io","standard":"none"}]},{"name":"SiriusNet","chain":"SIN","status":"deprecated","rpc":["https://u0tnafcv6j:o2T045sxuCNXL878RDQLp5__Zj-es2cvdjtgkl4etn0@u0v7kwtvtg-u0wj114sve-rpc.us0-aws.kaleido.io/"],"faucets":[],"nativeCurrency":{"name":"MCD","symbol":"MCD","decimals":18},"infoURL":"https://macaucasinolisboa.xyz","shortName":"mcl","chainId":67390,"networkId":67390,"explorers":[{"name":"siriusnetscan","url":"https://siriusnet.tryethernal.com","standard":"EIP3091"}]},{"name":"Cosmic Chain","chain":"COSMIC","rpc":["http://testnet.cosmicchain.site:3344"],"faucets":[],"nativeCurrency":{"name":"Cosmic Chain","symbol":"COSMIC","decimals":18},"infoURL":"https://cosmicchain.site","shortName":"Cosmic","chainId":67588,"networkId":3344},{"name":"DM2 Verse Mainnet","chain":"DM2 Verse","icon":"dm2verse","rpc":["https://rpc.dm2verse.dmm.com"],"faucets":[],"nativeCurrency":{"name":"OAS","symbol":"OAS","decimals":18},"infoURL":"https://seamoon.dmm.com","shortName":"dm2","chainId":68770,"networkId":68770,"explorers":[{"name":"DM2Verse Explorer","url":"https://explorer.dm2verse.dmm.com","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-248"}},{"name":"Condrieu","title":"Ethereum Verkle Testnet Condrieu","chain":"ETH","rpc":["https://rpc.condrieu.ethdevops.io:8545"],"faucets":["https://faucet.condrieu.ethdevops.io"],"nativeCurrency":{"name":"Condrieu Testnet Ether","symbol":"CTE","decimals":18},"infoURL":"https://condrieu.ethdevops.io","shortName":"cndr","chainId":69420,"networkId":69420,"slip44":1,"explorers":[{"name":"Condrieu explorer","url":"https://explorer.condrieu.ethdevops.io","standard":"none"}]},{"name":"Thinkium Mainnet Chain 0","chain":"Thinkium","rpc":["https://proxy.thinkiumrpc.net/"],"faucets":[],"nativeCurrency":{"name":"TKM","symbol":"TKM","decimals":18},"infoURL":"https://thinkium.net/","shortName":"TKM0","chainId":70000,"networkId":70000,"explorers":[{"name":"thinkiumscan","url":"https://chain0.thinkiumscan.net","standard":"EIP3091"}]},{"name":"Thinkium Mainnet Chain 1","chain":"Thinkium","rpc":["https://proxy1.thinkiumrpc.net/"],"faucets":[],"nativeCurrency":{"name":"TKM","symbol":"TKM","decimals":18},"infoURL":"https://thinkium.net/","shortName":"TKM1","chainId":70001,"networkId":70001,"explorers":[{"name":"thinkiumscan","url":"https://chain1.thinkiumscan.net","standard":"EIP3091"}]},{"name":"Thinkium Mainnet Chain 2","chain":"Thinkium","rpc":["https://proxy2.thinkiumrpc.net/"],"faucets":[],"nativeCurrency":{"name":"TKM","symbol":"TKM","decimals":18},"infoURL":"https://thinkium.net/","shortName":"TKM2","chainId":70002,"networkId":70002,"explorers":[{"name":"thinkiumscan","url":"https://chain2.thinkiumscan.net","standard":"EIP3091"}]},{"name":"Thinkium Mainnet Chain 103","chain":"Thinkium","rpc":["https://proxy103.thinkiumrpc.net/"],"faucets":[],"nativeCurrency":{"name":"TKM","symbol":"TKM","decimals":18},"infoURL":"https://thinkium.net/","shortName":"TKM103","chainId":70103,"networkId":70103,"explorers":[{"name":"thinkiumscan","url":"https://chain103.thinkiumscan.net","standard":"EIP3091"}]},{"name":"Proof of Play - Apex","chainId":70700,"shortName":"pop-apex","chain":"ETH","networkId":70700,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://rpc.apex.proofofplay.com"],"faucets":[],"explorers":[{"name":"Proof of Play Apex Explorer","url":"https://explorer.apex.proofofplay.com","icon":"pop-apex","standard":"EIP3091"}],"infoURL":"https://proofofplay.com","icon":"pop-apex","parent":{"type":"L2","chain":"eip155-42161","bridges":[{"url":"https://bridge.arbitrum.io"},{"url":"https://relay.link/bridge/apex/"}]}},{"name":"GuapcoinX","chain":"GuapcoinX","rpc":["https://rpc-mainnet.guapcoinx.com/","https://rpc-mainnet-1.guapcoinx.com/","https://rpc-mainnet-2.guapcoinx.com/"],"faucets":[],"nativeCurrency":{"name":"GuapcoinX","symbol":"GuapX","decimals":18},"infoURL":"https://guapcoin.org/","shortName":"GuapX","chainId":71111,"networkId":71111,"icon":"guapcoinx","explorers":[{"name":"GuapcoinX Explorer","url":"http://explorer.guapcoinx.com","standard":"none","icon":"guapcoinx"}]},{"name":"Polyjuice Testnet","chain":"CKB","icon":"polyjuice","rpc":["https://godwoken-testnet-web3-rpc.ckbapp.dev","ws://godwoken-testnet-web3-rpc.ckbapp.dev/ws"],"faucets":["https://faucet.nervos.org/"],"nativeCurrency":{"name":"CKB","symbol":"CKB","decimals":8},"infoURL":"https://github.com/nervosnetwork/godwoken","shortName":"ckb","chainId":71393,"networkId":1,"slip44":1},{"name":"Godwoken Testnet v1","chain":"GWT","rpc":["https://godwoken-testnet-v1.ckbapp.dev","https://v1.testnet.godwoken.io/rpc"],"faucets":["https://testnet.bridge.godwoken.io"],"nativeCurrency":{"name":"pCKB","symbol":"pCKB","decimals":18},"infoURL":"https://www.nervos.org","shortName":"gw-testnet-v1","chainId":71401,"networkId":71401,"slip44":1,"explorers":[{"name":"GWScan Block Explorer","url":"https://v1.testnet.gwscan.com","standard":"none"}]},{"name":"Godwoken Mainnet","chain":"GWT","rpc":["https://v1.mainnet.godwoken.io/rpc"],"faucets":[],"nativeCurrency":{"name":"pCKB","symbol":"pCKB","decimals":18},"infoURL":"https://www.nervos.org","shortName":"gw-mainnet-v1","chainId":71402,"networkId":71402,"explorers":[{"name":"GWScan Block Explorer","url":"https://v1.gwscan.com","standard":"none"}]},{"name":"CAGA crypto Ankara testnet","chain":"Ankara","rpc":["https://www.ankara-cagacrypto.com","wss://wss.ankara-cagacrypto.com"],"faucets":[],"nativeCurrency":{"name":"Caga","symbol":"CAGA","decimals":18},"infoURL":"https://www.cagacrypto.com/","shortName":"caga","chainId":72778,"networkId":72778,"icon":"ankaracaga","explorers":[{"name":"ankara","url":"https://explorer.ankara-cagacrypto.com","standard":"EIP3091"}]},{"name":"Grok Chain Mainnet","chain":"Grok","icon":"grokicon","rpc":["https://mainnet-rpc.grokchain.dev"],"faucets":[],"nativeCurrency":{"name":"Groc","symbol":"GROC","decimals":18},"infoURL":"https://grokchain.dev","shortName":"GrokChain","chainId":72992,"networkId":72992,"explorers":[{"name":"GrokScan","url":"https://mainnet-explorer.grokchain.dev","standard":"none"}]},{"name":"ICB Testnet","chain":"ICBT","icon":"icbnetwork","rpc":["https://rpc1-testnet.icbnetwork.info/","https://rpc2-testnet.icbnetwork.info/"],"faucets":[],"nativeCurrency":{"name":"ICB Testnet Token","symbol":"ICBT","decimals":18},"infoURL":"https://icb.network","shortName":"ICBT","chainId":73114,"networkId":73114,"explorers":[{"name":"ICB Tesnet Explorer","url":"https://testnet.icbscan.io","standard":"EIP3091"}]},{"name":"ICB Network","chain":"ICB","icon":"icbnetwork","rpc":["https://rpc1-mainnet.icbnetwork.info/","https://rpc2-mainnet.icbnetwork.info/"],"faucets":[],"nativeCurrency":{"name":"ICB Native Token","symbol":"ICBX","decimals":18},"infoURL":"https://icb.network","shortName":"ICBX","chainId":73115,"networkId":73115,"explorers":[{"name":"ICB Explorer","url":"https://icbscan.io","standard":"EIP3091"}]},{"name":"Energy Web Volta Testnet","chain":"Volta","rpc":["https://volta-rpc.energyweb.org","wss://volta-rpc.energyweb.org/ws"],"faucets":["https://voltafaucet.energyweb.org"],"nativeCurrency":{"name":"Volta Token","symbol":"VT","decimals":18},"infoURL":"https://energyweb.org","shortName":"vt","chainId":73799,"networkId":73799,"slip44":1},{"name":"Mixin Virtual Machine","chain":"MVM","rpc":["https://geth.mvm.dev"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://mvm.dev","shortName":"mvm","chainId":73927,"networkId":73927,"icon":"mvm","explorers":[{"name":"mvmscan","url":"https://scan.mvm.dev","icon":"mvm","standard":"EIP3091"}]},{"name":"ResinCoin Mainnet","chain":"RESIN","icon":"resincoin","rpc":[],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"RESIN","decimals":18},"infoURL":"https://resincoin.dev","shortName":"resin","chainId":75000,"networkId":75000,"explorers":[{"name":"ResinScan","url":"https://explorer.resincoin.dev","standard":"none"}]},{"name":"BORAchain mainnet","chain":"BORA","icon":"bora","rpc":["https://public-node.api.boraportal.com/bora/mainnet"],"faucets":[],"nativeCurrency":{"name":"BGAS","symbol":"BGAS","decimals":18},"infoURL":"https://www.boraportal.com","shortName":"BORAchain","chainId":77001,"networkId":77001,"slip44":8217,"explorers":[{"name":"BORAchainscope","url":"https://scope.boraportal.com","standard":"EIP3091"}]},{"name":"Foundry Chain Testnet","chain":"tFNC","icon":"fnc","rpc":["https://testnet-rpc.foundryscan.org/"],"faucets":["https://faucet.foundryscan.org"],"nativeCurrency":{"name":"Foundry Chain Testnet","symbol":"tFNC","decimals":18},"infoURL":"https://foundrychain.org","shortName":"fnc","chainId":77238,"networkId":77238,"slip44":1,"explorers":[{"name":"Foundry Scan Testnet","url":"https://testnet-explorer.foundryscan.org","standard":"EIP3091"}]},{"name":"Vention Smart Chain Mainnet","chain":"VSC","icon":"vention","rpc":["https://mainnet-rpc.vention.network"],"faucets":["https://faucet.vention.network"],"nativeCurrency":{"name":"VNT","symbol":"VNT","decimals":18},"infoURL":"https://ventionscan.io","shortName":"vscm","chainId":77612,"networkId":77612,"explorers":[{"name":"ventionscan","url":"https://ventionscan.io","standard":"EIP3091"}]},{"name":"Toronet Mainnet","chain":"Toronet","icon":"toronet","rpc":["http://toronet.org/rpc"],"faucets":[],"nativeCurrency":{"name":"Toro","symbol":"TORO","decimals":18},"infoURL":"https://toronet.org","shortName":"Toronet","chainId":77777,"networkId":77777,"ens":{"registry":"0x1f45a71f4aAD769E27c969c4359E0e250C67165c"},"explorers":[{"name":"toronet_explorer","url":"https://toronet.org/explorer","standard":"none"}]},{"name":"Firenze test network","chain":"ETH","rpc":["https://ethnode.primusmoney.com/firenze"],"faucets":[],"nativeCurrency":{"name":"Firenze Ether","symbol":"FIN","decimals":18},"infoURL":"https://primusmoney.com","shortName":"firenze","chainId":78110,"networkId":78110,"slip44":1},{"name":"Dragonfly Mainnet (Hexapod)","chain":"Dragonfly","icon":"dragonfly","rpc":["https://dragonfly-rpc.switch.ch","https://dragonfly-rpc.kore-technologies.ch","https://dragonfly-rpc.phoenix-systems.io","https://dragonfly-rpc.block-spirit.ch"],"faucets":[],"nativeCurrency":{"name":"Dragonfly","symbol":"DFLY","decimals":18},"infoURL":"https://hexapod.network","shortName":"dfly","chainId":78281,"networkId":78281,"explorers":[{"name":"Dragonfly Blockscout","url":"https://blockscout.dragonfly.hexapod.network","icon":"blockscout","standard":"EIP3091"}]},{"name":"Amplify Subnet","chain":"AMPLIFY","rpc":["https://subnets.avax.network/amplify/testnet/rpc"],"features":[{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"AMP","symbol":"AMP","decimals":18},"infoURL":"https://www.avax.network","shortName":"amplify","chainId":78430,"networkId":78430,"slip44":1,"explorers":[{"name":"AMPLIFY Explorer","url":"https://subnets-test.avax.network/amplify","standard":"EIP3091"}]},{"name":"Bulletin Subnet","chain":"BULLETIN","rpc":["https://subnets.avax.network/bulletin/testnet/rpc"],"features":[{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"BLT","symbol":"BLT","decimals":18},"infoURL":"https://www.avax.network","shortName":"bulletin","chainId":78431,"networkId":78431,"slip44":1,"explorers":[{"name":"BULLETIN Explorer","url":"https://subnets-test.avax.network/bulletin","standard":"EIP3091"}]},{"name":"Conduit Subnet","chain":"CONDUIT","rpc":["https://subnets.avax.network/conduit/testnet/rpc"],"features":[{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"CON","symbol":"CON","decimals":18},"infoURL":"https://www.avax.network","shortName":"conduit","chainId":78432,"networkId":78432,"slip44":1,"explorers":[{"name":"CONDUIT Explorer","url":"https://subnets-test.avax.network/conduit","standard":"EIP3091"}]},{"name":"Vanguard","title":"Vanar Testnet Vanguard","chain":"VANAR","rpc":["https://rpc-vanguard.vanarchain.com","wss://ws-vanguard.vanarchain.com"],"faucets":["https://faucet.vanarchain.com"],"nativeCurrency":{"name":"Vanguard Vanry","symbol":"VANRY","decimals":18},"features":[{"name":"EIP155"}],"infoURL":"https://vanarchain.com","shortName":"vanguard","chainId":78600,"networkId":78600,"icon":"vanguard","explorers":[{"name":"Vanguard Explorer","url":"https://explorer-vanguard.vanarchain.com","icon":"vanguard","standard":"EIP3091"}]},{"name":"Gold Smart Chain Testnet","chain":"STAND","icon":"standTestnet","rpc":["https://rpc-testnet.goldsmartchain.com"],"faucets":["https://faucet.goldsmartchain.com"],"nativeCurrency":{"name":"Standard in Gold","symbol":"STAND","decimals":18},"infoURL":"https://goldsmartchain.com","shortName":"STANDt","chainId":79879,"networkId":79879,"slip44":1,"explorers":[{"name":"Gold Smart Chain","url":"https://testnet.goldsmartchain.com","standard":"EIP3091"}]},{"name":"Mumbai","title":"Polygon Testnet Mumbai","chain":"Polygon","icon":"polygon","rpc":["https://rpc-mumbai.maticvigil.com","https://polygon-mumbai-bor-rpc.publicnode.com","wss://polygon-mumbai-bor-rpc.publicnode.com","https://polygon-mumbai.gateway.tenderly.co","wss://polygon-mumbai.gateway.tenderly.co"],"faucets":["https://faucet.polygon.technology/"],"nativeCurrency":{"name":"MATIC","symbol":"MATIC","decimals":18},"infoURL":"https://polygon.technology/","shortName":"maticmum","chainId":80001,"networkId":80001,"slip44":1,"explorers":[{"name":"polygonscan","url":"https://mumbai.polygonscan.com","standard":"EIP3091"}]},{"name":"Amoy","title":"Polygon Amoy Testnet","chain":"Polygon","icon":"polygon","rpc":["https://rpc-amoy.polygon.technology","https://polygon-amoy-bor-rpc.publicnode.com","wss://polygon-amoy-bor-rpc.publicnode.com"],"faucets":["https://faucet.polygon.technology/"],"nativeCurrency":{"name":"MATIC","symbol":"MATIC","decimals":18},"infoURL":"https://polygon.technology/","shortName":"polygonamoy","chainId":80002,"networkId":80002,"slip44":1,"explorers":[{"name":"polygonamoy","url":"https://www.oklink.com/amoy","standard":"EIP3091"}]},{"name":"Berachain Artio","chain":"Berachain Artio","rpc":["https://artio.rpc.berachain.com","https://rpc.ankr.com/berachain_testnet"],"faucets":["https://artio.faucet.berachain.com"],"nativeCurrency":{"name":"BERA Token","symbol":"BERA","decimals":18},"infoURL":"https://www.berachain.com","shortName":"berachainArtio","chainId":80085,"networkId":80085,"icon":"berachain","explorers":[{"name":"Beratrail","url":"https://artio.beratrail.io","icon":"berachain","standard":"none"}]},{"name":"Hizoco mainnet","chain":"HZC","icon":"hizoco","rpc":["https://hizoco.net/rpc"],"faucets":[],"nativeCurrency":{"name":"Hizoco","symbol":"HZC","decimals":18},"infoURL":"http://hizoco.net","shortName":"hzc","chainId":80096,"networkId":80096,"explorers":[{"name":"blockscout","url":"https://hizoco.net:38443","standard":"none"}]},{"name":"Nordek Mainnet","chain":"Nordek","icon":"nordek","rpc":["https://mainnet-rpc.nordekscan.com"],"faucets":[],"nativeCurrency":{"name":"NRK","symbol":"NRK","decimals":18},"infoURL":"https://nordekscan.com","shortName":"nordek","chainId":81041,"networkId":81041,"explorers":[{"name":"nordek","url":"https://nordekscan.com","standard":"EIP3091"}]},{"name":"Amana Testnet","chain":"MEER","rpc":[],"faucets":[],"nativeCurrency":{"name":"Amana Testnet","symbol":"MEER-T","decimals":18},"infoURL":"https://github.com/Qitmeer","shortName":"amanatest","icon":"meer","chainId":81341,"networkId":81341,"slip44":1,"status":"incubating"},{"name":"Amana Mixnet","chain":"MEER","rpc":[],"faucets":[],"nativeCurrency":{"name":"Amana Mixnet","symbol":"MEER-M","decimals":18},"infoURL":"https://github.com/Qitmeer","shortName":"amanamix","icon":"meer","chainId":81342,"networkId":81342,"status":"incubating"},{"name":"Amana Privnet","chain":"MEER","rpc":[],"faucets":[],"nativeCurrency":{"name":"Amana Privnet","symbol":"MEER-P","decimals":18},"infoURL":"https://github.com/Qitmeer","shortName":"amanapriv","icon":"meer","chainId":81343,"networkId":81343,"status":"incubating"},{"name":"Flana Testnet","chain":"MEER","rpc":[],"faucets":[],"nativeCurrency":{"name":"Flana Testnet","symbol":"MEER-T","decimals":18},"infoURL":"https://github.com/Qitmeer","shortName":"flanatest","icon":"meer","chainId":81351,"networkId":81351,"slip44":1,"status":"incubating"},{"name":"Flana Mixnet","chain":"MEER","rpc":[],"faucets":[],"nativeCurrency":{"name":"Flana Mixnet","symbol":"MEER-M","decimals":18},"infoURL":"https://github.com/Qitmeer","shortName":"flanamix","icon":"meer","chainId":81352,"networkId":81352,"status":"incubating"},{"name":"Flana Privnet","chain":"MEER","rpc":[],"faucets":[],"nativeCurrency":{"name":"Flana Privnet","symbol":"MEER-P","decimals":18},"infoURL":"https://github.com/Qitmeer","shortName":"flanapriv","icon":"meer","chainId":81353,"networkId":81353,"status":"incubating"},{"name":"Mizana Testnet","chain":"MEER","rpc":[],"faucets":[],"nativeCurrency":{"name":"Mizana Testnet","symbol":"MEER-T","decimals":18},"infoURL":"https://github.com/Qitmeer","shortName":"mizanatest","icon":"meer","chainId":81361,"networkId":81361,"slip44":1,"status":"incubating"},{"name":"Mizana Mixnet","chain":"MEER","rpc":[],"faucets":[],"nativeCurrency":{"name":"Mizana Mixnet","symbol":"MEER-M","decimals":18},"infoURL":"https://github.com/Qitmeer","shortName":"mizanamix","icon":"meer","chainId":81362,"networkId":81362,"status":"incubating"},{"name":"Mizana Privnet","chain":"MEER","rpc":[],"faucets":[],"nativeCurrency":{"name":"Mizana Privnet","symbol":"MEER-P","decimals":18},"infoURL":"https://github.com/Qitmeer","shortName":"mizanapriv","icon":"meer","chainId":81363,"networkId":81363,"status":"incubating"},{"name":"Blast","status":"active","chain":"ETH","rpc":["https://rpc.blast.io","https://rpc.ankr.com/blast","https://blast.din.dev/rpc","https://blastl2-mainnet.public.blastapi.io","https://blast.blockpi.network/v1/rpc/public"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://blast.io/","shortName":"blastmainnet","chainId":81457,"networkId":81457,"icon":"blast","explorers":[{"name":"Blastscan","url":"https://blastscan.io","icon":"blast","standard":"EIP3091"},{"name":"Blast Explorer","url":"https://blastexplorer.io","icon":"blast","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1"}},{"name":"Quantum Chain Mainnet","chain":"QNET","icon":"qnet","rpc":["https://rpc.quantumscan.org"],"faucets":[],"nativeCurrency":{"name":"Quantum Chain","symbol":"QNET","decimals":18},"infoURL":"https://quantumnetwork.gg","shortName":"qnet","chainId":81720,"networkId":81720,"explorers":[{"name":"Quantum Scan Mainnet","url":"https://quantumscan.org","standard":"EIP3091"}]},{"name":"Smart Layer Network Testnet","chain":"SLN","rpc":["https://rpc.test.smartlayer.network"],"faucets":[],"nativeCurrency":{"name":"Service Unit Token","symbol":"SU","decimals":18},"infoURL":"https://www.smartlayer.network/","shortName":"tSLN","chainId":82459,"networkId":82459,"explorers":[{"name":"SLN Testnet Explorer","url":"https://explorer.test.smartlayer.network","standard":"EIP3091"}]},{"name":"ZEDXION","chain":"ZEDXION","rpc":["https://mainnet-rpc.zedscan.net"],"faucets":[],"nativeCurrency":{"name":"Zedxion","symbol":"zedx","decimals":9},"infoURL":"https://docs.zedscan.net","shortName":"ZEDX","chainId":83872,"networkId":83872,"explorers":[{"name":"Zedscan","url":"http://zedscan.net","standard":"EIP3091"}]},{"name":"Base Goerli Testnet","chain":"ETH","rpc":["https://goerli.base.org","https://base-goerli.gateway.tenderly.co","wss://base-goerli.gateway.tenderly.co","https://base-goerli-rpc.publicnode.com","wss://base-goerli-rpc.publicnode.com"],"faucets":["https://www.coinbase.com/faucets/base-ethereum-goerli-faucet"],"nativeCurrency":{"name":"Goerli Ether","symbol":"ETH","decimals":18},"infoURL":"https://base.org","shortName":"basegor","chainId":84531,"networkId":84531,"slip44":1,"icon":"baseTestnet","explorers":[{"name":"basescan","url":"https://goerli.basescan.org","standard":"none"},{"name":"basescout","url":"https://base-goerli.blockscout.com","icon":"blockscout","standard":"EIP3091"},{"name":"dexguru","url":"https://base-goerli.dex.guru","icon":"dexguru","standard":"EIP3091"}]},{"name":"Base Sepolia Testnet","chain":"ETH","rpc":["https://sepolia.base.org","https://base-sepolia-rpc.publicnode.com","wss://base-sepolia-rpc.publicnode.com"],"faucets":[],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://base.org","shortName":"basesep","chainId":84532,"networkId":84532,"slip44":1,"icon":"baseTestnet","explorers":[{"name":"basescout","url":"https://base-sepolia.blockscout.com","icon":"blockscout","standard":"EIP3091"}]},{"name":"Aerie Network","chain":"Aerie","rpc":["https://mainnet.aerielab.io"],"faucets":[],"nativeCurrency":{"name":"Aerie","symbol":"AER","decimals":18},"infoURL":"https://aerielab.io/","shortName":"Aerie","chainId":84886,"networkId":84886,"icon":"aerie","explorers":[{"name":"Aerie Explorer","url":"https://explorer.aerielab.io","icon":"aerie","standard":"EIP3091"}]},{"name":"CYBERTRUST","chain":"CYBER","rpc":["http://testnet.cybertrust.space:48501"],"faucets":[],"nativeCurrency":{"name":"Cyber Trust","symbol":"CYBER","decimals":18},"infoURL":"https://cybertrust.space","shortName":"Cyber","chainId":85449,"networkId":48501},{"name":"Nautilus Proteus Testnet","chain":"ETH","icon":"nautilus","rpc":["https://api.proteus.nautchain.xyz/solana"],"faucets":["https://proteusfaucet.nautchain.xyz"],"nativeCurrency":{"name":"Zebec Test Token","symbol":"tZBC","decimals":18},"infoURL":"https://docs.nautchain.xyz","shortName":"NAUTTest","chainId":88002,"networkId":88002,"slip44":1,"explorers":[{"name":"Nautscan","url":"https://proteus.nautscan.com","standard":"EIP3091","icon":"nautilus"}]},{"name":"Unit Zero Testnet","chain":"Unit Zero","rpc":["https://rpc-testnet.unit0.dev"],"faucets":[],"nativeCurrency":{"name":"UNIT0","symbol":"UNIT0","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://units.network","shortName":"unit0-testnet","chainId":88817,"networkId":88817,"explorers":[{"name":"explorer-testnet","url":"https://explorer-testnet.unit0.dev","standard":"EIP3091"}]},{"name":"Unit Zero Stagenet","chain":"Unit Zero","rpc":["https://rpc-stagenet.unit0.dev"],"faucets":[],"nativeCurrency":{"name":"UNIT0","symbol":"UNIT0","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://units.network","shortName":"unit0-stagenet","chainId":88819,"networkId":88819,"explorers":[{"name":"explorer-stagenet","url":"https://explorer-stagenet.unit0.dev","standard":"EIP3091"}]},{"name":"Chiliz Scoville Testnet","chain":"CHZ","rpc":["https://scoville-rpc.chiliz.com"],"faucets":["https://scoville-faucet.chiliz.com"],"nativeCurrency":{"name":"Chiliz","symbol":"CHZ","decimals":18},"icon":"chiliz","infoURL":"https://www.chiliz.com/en/chain","shortName":"chz","chainId":88880,"networkId":88880,"slip44":1,"explorers":[{"name":"scoville-explorer","url":"https://scoville-explorer.chiliz.com","standard":"none"}]},{"name":"IVAR Chain Mainnet","chain":"IVAR","icon":"ivar","rpc":["https://mainnet-rpc.ivarex.com"],"faucets":["https://faucet.ivarex.com/"],"nativeCurrency":{"name":"Ivar","symbol":"IVAR","decimals":18},"infoURL":"https://ivarex.com","shortName":"ivar","chainId":88888,"networkId":88888,"explorers":[{"name":"ivarscan","url":"https://ivarscan.com","standard":"EIP3091"}]},{"name":"F(x)Core Testnet Network","chain":"Fxcore","rpc":["https://testnet-fx-json-web3.functionx.io:8545"],"faucets":[],"nativeCurrency":{"name":"Function X","symbol":"FX","decimals":18},"infoURL":"https://functionx.io/","shortName":"dhobyghaut","chainId":90001,"networkId":90001,"icon":"fxcore"},{"name":"Beverly Hills","title":"Ethereum multi-client Verkle Testnet Beverly Hills","chain":"ETH","rpc":["https://rpc.beverlyhills.ethdevops.io:8545"],"faucets":["https://faucet.beverlyhills.ethdevops.io"],"nativeCurrency":{"name":"Beverly Hills Testnet Ether","symbol":"BVE","decimals":18},"infoURL":"https://beverlyhills.ethdevops.io","shortName":"bvhl","chainId":90210,"networkId":90210,"status":"incubating","explorers":[{"name":"Beverly Hills explorer","url":"https://explorer.beverlyhills.ethdevops.io","standard":"none"}]},{"name":"Nautilus Trition Chain","title":"Nautilus Trition Testnet","chain":"ETH","icon":"nautilus","rpc":["https://triton.api.nautchain.xyz"],"faucets":["https://faucet.eclipse.builders"],"nativeCurrency":{"name":"Nautilus Zebec Testnet Tokens","symbol":"tZBC","decimals":18},"infoURL":"https://docs.nautchain.xyz","shortName":"NAUT","chainId":91002,"networkId":91002,"explorers":[{"name":"Nautscan","url":"https://triton.nautscan.com","standard":"EIP3091"}]},{"name":"MetaDAP Enterprise Mainnet","title":"MetaDAP Enterprise Mainnet","chain":"MetaDAP","icon":"metadap","faucets":[],"rpc":["https://rpc.chain.metadap.io","wss://rpc-ws.chain.metadap.io"],"nativeCurrency":{"name":"DAP","symbol":"DAP","decimals":18},"infoURL":"https://metadap.io/","shortName":"MetaDAP","chainId":91120,"networkId":91120,"explorers":[{"name":"MetaDAP Enterprise Mainnet explorer","url":"https://explorer.chain.metadap.io","standard":"none"}]},{"name":"Combo Testnet","chain":"Combo","icon":"combo","rpc":["https://test-rpc.combonetwork.io"],"faucets":[],"nativeCurrency":{"name":"BNB Chain Native Token","symbol":"tcBNB","decimals":18},"infoURL":"https://combonetwork.io","shortName":"combo-testnet","chainId":91715,"networkId":91715,"explorers":[{"name":"combotrace explorer","url":"https://combotrace-testnet.nodereal.io","standard":"EIP3091"}]},{"name":"Lambda Testnet","chain":"Lambda","rpc":["https://evm.lambda.top/"],"faucets":["https://faucet.lambda.top"],"nativeCurrency":{"name":"test-Lamb","symbol":"LAMB","decimals":18},"infoURL":"https://lambda.im","shortName":"lambda-testnet","chainId":92001,"networkId":92001,"slip44":1,"icon":"lambda","explorers":[{"name":"Lambda EVM Explorer","url":"https://explorer.lambda.top","standard":"EIP3091","icon":"lambda"}]},{"name":"LiquidLayer Testnet","chain":"LILA","icon":"lila","rpc":["https://testnet.liquidlayer.network"],"faucets":["https://claim.liquidlayer.network"],"nativeCurrency":{"name":"LiquidLayer Testnet","symbol":"LILA","decimals":18},"infoURL":"https://testnet-scan.liquidlayer.network","shortName":"tLILA","chainId":93572,"networkId":93572,"explorers":[{"name":"LiquidLayer Testnet Explorer","url":"https://testnet-scan.liquidlayer.network","standard":"EIP3091"}]},{"name":"Mantis Testnet (Hexapod)","chain":"Mantis","icon":"mantis","rpc":["https://mantis-rpc.switch.ch","https://mantis-rpc.kore-technologies.ch","https://mantis-rpc.phoenix-systems.io"],"faucets":["https://mantis.switch.ch/faucet","https://mantis.kore-technologies.ch/faucet","https://mantis.phoenix-systems.io/faucet","https://mantis.block-spirit.ch/faucet"],"nativeCurrency":{"name":"Mantis","symbol":"MANTIS","decimals":18},"infoURL":"https://hexapod.network","shortName":"mantis","chainId":96970,"networkId":96970,"slip44":1,"explorers":[{"name":"Mantis Blockscout","url":"https://blockscout.mantis.hexapod.network","icon":"blockscout","standard":"EIP3091"}]},{"name":"Boba BNB Mainnet Old","chain":"Boba BNB Mainnet","rpc":[],"faucets":[],"nativeCurrency":{"name":"Boba Token","symbol":"BOBA","decimals":18},"infoURL":"https://boba.network","shortName":"BobaBnbOld","chainId":97288,"networkId":97288,"explorers":[{"name":"Boba BNB block explorer","url":"https://blockexplorer.bnb.boba.network","standard":"none"}],"status":"deprecated"},{"name":"eLiberty Testnet","chain":"$EL","icon":"eLiberty","rpc":["https://testnet-rpc.eliberty.ngo"],"faucets":["https://faucet.eliberty.ngo"],"nativeCurrency":{"name":"eLiberty","symbol":"$EL","decimals":18},"infoURL":"https://eliberty.ngo","shortName":"ELt","chainId":99099,"networkId":99099,"slip44":1,"explorers":[{"name":"eLiberty Testnet","url":"https://testnet.eliberty.ngo","standard":"EIP3091"}]},{"name":"UB Smart Chain(testnet)","chain":"USC","rpc":["https://testnet.rpc.uschain.network"],"faucets":[],"nativeCurrency":{"name":"UBC","symbol":"UBC","decimals":18},"infoURL":"https://www.ubchain.site","shortName":"usctest","chainId":99998,"networkId":99998,"slip44":1},{"name":"UB Smart Chain","chain":"USC","rpc":["https://rpc.uschain.network"],"faucets":[],"nativeCurrency":{"name":"UBC","symbol":"UBC","decimals":18},"infoURL":"https://www.ubchain.site/","shortName":"usc","chainId":99999,"networkId":99999},{"name":"QuarkChain Mainnet Root","chain":"QuarkChain","rpc":["http://jrpc.mainnet.quarkchain.io:38391"],"faucets":[],"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"infoURL":"https://www.quarkchain.io","shortName":"qkc-r","chainId":100000,"networkId":100000},{"name":"QuarkChain Mainnet Shard 0","chain":"QuarkChain","rpc":["https://mainnet-s0-ethapi.quarkchain.io","http://eth-jrpc.mainnet.quarkchain.io:39000"],"faucets":[],"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"infoURL":"https://www.quarkchain.io","shortName":"qkc-s0","chainId":100001,"networkId":100001,"parent":{"chain":"eip155-100000","type":"shard"},"explorers":[{"name":"quarkchain-mainnet","url":"https://mainnet.quarkchain.io/0","standard":"EIP3091"}]},{"name":"QuarkChain Mainnet Shard 1","chain":"QuarkChain","rpc":["https://mainnet-s1-ethapi.quarkchain.io","http://eth-jrpc.mainnet.quarkchain.io:39001"],"faucets":[],"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"infoURL":"https://www.quarkchain.io","shortName":"qkc-s1","chainId":100002,"networkId":100002,"parent":{"chain":"eip155-100000","type":"shard"},"explorers":[{"name":"quarkchain-mainnet","url":"https://mainnet.quarkchain.io/1","standard":"EIP3091"}]},{"name":"QuarkChain Mainnet Shard 2","chain":"QuarkChain","rpc":["https://mainnet-s2-ethapi.quarkchain.io","http://eth-jrpc.mainnet.quarkchain.io:39002"],"faucets":[],"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"infoURL":"https://www.quarkchain.io","shortName":"qkc-s2","chainId":100003,"networkId":100003,"parent":{"chain":"eip155-100000","type":"shard"},"explorers":[{"name":"quarkchain-mainnet","url":"https://mainnet.quarkchain.io/2","standard":"EIP3091"}]},{"name":"QuarkChain Mainnet Shard 3","chain":"QuarkChain","rpc":["https://mainnet-s3-ethapi.quarkchain.io","http://eth-jrpc.mainnet.quarkchain.io:39003"],"faucets":[],"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"infoURL":"https://www.quarkchain.io","shortName":"qkc-s3","chainId":100004,"networkId":100004,"parent":{"chain":"eip155-100000","type":"shard"},"explorers":[{"name":"quarkchain-mainnet","url":"https://mainnet.quarkchain.io/3","standard":"EIP3091"}]},{"name":"QuarkChain Mainnet Shard 4","chain":"QuarkChain","rpc":["https://mainnet-s4-ethapi.quarkchain.io","http://eth-jrpc.mainnet.quarkchain.io:39004"],"faucets":[],"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"infoURL":"https://www.quarkchain.io","shortName":"qkc-s4","chainId":100005,"networkId":100005,"parent":{"chain":"eip155-100000","type":"shard"},"explorers":[{"name":"quarkchain-mainnet","url":"https://mainnet.quarkchain.io/4","standard":"EIP3091"}]},{"name":"QuarkChain Mainnet Shard 5","chain":"QuarkChain","rpc":["https://mainnet-s5-ethapi.quarkchain.io","http://eth-jrpc.mainnet.quarkchain.io:39005"],"faucets":[],"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"infoURL":"https://www.quarkchain.io","shortName":"qkc-s5","chainId":100006,"networkId":100006,"parent":{"chain":"eip155-100000","type":"shard"},"explorers":[{"name":"quarkchain-mainnet","url":"https://mainnet.quarkchain.io/5","standard":"EIP3091"}]},{"name":"QuarkChain Mainnet Shard 6","chain":"QuarkChain","rpc":["https://mainnet-s6-ethapi.quarkchain.io","http://eth-jrpc.mainnet.quarkchain.io:39006"],"faucets":[],"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"infoURL":"https://www.quarkchain.io","shortName":"qkc-s6","chainId":100007,"networkId":100007,"parent":{"chain":"eip155-100000","type":"shard"},"explorers":[{"name":"quarkchain-mainnet","url":"https://mainnet.quarkchain.io/6","standard":"EIP3091"}]},{"name":"QuarkChain Mainnet Shard 7","chain":"QuarkChain","rpc":["https://mainnet-s7-ethapi.quarkchain.io","http://eth-jrpc.mainnet.quarkchain.io:39007"],"faucets":[],"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"infoURL":"https://www.quarkchain.io","shortName":"qkc-s7","chainId":100008,"networkId":100008,"parent":{"chain":"eip155-100000","type":"shard"},"explorers":[{"name":"quarkchain-mainnet","url":"https://mainnet.quarkchain.io/7","standard":"EIP3091"}]},{"name":"VeChain","chain":"VeChain","rpc":[],"faucets":[],"nativeCurrency":{"name":"VeChain","symbol":"VET","decimals":18},"infoURL":"https://vechain.org","shortName":"vechain","chainId":100009,"networkId":100009,"explorers":[{"name":"VeChain Stats","url":"https://vechainstats.com","standard":"none"},{"name":"VeChain Explorer","url":"https://explore.vechain.org","standard":"none"}]},{"name":"VeChain Testnet","chain":"VeChain","rpc":[],"faucets":["https://faucet.vecha.in"],"nativeCurrency":{"name":"VeChain","symbol":"VET","decimals":18},"infoURL":"https://vechain.org","shortName":"vechain-testnet","chainId":100010,"networkId":100010,"slip44":1,"explorers":[{"name":"VeChain Explorer","url":"https://explore-testnet.vechain.org","standard":"none"}]},{"name":"Deprecated CHI","chain":"CHI1","icon":"gnosis","rpc":[],"faucets":[],"nativeCurrency":{"name":"Chiado xDAI","symbol":"xDAI","decimals":18},"infoURL":"https://docs.gnosischain.com","shortName":"chi1","chainId":100100,"networkId":100100,"explorers":[],"status":"deprecated"},{"name":"Global Trust Network","chain":"GTN","icon":"gtn","rpc":["https://gtn.stabilityprotocol.com"],"faucets":[],"nativeCurrency":{"name":"FREE","symbol":"FREE","decimals":18},"infoURL":"https://stabilityprotocol.com","shortName":"stabilityprotocol","chainId":101010,"networkId":101010,"explorers":[{"name":"blockscout","url":"https://stability.blockscout.com","standard":"EIP3091"}],"redFlags":["reusedChainId"]},{"name":"Creditcoin Testnet","chain":"CTC","icon":"creditcoin","rpc":["https://rpc.cc3-testnet.creditcoin.network"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"nativeCurrency":{"name":"Testnet CTC","symbol":"tCTC","decimals":18},"infoURL":"https://creditcoin.org","shortName":"ctctest","chainId":102031,"networkId":102031,"faucets":[],"explorers":[{"name":"blockscout","url":"https://creditcoin-testnet.blockscout.com","icon":"blockscout","standard":"EIP3091"}]},{"name":"Crystaleum","chain":"crystal","rpc":["https://evm.cryptocurrencydevs.org","https://rpc.crystaleum.org"],"faucets":[],"nativeCurrency":{"name":"CRFI","symbol":"◈","decimals":18},"infoURL":"https://crystaleum.org","shortName":"CRFI","chainId":103090,"networkId":1,"icon":"crystal","explorers":[{"name":"blockscout","url":"https://scan.crystaleum.org","icon":"crystal","standard":"EIP3091"}]},{"name":"Masa Testnet","chain":"MASA","icon":"masa","rpc":["https://subnets.avax.network/masatestne/testnet/rpc"],"features":[{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Masa Token","symbol":"MASA","decimals":18},"infoURL":"https://masa.finance","shortName":"masatest","chainId":103454,"networkId":103454,"explorers":[{"name":"Masa Testnet Explorer","url":"https://subnets-test.avax.network/masatestnet","standard":"EIP3091"}]},{"name":"Stratis Mainnet","chain":"Stratis","rpc":["https://rpc.stratisevm.com"],"faucets":[],"nativeCurrency":{"name":"Stratis","symbol":"STRAX","decimals":18},"infoURL":"https://www.stratisplatform.com","shortName":"stratis","chainId":105105,"networkId":105105,"icon":"stratis","explorers":[{"name":"Stratis Explorer","url":"https://explorer.stratisevm.com","standard":"EIP3091"}]},{"name":"BROChain Mainnet","chain":"BRO","rpc":["https://rpc.brochain.org","http://rpc.brochain.org","https://rpc.brochain.org/mainnet","http://rpc.brochain.org/mainnet"],"faucets":[],"nativeCurrency":{"name":"Brother","symbol":"BRO","decimals":18},"infoURL":"https://brochain.org","shortName":"bro","chainId":108801,"networkId":108801,"explorers":[{"name":"BROChain Explorer","url":"https://explorer.brochain.org","standard":"EIP3091"}]},{"name":"QuarkChain Devnet Root","chain":"QuarkChain","rpc":["http://jrpc.devnet.quarkchain.io:38391"],"faucets":[],"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"infoURL":"https://www.quarkchain.io","shortName":"qkc-d-r","chainId":110000,"networkId":110000},{"name":"QuarkChain Devnet Shard 0","chain":"QuarkChain","rpc":["https://devnet-s0-ethapi.quarkchain.io","http://eth-jrpc.devnet.quarkchain.io:39900"],"faucets":[],"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"infoURL":"https://www.quarkchain.io","shortName":"qkc-d-s0","chainId":110001,"networkId":110001,"parent":{"chain":"eip155-110000","type":"shard"},"explorers":[{"name":"quarkchain-devnet","url":"https://devnet.quarkchain.io/0","standard":"EIP3091"}]},{"name":"QuarkChain Devnet Shard 1","chain":"QuarkChain","rpc":["https://devnet-s1-ethapi.quarkchain.io","http://eth-jrpc.devnet.quarkchain.io:39901"],"faucets":[],"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"infoURL":"https://www.quarkchain.io","shortName":"qkc-d-s1","chainId":110002,"networkId":110002,"parent":{"chain":"eip155-110000","type":"shard"},"explorers":[{"name":"quarkchain-devnet","url":"https://devnet.quarkchain.io/1","standard":"EIP3091"}]},{"name":"QuarkChain Devnet Shard 2","chain":"QuarkChain","rpc":["https://devnet-s2-ethapi.quarkchain.io","http://eth-jrpc.devnet.quarkchain.io:39902"],"faucets":[],"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"infoURL":"https://www.quarkchain.io","shortName":"qkc-d-s2","chainId":110003,"networkId":110003,"parent":{"chain":"eip155-110000","type":"shard"},"explorers":[{"name":"quarkchain-devnet","url":"https://devnet.quarkchain.io/2","standard":"EIP3091"}]},{"name":"QuarkChain Devnet Shard 3","chain":"QuarkChain","rpc":["https://devnet-s3-ethapi.quarkchain.io","http://eth-jrpc.devnet.quarkchain.io:39903"],"faucets":[],"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"infoURL":"https://www.quarkchain.io","shortName":"qkc-d-s3","chainId":110004,"networkId":110004,"parent":{"chain":"eip155-110000","type":"shard"},"explorers":[{"name":"quarkchain-devnet","url":"https://devnet.quarkchain.io/3","standard":"EIP3091"}]},{"name":"QuarkChain Devnet Shard 4","chain":"QuarkChain","rpc":["https://devnet-s4-ethapi.quarkchain.io","http://eth-jrpc.devnet.quarkchain.io:39904"],"faucets":[],"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"infoURL":"https://www.quarkchain.io","shortName":"qkc-d-s4","chainId":110005,"networkId":110005,"parent":{"chain":"eip155-110000","type":"shard"},"explorers":[{"name":"quarkchain-devnet","url":"https://devnet.quarkchain.io/4","standard":"EIP3091"}]},{"name":"QuarkChain Devnet Shard 5","chain":"QuarkChain","rpc":["https://devnet-s5-ethapi.quarkchain.io","http://eth-jrpc.devnet.quarkchain.io:39905"],"faucets":[],"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"infoURL":"https://www.quarkchain.io","shortName":"qkc-d-s5","chainId":110006,"networkId":110006,"parent":{"chain":"eip155-110000","type":"shard"},"explorers":[{"name":"quarkchain-devnet","url":"https://devnet.quarkchain.io/5","standard":"EIP3091"}]},{"name":"QuarkChain Devnet Shard 6","chain":"QuarkChain","rpc":["https://devnet-s6-ethapi.quarkchain.io","http://eth-jrpc.devnet.quarkchain.io:39906"],"faucets":[],"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"infoURL":"https://www.quarkchain.io","shortName":"qkc-d-s6","chainId":110007,"networkId":110007,"parent":{"chain":"eip155-110000","type":"shard"},"explorers":[{"name":"quarkchain-devnet","url":"https://devnet.quarkchain.io/6","standard":"EIP3091"}]},{"name":"QuarkChain Devnet Shard 7","chain":"QuarkChain","rpc":["https://devnet-s7-ethapi.quarkchain.io","http://eth-jrpc.devnet.quarkchain.io:39907"],"faucets":[],"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"infoURL":"https://www.quarkchain.io","shortName":"qkc-d-s7","chainId":110008,"networkId":110008,"parent":{"chain":"eip155-110000","type":"shard"},"explorers":[{"name":"quarkchain-devnet","url":"https://devnet.quarkchain.io/7","standard":"EIP3091"}]},{"name":"Siberium Test Network","chain":"SBR","rpc":["https://rpc.test.siberium.net"],"faucets":[],"nativeCurrency":{"name":"TestSIBR","symbol":"SIBR","decimals":18},"infoURL":"https://siberium.net","shortName":"testsbr","chainId":111000,"networkId":111000,"slip44":1,"icon":"siberium","explorers":[{"name":"Siberium Testnet Explorer - blockscout","url":"https://explorer.test.siberium.net","icon":"siberium","standard":"EIP3091"}]},{"name":"Siberium Network","chain":"SBR","rpc":["https://rpc.main.siberium.net","https://rpc.main.siberium.net.ru"],"faucets":[],"nativeCurrency":{"name":"Siberium","symbol":"SIBR","decimals":18},"infoURL":"https://siberium.net","shortName":"sbr","chainId":111111,"networkId":111111,"icon":"siberium","explorers":[{"name":"Siberium Mainnet Explorer - blockscout - 1","url":"https://explorer.main.siberium.net","icon":"siberium","standard":"EIP3091"},{"name":"Siberium Mainnet Explorer - blockscout - 2","url":"https://explorer.main.siberium.net.ru","icon":"siberium","standard":"EIP3091"}]},{"name":"re.al","title":"re.al Real-World Assets network","chain":"re.al","rpc":["https://real.drpc.org","wss://real.drpc.org"],"nativeCurrency":{"name":"re.al Ether","symbol":"reETH","decimals":18},"infoURL":"https://re.al","faucets":[],"shortName":"re-al","chainId":111188,"networkId":111188,"slip44":60,"icon":"real","explorers":[{"name":"blockscout","url":"https://explorer.re.al","icon":"real","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://re.al/bridge"},{"url":"https://bridge.gelato.network/bridge/real"}]}},{"name":"Metachain One Mainnet","chain":"METAO","icon":"metao","rpc":["https://rpc.metachain.one","https://rpc2.metachain.one"],"faucets":[],"nativeCurrency":{"name":"Metao","symbol":"METAO","decimals":18},"infoURL":"https://metachain.one","shortName":"metao","chainId":112358,"networkId":112358,"explorers":[{"name":"blockscout","url":"https://explorer.metachain.one","icon":"blockscout","standard":"EIP3091"}]},{"name":"MetaDAP Enterprise Testnet","title":"MetaDAP Enterprise Testnet","chain":"MetaDAP","icon":"metadap","faucets":[],"rpc":["https://rpc.testnet.chain.metadap.io","wss://rpc-ws.testnet.chain.metadap.io"],"nativeCurrency":{"name":"DAP","symbol":"DAP","decimals":18},"infoURL":"https://metadap.io/","shortName":"MetaDAP-T","chainId":119139,"networkId":119139,"explorers":[{"name":"MetaDAP Enterprise Testnet explorer","url":"https://explorer.testnet.chain.metadap.io","standard":"none"}]},{"name":"ADIL Devnet","chain":"ADIL","icon":"adil","rpc":["https://devnet.adilchain-rpc.io"],"faucets":[],"nativeCurrency":{"name":"Devnet ADIL","symbol":"ADIL","decimals":18},"infoURL":"https://adilchain.io","shortName":"dadil","chainId":123456,"networkId":123456,"explorers":[{"name":"ADIL Devnet Explorer","url":"https://devnet.adilchain-scan.io","standard":"EIP3091"}]},{"name":"Etherlink Testnet","chain":"Etherlink","icon":"etherlink","chainId":128123,"networkId":128123,"features":[{"name":"EIP1559"}],"infoURL":"https://etherlink.com","shortName":"etlt","nativeCurrency":{"name":"tez","symbol":"XTZ","decimals":18},"rpc":["https://node.ghostnet.etherlink.com"],"faucets":["https://faucet.etherlink.com"],"explorers":[{"name":"Etherlink Testnet Explorer","url":"https://testnet-explorer.etherlink.com","standard":"EIP3091"}]},{"name":"Odyssey Chain (Testnet)","chain":"DIONE","rpc":["https://testnode.dioneprotocol.com/ext/bc/D/rpc"],"faucets":["https://faucet.dioneprotocol.com/"],"features":[{"name":"EIP155"}],"infoURL":"https://www.dioneprotocol.com/","shortName":"DIONE","chainId":131313,"networkId":131313,"icon":"odyssey","nativeCurrency":{"name":"DIONE","symbol":"DIONE","decimals":18}},{"name":"ETND Chain Mainnets","chain":"ETND","rpc":["https://rpc.node1.etnd.pro/"],"faucets":[],"nativeCurrency":{"name":"ETND","symbol":"ETND","decimals":18},"infoURL":"https://www.etnd.pro","shortName":"ETND","chainId":131419,"networkId":131419,"icon":"ETND","explorers":[{"name":"etndscan","url":"https://scan.etnd.pro","icon":"ETND","standard":"none"}]},{"name":"ICPlaza Mainnet","chain":"ICPlaza","icon":"icplaza","rpc":["https://rpcmainnet.ic-plaza.org/"],"faucets":[],"nativeCurrency":{"name":"ict","symbol":"ict","decimals":18},"infoURL":"https://docs.ic-plaza.org/","shortName":"ICPlaza","chainId":142857,"networkId":142857,"explorers":[{"name":"ICPlaza","url":"https://browsemainnet.ic-plaza.org/index","standard":"none"}]},{"name":"PlayFi Mainnet","chain":"PLAY","rpc":[],"faucets":[],"nativeCurrency":{"name":"Play","symbol":"PLAY","decimals":18},"infoURL":"https://www.playfi.ai/","shortName":"playfi","chainId":161212,"networkId":161212,"explorers":[],"status":"incubating"},{"name":"Taiko (Alpha-2 Testnet)","chain":"ETH","status":"deprecated","icon":"taiko","rpc":["https://rpc.a2.taiko.xyz"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://taiko.xyz","shortName":"taiko-a2","chainId":167004,"networkId":167004,"slip44":1,"explorers":[{"name":"blockscout","url":"https://explorer.a2.taiko.xyz","standard":"EIP3091"}]},{"name":"Taiko Grimsvotn L2","chain":"ETH","status":"deprecated","icon":"taiko","rpc":["https://rpc.test.taiko.xyz"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://taiko.xyz","shortName":"taiko-l2","chainId":167005,"networkId":167005,"explorers":[{"name":"blockscout","url":"https://explorer.test.taiko.xyz","standard":"EIP3091"}]},{"name":"Taiko Eldfell L3","chain":"ETH","status":"deprecated","icon":"taiko","rpc":["https://rpc.l3test.taiko.xyz"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://taiko.xyz","shortName":"taiko-l3","chainId":167006,"networkId":167006,"explorers":[{"name":"blockscout","url":"https://explorer.l3test.taiko.xyz","standard":"EIP3091"}]},{"name":"Taiko Jolnir L2","chain":"ETH","status":"deprecated","icon":"taiko","rpc":["https://rpc.jolnir.taiko.xyz"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://taiko.xyz","shortName":"tko-jolnir","chainId":167007,"networkId":167007,"explorers":[{"name":"blockscout","url":"https://explorer.jolnir.taiko.xyz","standard":"EIP3091"}]},{"name":"Taiko Katla L2","chain":"ETH","status":"active","icon":"taiko","rpc":["https://rpc.katla.taiko.xyz","wss://rpc.katla.taiko.xyz","https://taiko-katla.drpc.org","wss://taiko-katla.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://taiko.xyz","shortName":"tko-katla","chainId":167008,"networkId":167008,"explorers":[{"name":"blockscout","url":"https://explorer.katla.taiko.xyz","standard":"EIP3091"}]},{"name":"Taiko Hekla L2","chain":"ETH","status":"active","icon":"taiko","rpc":["https://rpc.hekla.taiko.xyz","wss://ws.hekla.taiko.xyz"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://taiko.xyz","shortName":"tko-hekla","chainId":167009,"networkId":167009,"explorers":[{"name":"blockscout","url":"https://blockscoutapi.hekla.taiko.xyz","standard":"EIP3091"},{"name":"routescan","url":"https://hekla.taikoscan.network","standard":"EIP3091"}]},{"name":"Bitica Chain Mainnet","chain":"BDCC","rpc":["https://mainnet-rpc.biticablockchain.com/"],"faucets":[],"nativeCurrency":{"name":"Bitica Coin","symbol":"BDCC","decimals":18},"infoURL":"https://biticablockchain.com/","shortName":"bdcc","chainId":188710,"networkId":188710,"explorers":[{"name":"Bitica DPOS Blockchain Explorer","url":"https://biticablockchain.com","standard":"none"}]},{"name":"Condor Test Network","chain":"CONDOR","icon":"condor","rpc":["https://testnet.condor.systems/rpc"],"faucets":["https://faucet.condor.systems"],"nativeCurrency":{"name":"Condor Native Token","symbol":"CONDOR","decimals":18},"infoURL":"https://condor.systems","shortName":"condor","chainId":188881,"networkId":188881,"slip44":1,"explorers":[{"name":"CondorScan","url":"https://explorer.condor.systems","standard":"none"}]},{"name":"Milkomeda C1 Testnet","chain":"milkTAda","icon":"milkomeda","rpc":["https://rpc-devnet-cardano-evm.c1.milkomeda.com","wss://rpc-devnet-cardano-evm.c1.milkomeda.com"],"faucets":[],"nativeCurrency":{"name":"milkTAda","symbol":"mTAda","decimals":18},"infoURL":"https://milkomeda.com","shortName":"milkTAda","chainId":200101,"networkId":200101,"slip44":1,"explorers":[{"name":"Blockscout","url":"https://explorer-devnet-cardano-evm.c1.milkomeda.com","standard":"none"}]},{"name":"Milkomeda A1 Testnet","chain":"milkTAlgo","icon":"milkomeda","rpc":["https://rpc-devnet-algorand-rollup.a1.milkomeda.com"],"faucets":[],"nativeCurrency":{"name":"milkTAlgo","symbol":"mTAlgo","decimals":18},"infoURL":"https://milkomeda.com","shortName":"milkTAlgo","chainId":200202,"networkId":200202,"slip44":1,"explorers":[{"name":"Blockscout","url":"https://explorer-devnet-algorand-rollup.a1.milkomeda.com","standard":"none"}]},{"name":"Akroma","chain":"AKA","rpc":["https://remote.akroma.io"],"faucets":[],"nativeCurrency":{"name":"Akroma Ether","symbol":"AKA","decimals":18},"infoURL":"https://akroma.io","shortName":"aka","chainId":200625,"networkId":200625,"slip44":200625},{"name":"Bitlayer Testnet","chain":"Bitlayer","rpc":["https://testnet-rpc.bitlayer.org","wss://testnet-ws.bitlayer.org","https://testnet-rpc.bitlayer-rpc.com","wss://testnet-ws.bitlayer-rpc.com","https://rpc.ankr.com/bitlayer_testnet"],"faucets":["https://www.bitlayer.org/faucet"],"nativeCurrency":{"name":"BTC","symbol":"BTC","decimals":18},"infoURL":"https://docs.bitlayer.org/","shortName":"btrt","chainId":200810,"networkId":200810,"slip44":1,"icon":"bitlayer","explorers":[{"name":"bitlayer testnet scan","url":"https://testnet-scan.bitlayer.org","standard":"none"}]},{"name":"Bitlayer Mainnet","chain":"Bitlayer","rpc":["https://rpc.bitlayer.org","https://rpc.bitlayer-rpc.com","https://rpc.ankr.com/bitlayer","wss://ws.bitlayer.org","wss://ws.bitlayer-rpc.com"],"faucets":[],"nativeCurrency":{"name":"BTC","symbol":"BTC","decimals":18},"infoURL":"https://docs.bitlayer.org/","shortName":"btr","chainId":200901,"networkId":200901,"slip44":1,"icon":"bitlayer","explorers":[{"name":"bitlayer mainnet scan","url":"https://www.btrscan.com","standard":"EIP3091"}]},{"name":"Alaya Mainnet","chain":"Alaya","rpc":["https://openapi.alaya.network/rpc","wss://openapi.alaya.network/ws"],"faucets":[],"nativeCurrency":{"name":"ATP","symbol":"atp","decimals":18},"infoURL":"https://www.alaya.network/","shortName":"alaya","chainId":201018,"networkId":1,"icon":"alaya","explorers":[{"name":"alaya explorer","url":"https://scan.alaya.network","standard":"none"}]},{"name":"Alaya Dev Testnet","chain":"Alaya","rpc":["https://devnetopenapi.alaya.network/rpc","wss://devnetopenapi.alaya.network/ws"],"faucets":["https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c"],"nativeCurrency":{"name":"ATP","symbol":"atp","decimals":18},"infoURL":"https://www.alaya.network/","shortName":"alayadev","chainId":201030,"networkId":1,"slip44":1,"icon":"alaya","explorers":[{"name":"alaya explorer","url":"https://devnetscan.alaya.network","standard":"none"}]},{"name":"Mythical Chain","chain":"MYTH","rpc":["https://chain-rpc.mythicalgames.com"],"faucets":[],"nativeCurrency":{"name":"Mythos","symbol":"MYTH","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://mythicalgames.com/","shortName":"myth","chainId":201804,"networkId":201804,"icon":"mythical","explorers":[{"name":"Mythical Chain Explorer","url":"https://explorer.mythicalgames.com","icon":"mythical","standard":"EIP3091"}]},{"name":"Decimal Smart Chain Testnet","chain":"tDSC","rpc":["https://testnet-val.decimalchain.com/web3/"],"faucets":[],"nativeCurrency":{"name":"Decimal","symbol":"tDEL","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://decimalchain.com","shortName":"tDSC","chainId":202020,"networkId":202020,"slip44":1,"icon":"dsc","explorers":[{"name":"DSC Explorer Testnet","url":"https://testnet.explorer.decimalchain.com","icon":"dsc","standard":"EIP3091"}]},{"name":"X1 Devnet","chain":"X1","rpc":["https://x1-devnet.xen.network"],"faucets":[],"nativeCurrency":{"name":"XN","symbol":"XN","decimals":18},"infoURL":"https://docs.xen.network/x1/","shortName":"x1-devnet","chainId":202212,"networkId":202212,"explorers":[{"name":"Blockscout","url":"https://explorer.x1-devnet.xen.network","icon":"blockscout","standard":"EIP3091"}]},{"name":"YMTECH-BESU Testnet","chain":"YMTECH-BESU","rpc":["http://39.119.118.216:8545"],"faucets":[],"nativeCurrency":{"name":"ETH","symbol":"ETH","decimals":18},"infoURL":"https://www.ymtech.co.kr","shortName":"YMTECH-BESU","chainId":202401,"networkId":202401,"explorers":[{"name":"YMTECH-BESU Chainlens","url":"http://39.119.118.198","standard":"none"}]},{"name":"Jellie","title":"Twala Testnet Jellie","shortName":"twl-jellie","chain":"ETH","chainId":202624,"networkId":202624,"slip44":1,"icon":"twala","nativeCurrency":{"name":"Twala Coin","symbol":"TWL","decimals":18},"rpc":["https://jellie-rpc.twala.io/","wss://jellie-rpc-wss.twala.io/"],"faucets":[],"infoURL":"https://twala.io/","explorers":[{"name":"Jellie Blockchain Explorer","url":"https://jellie.twala.io","standard":"EIP3091","icon":"twala"}]},{"name":"X1 Network","chain":"X1","rpc":["https://x1-testnet.xen.network"],"faucets":[],"nativeCurrency":{"name":"XN","symbol":"XN","decimals":18},"infoURL":"https://docs.xen.network/go-x1/","shortName":"x1-testnet","chainId":204005,"networkId":204005,"explorers":[{"name":"Blockscout","url":"https://explorer.x1-testnet.xen.network","icon":"blockscout","standard":"EIP3091"}]},{"name":"Auroria Testnet","title":"Stratis Testnet Auroria","chain":"Auroria","rpc":["https://auroria.rpc.stratisevm.com"],"faucets":["https://auroria.faucet.stratisevm.com"],"nativeCurrency":{"name":"Auroria Stratis","symbol":"tSTRAX","decimals":18},"infoURL":"https://www.stratisplatform.com","shortName":"auroria","chainId":205205,"networkId":205205,"icon":"auroria","explorers":[{"name":"Auroria Testnet Explorer","url":"https://auroria.explorer.stratisevm.com","standard":"EIP3091"}]},{"name":"PlatON Mainnet","chain":"PlatON","rpc":["https://openapi2.platon.network/rpc","wss://openapi2.platon.network/ws"],"faucets":[],"nativeCurrency":{"name":"LAT","symbol":"lat","decimals":18},"infoURL":"https://www.platon.network","shortName":"platon","chainId":210425,"networkId":1,"icon":"platon","explorers":[{"name":"PlatON explorer","url":"https://scan.platon.network","standard":"none"}]},{"name":"Mas Mainnet","chain":"MAS","rpc":["http://node.masnet.ai:8545"],"faucets":[],"nativeCurrency":{"name":"Master Bank","symbol":"MAS","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://masterbank.org","shortName":"mas","chainId":220315,"networkId":220315,"icon":"mas","explorers":[{"name":"explorer masnet","url":"https://explorer.masnet.ai","standard":"EIP3091"}]},{"name":"Reapchain Mainnet","chain":"REAP","rpc":["https://eth.reapchain.org"],"faucets":[],"nativeCurrency":{"name":"Reap","symbol":"REAP","decimals":18},"features":[],"infoURL":"https://reapchain.com","shortName":"reap","chainId":221230,"networkId":221230,"icon":"reapchain","explorers":[{"name":"Reapchain Dashboard","url":"https://dashboard.reapchain.org","icon":"reapchain","standard":"none"}]},{"name":"Reapchain Testnet","chain":"REAP","rpc":["https://test-eth.reapchain.org"],"faucets":["http://faucet.reapchain.com"],"nativeCurrency":{"name":"test-Reap","symbol":"tREAP","decimals":18},"features":[],"infoURL":"https://reapchain.com","shortName":"reap-testnet","chainId":221231,"networkId":221231,"slip44":1,"icon":"reapchain","explorers":[{"name":"Reapchain Testnet Dashboard","url":"https://test-dashboard.reapchain.org","icon":"reapchain","standard":"none"}]},{"name":"HydraDX","chain":"HDX","rpc":["https://rpc.hydradx.cloud","wss://rpc.hydradx.cloud"],"faucets":[],"nativeCurrency":{"name":"Wrapped ETH","symbol":"WETH","decimals":18},"infoURL":"https://hydradx.io","shortName":"hdx","chainId":222222,"networkId":222222,"icon":"hydradx","explorers":[{"name":"blockscout","url":"https://explorer.evm.hydration.cloud","standard":"EIP3091"}]},{"name":"DeepL Mainnet","chain":"DEEPL","rpc":["https://rpc.deeplnetwork.org"],"faucets":[],"nativeCurrency":{"name":"DeepL","symbol":"DEEPL","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://deeplnetwork.org","shortName":"deepl","chainId":222555,"networkId":222555,"icon":"deepl","explorers":[{"name":"DeepL Mainnet Explorer","url":"https://scan.deeplnetwork.org","icon":"deepl","standard":"EIP3091"}]},{"name":"DeepL Testnet","chain":"DEEPL","rpc":["https://testnet.deeplnetwork.org"],"faucets":["https://faucet.deeplnetwork.org"],"nativeCurrency":{"name":"DeepL","symbol":"DEEPL","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://deeplnetwork.org","shortName":"tdeepl","chainId":222666,"networkId":222666,"icon":"deepl","explorers":[{"name":"DeepL Testnet Explorer","url":"https://testnet-scan.deeplnetwork.org","icon":"deepl","standard":"EIP3091"}]},{"name":"Taf ECO Chain Mainnet","chain":"Taf ECO Chain","icon":"taf","rpc":["https://mainnet.tafchain.com/v1"],"faucets":[],"nativeCurrency":{"name":"Taf ECO Chain Mainnet","symbol":"TAFECO","decimals":18},"infoURL":"https://www.tafchain.com","shortName":"TAFECO","chainId":224168,"networkId":224168,"explorers":[{"name":"Taf ECO Chain Mainnet","url":"https://ecoscan.tafchain.com","standard":"EIP3091"}]},{"name":"CONET Sebolia Testnet","chain":"CONET","rpc":["https://rpc1.conet.network"],"faucets":[],"nativeCurrency":{"name":"CONET Sebolia","symbol":"CONET","decimals":18},"features":[{"name":"EIP155"}],"infoURL":"https://conet.network","shortName":"conet-sebolia","chainId":224422,"networkId":224422,"slip44":1,"icon":"conet","explorers":[{"name":"CONET Scan","url":"https://scan.conet.network","standard":"EIP3091"}]},{"name":"CONET Holesky","chain":"CONET Holesky","rpc":["https://holeskyrpc1.conet.network"],"faucets":[],"nativeCurrency":{"name":"CONET Holesky","symbol":"CONET","decimals":18},"features":[{"name":"EIP155"}],"infoURL":"https://conet.network","shortName":"conet-holesky","chainId":224433,"networkId":224433,"slip44":2147708081,"icon":"conet","explorers":[{"name":"CONET Holesky Scan","url":"https://scan.conet.network","standard":"EIP3091"}]},{"name":"HashKey Chain Testnet","chain":"HashKey","rpc":["https://testnet.hashkeychain/rpc"],"faucets":["https://testnet.hashkeychain/faucet"],"nativeCurrency":{"name":"HashKey Token","symbol":"tHSK","decimals":18},"infoURL":"https://www.hashkey.com","shortName":"hsktest","chainId":230315,"networkId":230315,"slip44":1,"icon":"hsk","explorers":[{"name":"HashKey Chain Testnet Explorer","url":"https://testnet.hashkeyscan.io","standard":"none"}]},{"name":"Haymo Testnet","chain":"tHYM","rpc":["https://testnet1.haymo.network"],"faucets":[],"nativeCurrency":{"name":"HAYMO","symbol":"HYM","decimals":18},"infoURL":"https://haymoswap.web.app/","shortName":"hym","chainId":234666,"networkId":234666,"slip44":1},{"name":"ARTIS sigma1","chain":"ARTIS","rpc":["https://rpc.sigma1.artis.network"],"faucets":[],"nativeCurrency":{"name":"ARTIS sigma1 Ether","symbol":"ATS","decimals":18},"infoURL":"https://artis.eco","shortName":"ats","chainId":246529,"networkId":246529,"slip44":246529},{"name":"ARTIS Testnet tau1","chain":"ARTIS","rpc":["https://rpc.tau1.artis.network"],"faucets":[],"nativeCurrency":{"name":"ARTIS tau1 Ether","symbol":"tATS","decimals":18},"infoURL":"https://artis.network","shortName":"atstau","chainId":246785,"networkId":246785,"slip44":1},{"name":"Saakuru Testnet","chain":"Saakuru","icon":"saakuru","rpc":["https://rpc-testnet.saakuru.network"],"faucets":[],"nativeCurrency":{"name":"OAS","symbol":"OAS","decimals":18},"infoURL":"https://saakuru.network","shortName":"saakuru-testnet","chainId":247253,"networkId":247253,"slip44":1,"explorers":[{"name":"saakuru-explorer-testnet","url":"https://explorer-testnet.saakuru.network","standard":"EIP3091"}]},{"name":"CMP-Mainnet","chain":"CMP","rpc":["https://mainnet.block.caduceus.foundation","wss://mainnet.block.caduceus.foundation"],"faucets":[],"nativeCurrency":{"name":"Caduceus Token","symbol":"CMP","decimals":18},"infoURL":"https://caduceus.foundation/","shortName":"cmp-mainnet","chainId":256256,"networkId":256256,"explorers":[{"name":"Mainnet Scan","url":"https://mainnet.scan.caduceus.foundation","standard":"none"}]},{"name":"Gear Zero Network Testnet","chain":"GearZero","rpc":["https://gzn-test.linksme.info"],"faucets":[],"nativeCurrency":{"name":"Gear Zero Network Native Token","symbol":"GZN","decimals":18},"infoURL":"https://token.gearzero.ca/testnet","shortName":"gz-testnet","chainId":266256,"networkId":266256,"slip44":1,"explorers":[]},{"name":"EgonCoin Testnet","chain":"EGON","icon":"egonicon","rpc":["https://rpctest.egonscan.com"],"faucets":["https://faucet.egonscan.com"],"nativeCurrency":{"name":"EgonCoin","symbol":"EGON","decimals":18},"infoURL":"https://egonscan.com","shortName":"EGONt","chainId":271271,"networkId":271271,"slip44":1,"explorers":[{"name":"EgonCoin Testnet","url":"https://testnet.egonscan.com","standard":"EIP3091"}]},{"name":"Social Smart Chain Mainnet","chain":"SoChain","rpc":["https://socialsmartchain.digitalnext.business"],"faucets":[],"nativeCurrency":{"name":"SoChain","symbol":"$OC","decimals":18},"infoURL":"https://digitalnext.business/SocialSmartChain","shortName":"SoChain","chainId":281121,"networkId":281121,"explorers":[]},{"name":"Zillion Sepolia Testnet","status":"active","chain":"ETH","rpc":["https://sepolia.zillnet.io/rpc"],"faucets":[],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://zillnet.io","shortName":"zillsep","chainId":282828,"networkId":282828,"slip44":1,"icon":"zillion","explorers":[{"name":"zillscout","url":"https://sepolia.zillnet.io","icon":"zillion","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111"}},{"name":"SaharaAI Testnet","chain":"Sahara","rpc":["https://testnet.saharalabs.ai"],"faucets":[],"nativeCurrency":{"name":"SAHARA","symbol":"SAH","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://saharalabs.ai","shortName":"saharatest","chainId":313313,"networkId":313313,"icon":"sahara","explorers":[]},{"name":"Filecoin - Calibration testnet","chain":"FIL","icon":"filecoin","rpc":["https://api.calibration.node.glif.io/rpc/v1","https://rpc.ankr.com/filecoin_testnet","https://filecoin-calibration.chainstacklabs.com/rpc/v1","https://filecoin-calibration.chainup.net/rpc/v1","https://calibration.filfox.info/rpc/v1","https://filecoin-calibration.drpc.org","wss://filecoin-calibration.drpc.org"],"faucets":["https://faucet.calibration.fildev.network/"],"nativeCurrency":{"name":"testnet filecoin","symbol":"tFIL","decimals":18},"infoURL":"https://filecoin.io","shortName":"filecoin-calibration","chainId":314159,"networkId":314159,"slip44":1,"explorers":[{"name":"Filscan - Calibration","url":"https://calibration.filscan.io","standard":"none"},{"name":"Filscout - Calibration","url":"https://calibration.filscout.com/en","standard":"none"},{"name":"Filfox - Calibration","url":"https://calibration.filfox.info","standard":"none"},{"name":"Glif Explorer - Calibration","url":"https://explorer.glif.io/?network=calibration","standard":"none"},{"name":"Beryx","url":"https://beryx.zondax.ch","standard":"none"}]},{"name":"Bloom Genesis Testnet","chain":"Bloom","icon":"bloom","rpc":["https://testnet-rpc.bloomgenesis.com"],"faucets":["https://faucet.bloomgenesis.com"],"nativeCurrency":{"name":"Bloom","symbol":"BGBC","decimals":18},"infoURL":"https://www.bloomgenesis.com","shortName":"BGBC-Testnet","chainId":323213,"networkId":323213,"explorers":[{"name":"Bloom Genesis Testnet","url":"https://testnet.bloomgenesis.com","standard":"EIP3091"}]},{"name":"TTcoin Smart Chain Mainnet","chain":"TSC","icon":"tscscan","rpc":["https://mainnet-rpc.tscscan.com"],"faucets":["https://faucet.tscscan.com"],"nativeCurrency":{"name":"TTcoin","symbol":"TC","decimals":18},"infoURL":"https://ttcoin.info/","shortName":"tc","chainId":330844,"networkId":330844,"explorers":[{"name":"TTcoin Smart Chain Explorer","url":"https://tscscan.com","standard":"EIP3091","icon":"tscscan"}]},{"name":"Bloom Genesis Mainnet","chain":"Bloom","icon":"bloom","rpc":["https://mainnet-rpc.bloomgenesis.com"],"faucets":[],"nativeCurrency":{"name":"Bloom","symbol":"BGBC","decimals":18},"infoURL":"https://www.bloomgenesis.com","shortName":"BGBC","chainId":333313,"networkId":333313,"explorers":[{"name":"Bloom Genesis Mainnet","url":"https://explorer.bloomgenesis.com","standard":"EIP3091"}]},{"name":"Aves Testnet","chain":"AVST","rpc":["https://test.rpc.avescoin.io"],"faucets":[],"nativeCurrency":{"name":"AvesT","symbol":"AVST","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://ethereum.org","shortName":"avst","chainId":333331,"networkId":333331,"slip44":1,"icon":"aves","explorers":[{"name":"avescan","url":"https://testnet.avescoin.io","icon":"avescan","standard":"EIP3091"}]},{"name":"Nativ3 Testnet","chainId":333333,"shortName":"N3-Test","chain":"N3-Test","icon":"nativ3","networkId":333333,"slip44":1,"nativeCurrency":{"name":"USNT","symbol":"USNT","decimals":18},"rpc":["https://rpctest.nativ3.network","wss://wstest.nativ3.network"],"faucets":[],"explorers":[{"name":"Nativ3 Test Explorer","url":"https://scantest.nativ3.network","standard":"EIP3091"}],"infoURL":"https://nativ3.network","parent":{"type":"L2","chain":"eip155-421613","bridges":[{"url":"https://bridgetest.nativ3.network"}]}},{"name":"Oone Chain Testnet","chain":"OONE Testnet","rpc":["https://rpc.testnet.oonechain.com"],"faucets":["https://apps-test.adigium.com/faucet"],"nativeCurrency":{"name":"tOONE","symbol":"tOONE","decimals":18},"infoURL":"https://oonechain.com","shortName":"oonetest","chainId":333666,"networkId":333666,"slip44":1,"explorers":[{"name":"blockscout","url":"https://testnet.oonescan.com","standard":"none"}]},{"name":"Oone Chain Devnet","chain":"OONE Devnet","rpc":["https://rpc.dev.oonechain.com"],"faucets":["https://apps-test.adigium.com/faucet"],"nativeCurrency":{"name":"tOONE","symbol":"tOONE","decimals":18},"infoURL":"https://oonechain.com","shortName":"oonedev","chainId":333777,"networkId":333777,"explorers":[{"name":"blockscout","url":"https://dev.oonescan.com","standard":"none"}]},{"name":"Polis Testnet","chain":"Sparta","icon":"polis","rpc":["https://sparta-rpc.polis.tech"],"faucets":["https://faucet.polis.tech"],"nativeCurrency":{"name":"tPolis","symbol":"tPOLIS","decimals":18},"infoURL":"https://polis.tech","shortName":"sparta","chainId":333888,"networkId":333888,"slip44":1},{"name":"Polis Mainnet","chain":"Olympus","icon":"polis","rpc":["https://rpc.polis.tech"],"faucets":["https://faucet.polis.tech"],"nativeCurrency":{"name":"Polis","symbol":"POLIS","decimals":18},"infoURL":"https://polis.tech","shortName":"olympus","chainId":333999,"networkId":333999},{"name":"Bitfinity Network Testnet","chain":"BFT","rpc":["https://testnet.bitfinity.network"],"faucets":["https://bitfinity.network/faucet"],"nativeCurrency":{"name":"BITFINITY","symbol":"BFT","decimals":18},"infoURL":"https://bitfinity.network","shortName":"Bitfinity","chainId":355113,"networkId":355113,"slip44":1,"explorers":[{"name":"Bitfinity Block Explorer","url":"https://explorer.bitfinity.network","icon":"bitfinity","standard":"EIP3091"}]},{"name":"Digit Soul Smart Chain 2","chain":"DS2","rpc":["https://dgs-rpc.digitsoul.co.th"],"faucets":[],"icon":"pnet","nativeCurrency":{"name":"Digit Coin","symbol":"DGC","decimals":18},"infoURL":"","shortName":"DS2","chainId":363636,"networkId":363636},{"name":"HAPchain Testnet","chain":"HAPchain","rpc":["https://jsonrpc-test.hap.land"],"faucets":[],"nativeCurrency":{"name":"HAP","symbol":"HAP","decimals":18},"infoURL":"https://hap.land","shortName":"hap-testnet","chainId":373737,"networkId":373737,"slip44":1,"icon":"hap","explorers":[{"name":"HAP EVM Explorer (Blockscout)","url":"https://blockscout-test.hap.land","standard":"none","icon":"hap"}]},{"name":"Metal C-Chain","chain":"Metal","rpc":["https://api.metalblockchain.org/ext/bc/C/rpc"],"faucets":[],"nativeCurrency":{"name":"Metal","symbol":"METAL","decimals":18},"infoURL":"https://www.metalblockchain.org/","shortName":"metal","chainId":381931,"networkId":381931,"slip44":9005,"explorers":[{"name":"metalscan","url":"https://metalscan.io","standard":"EIP3091"}]},{"name":"Metal Tahoe C-Chain","chain":"Metal","rpc":["https://tahoe.metalblockchain.org/ext/bc/C/rpc"],"faucets":[],"nativeCurrency":{"name":"Metal","symbol":"METAL","decimals":18},"infoURL":"https://www.metalblockchain.org/","shortName":"Tahoe","chainId":381932,"networkId":381932,"slip44":9005,"explorers":[{"name":"metalscan","url":"https://tahoe.metalscan.io","standard":"EIP3091"}]},{"name":"Tipboxcoin Mainnet","chain":"TPBX","icon":"tipboxcoinIcon","rpc":["https://mainnet-rpc.tipboxcoin.net"],"faucets":["https://faucet.tipboxcoin.net"],"nativeCurrency":{"name":"Tipboxcoin","symbol":"TPBX","decimals":18},"infoURL":"https://tipboxcoin.net","shortName":"TPBXm","chainId":404040,"networkId":404040,"explorers":[{"name":"Tipboxcoin","url":"https://tipboxcoin.net","standard":"EIP3091"}]},{"name":"AIE Testnet","chain":"AIE","rpc":["https://rpc1-testnet.aiechain.io"],"faucets":[],"nativeCurrency":{"name":"AIE","symbol":"tAIE","decimals":18},"infoURL":"https://testnet.aiescan.io","shortName":"aiet","chainId":413413,"networkId":413413,"icon":"aie","explorers":[{"name":"aiescan-testnet","icon":"aie","url":"https://testnet.aiescan.io","standard":"none"}]},{"name":"Kekchain","chain":"kek","rpc":["https://mainnet.kekchain.com"],"faucets":[],"nativeCurrency":{"name":"KEK","symbol":"KEK","decimals":18},"infoURL":"https://kekchain.com","shortName":"KEK","chainId":420420,"networkId":103090,"icon":"kek","explorers":[{"name":"blockscout","url":"https://mainnet-explorer.kekchain.com","icon":"kek","standard":"EIP3091"}]},{"name":"Kekchain (kektest)","chain":"kek","rpc":["https://testnet.kekchain.com"],"faucets":[],"nativeCurrency":{"name":"tKEK","symbol":"tKEK","decimals":18},"infoURL":"https://kekchain.com","shortName":"tKEK","chainId":420666,"networkId":1,"slip44":1,"icon":"kek","explorers":[{"name":"blockscout","url":"https://testnet-explorer.kekchain.com","icon":"kek","standard":"EIP3091"}]},{"name":"Alterium L2 Testnet","chain":"ALT","icon":"alterium","rpc":["https://l2-testnet-rpc.altscan.org"],"faucets":[],"nativeCurrency":{"name":"Alterium ETH","symbol":"AltETH","decimals":18},"infoURL":"https://alteriumprotocol.org","shortName":"alterium","chainId":420692,"networkId":420692,"slip44":1,"parent":{"type":"L2","chain":"eip155-5","bridges":[{"url":"https://testnet-bridge.alteriumprotocol.org"}]},"explorers":[{"name":"Alterium L2 Testnet Explorer","url":"https://l2-testnet.altscan.org","standard":"EIP3091"}]},{"name":"Arbitrum Rinkeby","title":"Arbitrum Testnet Rinkeby","chainId":421611,"shortName":"arb-rinkeby","chain":"ETH","networkId":421611,"slip44":1,"nativeCurrency":{"name":"Arbitrum Rinkeby Ether","symbol":"ETH","decimals":18},"rpc":["https://rinkeby.arbitrum.io/rpc"],"faucets":["http://fauceth.komputing.org?chain=421611&address=${ADDRESS}"],"infoURL":"https://arbitrum.io","explorers":[{"name":"arbiscan-testnet","url":"https://testnet.arbiscan.io","standard":"EIP3091"},{"name":"arbitrum-rinkeby","url":"https://rinkeby-explorer.arbitrum.io","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-4","bridges":[{"url":"https://bridge.arbitrum.io"}]}},{"name":"Arbitrum Goerli","title":"Arbitrum Goerli Rollup Testnet","chainId":421613,"shortName":"arb-goerli","chain":"ETH","networkId":421613,"slip44":1,"nativeCurrency":{"name":"Arbitrum Goerli Ether","symbol":"AGOR","decimals":18},"rpc":["https://goerli-rollup.arbitrum.io/rpc","https://arbitrum-goerli.publicnode.com","wss://arbitrum-goerli.publicnode.com"],"faucets":[],"infoURL":"https://arbitrum.io/","explorers":[{"name":"Arbitrum Goerli Arbiscan","url":"https://goerli.arbiscan.io","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-5","bridges":[{"url":"https://bridge.arbitrum.io/"}]}},{"name":"Arbitrum Sepolia","title":"Arbitrum Sepolia Rollup Testnet","chain":"ETH","rpc":["https://sepolia-rollup.arbitrum.io/rpc","https://arbitrum-sepolia.infura.io/v3/${INFURA_API_KEY}"],"faucets":[],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://arbitrum.io","shortName":"arb-sep","chainId":421614,"networkId":421614,"slip44":1,"explorers":[{"name":"Arbitrum Sepolia Rollup Testnet Explorer","url":"https://sepolia-explorer.arbitrum.io","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111","bridges":[{"url":"https://bridge.arbitrum.io"}]}},{"name":"Fastex Chain testnet","chain":"FTN","title":"Fastex Chain testnet","rpc":["https://rpc.testnet.fastexchain.com"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"FTN","symbol":"FTN","decimals":18},"infoURL":"https://fastex.com","shortName":"fastexTestnet","chainId":424242,"networkId":424242,"slip44":1,"explorers":[{"name":"blockscout","url":"https://testnet.ftnscan.com","standard":"none"}]},{"name":"Markr Go","chain":"Unified","icon":"markrgo","rpc":["https://rpc.markr.io/ext/"],"faucets":[],"nativeCurrency":{"name":"Avalanche","symbol":"AVAX","decimals":18},"infoURL":"https://www.markr.io/","shortName":"markr-go","chainId":431140,"networkId":431140,"explorers":[],"status":"incubating"},{"name":"Dexalot Subnet Testnet","chain":"DEXALOT","icon":"dexalot","rpc":["https://subnets.avax.network/dexalot/testnet/rpc"],"faucets":["https://faucet.avax.network/?subnet=dexalot"],"nativeCurrency":{"name":"Dexalot","symbol":"ALOT","decimals":18},"infoURL":"https://dexalot.com","shortName":"dexalot-testnet","chainId":432201,"networkId":432201,"slip44":1,"explorers":[{"name":"Avalanche Subnet Testnet Explorer","url":"https://subnets-test.avax.network/dexalot","standard":"EIP3091"}]},{"name":"Dexalot Subnet","chain":"DEXALOT","icon":"dexalot","rpc":["https://subnets.avax.network/dexalot/mainnet/rpc"],"faucets":[],"nativeCurrency":{"name":"Dexalot","symbol":"ALOT","decimals":18},"infoURL":"https://dexalot.com","shortName":"dexalot","chainId":432204,"networkId":432204,"explorers":[{"name":"Avalanche Subnet Explorer","url":"https://subnets.avax.network/dexalot","standard":"EIP3091"}]},{"name":"Syndr L3 Sepolia","title":"Syndr L3 Sepolia Rollup Testnet","chain":"SYNDRSEPOLIA","rpc":["https://sepolia.syndr.com/http","wss://sepolia.syndr.com/ws"],"faucets":[],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://syndr.com","shortName":"syndr","chainId":444444,"networkId":444444,"explorers":[{"name":"Syndr L3 Sepolia Testnet Explorer","url":"https://sepolia-explorer.syndr.com","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-421614","bridges":[{"url":"https://sepolia-bridge.syndr.com"}]}},{"name":"Weelink Testnet","chain":"WLK","rpc":["https://weelinknode1c.gw002.oneitfarm.com"],"faucets":["https://faucet.weelink.gw002.oneitfarm.com"],"nativeCurrency":{"name":"Weelink Chain Token","symbol":"tWLK","decimals":18},"infoURL":"https://weelink.cloud","shortName":"wlkt","chainId":444900,"networkId":444900,"slip44":1,"explorers":[{"name":"weelink-testnet","url":"https://weelink.cloud/#/blockView/overview","standard":"none"}]},{"name":"Patex Sepolia Testnet","chain":"ETH","rpc":["https://test-rpc.patex.io/"],"faucets":[],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://patex.io/","shortName":"psep","chainId":471100,"networkId":471100,"slip44":1},{"name":"Ultra Pro Mainnet","chain":"ultrapro","icon":"ultrapro","rpc":["https://mainnet-rpc.ultraproscan.io"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Ultra Pro","symbol":"UPRO","decimals":18},"infoURL":"https://ultrapro.info","shortName":"ultrapro","chainId":473861,"networkId":473861,"explorers":[{"name":"ultraproscan","url":"https://ultraproscan.io","icon":"ultrapro","standard":"EIP3091"}]},{"name":"OpenChain Mainnet","chain":"OpenChain","rpc":["https://baas-rpc.luniverse.io:18545?lChainId=1641349324562974539"],"faucets":[],"nativeCurrency":{"name":"OpenCoin","symbol":"OPC","decimals":10},"infoURL":"https://www.openchain.live","shortName":"oc","chainId":474142,"networkId":474142,"explorers":[{"name":"SIDE SCAN","url":"https://sidescan.luniverse.io/1641349324562974539","standard":"none"}]},{"name":"CMP-Testnet","chain":"CMP","rpc":["https://galaxy.block.caduceus.foundation","wss://galaxy.block.caduceus.foundation"],"faucets":["https://dev.caduceus.foundation/testNetwork"],"nativeCurrency":{"name":"Caduceus Testnet Token","symbol":"CMP","decimals":18},"infoURL":"https://caduceus.foundation/","shortName":"cmp","chainId":512512,"networkId":512512,"slip44":1,"explorers":[{"name":"Galaxy Scan","url":"https://galaxy.scan.caduceus.foundation","standard":"none"}]},{"name":"DisChain","chainId":513100,"networkId":513100,"shortName":"dis","chain":"DIS","nativeCurrency":{"name":"DisChain","symbol":"DIS","decimals":18},"rpc":["https://rpc.dischain.xyz"],"faucets":[],"explorers":[{"name":"DisChain","url":"https://www.oklink.com/dis","standard":"EIP3091"}],"infoURL":"https://dischain.xyz"},{"name":"DoCoin Community Chain","title":"DoCoin Community Chain","chain":"DoCoin","rpc":["https://rpc.docoin.shop"],"faucets":[],"nativeCurrency":{"name":"DO","symbol":"DCT","decimals":18},"infoURL":"https://docoin.network","shortName":"DoCoin","chainId":526916,"networkId":526916,"explorers":[{"name":"DoCoin Community Chain Explorer","url":"https://explorer.docoin.shop","standard":"EIP3091"}]},{"name":"Scroll Sepolia Testnet","chain":"ETH","status":"active","rpc":["https://sepolia-rpc.scroll.io","https://rpc.ankr.com/scroll_sepolia_testnet","https://scroll-sepolia.chainstacklabs.com","https://scroll-testnet-public.unifra.io"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://scroll.io","shortName":"scr-sepolia","chainId":534351,"networkId":534351,"slip44":1,"explorers":[{"name":"Scroll Sepolia Etherscan","url":"https://sepolia.scrollscan.com","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111","bridges":[{"url":"https://sepolia.scroll.io/bridge"}]}},{"name":"Scroll","chain":"ETH","status":"active","rpc":["https://rpc.scroll.io","https://rpc.ankr.com/scroll","https://scroll-mainnet.chainstacklabs.com"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://scroll.io","shortName":"scr","chainId":534352,"networkId":534352,"explorers":[{"name":"Scrollscan","url":"https://scrollscan.com","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://scroll.io/bridge"}]}},{"name":"Scroll Alpha Testnet","chain":"ETH","status":"deprecated","rpc":["https://alpha-rpc.scroll.io/l2"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://scroll.io","shortName":"scr-alpha","chainId":534353,"networkId":534353,"slip44":1,"explorers":[{"name":"Scroll Alpha Testnet Block Explorer","url":"https://alpha-blockscout.scroll.io","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-5","bridges":[]}},{"name":"Scroll Pre-Alpha Testnet","chain":"ETH","status":"deprecated","rpc":[],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"TSETH","decimals":18},"infoURL":"https://scroll.io","shortName":"scr-prealpha","chainId":534354,"networkId":534354,"slip44":1,"explorers":[]},{"name":"Shinarium Beta","chain":"Shinarium","icon":"shinarium","rpc":["https://rpc.shinarium.org"],"faucets":["https://faucet.shinarium.org"],"nativeCurrency":{"name":"Shina Inu","symbol":"SHI","decimals":18},"infoURL":"https://shinarium.org","shortName":"shi","chainId":534849,"networkId":534849,"explorers":[{"name":"shinascan","url":"https://shinascan.shinarium.org","standard":"EIP3091"}]},{"name":"BeanEco SmartChain","title":"BESC Mainnet","chain":"BESC","rpc":["https://mainnet-rpc.bescscan.io"],"faucets":[],"nativeCurrency":{"name":"BeanEco SmartChain","symbol":"BESC","decimals":18},"infoURL":"besceco.finance","shortName":"BESC","chainId":535037,"networkId":535037,"explorers":[{"name":"bescscan","url":"https://Bescscan.io","standard":"EIP3091"}]},{"name":"Eclipse Testnet","chain":"ECLIPSE","rpc":["https://subnets.avax.network/eclipsecha/testnet/rpc"],"features":[{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Eclipse","symbol":"ECLP","decimals":18},"infoURL":"http://eclipsenet.io","shortName":"eclipset","chainId":555666,"networkId":555666,"explorers":[{"name":"ECLIPSE Explorer","url":"https://subnets-test.avax.network/eclipsecha","standard":"EIP3091"}]},{"name":"Hypra Mainnet","chain":"HYP","rpc":["https://rpc.hypra.network","https://rpc.rethereum.org","https://rethereum.rpc.restratagem.com","https://rpc.rthcentral.org","https://hypra.rpc.thirdweb.com"],"faucets":[],"nativeCurrency":{"name":"Hypra","symbol":"HYP","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://www.hypra.network","shortName":"hyp","chainId":622277,"networkId":622277,"icon":"rethereum","explorers":[{"name":"hypra","url":"https://explorer.hypra.network","icon":"blockscout","standard":"EIP3091"}]},{"name":"Bear Network Chain Mainnet","chain":"BRNKC","icon":"brnkc","rpc":["https://brnkc-mainnet.bearnetwork.net","https://brnkc-mainnet1.bearnetwork.net"],"faucets":[],"nativeCurrency":{"name":"Bear Network Chain Native Token","symbol":"BRNKC","decimals":18},"infoURL":"https://bearnetwork.net","shortName":"BRNKC","chainId":641230,"networkId":641230,"explorers":[{"name":"brnkscan","url":"https://brnkscan.bearnetwork.net","standard":"EIP3091"}]},{"name":"ALL Mainnet","chain":"ALL","icon":"alltra","rpc":["https://mainnet-rpc.alltra.global"],"faucets":[],"nativeCurrency":{"name":"ALL","symbol":"ALL","decimals":18},"infoURL":"https://alltra.world","shortName":"ALL","chainId":651940,"networkId":651940,"explorers":[{"name":"Alltra SmartChain Explorer","url":"https://alltra.global","standard":"EIP3091"}]},{"name":"Vision - Vpioneer Test Chain","chain":"Vision-Vpioneer","rpc":["https://vpioneer.infragrid.v.network/ethereum/compatible"],"faucets":["https://vpioneerfaucet.visionscan.org"],"nativeCurrency":{"name":"VS","symbol":"VS","decimals":18},"infoURL":"https://visionscan.org","shortName":"vpioneer","chainId":666666,"networkId":666666,"slip44":1},{"name":"Hela Official Runtime Testnet","chain":"Hela","icon":"hela","rpc":["https://testnet-rpc.helachain.com"],"faucets":["https://testnet-faucet.helachain.com"],"nativeCurrency":{"name":"Hela HLUSD","symbol":"HLUSD","decimals":18},"infoURL":"https://helalabs.com","shortName":"hela-testnet","chainId":666888,"networkId":666888,"slip44":1,"explorers":[{"name":"Hela Official Runtime Testnet Explorer","url":"https://testnet-blockexplorer.helachain.com","standard":"EIP3091"}]},{"name":"Won Network","chainId":686868,"shortName":"WonChain","chain":"WON","icon":"won","networkId":686868,"nativeCurrency":{"name":"Won","symbol":"WON","decimals":18},"rpc":["https://rpc.wonnetwork.org"],"faucets":["https://faucet.wondollars.org"],"explorers":[{"name":"Won Explorer","url":"https://scan.wonnetwork.org","standard":"EIP3091"}],"infoURL":"https://wonnetwork.org"},{"name":"Galadriel Devnet","chain":"Galadriel","rpc":["https://devnet.galadriel.com"],"faucets":["https://docs.galadriel.com/faucet"],"nativeCurrency":{"name":"Galadriel Devnet token","symbol":"GAL","decimals":18},"infoURL":"https://galadriel.com","shortName":"galadriel-devnet","chainId":696969,"networkId":696969,"explorers":[{"name":"Galadriel Explorer","url":"https://explorer.galadriel.com","standard":"none"}]},{"name":"Tiltyard Mainnet Subnet","chain":"TILTYARD","rpc":["https://subnets.avax.network/tiltyard/mainnet/rpc"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"TILT","symbol":"TILT","decimals":18},"infoURL":"https://play.tiltyard.gg/","shortName":"tiltyardmainnet","chainId":710420,"networkId":710420,"explorers":[{"name":"TILTYARD Explorer","url":"https://subnets.avax.network/tiltyard","standard":"EIP3091"}]},{"name":"Sei Devnet","chain":"Sei","rpc":["https://evm-rpc-arctic-1.sei-apis.com","https://evm-rpc.arctic-1.seinetwork.io"],"faucets":["https://sei-faucet.nima.enterprises","https://sei-evm.faucetme.pro"],"nativeCurrency":{"name":"Sei","symbol":"SEI","decimals":18},"infoURL":"https://www.sei.io","shortName":"sei-devnet","chainId":713715,"networkId":713715,"icon":"sei","explorers":[{"name":"Seistream","url":"https://seistream.app","standard":"none"},{"name":"Seitrace","url":"https://seitrace.com","standard":"EIP3091"}]},{"name":"Hemi Sepolia","chain":"ETH","rpc":["https://testnet.rpc.hemi.network/rpc"],"faucets":[],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://hemi.xyz","shortName":"hemi-sep","chainId":743111,"networkId":743111,"explorers":[{"name":"blockscout","url":"https://testnet.explorer.hemi.network","icon":"blockscout","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111"},"status":"active"},{"name":"Bear Network Chain Testnet","chain":"BRNKCTEST","icon":"brnkc","rpc":["https://brnkc-test.bearnetwork.net"],"faucets":["https://faucet.bearnetwork.net"],"nativeCurrency":{"name":"Bear Network Chain Testnet Token","symbol":"tBRNKC","decimals":18},"infoURL":"https://bearnetwork.net","shortName":"BRNKCTEST","chainId":751230,"networkId":751230,"slip44":1,"explorers":[{"name":"brnktestscan","url":"https://brnktest-scan.bearnetwork.net","standard":"EIP3091"}]},{"name":"Miexs Smartchain","chain":"MiexsSmartchain","icon":"miexs","rpc":["https://mainnet-rpc.miexs.com"],"faucets":[],"nativeCurrency":{"name":"Miexs Coin","symbol":"MIX","decimals":18},"infoURL":"https://miexs.com","shortName":"Miexs","chainId":761412,"networkId":761412,"explorers":[{"name":"Miexs Smartchain Explorer","url":"https://miexs.com","standard":"EIP3091"}]},{"name":"Modularium","chain":"EVMCC","rpc":["https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network"],"faucets":[],"nativeCurrency":{"name":"Modularium","symbol":"MDM","decimals":18},"infoURL":"https://www.rmrk.app/","shortName":"mdlrm","chainId":776877,"networkId":776877,"explorers":[{"name":"Tanssi Explorer","url":"https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network","standard":"none"}]},{"name":"OctaSpace","chain":"OCTA","rpc":["https://rpc.octa.space","wss://rpc.octa.space"],"faucets":[],"nativeCurrency":{"name":"OctaSpace","symbol":"OCTA","decimals":18},"infoURL":"https://octa.space","shortName":"octa","chainId":800001,"networkId":800001,"icon":"octaspace","explorers":[{"name":"blockscout","url":"https://explorer.octa.space","icon":"blockscout","standard":"EIP3091"}]},{"name":"BIZ Smart Chain Testnet","chain":"BIZT Testnet","rpc":["https://rpc-testnet.bizex.io/"],"faucets":[],"nativeCurrency":{"name":"tBIZT","symbol":"tBIZT","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://www.biztoken.io/","shortName":"bizt-testnet","chainId":808080,"networkId":808080,"slip44":1,"icon":"biz","explorers":[{"name":"BIZ Smart Chain Testnet Explorer","url":"https://testnet.btscan.io","standard":"EIP3091"}]},{"name":"zkLink Nova Mainnet","chain":"ETH","rpc":["https://rpc.zklink.io","wss://rpc.zklink.io"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://zklink.io","shortName":"zklink-nova","chainId":810180,"networkId":810180,"slip44":1,"icon":"zklink-nova","explorers":[{"name":"zkLink Nova Block Explorer","url":"https://explorer.zklink.io","icon":"zklink-nova","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-59144","bridges":[{"url":"https://portal.zklink.io"}]}},{"name":"zkLink Nova Sepolia Testnet","chain":"ETH","rpc":["https://sepolia.rpc.zklink.io","wss://sepolia.rpc.zklink.io"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://zklink.io","shortName":"zklink-nova-sepolia","chainId":810181,"networkId":810181,"slip44":1,"icon":"zklink-nova","explorers":[{"name":"zkLink Nova Block Explorer","url":"https://sepolia.explorer.zklink.io","icon":"zklink-nova","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-59141","bridges":[{"url":"https://sepolia.portal.zklink.io"}]}},{"name":"zkLink Nova Goerli Testnet","chain":"ETH","rpc":["https://goerli.rpc.zklink.io","wss://goerli.rpc.zklink.io"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://zklink.io","shortName":"zklink-nova-goerli","chainId":810182,"networkId":810182,"slip44":1,"icon":"zklink-nova","explorers":[{"name":"zkLink Nova Block Explorer","url":"https://goerli.explorer.zklink.io","icon":"zklink-nova","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-59140","bridges":[{"url":"https://goerli.portal.zklink.io"}]}},{"name":"CURVE Mainnet","chain":"CURVE","icon":"curveIcon","rpc":["https://mainnet-rpc.curvescan.io"],"faucets":[],"nativeCurrency":{"name":"Curve","symbol":"CURVE","decimals":18},"infoURL":"https://curvescan.io","shortName":"CURVEm","chainId":827431,"networkId":827431,"explorers":[{"name":"CURVE Mainnet","url":"https://curvescan.io","standard":"EIP3091"}]},{"name":"4GoodNetwork","chain":"4GN","rpc":["https://chain.deptofgood.com"],"faucets":[],"nativeCurrency":{"name":"APTA","symbol":"APTA","decimals":18},"infoURL":"https://bloqs4good.com","shortName":"bloqs4good","chainId":846000,"networkId":846000},{"name":"Dodao","chain":"EVMCC","rpc":["https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network","wss://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network"],"faucets":[],"nativeCurrency":{"name":"Dodao","symbol":"DODAO","decimals":18},"infoURL":"https://dodao.dev/","shortName":"dodao","chainId":855456,"networkId":855456,"icon":"dodao","explorers":[{"name":"Dodao Explorer","url":"https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network","icon":"dodao","standard":"EIP3091"}]},{"name":"BlocX Mainnet","chain":"BLX","rpc":["https://mainnet-rpc.blxscan.com/"],"faucets":[],"nativeCurrency":{"name":"BlocX","symbol":"BLX","decimals":18},"infoURL":"https://www.blocxchain.org/","shortName":"blx","chainId":879151,"networkId":879151,"icon":"blx","explorers":[{"name":"BlocX Mainnet Explorer","url":"https://explorer.blxscan.com","icon":"blx","standard":"none"}]},{"name":"REXX Mainnet","title":"REXX Mainnet","chain":"REXX","rpc":["https://rpc.rexxnetwork.com"],"faucets":[],"nativeCurrency":{"name":"REXX","symbol":"REXX","decimals":18},"infoURL":"https://rexxnetwork.com","shortName":"REXX","chainId":888882,"networkId":888882,"explorers":[{"name":"REXX Mainnet Explorer","url":"https://rexxnetwork.com","standard":"EIP3091"}]},{"name":"Vision - Mainnet","chain":"Vision","rpc":["https://infragrid.v.network/ethereum/compatible"],"faucets":[],"nativeCurrency":{"name":"VS","symbol":"VS","decimals":18},"infoURL":"https://www.v.network","explorers":[{"name":"Visionscan","url":"https://www.visionscan.org","standard":"EIP3091"}],"shortName":"vision","chainId":888888,"networkId":888888,"slip44":60},{"name":"Posichain Mainnet Shard 0","chain":"PSC","rpc":["https://api.posichain.org","https://api.s0.posichain.org"],"faucets":[],"nativeCurrency":{"name":"Posichain Native Token","symbol":"POSI","decimals":18},"infoURL":"https://posichain.org","shortName":"psc-s0","chainId":900000,"networkId":900000,"explorers":[{"name":"Posichain Explorer","url":"https://explorer.posichain.org","standard":"EIP3091"}]},{"name":"Posichain Testnet Shard 0","chain":"PSC","rpc":["https://api.s0.t.posichain.org"],"faucets":["https://faucet.posichain.org/"],"nativeCurrency":{"name":"Posichain Native Token","symbol":"POSI","decimals":18},"infoURL":"https://posichain.org","shortName":"psc-t-s0","chainId":910000,"networkId":910000,"explorers":[{"name":"Posichain Explorer Testnet","url":"https://explorer-testnet.posichain.org","standard":"EIP3091"}]},{"name":"Astria EVM Dusknet","chain":"RIA","icon":"astria","chainId":912559,"networkId":912559,"infoURL":"https://docs.astria.org","shortName":"ria-dev","nativeCurrency":{"name":"RIA","symbol":"RIA","decimals":18},"rpc":["https://rpc.evm.dusk-3.devnet.astria.org"],"faucets":["https://faucet.evm.dusk-3.devnet.astria.org/"],"explorers":[{"name":"Astria EVM Dusknet Explorer","url":"https://explorer.evm.dusk-3.devnet.astria.org","standard":"EIP3091"}]},{"name":"Posichain Devnet Shard 0","chain":"PSC","rpc":["https://api.s0.d.posichain.org"],"faucets":["https://faucet.posichain.org/"],"nativeCurrency":{"name":"Posichain Native Token","symbol":"POSI","decimals":18},"infoURL":"https://posichain.org","shortName":"psc-d-s0","chainId":920000,"networkId":920000,"explorers":[{"name":"Posichain Explorer Devnet","url":"https://explorer-devnet.posichain.org","standard":"EIP3091"}]},{"name":"Posichain Devnet Shard 1","chain":"PSC","rpc":["https://api.s1.d.posichain.org"],"faucets":["https://faucet.posichain.org/"],"nativeCurrency":{"name":"Posichain Native Token","symbol":"POSI","decimals":18},"infoURL":"https://posichain.org","shortName":"psc-d-s1","chainId":920001,"networkId":920001,"explorers":[{"name":"Posichain Explorer Devnet","url":"https://explorer-devnet.posichain.org","standard":"EIP3091"}]},{"name":"FNCY Testnet","chain":"FNCY","rpc":["https://fncy-testnet-seed.fncy.world"],"faucets":["https://faucet-testnet.fncy.world"],"nativeCurrency":{"name":"FNCY","symbol":"FNCY","decimals":18},"infoURL":"https://fncyscan-testnet.fncy.world","shortName":"tFNCY","chainId":923018,"networkId":923018,"slip44":1,"icon":"fncy","explorers":[{"name":"fncy scan testnet","url":"https://fncyscan-testnet.fncy.world","icon":"fncy","standard":"EIP3091"}]},{"name":"Jono12 Subnet","chain":"JONO12","icon":"jono12","rpc":["https://subnets.avax.network/jono12/testnet/rpc"],"features":[{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Jono12 Token","symbol":"JONO","decimals":18},"infoURL":"","shortName":"jono12","chainId":955081,"networkId":955081,"explorers":[{"name":"JONO12 Explorer","url":"https://subnets-test.avax.network/jono12","standard":"EIP3091"}]},{"name":"Eluvio Content Fabric","chain":"Eluvio","rpc":["https://host-76-74-28-226.contentfabric.io/eth/","https://host-76-74-28-232.contentfabric.io/eth/","https://host-76-74-29-2.contentfabric.io/eth/","https://host-76-74-29-8.contentfabric.io/eth/","https://host-76-74-29-34.contentfabric.io/eth/","https://host-76-74-29-35.contentfabric.io/eth/","https://host-154-14-211-98.contentfabric.io/eth/","https://host-154-14-192-66.contentfabric.io/eth/","https://host-60-240-133-202.contentfabric.io/eth/","https://host-64-235-250-98.contentfabric.io/eth/"],"faucets":[],"nativeCurrency":{"name":"ELV","symbol":"ELV","decimals":18},"infoURL":"https://eluv.io","shortName":"elv","chainId":955305,"networkId":955305,"slip44":1011,"explorers":[{"name":"blockscout","url":"https://explorer.eluv.io","standard":"EIP3091"}]},{"name":"Ecrox Chain Mainnet","chain":"Ecrox Chain","rpc":["https://mainnet-rpc.ecroxscan.com/"],"faucets":[],"nativeCurrency":{"name":"ECROX COIN","symbol":"ECROX","decimals":18},"infoURL":"https://ecroxcoin.io/","shortName":"ecrox","icon":"ecrox","chainId":988207,"networkId":988207,"explorers":[{"name":"Ecrox Chain Explorer","url":"https://ecroxscan.com","standard":"EIP3091"}]},{"name":"Netmind Chain Testnet","title":"NetMind Chain Testnet","chain":"NetMind","rpc":["https://testblock.protago-dev.com"],"faucets":[],"nativeCurrency":{"name":"NMT","symbol":"NMT","decimals":18},"infoURL":"https://netmind.ai","shortName":"nmtTest","chainId":1100789,"networkId":1100789,"icon":"netmind","explorers":[{"name":"NetMind Testnet Explorer","url":"https://testbrower.protago-dev.com","icon":"netmind","standard":"EIP3091"}]},{"name":"Tiltyard Subnet","chain":"TILTYARD","rpc":["https://subnets.avax.network/tiltyard/testnet/rpc"],"features":[{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Tiltyard Token","symbol":"TILTG","decimals":18},"infoURL":"","shortName":"tiltyard","chainId":1127469,"networkId":1127469,"explorers":[{"name":"TILTYARD Explorer","url":"http://testnet-explorer.tiltyard.gg","standard":"EIP3091"}]},{"name":"zKatana","shortName":"azktn","title":"Astar zkEVM Testnet zKatana","chain":"ETH","icon":"astarzk","rpc":["https://rpc.zkatana.gelato.digital","https://rpc.startale.com/zkatana","https://astar-zkatana.drpc.org","wss://astar-zkatana.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://astar.network","chainId":1261120,"networkId":1261120,"explorers":[{"name":"Blockscout zKatana chain explorer","url":"https://zkatana.blockscout.com","standard":"EIP3091"},{"name":"Startale zKatana chain explorer","url":"https://zkatana.explorer.startale.com","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111","bridges":[{"url":"https://portal.astar.network"},{"url":"https://bridge.zkatana.gelato.digital"}]},"status":"active"},{"name":"Etho Protocol","chain":"ETHO","rpc":["https://rpc.ethoprotocol.com"],"faucets":[],"nativeCurrency":{"name":"Etho Protocol","symbol":"ETHO","decimals":18},"infoURL":"https://ethoprotocol.com","shortName":"etho","chainId":1313114,"networkId":1313114,"slip44":1313114,"explorers":[{"name":"blockscout","url":"https://explorer.ethoprotocol.com","standard":"none"}]},{"name":"Xerom","chain":"XERO","rpc":["https://rpc.xerom.org"],"faucets":[],"nativeCurrency":{"name":"Xerom Ether","symbol":"XERO","decimals":18},"infoURL":"https://xerom.org","shortName":"xero","chainId":1313500,"networkId":1313500},{"name":"Kintsugi","title":"Kintsugi merge testnet","chain":"ETH","rpc":["https://rpc.kintsugi.themerge.dev"],"faucets":["http://fauceth.komputing.org?chain=1337702&address=${ADDRESS}","https://faucet.kintsugi.themerge.dev"],"nativeCurrency":{"name":"kintsugi Ethere","symbol":"kiETH","decimals":18},"infoURL":"https://kintsugi.themerge.dev/","shortName":"kintsugi","chainId":1337702,"networkId":1337702,"explorers":[{"name":"kintsugi explorer","url":"https://explorer.kintsugi.themerge.dev","standard":"EIP3091"}]},{"name":"Kiln","chain":"ETH","rpc":["https://rpc.kiln.themerge.dev"],"faucets":["https://faucet.kiln.themerge.dev","https://kiln-faucet.pk910.de","https://kilnfaucet.com"],"nativeCurrency":{"name":"Testnet ETH","symbol":"ETH","decimals":18},"infoURL":"https://kiln.themerge.dev/","shortName":"kiln","chainId":1337802,"networkId":1337802,"icon":"ethereum","explorers":[{"name":"Kiln Explorer","url":"https://explorer.kiln.themerge.dev","icon":"ethereum","standard":"EIP3091"}]},{"name":"Zhejiang","chain":"ETH","rpc":["https://rpc.zhejiang.ethpandaops.io"],"faucets":["https://faucet.zhejiang.ethpandaops.io","https://zhejiang-faucet.pk910.de"],"nativeCurrency":{"name":"Testnet ETH","symbol":"ETH","decimals":18},"infoURL":"https://zhejiang.ethpandaops.io","shortName":"zhejiang","chainId":1337803,"networkId":1337803,"icon":"ethereum","explorers":[{"name":"Zhejiang Explorer","url":"https://zhejiang.beaconcha.in","icon":"ethereum","standard":"EIP3091"}]},{"name":"PlayFi Albireo Testnet","chain":"ETH","rpc":["https://albireo-rpc.playfi.ai"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://www.playfi.ai/","shortName":"alberio","chainId":1612127,"networkId":1612127,"slip44":1,"explorers":[{"name":"PlayFi Block Explorer","url":"https://albireo-explorer.playfi.ai","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://portal.playfi.ai/bridge"}]}},{"name":"Turkey Demo Dev","chain":"ETH","rpc":["https://devchain-poa.huabeizhenxuan.com"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"","shortName":"TDD","chainId":1731313,"networkId":1731313},{"name":"DeBank Testnet","chain":"DeBank","rpc":["http://rpc.testnet.debank.com"],"faucets":[],"icon":"debank","nativeCurrency":{"name":"DeBank USD","symbol":"USD","decimals":18},"infoURL":"https://debank.com","shortName":"dbk","chainId":2021398,"networkId":2021398,"slip44":1,"explorers":[{"name":"DeBank Chain Explorer","url":"https://explorer.testnet.debank.com","standard":"EIP3091"}]},{"name":"Plian Mainnet Main","chain":"Plian","rpc":["https://mainnet.plian.io/pchain"],"faucets":[],"nativeCurrency":{"name":"Plian Token","symbol":"PI","decimals":18},"infoURL":"https://plian.org/","shortName":"plian-mainnet","chainId":2099156,"networkId":2099156,"explorers":[{"name":"piscan","url":"https://piscan.plian.org/pchain","standard":"EIP3091"}]},{"name":"PlatON Dev Testnet Deprecated","chain":"PlatON","rpc":["https://devnetopenapi2.platon.network/rpc","wss://devnetopenapi2.platon.network/ws"],"faucets":["https://devnet2faucet.platon.network/faucet"],"nativeCurrency":{"name":"LAT","symbol":"lat","decimals":18},"infoURL":"https://www.platon.network","shortName":"platondev","chainId":2203181,"networkId":1,"slip44":1,"icon":"platon","status":"deprecated","explorers":[{"name":"PlatON explorer","url":"https://devnetscan.platon.network","standard":"none"}]},{"name":"PlatON Dev Testnet2","chain":"PlatON","rpc":["https://devnet2openapi.platon.network/rpc","wss://devnet2openapi.platon.network/ws"],"faucets":["https://devnet2faucet.platon.network/faucet"],"nativeCurrency":{"name":"LAT","symbol":"lat","decimals":18},"infoURL":"https://www.platon.network","shortName":"platondev2","chainId":2206132,"networkId":1,"slip44":1,"icon":"platon","explorers":[{"name":"PlatON explorer","url":"https://devnet2scan.platon.network","standard":"none"}]},{"name":"DPU Chain","chain":"DPU","rpc":["https://sc-rpc.dpu.ac.th"],"faucets":[],"nativeCurrency":{"name":"DGC","symbol":"DGC","decimals":18},"infoURL":"","shortName":"DPU","chainId":2611555,"networkId":2611555},{"name":"SaharaAI Network","chain":"Sahara","rpc":["https://mainnet.saharalabs.ai"],"faucets":[],"nativeCurrency":{"name":"SAHARA","symbol":"SAH","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://saharalabs.ai","shortName":"sahara","chainId":3132023,"networkId":3132023,"icon":"sahara","explorers":[]},{"name":"Filecoin - Butterfly testnet","chain":"FIL","status":"incubating","rpc":[],"faucets":["https://faucet.butterfly.fildev.network"],"nativeCurrency":{"name":"testnet filecoin","symbol":"tFIL","decimals":18},"infoURL":"https://filecoin.io","shortName":"filecoin-butterfly","icon":"filecoin","chainId":3141592,"networkId":3141592,"slip44":1,"explorers":[]},{"name":"Manta Pacific Testnet","chain":"Manta Pacific","rpc":["https://manta-testnet.calderachain.xyz/http","https://manta-pacific-testnet.drpc.org","wss://manta-pacific-testnet.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Manta","symbol":"MANTA","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://manta-testnet.caldera.dev/","shortName":"mantaTestnet","chainId":3441005,"networkId":3441005,"slip44":1,"icon":"manta","explorers":[{"name":"manta-testnet Explorer","url":"https://manta-testnet.calderaexplorer.xyz","standard":"EIP3091"}]},{"name":"Manta Pacific Sepolia Testnet","chain":"Manta Pacific","rpc":["https://pacific-rpc.sepolia-testnet.manta.network/http"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://manta-testnet.caldera.dev/","shortName":"mantaSepoliaTestnet","chainId":3441006,"networkId":3441006,"slip44":1,"icon":"manta","explorers":[{"name":"manta-testnet Explorer","url":"https://pacific-explorer.sepolia-testnet.manta.network","standard":"EIP3091"}]},{"name":"AltLayer Zero Gas Network","chain":"ETH","rpc":["https://zero.alt.technology"],"faucets":[],"nativeCurrency":{"name":"ZERO","symbol":"ZERO","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://altlayer.io","shortName":"alt-zerogas","chainId":4000003,"networkId":4000003,"icon":"altlayer","explorers":[{"name":"blockscout","url":"https://zero-explorer.alt.technology","icon":"blockscout","standard":"EIP3091"}]},{"name":"Worlds Caldera","chain":"WCal","rpc":["https://worlds-test.calderachain.xyz/http"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://caldera.xyz/","shortName":"worldscal","chainId":4281033,"networkId":4281033,"icon":"ethereum","explorers":[]},{"name":"MXC Wannsee zkEVM Testnet","chain":"MXC zkEVM","icon":"mxc","rpc":["https://wannsee-rpc.mxc.com"],"faucets":[],"nativeCurrency":{"name":"MXC Wannsee zkEVM Testnet","symbol":"MXC","decimals":18},"infoURL":"https://wannsee.mxc.com/docs/intro","shortName":"MXCdiscontinued","chainId":5167003,"networkId":5167003,"slip44":1,"explorers":[{"name":"MXC Wannsee zkEVM Testnet","url":"https://wannsee-explorer.mxc.com","standard":"EIP3091"}]},{"name":"Moonchain Geneva Testnet","chain":"MXC zkEVM","icon":"mxc","rpc":["https://geneva-rpc.moonchain.com"],"faucets":[],"nativeCurrency":{"name":"Moonchain Geneva Testnet","symbol":"MXC","decimals":18},"infoURL":"https://doc.mxc.com/docs/intro","shortName":"MXC","chainId":5167004,"networkId":5167004,"slip44":1,"explorers":[{"name":"Moonchain Geneva Testnet","url":"https://geneva-explorer.moonchain.com","standard":"EIP3091"}]},{"name":"Electroneum Testnet","chain":"Electroneum","rpc":["https://testnet-rpc.electroneum.com"],"faucets":[],"nativeCurrency":{"name":"Electroneum","symbol":"ETN","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://electroneum.com","shortName":"etn-testnet","chainId":5201420,"networkId":5201420,"slip44":1,"icon":"electroneum","explorers":[{"name":"blockscout","url":"https://blockexplorer.thesecurityteam.rocks","icon":"electroneum","standard":"EIP3091"}]},{"name":"Imversed Mainnet","chain":"Imversed","rpc":["https://jsonrpc.imversed.network","https://ws-jsonrpc.imversed.network"],"faucets":[],"nativeCurrency":{"name":"Imversed Token","symbol":"IMV","decimals":18},"infoURL":"https://imversed.com","shortName":"imversed","chainId":5555555,"networkId":5555555,"icon":"imversed","explorers":[{"name":"Imversed EVM explorer (Blockscout)","url":"https://txe.imversed.network","icon":"imversed","standard":"EIP3091"},{"name":"Imversed Cosmos Explorer (Big Dipper)","url":"https://tex-c.imversed.com","icon":"imversed","standard":"none"}]},{"name":"Imversed Testnet","chain":"Imversed","rpc":["https://jsonrpc-test.imversed.network","https://ws-jsonrpc-test.imversed.network"],"faucets":[],"nativeCurrency":{"name":"Imversed Token","symbol":"IMV","decimals":18},"infoURL":"https://imversed.com","shortName":"imversed-testnet","chainId":5555558,"networkId":5555558,"slip44":1,"icon":"imversed","explorers":[{"name":"Imversed EVM Explorer (Blockscout)","url":"https://txe-test.imversed.network","icon":"imversed","standard":"EIP3091"},{"name":"Imversed Cosmos Explorer (Big Dipper)","url":"https://tex-t.imversed.com","icon":"imversed","standard":"none"}]},{"name":"Astar zKyoto","shortName":"azkyt","title":"Astar zkEVM Testnet zKyoto","chain":"ETH","icon":"astarzk","rpc":["https://rpc.startale.com/zkyoto","https://rpc.zkyoto.gelato.digital"],"faucets":[],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://astar.network","chainId":6038361,"networkId":6038361,"explorers":[{"name":"Blockscout zKyoto explorer","url":"https://astar-zkyoto.blockscout.com","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111","bridges":[{"url":"https://portal.astar.network"},{"url":"https://bridge.gelato.network/bridge/astar-zkyoto"}]}},{"name":"Saakuru Mainnet","chain":"Saakuru","icon":"saakuru","rpc":["https://rpc.saakuru.network"],"faucets":[],"nativeCurrency":{"name":"OAS","symbol":"OAS","decimals":18},"infoURL":"https://saakuru.network","shortName":"saakuru","chainId":7225878,"networkId":7225878,"explorers":[{"name":"saakuru-explorer","url":"https://explorer.saakuru.network","standard":"EIP3091"}]},{"name":"OpenVessel","chain":"VSL","icon":"vsl","rpc":["https://mainnet-external.openvessel.io"],"faucets":[],"nativeCurrency":{"name":"Vessel ETH","symbol":"VETH","decimals":18},"infoURL":"https://www.openvessel.io","shortName":"vsl","chainId":7355310,"networkId":7355310,"explorers":[{"name":"openvessel-mainnet","url":"https://mainnet-explorer.openvessel.io","standard":"none"}]},{"name":"QL1 Testnet","chain":"QOM","status":"incubating","rpc":["https://rpc.testnet.qom.one"],"faucets":["https://faucet.qom.one"],"nativeCurrency":{"name":"Shiba Predator","symbol":"QOM","decimals":18},"infoURL":"https://qom.one","shortName":"tqom","chainId":7668378,"networkId":7668378,"slip44":1,"icon":"qom","explorers":[{"name":"QL1 Testnet Explorer","url":"https://testnet.qom.one","icon":"qom","standard":"EIP3091"}]},{"name":"Musicoin","chain":"MUSIC","rpc":["https://mewapi.musicoin.tw"],"faucets":[],"nativeCurrency":{"name":"Musicoin","symbol":"MUSIC","decimals":18},"infoURL":"https://musicoin.tw","shortName":"music","chainId":7762959,"networkId":7762959,"slip44":184},{"name":"Zora","chain":"ETH","rpc":["https://rpc.zora.energy/"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"icon":"zora","infoURL":"https://zora.energy","shortName":"zora","chainId":7777777,"networkId":7777777,"explorers":[{"name":"Zora Network Explorer","url":"https://explorer.zora.energy","standard":"EIP3091"}]},{"name":"Plian Mainnet Subchain 1","chain":"Plian","rpc":["https://mainnet.plian.io/child_0"],"faucets":[],"nativeCurrency":{"name":"Plian Token","symbol":"PI","decimals":18},"infoURL":"https://plian.org","shortName":"plian-mainnet-l2","chainId":8007736,"networkId":8007736,"explorers":[{"name":"piscan","url":"https://piscan.plian.org/child_0","standard":"EIP3091"}],"parent":{"chain":"eip155-2099156","type":"L2"}},{"name":"Hokum","chain":"Hokum","icon":"hokum","rpc":["https://mainnet.hokum.gg"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://hokum.gg","shortName":"hokum","chainId":8080808,"networkId":8080808,"explorers":[{"name":"Hokum Explorer","url":"https://explorer.hokum.gg","standard":"EIP3091"}]},{"name":"HAPchain","chain":"HAPchain","rpc":["https://jsonrpc.hap.land"],"faucets":[],"nativeCurrency":{"name":"HAP","symbol":"HAP","decimals":18},"infoURL":"https://hap.land","shortName":"hap","chainId":8794598,"networkId":8794598,"icon":"hap","explorers":[{"name":"HAP EVM Explorer (Blockscout)","url":"https://blockscout.hap.land","standard":"none","icon":"hap"}]},{"name":"Quarix Testnet","chain":"Quarix","status":"incubating","rpc":[],"faucets":[],"nativeCurrency":{"name":"QARE","symbol":"QARE","decimals":18},"infoURL":"","shortName":"quarix-testnet","chainId":8888881,"networkId":8888881,"slip44":1,"icon":"quarix","explorers":[]},{"name":"Quarix","chain":"Quarix","status":"incubating","rpc":[],"faucets":[],"nativeCurrency":{"name":"QARE","symbol":"QARE","decimals":18},"infoURL":"","shortName":"quarix","chainId":8888888,"networkId":8888888,"icon":"quarix","explorers":[]},{"name":"XCAP","title":"XCAP Mainnet","chain":"XCAP","rpc":["https://xcap-mainnet.relay.xcap.network/znzvh2ueyvm2yts5fv5gnul395jbkfb2/rpc1"],"faucets":[],"nativeCurrency":{"name":"Gas","symbol":"GAS","decimals":18},"infoURL":"https://xcap.network/","shortName":"xcap","chainId":9322252,"networkId":9322252,"icon":"xcap","explorers":[{"name":"blockscout","url":"https://xcap-mainnet.explorer.xcap.network","icon":"blockscout","standard":"EIP3091"}]},{"name":"Milvine","title":"XCAP Testnet Milvine","chain":"XCAP","rpc":["https://xcap-milvine.relay.xcap.network/zj5l55ftsgi027kz4nf14vs8d89inego/rpc1"],"faucets":[],"nativeCurrency":{"name":"Gas","symbol":"GAS","decimals":18},"infoURL":"https://xcap.network/","shortName":"milv","chainId":9322253,"networkId":9322253,"icon":"xcap","explorers":[{"name":"blockscout","url":"https://xcap-milvine.explorer.xcap.network","icon":"blockscout","standard":"EIP3091"}]},{"name":"Plian Testnet Subchain 1","chain":"Plian","rpc":["https://testnet.plian.io/child_test"],"faucets":[],"nativeCurrency":{"name":"Plian Token","symbol":"TPI","decimals":18},"infoURL":"https://plian.org/","shortName":"plian-testnet-l2","chainId":10067275,"networkId":10067275,"slip44":1,"explorers":[{"name":"piscan","url":"https://testnet.plian.org/child_test","standard":"EIP3091"}],"parent":{"chain":"eip155-16658437","type":"L2"}},{"name":"Soverun Mainnet","chain":"SVRN","icon":"soverun","rpc":["https://mainnet-rpc.soverun.com"],"faucets":["https://faucet.soverun.com"],"nativeCurrency":{"name":"Soverun","symbol":"SVRN","decimals":18},"infoURL":"https://soverun.com","shortName":"SVRNm","chainId":10101010,"networkId":10101010,"explorers":[{"name":"Soverun","url":"https://explorer.soverun.com","standard":"EIP3091"}]},{"name":"Sepolia","title":"Ethereum Testnet Sepolia","chain":"ETH","rpc":["https://rpc.sepolia.org","https://rpc2.sepolia.org","https://rpc-sepolia.rockx.com","https://rpc.sepolia.ethpandaops.io","https://sepolia.infura.io/v3/${INFURA_API_KEY}","wss://sepolia.infura.io/v3/${INFURA_API_KEY}","https://sepolia.gateway.tenderly.co","wss://sepolia.gateway.tenderly.co","https://ethereum-sepolia-rpc.publicnode.com","wss://ethereum-sepolia-rpc.publicnode.com","https://sepolia.drpc.org","wss://sepolia.drpc.org"],"faucets":["http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}"],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://sepolia.otterscan.io","shortName":"sep","chainId":11155111,"networkId":11155111,"slip44":1,"explorers":[{"name":"etherscan-sepolia","url":"https://sepolia.etherscan.io","standard":"EIP3091"},{"name":"otterscan-sepolia","url":"https://sepolia.otterscan.io","standard":"EIP3091"}]},{"name":"OP Sepolia Testnet","chain":"ETH","rpc":["https://sepolia.optimism.io","https://optimism-sepolia.drpc.org","wss://optimism-sepolia.drpc.org"],"faucets":["https://app.optimism.io/faucet"],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://optimism.io","shortName":"opsep","chainId":11155420,"networkId":11155420,"slip44":1,"explorers":[{"name":"opscout","url":"https://optimism-sepolia.blockscout.com","icon":"blockscout","standard":"EIP3091"}]},{"name":"PepChain Churchill","chain":"PEP","rpc":["https://churchill-rpc.pepchain.io"],"faucets":[],"nativeCurrency":{"name":"PepChain Churchill Ether","symbol":"TPEP","decimals":18},"infoURL":"https://pepchain.io","shortName":"tpep","chainId":13371337,"networkId":13371337},{"name":"Anduschain Mainnet","chain":"anduschain","rpc":["https://rpc.anduschain.io/rpc","wss://rpc.anduschain.io/ws"],"faucets":[],"nativeCurrency":{"name":"DAON","symbol":"DEB","decimals":18},"infoURL":"https://anduschain.io/","shortName":"anduschain-mainnet","chainId":14288640,"networkId":14288640,"explorers":[{"name":"anduschain explorer","url":"https://explorer.anduschain.io","icon":"daon","standard":"none"}]},{"name":"Plian Testnet Main","chain":"Plian","rpc":["https://testnet.plian.io/testnet"],"faucets":[],"nativeCurrency":{"name":"Plian Testnet Token","symbol":"TPI","decimals":18},"infoURL":"https://plian.org","shortName":"plian-testnet","chainId":16658437,"networkId":16658437,"slip44":1,"explorers":[{"name":"piscan","url":"https://testnet.plian.org/testnet","standard":"EIP3091"}]},{"name":"IOLite","chain":"ILT","rpc":["https://net.iolite.io"],"faucets":[],"nativeCurrency":{"name":"IOLite Ether","symbol":"ILT","decimals":18},"infoURL":"https://iolite.io","shortName":"ilt","chainId":18289463,"networkId":18289463},{"name":"Stability Testnet","chain":"stabilityTestnet","icon":"stabilitytestnet","rpc":["https://free.testnet.stabilityprotocol.com"],"faucets":[],"nativeCurrency":{"name":"FREE","symbol":"FREE","decimals":18},"infoURL":"https://stabilityprotocol.com","shortName":"stabilitytestnet","chainId":20180427,"networkId":20180427,"slip44":1,"explorers":[{"name":"blockscout","url":"https://stability-testnet.blockscout.com","standard":"EIP3091"}]},{"name":"SmartMesh Mainnet","chain":"Spectrum","rpc":["https://jsonapi1.smartmesh.cn"],"faucets":[],"nativeCurrency":{"name":"SmartMesh Native Token","symbol":"SMT","decimals":18},"infoURL":"https://smartmesh.io","shortName":"spectrum","chainId":20180430,"networkId":1,"explorers":[{"name":"spectrum","url":"https://spectrum.pub","standard":"none"}]},{"name":"quarkblockchain","chain":"QKI","rpc":["https://hz.rpc.qkiscan.cn","https://jp.rpc.qkiscan.io","https://rpc1.qkiscan.io","https://rpc2.qkiscan.io","https://rpc3.qkiscan.io"],"faucets":[],"nativeCurrency":{"name":"quarkblockchain Native Token","symbol":"QKI","decimals":18},"infoURL":"https://quarkblockchain.org/","shortName":"qki","chainId":20181205,"networkId":20181205,"explorers":[{"name":"qkiscan","url":"https://qkiscan.io","standard":"EIP3091"}]},{"name":"Pego Network","chain":"PEGO","rpc":["https://pegorpc.com","https://node1.pegorpc.com","https://node2.pegorpc.com","https://node3.pegorpc.com"],"faucets":[],"nativeCurrency":{"name":"Pego Native Token","symbol":"PG","decimals":18},"infoURL":"https://pego.network","shortName":"pg","chainId":20201022,"networkId":20201022,"icon":"pego","explorers":[{"name":"Pego Network Explorer","url":"https://scan.pego.network","standard":"EIP3091"}]},{"name":"DeBank Sepolia Testnet","chain":"DeBank","rpc":["https://sepolia-rpc.testnet.debank.com"],"faucets":[],"icon":"debank","nativeCurrency":{"name":"DeBank USD","symbol":"USD","decimals":18},"infoURL":"https://debank.com","shortName":"dbkse","chainId":20240324,"networkId":20240324,"slip44":1,"explorers":[{"name":"DeBank Chain Explorer","url":"https://sepolia-explorer.testnet.debank.com","standard":"EIP3091"}]},{"name":"Hokum Testnet","chain":"HokumTestnet","icon":"hokum","rpc":["https://testnet.hokum.gg"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://hokum.gg","shortName":"hokum-testnet","chainId":20482050,"networkId":20482050,"explorers":[{"name":"Hokum Explorer","url":"https://testnet-explorer.hokum.gg","standard":"EIP3091"}]},{"name":"Excelon Mainnet","chain":"XLON","icon":"xlon","rpc":["https://edgewallet1.xlon.org/"],"faucets":[],"nativeCurrency":{"name":"Excelon","symbol":"xlon","decimals":18},"infoURL":"https://xlon.org","shortName":"xlon","chainId":22052002,"networkId":22052002,"explorers":[{"name":"Excelon explorer","url":"https://explorer.excelon.io","standard":"EIP3091"}]},{"name":"Excoincial Chain Volta-Testnet","chain":"TEXL","icon":"exl","rpc":["https://testnet-rpc.exlscan.com"],"faucets":["https://faucet.exlscan.com"],"nativeCurrency":{"name":"TExlcoin","symbol":"TEXL","decimals":18},"infoURL":"","shortName":"exlvolta","chainId":27082017,"networkId":27082017,"slip44":1,"explorers":[{"name":"exlscan","url":"https://testnet-explorer.exlscan.com","icon":"exl","standard":"EIP3091"}]},{"name":"Excoincial Chain Mainnet","chain":"EXL","icon":"exl","rpc":["https://rpc.exlscan.com"],"faucets":[],"nativeCurrency":{"name":"Exlcoin","symbol":"EXL","decimals":18},"infoURL":"","shortName":"exl","chainId":27082022,"networkId":27082022,"explorers":[{"name":"exlscan","url":"https://exlscan.com","icon":"exl","standard":"EIP3091"}]},{"name":"Ancient8 Testnet","chain":"Ancient8","icon":"ancient8","rpc":["https://rpcv2-testnet.ancient8.gg"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://ancient8.gg/","shortName":"a8","chainId":28122024,"networkId":28122024,"slip44":1,"explorers":[{"name":"scan-testnet","url":"https://scanv2-testnet.ancient8.gg","standard":"EIP3091"}]},{"name":"Auxilium Network Mainnet","chain":"AUX","rpc":["https://rpc.auxilium.global"],"faucets":[],"nativeCurrency":{"name":"Auxilium coin","symbol":"AUX","decimals":18},"infoURL":"https://auxilium.global","shortName":"auxi","chainId":28945486,"networkId":28945486,"slip44":344},{"name":"Flachain Mainnet","chain":"FLX","icon":"flacoin","rpc":["https://flachain.flaexchange.top/"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"Flacoin","symbol":"FLA","decimals":18},"infoURL":"https://www.flaexchange.top","shortName":"fla","chainId":29032022,"networkId":29032022,"explorers":[{"name":"FLXExplorer","url":"https://explorer.flaexchange.top","standard":"EIP3091"}]},{"name":"Filecoin - Local testnet","chain":"FIL","status":"incubating","rpc":[],"faucets":[],"nativeCurrency":{"name":"testnet filecoin","symbol":"tFIL","decimals":18},"infoURL":"https://filecoin.io","shortName":"filecoin-local","icon":"filecoin","chainId":31415926,"networkId":31415926,"slip44":1,"explorers":[]},{"name":"Joys Digital Mainnet","chain":"JOYS","rpc":["https://node.joys.digital"],"faucets":[],"nativeCurrency":{"name":"JOYS","symbol":"JOYS","decimals":18},"infoURL":"https://joys.digital","shortName":"JOYS","chainId":35855456,"networkId":35855456},{"name":"SKALE Nebula Hub Testnet","title":"SKALE Nebula Hub Testnet","chain":"lanky-ill-funny-testnet","icon":"nebula","rpc":["https://testnet.skalenodes.com/v1/lanky-ill-funny-testnet","wss://testnet.skalenodes.com/v1/ws/lanky-ill-funny-testnet"],"faucets":["https://www.sfuelstation.com/"],"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"infoURL":"https://nebulachain.io/","shortName":"nebula-testnet","chainId":37084624,"networkId":37084624,"slip44":1,"explorers":[{"name":"Blockscout","url":"https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com","standard":"EIP3091"}]},{"name":"Kingdom Chain","chain":"KingdomChain","rpc":["https://kingdomchain.observer/rpc"],"features":[{"name":"EIP155"}],"faucets":[],"nativeCurrency":{"name":"Kozi","symbol":"KOZI","decimals":18},"infoURL":"https://www.beastkingdom.io/","shortName":"kchain","chainId":39916801,"networkId":39916801,"explorers":[{"name":"TravelSong","url":"https://www.beastkingdom.io/travelsong","standard":"EIP3091"}]},{"name":"maistestsubnet","chain":"MAI","rpc":["http://174.138.9.169:9650/ext/bc/VUKSzFZKckx4PoZF9gX5QAqLPxbLzvu1vcssPG5QuodaJtdHT/rpc"],"faucets":[],"nativeCurrency":{"name":"maistestsubnet","symbol":"MAI","decimals":18},"infoURL":"","shortName":"mais","chainId":43214913,"networkId":43214913,"slip44":1,"explorers":[{"name":"maistesntet","url":"http://174.138.9.169:3006/?network=maistesntet","standard":"none"}]},{"name":"Aquachain","chain":"AQUA","rpc":["https://c.onical.org","https://tx.aquacha.in/api"],"faucets":["https://aquacha.in/faucet"],"nativeCurrency":{"name":"Aquachain Ether","symbol":"AQUA","decimals":18},"infoURL":"https://aquachain.github.io","shortName":"aqua","chainId":61717561,"networkId":61717561,"slip44":61717561},{"name":"Autonity Bakerloo (Thames) Testnet","status":"deprecated","chain":"AUT","rpc":[],"faucets":["https://faucet.autonity.org/"],"nativeCurrency":{"name":"Bakerloo Auton","symbol":"ATN","decimals":18},"infoURL":"https://autonity.org/","shortName":"bakerloo-0","chainId":65010000,"networkId":65010000,"slip44":1,"icon":"autonity","explorers":[{"name":"autonity-blockscout","url":"https://bakerloo.autonity.org","standard":"EIP3091"}]},{"name":"Autonity Bakerloo (Barada) Testnet","status":"deprecated","chain":"AUT","rpc":[],"faucets":["https://faucet.autonity.org/"],"nativeCurrency":{"name":"Bakerloo Auton","symbol":"ATN","decimals":18},"infoURL":"https://autonity.org/","shortName":"bakerloo-01","chainId":65010001,"networkId":65010001,"slip44":1,"icon":"autonity","explorers":[{"name":"autonity-blockscout","url":"https://bakerloo.autonity.org","standard":"EIP3091"}]},{"name":"Autonity Bakerloo (Sumida) Testnet","chain":"AUT","rpc":["https://rpc1.bakerloo.autonity.org/","wss://rpc1.bakerloo.autonity.org/ws/"],"faucets":["https://faucet.autonity.org/"],"nativeCurrency":{"name":"Bakerloo Auton","symbol":"ATN","decimals":18},"infoURL":"https://autonity.org/","shortName":"bakerloo-02","chainId":65010002,"networkId":65010002,"slip44":1,"icon":"autonity","explorers":[{"name":"autonity-blockscout","url":"https://bakerloo.autonity.org","standard":"EIP3091"}]},{"name":"Autonity Piccadilly (Thames) Testnet","status":"deprecated","chain":"AUT","rpc":[],"faucets":["https://faucet.autonity.org/"],"nativeCurrency":{"name":"Piccadilly Auton","symbol":"ATN","decimals":18},"infoURL":"https://autonity.org/","shortName":"piccadilly-0","chainId":65100000,"networkId":65100000,"slip44":1,"icon":"autonity","explorers":[{"name":"autonity-blockscout","url":"https://piccadilly.autonity.org","standard":"EIP3091"}]},{"name":"Autonity Piccadilly (Barada) Testnet","status":"deprecated","chain":"AUT","rpc":[],"faucets":[],"nativeCurrency":{"name":"Piccadilly Auton","symbol":"ATN","decimals":18},"infoURL":"https://autonity.org/","shortName":"piccadilly-01","chainId":65100001,"networkId":65100001,"slip44":1,"icon":"autonity","explorers":[{"name":"autonity-blockscout","url":"https://piccadilly.autonity.org","standard":"EIP3091"}]},{"name":"Autonity Piccadilly (Sumida) Testnet","chain":"AUT","rpc":["https://rpc1.piccadilly.autonity.org/","wss://rpc1.piccadilly.autonity.org/ws/"],"faucets":[],"nativeCurrency":{"name":"Piccadilly Auton","symbol":"ATN","decimals":18},"infoURL":"https://autonity.org/","shortName":"piccadilly-02","chainId":65100002,"networkId":65100002,"slip44":1,"icon":"autonity","explorers":[{"name":"autonity-blockscout","url":"https://piccadilly.autonity.org","standard":"EIP3091"}]},{"name":"Frame Testnet","chain":"ETH","rpc":["https://rpc.testnet.frame.xyz/http"],"faucets":["https://faucet.triangleplatform.com/frame/testnet"],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"icon":"frameTestnet","infoURL":"https://www.frame.xyz/","shortName":"frametest","chainId":68840142,"networkId":68840142,"slip44":1,"explorers":[{"name":"Frame Testnet Explorer","url":"https://explorer.testnet.frame.xyz","standard":"EIP3091"}]},{"name":"0xHash Testnet","chain":"HETH","icon":"ethereum","rpc":["https://rpc-test.0xhash.io"],"features":[{"name":"EIP155"},{"name":"EIP1559"}],"faucets":[],"nativeCurrency":{"name":"0xHash","symbol":"HETH","decimals":18},"infoURL":"https://0xhash.io","shortName":"HETH","chainId":77787778,"networkId":77787778,"slip44":1,"explorers":[{"name":"blockscout","url":"https://test.0xhashscan.io","icon":"blockscout","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://app.optimism.io/bridge/deposit"}]}},{"name":"T.E.A.M Blockchain","chain":"TEAM","icon":"team","rpc":["https://rpc.teamblockchain.team"],"faucets":[],"nativeCurrency":{"name":"TEAM","symbol":"$TEAM","decimals":18},"features":[{"name":"EIP155"},{"name":"EIP1559"}],"infoURL":"https://teamblockchain.team","shortName":"team","chainId":88888888,"networkId":88888888,"explorers":[{"name":"teamscan","url":"https://teamblockchain.team","standard":"EIP3091"}]},{"name":"Polygon Blackberry","title":"Polygon Blackberry Testnet","chain":"ETH","rpc":["https://rpc.polygon-blackberry.gelato.digital","wss://ws.polygon-blackberry.gelato.digital"],"faucets":[],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://raas.gelato.network/rollups/details/public/polygon-blackberry","shortName":"polygon-blackberry","chainId":94204209,"networkId":94204209,"slip44":60,"explorers":[{"name":"blockscout","url":"https://polygon-blackberry.gelatoscout.com","icon":"blockscout","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111","bridges":[{"url":"https://bridge.gelato.network/bridge/polygon-blackberry"}]},"status":"active"},{"name":"Joys Digital TestNet","chain":"TOYS","rpc":["https://toys.joys.cash/"],"faucets":["https://faucet.joys.digital/"],"nativeCurrency":{"name":"TOYS","symbol":"TOYS","decimals":18},"infoURL":"https://joys.digital","shortName":"TOYS","chainId":99415706,"networkId":99415706,"slip44":1},{"name":"OP Celestia Raspberry","title":"OP Celestia Raspberry Testnet","chain":"ETH","rpc":["https://rpc.opcelestia-raspberry.gelato.digital","wss://ws.opcelestia-raspberry.gelato.digital"],"faucets":[],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://raas.gelato.network/rollups/details/public/opcelestia-raspberry","shortName":"opcelestia-raspberry","chainId":123420111,"networkId":123420111,"slip44":60,"explorers":[{"name":"blockscout","url":"https://opcelestia-raspberry.gelatoscout.com","icon":"blockscout","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111","bridges":[{"url":"https://bridge.gelato.network/bridge/opcelestia-raspberry"}]},"status":"active"},{"name":"Plume Testnet","title":"Plume Sepolia Rollup Testnet","chain":"ETH","rpc":["https://testnet-rpc.plumenetwork.xyz/http","wss://testnet-rpc.plumenetwork.xyz/ws"],"faucets":[],"nativeCurrency":{"name":"Plume Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://www.plumenetwork.xyz/","shortName":"plume-testnet","chainId":161221135,"networkId":161221135,"slip44":1,"icon":"plume","explorers":[{"name":"Blockscout","url":"https://testnet-explorer.plumenetwork.xyz","icon":"blockscout","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111","bridges":[{"url":"https://testnet-bridge.plumenetwork.xyz"}]}},{"name":"Blast Sepolia Testnet","chain":"ETH","rpc":["https://sepolia.blast.io","https://blast-sepolia.drpc.org","wss://blast-sepolia.drpc.org"],"faucets":["https://faucet.quicknode.com/blast/sepolia"],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"infoURL":"https://blast.io/","shortName":"blastsepolia","chainId":168587773,"networkId":168587773,"icon":"blast","explorers":[{"name":"Blast Sepolia Explorer","url":"https://testnet.blastscan.io","icon":"blast","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-11155111"}},{"name":"Gather Mainnet Network","chain":"GTH","rpc":["https://mainnet.gather.network"],"faucets":[],"nativeCurrency":{"name":"Gather","symbol":"GTH","decimals":18},"infoURL":"https://gather.network","shortName":"GTH","chainId":192837465,"networkId":192837465,"icon":"gather","explorers":[{"name":"Blockscout","url":"https://explorer.gather.network","icon":"gather","standard":"none"}]},{"name":"Kanazawa","title":"Meld Testnet Kanazawa","chain":"Kanazawa","rpc":["https://testnet-rpc.meld.com"],"faucets":[],"features":[],"nativeCurrency":{"name":"gMeld","symbol":"gMELD","decimals":18},"icon":"meld","infoURL":"https://meld.com","shortName":"kanazawa","chainId":222000222,"networkId":222000222,"slip44":1,"explorers":[{"name":"explorer","url":"https://testnet.meldscan.io","icon":"meld","standard":"EIP3091"},{"name":"explorer","url":"https://subnets-test.avax.network/meld","icon":"meld","standard":"EIP3091"}]},{"name":"Neon EVM Devnet","chain":"Solana","rpc":["https://devnet.neonevm.org","https://neon-evm-devnet.drpc.org","wss://neon-evm-devnet.drpc.org"],"faucets":["https://neonfaucet.org"],"icon":"neon","nativeCurrency":{"name":"Neon","symbol":"NEON","decimals":18},"infoURL":"https://neon-labs.org","shortName":"neonevm-devnet","chainId":245022926,"networkId":245022926,"explorers":[{"name":"neonscan","url":"https://devnet.neonscan.org","standard":"EIP3091"},{"name":"blockscout","url":"https://neon-devnet.blockscout.com","icon":"blockscout","standard":"EIP3091"}]},{"name":"Neon EVM Mainnet","chain":"Solana","rpc":["https://neon-proxy-mainnet.solana.p2p.org","https://neon-evm.drpc.org","wss://neon-evm.drpc.org"],"faucets":[],"icon":"neon","nativeCurrency":{"name":"Neon","symbol":"NEON","decimals":18},"infoURL":"https://neonevm.org","shortName":"neonevm-mainnet","chainId":245022934,"networkId":245022934,"explorers":[{"name":"neonscan","url":"https://neonscan.org","standard":"EIP3091"},{"name":"native","url":"https://neon.blockscout.com","standard":"EIP3091"}]},{"name":"Neon EVM TestNet","status":"deprecated","chain":"Solana","rpc":["https://testnet.neonevm.org"],"faucets":[],"icon":"neon","nativeCurrency":{"name":"Neon","symbol":"NEON","decimals":18},"infoURL":"https://neon-labs.org","shortName":"neonevm-testnet","chainId":245022940,"networkId":245022940,"slip44":1,"explorers":[{"name":"native","url":"https://testnet.explorer.neon-labs.org","standard":"EIP3091"},{"name":"neonscan","url":"https://testnet.neonscan.org","standard":"EIP3091"}]},{"name":"Razor Skale Chain","chain":"Razor Schain","icon":"razornetwork","rpc":["https://mainnet.skalenodes.com/v1/turbulent-unique-scheat"],"faucets":["https://faucet.razorscan.io/"],"nativeCurrency":{"name":"sFuel","symbol":"SFUEL","decimals":18},"infoURL":"https://razor.network","shortName":"razor","chainId":278611351,"networkId":278611351,"explorers":[{"name":"turbulent-unique-scheat","url":"https://turbulent-unique-scheat.explorer.mainnet.skalenodes.com","standard":"EIP3091"}]},{"name":"OneLedger Mainnet","chain":"OLT","icon":"oneledger","rpc":["https://mainnet-rpc.oneledger.network"],"faucets":[],"nativeCurrency":{"name":"OLT","symbol":"OLT","decimals":18},"infoURL":"https://oneledger.io","shortName":"oneledger","chainId":311752642,"networkId":311752642,"explorers":[{"name":"OneLedger Block Explorer","url":"https://mainnet-explorer.oneledger.network","standard":"EIP3091"}]},{"name":"Meld","title":"Meld Mainnet","chain":"MELD","rpc":["https://rpc-1.meld.com"],"faucets":[],"features":[],"nativeCurrency":{"name":"gMeld","symbol":"gMELD","decimals":18},"icon":"meld","infoURL":"https://meld.com","shortName":"meld","chainId":333000333,"networkId":333000333,"explorers":[{"name":"explorer","url":"https://meldscan.io","icon":"meld","standard":"EIP3091"},{"name":"explorer","url":"https://subnets.avax.network/meld","icon":"meld","standard":"EIP3091"}]},{"name":"Deprecated SKALE Calypso Hub Testnet","title":"Deprecated Calypso NFT Hub Testnet","status":"deprecated","chain":"staging-utter-unripe-menkar","icon":"calypso","rpc":["https://staging-v3.skalenodes.com/v1/staging-utter-unripe-menkar"],"faucets":["https://sfuel.dirtroad.dev/staging"],"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"infoURL":"https://calypsohub.network/","shortName":"deprected-calypso-testnet","chainId":344106930,"networkId":344106930,"slip44":1,"explorers":[{"name":"Blockscout","url":"https://staging-utter-unripe-menkar.explorer.staging-v3.skalenodes.com","standard":"EIP3091"}]},{"name":"Gather Testnet Network","chain":"GTH","rpc":["https://testnet.gather.network"],"faucets":[],"nativeCurrency":{"name":"Gather","symbol":"GTH","decimals":18},"infoURL":"https://gather.network","shortName":"tGTH","chainId":356256156,"networkId":356256156,"slip44":1,"icon":"gather","explorers":[{"name":"Blockscout","url":"https://testnet-explorer.gather.network","icon":"gather","standard":"none"}]},{"name":"Deprecated SKALE Europa Hub Testnet","title":"Deprecated Europa Hub Testnet","status":"deprecated","chain":"staging-legal-crazy-castor","icon":"europa","rpc":["https://staging-v3.skalenodes.com/v1/staging-legal-crazy-castor"],"faucets":["https://sfuel.dirtroad.dev/staging"],"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"infoURL":"https://europahub.network/","shortName":"deprecated-europa-testnet","chainId":476158412,"networkId":476158412,"slip44":1,"explorers":[{"name":"Blockscout","url":"https://staging-legal-crazy-castor.explorer.staging-v3.skalenodes.com","standard":"EIP3091"}]},{"name":"Gather Devnet Network","chain":"GTH","rpc":["https://devnet.gather.network"],"faucets":[],"nativeCurrency":{"name":"Gather","symbol":"GTH","decimals":18},"infoURL":"https://gather.network","shortName":"dGTH","chainId":486217935,"networkId":486217935,"explorers":[{"name":"Blockscout","url":"https://devnet-explorer.gather.network","standard":"none"}]},{"name":"Deprecated SKALE Nebula Hub Testnet","chain":"staging-faint-slimy-achird","status":"deprecated","icon":"nebula","rpc":["https://staging-v3.skalenodes.com/v1/staging-faint-slimy-achird","wss://staging-v3.skalenodes.com/v1/ws/staging-faint-slimy-achird"],"faucets":["https://sfuel.dirtroad.dev/staging"],"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"infoURL":"https://nebulachain.io/","shortName":"deprecated-nebula-testnet","chainId":503129905,"networkId":503129905,"slip44":1,"explorers":[{"name":"Blockscout","url":"https://staging-faint-slimy-achird.explorer.staging-v3.skalenodes.com","standard":"EIP3091"}]},{"name":"Degen Chain","title":"Degen Chain","chain":"Degen","rpc":["https://rpc.degen.tips"],"faucets":[],"nativeCurrency":{"name":"DEGEN","symbol":"DEGEN","decimals":18},"infoURL":"https://degen.tips","shortName":"degen-chain","chainId":666666666,"networkId":666666666,"status":"incubating","icon":"degen"},{"name":"Ancient8","chain":"Ancient8","icon":"ancient8","rpc":["https://rpc.ancient8.gg"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://ancient8.gg/","shortName":"ancient8","chainId":888888888,"networkId":888888888,"explorers":[{"name":"Ancient8 Explorer","url":"https://scan.ancient8.gg","standard":"EIP3091"}]},{"name":"PTCESCAN Testnet","title":"PTCESCAN Testnet","chain":"PTCE","rpc":["https://rpc-testnet.ptcscan.io"],"faucets":["https://faucet.ptcscan.io/"],"nativeCurrency":{"name":"PTCE","symbol":"PTCE","decimals":18},"infoURL":"https://ptcscan.io","shortName":"PTCE","chainId":889910245,"networkId":889910245,"explorers":[{"name":"PTCESCAN Testnet Explorer","url":"https://explorer-testnet.ptcscan.io","standard":"EIP3091"}]},{"name":"PTCESCAN Mainnet","title":"PTCESCAN Mainnet","chain":"PTCE","rpc":["https://rpc.ptcscan.io"],"faucets":[],"nativeCurrency":{"name":"PTCE","symbol":"PTCE","decimals":18},"infoURL":"https://ptcscan.io","shortName":"POLYTECH","chainId":889910246,"networkId":889910246,"explorers":[{"name":"PTCESCAN Explorer","url":"https://ptcscan.io","standard":"EIP3091"}]},{"name":"SKALE Calypso Hub Testnet","title":"SKALE Calypso Hub Testnet","chain":"giant-half-dual-testnet","icon":"calypso","rpc":["https://testnet.skalenodes.com/v1/giant-half-dual-testnet"],"faucets":["https://www.sfuelstation.com/"],"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"infoURL":"https://calypsohub.network/","shortName":"calypso-testnet","chainId":974399131,"networkId":974399131,"slip44":1,"explorers":[{"name":"Blockscout","url":"https://giant-half-dual-testnet.explorer.testnet.skalenodes.com","standard":"EIP3091"}]},{"name":"Zora Sepolia Testnet","chain":"ETH","rpc":["https://sepolia.rpc.zora.energy"],"faucets":[],"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"icon":"zoraSepoliaTestnet","infoURL":"https://zora.energy","shortName":"zsep","chainId":999999999,"networkId":999999999,"slip44":1,"explorers":[{"name":"Zora Sepolia Testnet Network Explorer","url":"https://sepolia.explorer.zora.energy","standard":"EIP3091"}]},{"name":"SKALE Titan Hub Testnet","title":"SKALE Titan Hub Testnet","chain":"aware-fake-trim-testnet","icon":"titan","rpc":["https://testnet.skalenodes.com/v1/aware-fake-trim-testnet","wss://testnet.skalenodes.com/v1/ws/aware-fake-trim-testnet"],"faucets":["https://www.sfuelstation.com/"],"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"infoURL":"","shortName":"titan-testnet","chainId":1020352220,"networkId":1020352220,"slip44":1,"explorers":[{"name":"Blockscout","url":"https://aware-fake-trim-testnet.explorer.testnet.skalenodes.com","standard":"EIP3091"}]},{"name":"IPOS Network","chain":"IPOS","rpc":["https://rpc.iposlab.com","https://rpc2.iposlab.com"],"faucets":[],"nativeCurrency":{"name":"IPOS Network Ether","symbol":"IPOS","decimals":18},"infoURL":"https://iposlab.com","shortName":"ipos","chainId":1122334455,"networkId":1122334455},{"name":"CyberdeckNet","chain":"cyberdeck","rpc":["http://cybeth1.cyberdeck.eu:8545"],"faucets":[],"nativeCurrency":{"name":"Cyb","symbol":"CYB","decimals":18},"infoURL":"https://cyberdeck.eu","shortName":"cyb","chainId":1146703430,"networkId":1146703430,"icon":"cyberdeck","status":"active","explorers":[{"name":"CybEthExplorer","url":"http://cybeth1.cyberdeck.eu:8000","icon":"cyberdeck","standard":"none"}]},{"name":"HUMAN Protocol","title":"HUMAN Protocol","chain":"wan-red-ain","rpc":["https://mainnet.skalenodes.com/v1/wan-red-ain"],"faucets":["https://dashboard.humanprotocol.org/faucet"],"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"infoURL":"https://www.humanprotocol.org","shortName":"human-mainnet","chainId":1273227453,"networkId":1273227453,"explorers":[{"name":"Blockscout","url":"https://wan-red-ain.explorer.mainnet.skalenodes.com","icon":"human","standard":"EIP3091"}]},{"name":"Aurora Mainnet","chain":"NEAR","rpc":["https://mainnet.aurora.dev","https://aurora.drpc.org","wss://aurora.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://aurora.dev","shortName":"aurora","chainId":1313161554,"networkId":1313161554,"explorers":[{"name":"aurorascan.dev","url":"https://aurorascan.dev","standard":"EIP3091"}]},{"name":"Aurora Testnet","chain":"NEAR","rpc":["https://testnet.aurora.dev/","https://aurora-testnet.drpc.org","wss://aurora-testnet.drpc.org"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://aurora.dev","shortName":"aurora-testnet","chainId":1313161555,"networkId":1313161555,"slip44":1,"explorers":[{"name":"aurorascan.dev","url":"https://testnet.aurorascan.dev","standard":"EIP3091"}]},{"name":"Aurora Betanet","chain":"NEAR","rpc":[],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://aurora.dev","shortName":"aurora-betanet","chainId":1313161556,"networkId":1313161556},{"name":"PowerGold","chain":"NEAR","rpc":["https://powergold.aurora.dev"],"icon":"powergold","faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://www.powergold.tech","shortName":"powergold","chainId":1313161560,"networkId":1313161560,"explorers":[{"name":"PowerGold explorer","url":"https://explorer.powergold.aurora.dev","standard":"EIP3091"}]},{"name":"SKALE Titan Hub","chain":"parallel-stormy-spica","icon":"titan","rpc":["https://mainnet.skalenodes.com/v1/parallel-stormy-spica","wss://mainnet.skalenodes.com/v1/ws/parallel-stormy-spica"],"faucets":["https://sfuel.skale.network/"],"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"infoURL":"","shortName":"titan-mainnet","chainId":1350216234,"networkId":1350216234,"explorers":[{"name":"Blockscout","url":"https://parallel-stormy-spica.explorer.mainnet.skalenodes.com","standard":"EIP3091"}]},{"name":"Chaos (SKALE Testnet)","title":"Chaos Testnet","chain":"staging-fast-active-bellatrix","rpc":["https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix"],"faucets":["https://sfuel.skale.network/staging/chaos"],"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"infoURL":"https://docs.skale.network/develop/","shortName":"chaos-tenet","chainId":1351057110,"networkId":1351057110,"slip44":1,"explorers":[{"name":"Blockscout","url":"https://staging-fast-active-bellatrix.explorer.staging-v3.skalenodes.com","icon":"chaos","standard":"EIP3091"}]},{"name":"RARI Chain Mainnet","chain":"RARI","rpc":["https://rari.calderachain.xyz/http"],"faucets":[],"nativeCurrency":{"name":"Ethereum","symbol":"ETH","decimals":18},"infoURL":"https://rarichain.org/","shortName":"rari-mainnet","chainId":1380012617,"networkId":1380012617,"explorers":[{"name":"rarichain-explorer","url":"https://mainnet.explorer.rarichain.org","standard":"EIP3091"}]},{"name":"RaptorChain","chain":"RPTR","rpc":["https://rpc.raptorchain.io/web3"],"faucets":[],"nativeCurrency":{"name":"Raptor","symbol":"RPTR","decimals":18},"features":[{"name":"EIP155"}],"infoURL":"https://raptorchain.io","shortName":"rptr","chainId":1380996178,"networkId":1380996178,"icon":"raptorchain","explorers":[{"name":"RaptorChain Explorer","url":"https://explorer.raptorchain.io","icon":"raptorchain_explorer","standard":"EIP3091"}]},{"name":"SKALE Europa Hub Testnet","title":"SKALE Europa Hub Testnet","chain":"juicy-low-small-testnet","icon":"europa","rpc":["https://testnet.skalenodes.com/v1/juicy-low-small-testnet"],"faucets":["https://www.sfuelstation.com/"],"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"infoURL":"https://europahub.network/","shortName":"europa-testnet","chainId":1444673419,"networkId":1444673419,"slip44":1,"explorers":[{"name":"Blockscout","url":"https://juicy-low-small-testnet.explorer.testnet.skalenodes.com","standard":"EIP3091"}]},{"name":"SKALE Nebula Hub","chain":"green-giddy-denebola","icon":"nebula","rpc":["https://mainnet.skalenodes.com/v1/green-giddy-denebola","wss://mainnet-proxy.skalenodes.com/v1/ws/green-giddy-denebola"],"faucets":["https://sfuel.skale.network/"],"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"infoURL":"https://nebulachain.io/","shortName":"nebula-mainnet","chainId":1482601649,"networkId":1482601649,"explorers":[{"name":"Blockscout","url":"https://green-giddy-denebola.explorer.mainnet.skalenodes.com","standard":"EIP3091"}]},{"name":"Deprecated SKALE Titan Hub Testnet","chain":"staging-aware-chief-gianfar","status":"deprecated","icon":"titan","rpc":["https://staging-v3.skalenodes.com/v1/staging-aware-chief-gianfar","wss://staging-v3.skalenodes.com/v1/ws/staging-aware-chief-gianfar"],"faucets":["https://sfuel.dirtroad.dev/staging"],"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"infoURL":"","shortName":"deprecated-titan-testnet","chainId":1517929550,"networkId":1517929550,"slip44":1,"explorers":[{"name":"Blockscout","url":"https://staging-aware-chief-gianfar.explorer.staging-v3.skalenodes.com","standard":"EIP3091"}]},{"name":"SKALE Calypso Hub","chain":"honorable-steel-rasalhague","icon":"calypso","rpc":["https://mainnet.skalenodes.com/v1/honorable-steel-rasalhague"],"faucets":["https://sfuel.dirtroad.dev"],"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"infoURL":"https://calypsohub.network/","shortName":"calypso-mainnet","chainId":1564830818,"networkId":1564830818,"explorers":[{"name":"Blockscout","url":"https://honorable-steel-rasalhague.explorer.mainnet.skalenodes.com","standard":"EIP3091"}]},{"name":"Harmony Mainnet Shard 0","chain":"Harmony","rpc":["https://api.harmony.one","https://a.api.s0.t.hmny.io","https://api.s0.t.hmny.io","https://rpc.ankr.com/harmony","https://harmony.api.onfinality.io/public","https://1rpc.io/one","https://harmony-0.drpc.org","wss://harmony-0.drpc.org"],"faucets":[],"nativeCurrency":{"name":"ONE","symbol":"ONE","decimals":18},"infoURL":"https://www.harmony.one/","slip44":1023,"ens":{"registry":"0x4cd2563118e57b19179d8dc033f2b0c5b5d69ff5"},"shortName":"hmy-s0","chainId":1666600000,"networkId":1666600000,"explorers":[{"name":"Harmony Block Explorer","url":"https://explorer.harmony.one","standard":"EIP3091"}]},{"name":"Harmony Mainnet Shard 1","chain":"Harmony","rpc":["https://api.s1.t.hmny.io","https://harmony-1.drpc.org","wss://harmony-1.drpc.org"],"faucets":[],"nativeCurrency":{"name":"ONE","symbol":"ONE","decimals":18},"infoURL":"https://www.harmony.one/","slip44":1023,"shortName":"hmy-s1","chainId":1666600001,"networkId":1666600001,"explorers":[{"name":"Harmony Block Explorer","url":"https://explorer.harmony.one/blocks/shard/1","standard":"none"}]},{"name":"Harmony Mainnet Shard 2","chain":"Harmony","rpc":["https://api.s2.t.hmny.io"],"faucets":[],"nativeCurrency":{"name":"ONE","symbol":"ONE","decimals":18},"infoURL":"https://www.harmony.one/","slip44":1023,"shortName":"hmy-s2","chainId":1666600002,"networkId":1666600002,"status":"deprecated","explorers":[{"name":"Harmony Block Explorer","url":"https://explorer.harmony.one/blocks/shard/2","standard":"none"}]},{"name":"Harmony Mainnet Shard 3","chain":"Harmony","rpc":["https://api.s3.t.hmny.io"],"faucets":[],"nativeCurrency":{"name":"ONE","symbol":"ONE","decimals":18},"infoURL":"https://www.harmony.one/","slip44":1023,"shortName":"hmy-s3","chainId":1666600003,"networkId":1666600003,"status":"deprecated","explorers":[{"name":"Harmony Block Explorer","url":"https://explorer.harmony.one/blocks/shard/3","standard":"none"}]},{"name":"Harmony Testnet Shard 0","chain":"Harmony","rpc":["https://api.s0.b.hmny.io"],"faucets":["https://faucet.pops.one"],"nativeCurrency":{"name":"ONE","symbol":"ONE","decimals":18},"infoURL":"https://www.harmony.one/","shortName":"hmy-b-s0","chainId":1666700000,"networkId":1666700000,"explorers":[{"name":"Harmony Testnet Block Explorer","url":"https://explorer.testnet.harmony.one","standard":"EIP3091"}]},{"name":"Harmony Testnet Shard 1","chain":"Harmony","rpc":["https://api.s1.b.hmny.io"],"faucets":["https://faucet.pops.one"],"nativeCurrency":{"name":"ONE","symbol":"ONE","decimals":18},"infoURL":"https://www.harmony.one/","shortName":"hmy-b-s1","chainId":1666700001,"networkId":1666700001,"explorers":[{"name":"Harmony Block Explorer","url":"https://explorer.testnet.harmony.one","standard":"none"}]},{"name":"Harmony Devnet Shard 0","chain":"Harmony","rpc":["https://api.s0.ps.hmny.io"],"faucets":[],"nativeCurrency":{"name":"ONE","symbol":"ONE","decimals":18},"infoURL":"https://www.harmony.one/","shortName":"hmy-ps-s0","chainId":1666900000,"networkId":1666900000,"explorers":[]},{"name":"Harmony Devnet Shard 1","chain":"Harmony","rpc":["https://api.s1.ps.hmny.io"],"faucets":[],"nativeCurrency":{"name":"ONE","symbol":"ONE","decimals":18},"infoURL":"https://www.harmony.one/","shortName":"hmy-ps-s1","chainId":1666900001,"networkId":1666900001,"explorers":[]},{"name":"RARI Chain Testnet","chain":"RARI","rpc":["https://testnet.rpc.rarichain.org/http"],"faucets":[],"nativeCurrency":{"name":"Ethereum","symbol":"ETH","decimals":18},"infoURL":"https://rarichain.org/","shortName":"rari-testnet","chainId":1918988905,"networkId":1918988905,"explorers":[{"name":"rarichain-testnet-explorer","url":"https://explorer.rarichain.org","standard":"EIP3091"}]},{"name":"DataHopper","chain":"HOP","rpc":["https://23.92.21.121:8545"],"faucets":[],"nativeCurrency":{"name":"DataHoppers","symbol":"HOP","decimals":18},"infoURL":"https://www.DataHopper.com","shortName":"hop","chainId":2021121117,"networkId":2021121117},{"name":"SKALE Europa Hub","chain":"europa","icon":"europa","rpc":["https://mainnet.skalenodes.com/v1/elated-tan-skat","wss://mainnet.skalenodes.com/v1/elated-tan-skat"],"faucets":["https://ruby.exchange/faucet.html","https://sfuel.mylilius.com/"],"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"infoURL":"https://europahub.network/","shortName":"europa","chainId":2046399126,"networkId":2046399126,"explorers":[{"name":"Blockscout","url":"https://elated-tan-skat.explorer.mainnet.skalenodes.com","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-1","bridges":[{"url":"https://ruby.exchange/bridge.html"}]}},{"name":"Ancient8 Testnet (deprecated)","status":"deprecated","chain":"Ancient8","icon":"ancient8","rpc":["https://rpc-testnet.ancient8.gg"],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://ancient8.gg/","shortName":"a8old","chainId":2863311531,"networkId":2863311531,"slip44":1,"explorers":[{"name":"a8scan-testnet","url":"https://testnet.a8scan.io","standard":"EIP3091"}]},{"name":"Pirl","chain":"PIRL","rpc":["https://wallrpc.pirl.io"],"faucets":[],"nativeCurrency":{"name":"Pirl Ether","symbol":"PIRL","decimals":18},"infoURL":"https://pirl.io","shortName":"pirl","chainId":3125659152,"networkId":3125659152,"slip44":164},{"name":"OneLedger Testnet Frankenstein","chain":"OLT","icon":"oneledger","rpc":["https://frankenstein-rpc.oneledger.network"],"faucets":["https://frankenstein-faucet.oneledger.network"],"nativeCurrency":{"name":"OLT","symbol":"OLT","decimals":18},"infoURL":"https://oneledger.io","shortName":"frankenstein","chainId":4216137055,"networkId":4216137055,"slip44":1,"explorers":[{"name":"OneLedger Block Explorer","url":"https://frankenstein-explorer.oneledger.network","standard":"EIP3091"}]},{"name":"Palm Testnet","chain":"Palm","icon":"palm","rpc":["https://palm-testnet.infura.io/v3/${INFURA_API_KEY}","https://palm-testnet.public.blastapi.io"],"faucets":[],"nativeCurrency":{"name":"PALM","symbol":"PALM","decimals":18},"infoURL":"https://palm.network","shortName":"tpalm","chainId":11297108099,"networkId":11297108099,"slip44":1,"explorers":[{"name":"Chainlens","url":"https://testnet.palm.chainlens.com","standard":"EIP3091"},{"name":"Dora","url":"https://www.ondora.xyz/network/palm-testnet","standard":"none"}]},{"name":"Palm","chain":"Palm","icon":"palm","rpc":["https://palm-mainnet.infura.io/v3/${INFURA_API_KEY}","https://palm-mainnet.public.blastapi.io"],"faucets":[],"nativeCurrency":{"name":"PALM","symbol":"PALM","decimals":18},"infoURL":"https://palm.network","shortName":"palm","chainId":11297108109,"networkId":11297108109,"explorers":[{"name":"Chainlens","url":"https://palm.chainlens.com","standard":"EIP3091"},{"name":"Dora","url":"https://www.ondora.xyz/network/palm","standard":"none"}]},{"name":"GitSwarm Test Network","title":"GitSwarm Test Network","chain":"ETH","icon":"gitswarm","rpc":["https://gitswarm.com:2096"],"faucets":[],"nativeCurrency":{"name":"GitSwarm Ether","symbol":"GS-ETH","decimals":18},"infoURL":"https://gitswarm.com/","shortName":"GS-ETH","chainId":28872323069,"networkId":28872323069,"slip44":1,"explorers":[],"status":"incubating"},{"name":"Arbitrum Blueberry","title":"Arbitrum Blueberry Testnet","chain":"ETH","rpc":["https://rpc.arb-blueberry.gelato.digital","wss://ws.arb-blueberry.gelato.digital"],"faucets":[],"nativeCurrency":{"name":"GelatoCGT","symbol":"CGT","decimals":18},"infoURL":"https://raas.gelato.network/rollups/details/public/arb-blueberry","shortName":"arb-blueberry","chainId":88153591557,"networkId":88153591557,"slip44":60,"explorers":[{"name":"blockscout","url":"https://arb-blueberry.gelatoscout.com","icon":"blockscout","standard":"EIP3091"}],"parent":{"type":"L2","chain":"eip155-421614","bridges":[{"url":"https://bridge.gelato.network/bridge/arb-blueberry"}]},"status":"active"},{"name":"Kakarot Sepolia","chain":"ETH","icon":"kakarot","rpc":[],"faucets":[],"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"infoURL":"https://kakarot.org","shortName":"kkrt-sepolia","chainId":107107114116,"networkId":107107114116,"explorers":[],"parent":{"type":"L2","chain":"eip155-11155111","bridges":[]}},{"name":"Alphabet Mainnet","chain":"Alphabet Network","icon":"alphabetnetwork","rpc":["https://londonpublic.alphabetnetwork.org","wss://londonpublic.alphabetnetwork.org/ws/","https://main-rpc.com","wss://main-rpc.com/ws/"],"faucets":[],"nativeCurrency":{"name":"ALT","symbol":"ALT","decimals":18},"infoURL":"https://alphabetnetwork.org","shortName":"alphabet","chainId":111222333444,"networkId":111222333444,"explorers":[{"name":"Alphabet Explorer","url":"https://scan.alphabetnetwork.org","standard":"EIP3091"}]},{"name":"Ntity Mainnet","chain":"Ntity","rpc":["https://rpc.ntity.io"],"faucets":[],"nativeCurrency":{"name":"Ntity","symbol":"NTT","decimals":18},"infoURL":"https://ntity.io","shortName":"ntt","chainId":197710212030,"networkId":197710212030,"icon":"ntity","explorers":[{"name":"Ntity Blockscout","url":"https://blockscout.ntity.io","icon":"ntity","standard":"EIP3091"}]},{"name":"Haradev Testnet","chain":"Ntity","rpc":["https://blockchain.haradev.com"],"faucets":[],"nativeCurrency":{"name":"Ntity Haradev","symbol":"NTTH","decimals":18},"infoURL":"https://ntity.io","shortName":"ntt-haradev","chainId":197710212031,"networkId":197710212031,"slip44":1,"icon":"ntity","explorers":[{"name":"Ntity Haradev Blockscout","url":"https://blockscout.haradev.com","icon":"ntity","standard":"EIP3091"}]},{"name":"Zeniq","chain":"ZENIQ","rpc":["https://smart.zeniq.network:9545"],"faucets":["https://faucet.zeniq.net/"],"nativeCurrency":{"name":"Zeniq","symbol":"ZENIQ","decimals":18},"infoURL":"https://www.zeniq.dev/","shortName":"zeniq","chainId":383414847825,"networkId":383414847825,"explorers":[{"name":"zeniq-smart-chain-explorer","url":"https://smart.zeniq.net","standard":"EIP3091"}]},{"name":"PDC Mainnet","chain":"IPDC","rpc":["https://mainnet.ipdc.io/"],"faucets":[],"nativeCurrency":{"name":"PDC","symbol":"PDC","decimals":18},"infoURL":"https://ipdc.io","shortName":"ipdc","chainId":666301171999,"networkId":666301171999,"explorers":[{"name":"ipdcscan","url":"https://scan.ipdc.io","standard":"EIP3091"}]},{"name":"Molereum Network","chain":"ETH","rpc":["https://molereum.jdubedition.com"],"faucets":[],"nativeCurrency":{"name":"Molereum Ether","symbol":"MOLE","decimals":18},"infoURL":"https://github.com/Jdubedition/molereum","shortName":"mole","chainId":6022140761023,"networkId":6022140761023},{"name":"Godwoken Testnet (V1)","chain":"GWT","rpc":["https://godwoken-testnet-web3-v1-rpc.ckbapp.dev"],"faucets":["https://homura.github.io/light-godwoken"],"nativeCurrency":{"name":"CKB","symbol":"CKB","decimals":8},"infoURL":"https://www.nervos.org","shortName":"gw-testnet-v1-deprecated","chainId":868455272153094,"networkId":868455272153094,"slip44":1,"status":"deprecated","explorers":[{"name":"GWScan Block Explorer","url":"https://v1.aggron.gwscan.com","standard":"none"}]}] \ No newline at end of file diff --git a/src/components/AccountDetails.tsx b/src/components/AccountDetails.tsx new file mode 100644 index 0000000..8c16c61 --- /dev/null +++ b/src/components/AccountDetails.tsx @@ -0,0 +1,31 @@ +import React from 'react'; +import { View } from 'react-native'; +import { Text } from 'react-native-paper'; + +import { Account } from '../types'; +import styles from '../styles/stylesheet'; + +interface AccountDetailsProps { + account: Account | undefined; +} + +const AccountDetails: React.FC = ({ account }) => { + return ( + + + Address: + {account?.address} + + + Public Key: + {account?.pubKey} + + + HD Path: + {account?.hdPath} + + + ); +}; + +export default AccountDetails; diff --git a/src/components/Accounts.tsx b/src/components/Accounts.tsx new file mode 100644 index 0000000..6f810cd --- /dev/null +++ b/src/components/Accounts.tsx @@ -0,0 +1,229 @@ +import React, { useEffect, useState } from 'react'; +import { ScrollView, TouchableOpacity, View } from 'react-native'; +import { Button, List, Text, useTheme } from 'react-native-paper'; +// import { setInternetCredentials } from 'react-native-keychain'; + +import { useNavigation } from '@react-navigation/native'; +import { NativeStackNavigationProp } from '@react-navigation/native-stack'; + +import { StackParamsList, Account } from '../types'; +import { addAccount } from '../utils/accounts'; +import styles from '../styles/stylesheet'; +import HDPathDialog from './HDPathDialog'; +import AccountDetails from './AccountDetails'; +import { useAccounts } from '../context/AccountsContext'; +import { web3wallet } from '../utils/wallet-connect/WalletConnectUtils'; +import { useNetworks } from '../context/NetworksContext'; +import ConfirmDialog from './ConfirmDialog'; +import { getNamespaces } from '../utils/wallet-connect/helpers'; +import ShowPKDialog from './ShowPKDialog'; + +const Accounts = () => { + const navigation = + useNavigation>(); + + const { accounts, setAccounts, setCurrentIndex, currentIndex } = + useAccounts(); + const { networksData, selectedNetwork, setNetworksData, setSelectedNetwork } = + useNetworks(); + const [expanded, setExpanded] = useState(false); + const [isAccountCreating, setIsAccountCreating] = useState(false); + const [hdDialog, setHdDialog] = useState(false); + const [pathCode, setPathCode] = useState(''); + const [deleteNetworkDialog, setDeleteNetworkDialog] = + useState(false); + + const theme = useTheme(); + + const handlePress = () => setExpanded(!expanded); + + const hideDeleteNetworkDialog = () => setDeleteNetworkDialog(false); + + const updateAccounts = (account: Account) => { + setAccounts([...accounts, account]); + }; + + useEffect(() => { + const updateSessions = async () => { + const sessions = (web3wallet && web3wallet.getActiveSessions()) || {}; + // Iterate through each session + + for (const topic in sessions) { + const session = sessions[topic]; + const { optionalNamespaces, requiredNamespaces } = session; + + const updatedNamespaces = await getNamespaces( + optionalNamespaces, + requiredNamespaces, + networksData, + selectedNetwork!, + accounts, + currentIndex, + ); + + if (!updatedNamespaces) { + return; + } + + await web3wallet!.updateSession({ + topic, + namespaces: updatedNamespaces, + }); + } + }; + // Call the updateSessions function when the 'accounts' dependency changes + updateSessions(); + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [accounts]); + + const addAccountHandler = async () => { + setIsAccountCreating(true); + const newAccount = await addAccount(selectedNetwork!); + setIsAccountCreating(false); + if (newAccount) { + updateAccounts(newAccount); + setCurrentIndex(newAccount.index); + } + }; + + const renderAccountItems = () => + accounts.map(account => ( + { + setCurrentIndex(account.index); + setExpanded(false); + }} + /> + )); + + const handleRemove = async () => { + const updatedNetworks = networksData.filter( + networkData => selectedNetwork!.networkId !== networkData.networkId, + ); + + // await setInternetCredentials( + // 'networks', + // '_', + // JSON.stringify(updatedNetworks), + // ); + + setSelectedNetwork(updatedNetworks[0]); + setCurrentIndex(0); + setDeleteNetworkDialog(false); + setNetworksData(updatedNetworks); + }; + + return ( + + + setHdDialog(false)} + updateAccounts={updateAccounts} + pathCode={pathCode} + /> + + {renderAccountItems()} + + + + + + + + + + + + + + { + navigation.navigate('SignMessage', { + selectedNamespace: selectedNetwork!.namespace, + selectedChainId: selectedNetwork!.chainId, + accountInfo: accounts[currentIndex], + }); + }}> + + Sign Message + + + + + + { + navigation.navigate('AddNetwork'); + }}> + + Add Network + + + + + + { + navigation.navigate('EditNetwork', { + selectedNetwork: selectedNetwork!, + }); + }}> + + Edit Network + + + + + {!selectedNetwork!.isDefault && ( + + { + setDeleteNetworkDialog(true); + }}> + + Delete Network + + + + )} + + + + + + ); +}; + +export default Accounts; diff --git a/src/components/ConfirmDialog.tsx b/src/components/ConfirmDialog.tsx new file mode 100644 index 0000000..31269cf --- /dev/null +++ b/src/components/ConfirmDialog.tsx @@ -0,0 +1,27 @@ +import React from 'react'; +import { Dialog, DialogTitle, DialogContent, DialogActions, Button, Typography } from '@mui/material'; +import { ResetDialogProps } from '../types'; + +const ConfirmDialog = ({ + title, + visible, + hideDialog, + onConfirm, +}: ResetDialogProps) => { + return ( + + {title} + + Are you sure? + + + + + + + ); +}; + +export default ConfirmDialog; diff --git a/src/components/CreateWallet.tsx b/src/components/CreateWallet.tsx new file mode 100644 index 0000000..5ba0708 --- /dev/null +++ b/src/components/CreateWallet.tsx @@ -0,0 +1,27 @@ +import { View } from 'react-native'; +import React from 'react'; +import { Button } from 'react-native-paper'; + +import { CreateWalletProps } from '../types'; +import styles from '../styles/stylesheet'; + +const CreateWallet = ({ + isWalletCreating, + createWalletHandler, +}: CreateWalletProps) => { + return ( + + + + + + ); +}; + +export default CreateWallet; diff --git a/src/components/DataBox.tsx b/src/components/DataBox.tsx new file mode 100644 index 0000000..b4f0870 --- /dev/null +++ b/src/components/DataBox.tsx @@ -0,0 +1,17 @@ +import React from 'react'; +import { View, Text } from 'react-native'; + +import styles from '../styles/stylesheet'; + +const DataBox = ({ label, data }: { label: string; data: string }) => { + return ( + + {label} + + {data} + + + ); +}; + +export default DataBox; diff --git a/src/components/Dialog.tsx b/src/components/Dialog.tsx new file mode 100644 index 0000000..63124e7 --- /dev/null +++ b/src/components/Dialog.tsx @@ -0,0 +1,31 @@ +import React from 'react'; +import { Dialog, DialogActions, DialogContent, DialogTitle, Button, Typography } from '@mui/material'; + +import styles from '../styles/stylesheet'; +import GridView from './Grid'; +import { CustomDialogProps } from '../types'; + + +const DialogComponent = ({ visible, hideDialog, contentText }: CustomDialogProps) => { + const words = contentText.split(' '); + + return ( + + Mnemonic + + + Your mnemonic provides full access to your wallet and funds. Make sure to note it down. + + + Do not share your mnemonic with anyone + + + + + + + + ); +}; + +export { DialogComponent }; diff --git a/src/components/Grid.tsx b/src/components/Grid.tsx new file mode 100644 index 0000000..764e51c --- /dev/null +++ b/src/components/Grid.tsx @@ -0,0 +1,21 @@ +import React from 'react'; +import { View } from 'react-native'; +import { Text } from 'react-native-paper'; + +import styles from '../styles/stylesheet'; +import { GridViewProps } from '../types'; + +const GridView = ({ words }: GridViewProps) => { + return ( + + {words.map((word, index) => ( + + {index + 1}. + {word} + + ))} + + ); +}; + +export default GridView; diff --git a/src/components/HDPath.tsx b/src/components/HDPath.tsx new file mode 100644 index 0000000..a49ca3c --- /dev/null +++ b/src/components/HDPath.tsx @@ -0,0 +1,100 @@ +import React, { useState } from 'react'; +import { ScrollView, View, Text } from 'react-native'; +import { Button, TextInput } from 'react-native-paper'; + +import { addAccountFromHDPath } from '../utils/accounts'; +import { Account, NetworksDataState, PathState } from '../types'; +import styles from '../styles/stylesheet'; +import { useAccounts } from '../context/AccountsContext'; + +const HDPath = ({ + pathCode, + updateAccounts, + hideDialog, + selectedNetwork, +}: { + pathCode: string; + updateAccounts: (account: Account) => void; + hideDialog: () => void; + selectedNetwork: NetworksDataState; +}) => { + const { setCurrentIndex } = useAccounts(); + const [isAccountCreating, setIsAccountCreating] = useState(false); + const [path, setPath] = useState({ + firstNumber: '', + secondNumber: '', + thirdNumber: '', + }); + + const handleChange = (key: keyof PathState, value: string) => { + if (key === 'secondNumber' && value !== '' && !['0', '1'].includes(value)) { + return; + } + + setPath({ + ...path, + [key]: value.replace(/[^0-9]/g, ''), + }); + }; + + const createFromHDPathHandler = async () => { + setIsAccountCreating(true); + const hdPath = + pathCode + + `${path.firstNumber}'/${path.secondNumber}/${path.thirdNumber}`; + try { + const newAccount = await addAccountFromHDPath(hdPath, selectedNetwork); + if (newAccount) { + updateAccounts(newAccount); + setCurrentIndex(newAccount.index); + hideDialog(); + } + } catch (error) { + console.error('Error creating account:', error); + } finally { + setIsAccountCreating(false); + } + }; + + return ( + + + {pathCode} + handleChange('firstNumber', text)} + value={path.firstNumber} + style={styles.HDtextInput} + /> + '/ + handleChange('secondNumber', text)} + value={path.secondNumber} + style={styles.HDtextInput} + /> + / + handleChange('thirdNumber', text)} + value={path.thirdNumber} + style={styles.HDtextInput} + /> + + + + + + ); +}; + +export default HDPath; diff --git a/src/components/HDPathDialog.tsx b/src/components/HDPathDialog.tsx new file mode 100644 index 0000000..47c8f10 --- /dev/null +++ b/src/components/HDPathDialog.tsx @@ -0,0 +1,31 @@ +import React from 'react'; +import { Dialog, DialogTitle, DialogContent } from '@mui/material'; + +import { HDPathDialogProps } from '../types'; +import HDPath from './HDPath'; +import { useNetworks } from '../context/NetworksContext'; + +const HDPathDialog = ({ + visible, + hideDialog, + updateAccounts, + pathCode, +}: HDPathDialogProps) => { + const { selectedNetwork } = useNetworks(); + + return ( + + Add account from HD path + + + + + ); +}; + +export default HDPathDialog; diff --git a/src/components/NetworkDropdown.tsx b/src/components/NetworkDropdown.tsx new file mode 100644 index 0000000..12f7e76 --- /dev/null +++ b/src/components/NetworkDropdown.tsx @@ -0,0 +1,38 @@ +import React, { useState } from 'react'; +import { View } from 'react-native'; +import { List } from 'react-native-paper'; + +import { NetworkDropdownProps, NetworksDataState } from '../types'; +import styles from '../styles/stylesheet'; +import { useNetworks } from '../context/NetworksContext'; + +const NetworkDropdown = ({ updateNetwork }: NetworkDropdownProps) => { + const { networksData, selectedNetwork, setSelectedNetwork } = useNetworks(); + + const [expanded, setExpanded] = useState(false); + + const handleNetworkPress = (networkData: NetworksDataState) => { + updateNetwork(networkData); + setSelectedNetwork(networkData); + setExpanded(false); + }; + + return ( + + setExpanded(!expanded)}> + {networksData.map(networkData => ( + handleNetworkPress(networkData)} + /> + ))} + + + ); +}; + +export { NetworkDropdown }; diff --git a/src/components/PairingModal.tsx b/src/components/PairingModal.tsx new file mode 100644 index 0000000..74d3bbc --- /dev/null +++ b/src/components/PairingModal.tsx @@ -0,0 +1,315 @@ +import React, { useEffect, useMemo, useState } from 'react'; +import { Image, View, Modal, ScrollView } from 'react-native'; +import { Button, Text } from 'react-native-paper'; +import { SvgUri } from 'react-native-svg'; +import mergeWith from 'lodash/mergeWith'; + +// import { buildApprovedNamespaces, getSdkError } from '@walletconnect/utils'; + +import { PairingModalProps } from '../types'; +import styles from '../styles/stylesheet'; +import { web3wallet } from '../utils/wallet-connect/WalletConnectUtils'; +import { useAccounts } from '../context/AccountsContext'; +import { useWalletConnect } from '../context/WalletConnectContext'; +import { useNetworks } from '../context/NetworksContext'; +import { getNamespaces } from '../utils/wallet-connect/helpers'; + +const PairingModal = ({ + visible, + currentProposal, + setCurrentProposal, + setModalVisible, + setToastVisible, +}: PairingModalProps) => { + const { accounts, currentIndex } = useAccounts(); + const { selectedNetwork, networksData } = useNetworks(); + const [isLoading, setIsLoading] = useState(false); + const [chainError, setChainError] = useState(''); + + // const dappName = currentProposal?.params?.proposer?.metadata.name; + // const url = currentProposal?.params?.proposer?.metadata.url; + // const icon = currentProposal?.params.proposer?.metadata.icons[0]; + const dappName = undefined; + const url = undefined; + const icon = '.svg'; + + const [walletConnectData, setWalletConnectData] = useState<{ + walletConnectMethods: string[]; + walletConnectEvents: string[]; + walletConnectChains: string[]; + }>({ + walletConnectMethods: [], + walletConnectEvents: [], + walletConnectChains: [], + }); + + const [supportedNamespaces, setSupportedNamespaces] = useState< + Record< + string, + { + chains: string[]; + methods: string[]; + events: string[]; + accounts: string[]; + } + > + >(); + + useEffect(() => { + if (!currentProposal) { + return; + } + const { params } = currentProposal; + const { requiredNamespaces, optionalNamespaces } = params; + + setWalletConnectData({ + walletConnectMethods: [], + walletConnectEvents: [], + walletConnectChains: [], + }); + + const combinedNamespaces = mergeWith( + requiredNamespaces, + optionalNamespaces, + (obj, src) => + Array.isArray(obj) && Array.isArray(src) ? [...src, ...obj] : undefined, + ); + + Object.keys(combinedNamespaces).forEach(key => { + const { methods, events, chains } = combinedNamespaces[key]; + + setWalletConnectData(prevData => { + return { + walletConnectMethods: [...prevData.walletConnectMethods, ...methods], + walletConnectEvents: [...prevData.walletConnectEvents, ...events], + walletConnectChains: chains + ? [...prevData.walletConnectChains, ...chains] + : [...prevData.walletConnectChains], + }; + }); + }); + }, [currentProposal]); + + const { setActiveSessions } = useWalletConnect(); + + useEffect(() => { + const getSupportedNamespaces = async () => { + if (!currentProposal) { + return; + } + + // const { optionalNamespaces, requiredNamespaces } = currentProposal.params; + const { optionalNamespaces, requiredNamespaces } = currentProposal; + + try { + const nameSpaces = await getNamespaces( + optionalNamespaces, + requiredNamespaces, + networksData, + selectedNetwork!, + accounts, + currentIndex, + ); + setSupportedNamespaces(nameSpaces); + } catch (err) { + setChainError((err as Error).message); + + // const { id } = currentProposal; + // await web3wallet!.rejectSession({ + // id, + // reason: getSdkError('UNSUPPORTED_CHAINS'), + // }); + setCurrentProposal(undefined); + setWalletConnectData({ + walletConnectMethods: [], + walletConnectEvents: [], + walletConnectChains: [], + }); + } + }; + + getSupportedNamespaces(); + }, [ + currentProposal, + networksData, + selectedNetwork, + accounts, + currentIndex, + setCurrentProposal, + setModalVisible, + ]); + + const namespaces = useMemo(() => { + return ( + currentProposal && + supportedNamespaces + // && + // buildApprovedNamespaces({ + // proposal: currentProposal.params, + // supportedNamespaces, + // }) + ); + }, [currentProposal, supportedNamespaces]); + + const handleAccept = async () => { + try { + if (currentProposal && namespaces) { + setIsLoading(true); + const { id } = currentProposal; + + await web3wallet!.approveSession({ + id, + namespaces, + }); + + const sessions = web3wallet!.getActiveSessions(); + setIsLoading(false); + setActiveSessions(sessions); + setModalVisible(false); + setToastVisible(true); + setCurrentProposal(undefined); + setSupportedNamespaces(undefined); + setWalletConnectData({ + walletConnectMethods: [], + walletConnectEvents: [], + walletConnectChains: [], + }); + } + } catch (error) { + console.error('Error in approve session:', error); + throw error; + } + }; + + const handleClose = () => { + setChainError(''); + setModalVisible(false); + }; + + const handleReject = async () => { + if (currentProposal) { + // const { id } = currentProposal; + // await web3wallet!.rejectSession({ + // id, + // reason: getSdkError('USER_REJECTED_METHODS'), + // }); + + setModalVisible(false); + setCurrentProposal(undefined); + setWalletConnectData({ + walletConnectMethods: [], + walletConnectEvents: [], + walletConnectChains: [], + }); + } + }; + + return ( + + {chainError !== '' ? ( + + + + {icon && ( + <> + {icon.endsWith('.svg') ? ( + + + + ) : ( + + )} + + )} + + {dappName} + {url} + {chainError} + + + + + + + ) : ( + + + + + + {icon && ( + <> + {icon.endsWith('.svg') ? ( + + + + ) : ( + + )} + + )} + + {dappName} + {url} + + Connect to this site? + + {walletConnectData.walletConnectMethods.length > 0 && ( + + Chains: + {walletConnectData.walletConnectChains.map(chain => ( + + {chain} + + ))} + + )} + + {walletConnectData.walletConnectMethods.length > 0 && ( + + Methods Requested: + {walletConnectData.walletConnectMethods.map(method => ( + + {method} + + ))} + + )} + + {walletConnectData.walletConnectEvents.length > 0 && ( + + Events Requested: + {walletConnectData.walletConnectEvents.map(event => ( + + {event} + + ))} + + )} + + + + + + + + + + + + )} + + ); +}; + +export default PairingModal; diff --git a/src/components/SelectNetworkType.tsx b/src/components/SelectNetworkType.tsx new file mode 100644 index 0000000..dc76fef --- /dev/null +++ b/src/components/SelectNetworkType.tsx @@ -0,0 +1,43 @@ +import React, { useState } from 'react'; +import { View } from 'react-native'; +import { Text, List } from 'react-native-paper'; + +import styles from '../styles/stylesheet'; +import { COSMOS, EIP155 } from '../utils/constants'; + +const SelectNetworkType = ({ + updateNetworkType, +}: { + updateNetworkType: (networkType: string) => void; +}) => { + const [expanded, setExpanded] = useState(false); + const [selectedNetwork, setSelectedNetwork] = useState('ETH'); + + const networks = ['ETH', 'COSMOS']; + + const handleNetworkPress = (network: string) => { + setSelectedNetwork(network); + updateNetworkType(network === 'ETH' ? EIP155 : COSMOS); + setExpanded(false); + }; + + return ( + + Select Network Type + setExpanded(!expanded)}> + {networks.map(network => ( + handleNetworkPress(network)} + /> + ))} + + + ); +}; + +export { SelectNetworkType }; diff --git a/src/components/ShowPKDialog.tsx b/src/components/ShowPKDialog.tsx new file mode 100644 index 0000000..d993854 --- /dev/null +++ b/src/components/ShowPKDialog.tsx @@ -0,0 +1,101 @@ +import React, { useState } from 'react'; +import { TouchableOpacity, View } from 'react-native'; +import { Button, Typography } from '@mui/material'; +import Dialog from '@mui/material/Dialog'; +import DialogTitle from '@mui/material/DialogTitle'; +import DialogContent from '@mui/material/DialogContent'; +import DialogActions from '@mui/material/DialogActions'; + +import styles from '../styles/stylesheet'; +import { getPathKey } from '../utils/misc'; +import { useNetworks } from '../context/NetworksContext'; +import { useAccounts } from '../context/AccountsContext'; +import { Text, useTheme } from 'react-native-paper'; + +const ShowPKDialog = () => { + const { currentIndex } = useAccounts(); + const { selectedNetwork } = useNetworks(); + + const [privateKey, setPrivateKey] = useState(); + const [showPKDialog, setShowPKDialog] = useState(false); + + const theme = useTheme(); + + const handleShowPrivateKey = async () => { + const pathKey = await getPathKey( + `${selectedNetwork!.namespace}:${selectedNetwork!.chainId}`, + currentIndex, + ); + + setPrivateKey(pathKey.privKey); + }; + + const hideShowPKDialog = () => { + setShowPKDialog(false); + setPrivateKey(undefined); + }; + + return ( + <> + + { + setShowPKDialog(true); + }}> + + Show Private Key + + + + + + + {!privateKey ? ( + Show Private Key? + ) : ( + Private Key + )} + + + {privateKey && ( + + + {privateKey} + + + )} + + + + Warning: + + Never disclose this key. Anyone with your private keys can + steal any assets held in your account. + + + + + {!privateKey ? ( + <> + + + + ) : ( + + )} + + + + + ); +}; + +export default ShowPKDialog; diff --git a/src/components/TxErrorDialog.tsx b/src/components/TxErrorDialog.tsx new file mode 100644 index 0000000..8b757b4 --- /dev/null +++ b/src/components/TxErrorDialog.tsx @@ -0,0 +1,28 @@ +import React from 'react'; +import { Button, Dialog, Portal, Text } from 'react-native-paper'; + +const TxErrorDialog = ({ + error, + visible, + hideDialog, +}: { + error: string; + visible: boolean; + hideDialog: () => void; +}) => { + return ( + + + Transaction Error + + {error} + + + + + + + ); +}; + +export default TxErrorDialog; diff --git a/src/context/AccountsContext.tsx b/src/context/AccountsContext.tsx new file mode 100644 index 0000000..2d5fe5e --- /dev/null +++ b/src/context/AccountsContext.tsx @@ -0,0 +1,39 @@ +import React, { createContext, useContext, useState } from 'react'; + +import { Account } from '../types'; + +const AccountsContext = createContext<{ + accounts: Account[]; + setAccounts: (account: Account[]) => void; + currentIndex: number; + setCurrentIndex: (index: number) => void; +}>({ + accounts: [], + setAccounts: () => {}, + currentIndex: 0, + setCurrentIndex: () => {}, +}); + +const useAccounts = () => { + const accountsContext = useContext(AccountsContext); + return accountsContext; +}; + +const AccountsProvider = ({ children }: { children: any }) => { + const [accounts, setAccounts] = useState([]); + const [currentIndex, setCurrentIndex] = useState(0); + + return ( + + {children} + + ); +}; + +export { useAccounts, AccountsProvider }; diff --git a/src/context/NetworksContext.tsx b/src/context/NetworksContext.tsx new file mode 100644 index 0000000..ed94000 --- /dev/null +++ b/src/context/NetworksContext.tsx @@ -0,0 +1,76 @@ +import React, { createContext, useContext, useEffect, useState } from 'react'; + +import { NetworksDataState } from '../types'; +import { retrieveNetworksData, storeNetworkData } from '../utils/accounts'; +import { DEFAULT_NETWORKS, EIP155 } from '../utils/constants'; + +const NetworksContext = createContext<{ + networksData: NetworksDataState[]; + setNetworksData: React.Dispatch>; + networkType: string; + setNetworkType: (networkType: string) => void; + selectedNetwork?: NetworksDataState; + setSelectedNetwork: React.Dispatch< + React.SetStateAction + >; +}>({ + networksData: [], + setNetworksData: () => {}, + networkType: '', + setNetworkType: () => {}, + selectedNetwork: {} as NetworksDataState, + setSelectedNetwork: () => {}, +}); + +const useNetworks = () => { + const networksContext = useContext(NetworksContext); + return networksContext; +}; + +const NetworksProvider = ({ children }: { children: any }) => { + const [networksData, setNetworksData] = useState([]); + const [networkType, setNetworkType] = useState(EIP155); + const [selectedNetwork, setSelectedNetwork] = useState(); + + useEffect(() => { + const fetchData = async () => { + const retrievedNetworks = await retrieveNetworksData(); + if (retrievedNetworks.length === 0) { + for (const defaultNetwork of DEFAULT_NETWORKS) { + await storeNetworkData(defaultNetwork); + } + } + const retrievedNewNetworks = await retrieveNetworksData(); + setNetworksData(retrievedNewNetworks); + setSelectedNetwork(retrievedNewNetworks[0]); + }; + + if (networksData.length === 0) { + fetchData(); + } + }, [networksData]); + + useEffect(() => { + setSelectedNetwork(prevSelectedNetwork => { + return networksData.find( + networkData => networkData.networkId === prevSelectedNetwork?.networkId, + ); + }); + }, [networksData]); + + return ( + + {children} + + ); +}; + +export { useNetworks, NetworksProvider }; diff --git a/src/context/WalletConnectContext.tsx b/src/context/WalletConnectContext.tsx new file mode 100644 index 0000000..5293d1f --- /dev/null +++ b/src/context/WalletConnectContext.tsx @@ -0,0 +1,43 @@ +import React, { createContext, useContext, useEffect, useState } from 'react'; + +// import { SessionTypes } from '@walletconnect/types'; + +import { WalletConnectContextProps } from '../types'; +import { web3wallet } from '../utils/wallet-connect/WalletConnectUtils'; +import useInitialization from '../hooks/useInitialization'; + +const WalletConnectContext = createContext({ + activeSessions: {}, + setActiveSessions: () => {}, +}); + +const useWalletConnect = () => { + const walletConnectContext = useContext(WalletConnectContext); + return walletConnectContext; +}; + +const WalletConnectProvider = ({ children }: { children: React.ReactNode }) => { + useInitialization(); + + useEffect(() => { + const sessions = (web3wallet && web3wallet.getActiveSessions()) || {}; + setActiveSessions(sessions); + }, []); + + const [activeSessions, setActiveSessions] = useState< + // Record + Record + >({}); + + return ( + + {children} + + ); +}; + +export { useWalletConnect, WalletConnectProvider }; diff --git a/src/hooks/useInitialization.ts b/src/hooks/useInitialization.ts new file mode 100644 index 0000000..3759e5c --- /dev/null +++ b/src/hooks/useInitialization.ts @@ -0,0 +1,23 @@ +import { useCallback, useEffect, useState } from 'react'; +import { createWeb3Wallet } from '../utils/wallet-connect/WalletConnectUtils'; + +export default function useInitialization() { + const [initialized, setInitialized] = useState(false); + + const onInitialize = useCallback(async () => { + try { + await createWeb3Wallet(); + setInitialized(true); + } catch (err: unknown) { + console.error('Error for initializing', err); + } + }, []); + + useEffect(() => { + if (!initialized) { + onInitialize(); + } + }, [initialized, onInitialize]); + + return initialized; +} diff --git a/src/hooks/usePrevious.ts b/src/hooks/usePrevious.ts new file mode 100644 index 0000000..5789c15 --- /dev/null +++ b/src/hooks/usePrevious.ts @@ -0,0 +1,10 @@ +import { useEffect, useRef } from 'react'; + +export function usePrevious(value: T): T | undefined { + const ref = useRef(value); + + useEffect(() => { + ref.current = value; + }, [value]); + return ref.current; +} diff --git a/src/index.css b/src/index.css new file mode 100644 index 0000000..ec2585e --- /dev/null +++ b/src/index.css @@ -0,0 +1,13 @@ +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', + 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', + sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +code { + font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', + monospace; +} diff --git a/src/index.tsx b/src/index.tsx new file mode 100644 index 0000000..1eb113e --- /dev/null +++ b/src/index.tsx @@ -0,0 +1,81 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import { PaperProvider, MD3LightTheme as DefaultTheme, } from 'react-native-paper'; +import { NavigationContainer } from '@react-navigation/native'; +import { Platform } from 'react-native'; + +import './index.css'; +import App from './App'; +import { AccountsProvider } from './context/AccountsContext'; +import { NetworksProvider } from './context/NetworksContext'; +import reportWebVitals from './reportWebVitals'; +import { WalletConnectProvider } from './context/WalletConnectContext'; + +// // Generate the required CSS +// import iconFont from 'react-native-vector-icons/Fonts/FontAwesome.ttf'; +// const iconFontStyles = `@font-face { +// src: url(${iconFont}); +// font-family: FontAwesome; +// }`; + +// // Create a stylesheet +// const style = document.createElement('style'); +// style.type = 'text/css'; + +// // Append the iconFontStyles to the stylesheet +// if (style.styleSheet) { +// style.styleSheet.cssText = iconFontStyles; +// } else { +// style.appendChild(document.createTextNode(iconFontStyles)); +// } + +// // Inject the stylesheet into the document head +// document.head.appendChild(style); + +const linking = { + prefixes: ['https://wallet.laconic.com'], + config: { + screens: { + SignRequest: { + path: 'sign/:namespace/:chaindId/:address/:message', + }, + }, + }, +}; + +const theme = { + ...DefaultTheme, + dark: false, +}; + +const root = ReactDOM.createRoot( + document.getElementById('root') as HTMLElement +); +root.render( + + + + + + + {Platform.OS === 'web' ? ( + + ) : null} + + + + + + + +); + +// If you want to start measuring performance in your app, pass a function +// to log results (for example: reportWebVitals(console.log)) +// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals +reportWebVitals(); diff --git a/src/logo.svg b/src/logo.svg new file mode 100644 index 0000000..9dfc1c0 --- /dev/null +++ b/src/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/react-app-env.d.ts b/src/react-app-env.d.ts new file mode 100644 index 0000000..6431bc5 --- /dev/null +++ b/src/react-app-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/src/reportWebVitals.ts b/src/reportWebVitals.ts new file mode 100644 index 0000000..49a2a16 --- /dev/null +++ b/src/reportWebVitals.ts @@ -0,0 +1,15 @@ +import { ReportHandler } from 'web-vitals'; + +const reportWebVitals = (onPerfEntry?: ReportHandler) => { + if (onPerfEntry && onPerfEntry instanceof Function) { + import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { + getCLS(onPerfEntry); + getFID(onPerfEntry); + getFCP(onPerfEntry); + getLCP(onPerfEntry); + getTTFB(onPerfEntry); + }); + } +}; + +export default reportWebVitals; diff --git a/src/screens/AddNetwork.tsx b/src/screens/AddNetwork.tsx new file mode 100644 index 0000000..ee43972 --- /dev/null +++ b/src/screens/AddNetwork.tsx @@ -0,0 +1,418 @@ +import React, { useCallback, useEffect, useState } from 'react'; +import { View } from 'react-native'; +import { useForm, Controller, useWatch, FieldErrors } from 'react-hook-form'; +import { TextInput, Button, HelperText } from 'react-native-paper'; + +import { HDNode } from 'ethers/lib/utils'; +import { chains } from 'chain-registry'; +import { useDebouncedCallback } from 'use-debounce'; +import { z } from 'zod'; + +import { NativeStackNavigationProp } from '@react-navigation/native-stack'; +import { useNavigation } from '@react-navigation/native'; +import { zodResolver } from '@hookform/resolvers/zod'; + +import { StackParamsList } from '../types'; +import { SelectNetworkType } from '../components/SelectNetworkType'; +import { storeNetworkData } from '../utils/accounts'; +import { useNetworks } from '../context/NetworksContext'; +import { + COSMOS, + EIP155, + CHAINID_DEBOUNCE_DELAY, + EMPTY_FIELD_ERROR, + INVALID_URL_ERROR, + IS_NUMBER_REGEX, +} from '../utils/constants'; +import { getCosmosAccounts } from '../utils/accounts'; +import ETH_CHAINS from '../assets/ethereum-chains.json'; +import { + getInternetCredentials, + setInternetCredentials, +} from '../utils/key-store'; + +const ethNetworkDataSchema = z.object({ + chainId: z.string().nonempty({ message: EMPTY_FIELD_ERROR }), + networkName: z.string().nonempty({ message: EMPTY_FIELD_ERROR }), + rpcUrl: z.string().url({ message: INVALID_URL_ERROR }), + blockExplorerUrl: z + .string() + .url({ message: INVALID_URL_ERROR }) + .or(z.literal('')), + coinType: z + .string() + .nonempty({ message: EMPTY_FIELD_ERROR }) + .regex(IS_NUMBER_REGEX), + currencySymbol: z.string().nonempty({ message: EMPTY_FIELD_ERROR }), +}); + +const cosmosNetworkDataSchema = z.object({ + chainId: z.string().nonempty({ message: EMPTY_FIELD_ERROR }), + networkName: z.string().nonempty({ message: EMPTY_FIELD_ERROR }), + rpcUrl: z.string().url({ message: INVALID_URL_ERROR }), + blockExplorerUrl: z + .string() + .url({ message: INVALID_URL_ERROR }) + .or(z.literal('')), + coinType: z + .string() + .nonempty({ message: EMPTY_FIELD_ERROR }) + .regex(IS_NUMBER_REGEX), + nativeDenom: z.string().nonempty({ message: EMPTY_FIELD_ERROR }), + addressPrefix: z.string().nonempty({ message: EMPTY_FIELD_ERROR }), + gasPrice: z + .string() + .nonempty({ message: EMPTY_FIELD_ERROR }) + .regex(/^\d+(\.\d+)?$/), +}); + +const AddNetwork = () => { + const navigation = + useNavigation>(); + + const { setNetworksData } = useNetworks(); + + const [namespace, setNamespace] = useState(EIP155); + + const networksFormDataSchema = + namespace === EIP155 ? ethNetworkDataSchema : cosmosNetworkDataSchema; + + const { + control, + formState: { errors, isSubmitting }, + handleSubmit, + setValue, + reset, + } = useForm>({ + mode: 'onChange', + resolver: zodResolver(networksFormDataSchema), + }); + + const watchChainId = useWatch({ + control, + name: 'chainId', + }); + + const updateNetworkType = (newNetworkType: string) => { + setNamespace(newNetworkType); + }; + + const fetchChainDetails = useDebouncedCallback((chainId: string) => { + if (namespace === EIP155) { + const ethChainDetails = ETH_CHAINS.find( + chain => chain.chainId === Number(chainId), + ); + if (!ethChainDetails) { + return; + } + setValue('networkName', ethChainDetails.name); + setValue('rpcUrl', ethChainDetails.rpc[0]); + setValue('blockExplorerUrl', ethChainDetails.explorers?.[0].url || ''); + setValue('coinType', String(ethChainDetails.slip44 ?? '60')); + setValue('currencySymbol', ethChainDetails.nativeCurrency.symbol); + return; + } + const cosmosChainDetails = chains.find( + ({ chain_id }) => chain_id === chainId, + ); + if (!cosmosChainDetails) { + return; + } + setValue('networkName', cosmosChainDetails.pretty_name); + setValue('rpcUrl', cosmosChainDetails.apis?.rpc?.[0]?.address || ''); + setValue('blockExplorerUrl', cosmosChainDetails.explorers?.[0].url || ''); + setValue('addressPrefix', cosmosChainDetails.bech32_prefix); + setValue('coinType', String(cosmosChainDetails.slip44 ?? '118')); + setValue('nativeDenom', cosmosChainDetails.fees?.fee_tokens[0].denom || ''); + setValue( + 'gasPrice', + String( + cosmosChainDetails.fees?.fee_tokens[0].average_gas_price || + String(process.env.DEFAULT_GAS_PRICE), + ), + ); + }, CHAINID_DEBOUNCE_DELAY); + + const submit = useCallback( + async (data: z.infer) => { + const newNetworkData = { + ...data, + namespace, + isDefault: false, + }; + + const mnemonicServer = await getInternetCredentials('mnemonicServer'); + const mnemonic = mnemonicServer; + + if (!mnemonic) { + throw new Error('Mnemonic not found'); + } + + const hdNode = HDNode.fromMnemonic(mnemonic); + + const hdPath = `m/44'/${newNetworkData.coinType}'/0'/0/0`; + const node = hdNode.derivePath(hdPath); + let address; + + switch (newNetworkData.namespace) { + case EIP155: + address = node.address; + break; + + case COSMOS: + address = ( + await getCosmosAccounts( + mnemonic, + hdPath, + (newNetworkData as z.infer) + .addressPrefix, + ) + ).data.address; + break; + + default: + throw new Error('Unsupported namespace'); + } + + const accountInfo = `${hdPath},${node.privateKey},${node.publicKey},${address}`; + + const retrievedNetworksData = await storeNetworkData(newNetworkData); + setNetworksData(retrievedNetworksData); + + await Promise.all([ + setInternetCredentials( + `accounts/${newNetworkData.namespace}:${newNetworkData.chainId}/0`, + '_', + accountInfo, + ), + setInternetCredentials( + `addAccountCounter/${newNetworkData.namespace}:${newNetworkData.chainId}`, + '_', + '1', + ), + setInternetCredentials( + `accountIndices/${newNetworkData.namespace}:${newNetworkData.chainId}`, + '_', + '0', + ), + ]); + + navigation.navigate('Laconic'); + }, + [navigation, namespace, setNetworksData], + ); + + useEffect(() => { + fetchChainDetails(watchChainId); + }, [watchChainId, fetchChainDetails]); + + useEffect(() => { + reset(); + }, [namespace, reset]); + + return ( + + + + ( + <> + onChange(textValue)} + /> + {errors.chainId?.message} + + )} + /> + ( + <> + onChange(textValue)} + /> + {errors.networkName?.message} + + )} + /> + ( + <> + onChange(textValue)} + /> + {errors.rpcUrl?.message} + + )} + /> + + ( + <> + onChange(textValue)} + /> + + {errors.blockExplorerUrl?.message} + + + )} + /> + ( + <> + + {errors.coinType?.message} + + )} + /> + {namespace === EIP155 ? ( + ( + <> + onChange(textValue)} + /> + + { + (errors as FieldErrors>) + .currencySymbol?.message + } + + + )} + /> + ) : ( + <> + ( + <> + onChange(textValue)} + /> + + { + ( + errors as FieldErrors< + z.infer + > + ).nativeDenom?.message + } + + + )} + /> + ( + <> + onChange(textValue)} + /> + + { + ( + errors as FieldErrors< + z.infer + > + ).addressPrefix?.message + } + + + )} + /> + ( + <> + + + { + ( + errors as FieldErrors< + z.infer + > + ).gasPrice?.message + } + + + )} + /> + + )} + + + ); +}; + +export default AddNetwork; diff --git a/src/screens/AddSession.tsx b/src/screens/AddSession.tsx new file mode 100644 index 0000000..5ef25c9 --- /dev/null +++ b/src/screens/AddSession.tsx @@ -0,0 +1,120 @@ +import React, { useEffect, useState } from 'react'; +import { AppState, TouchableOpacity, View } from 'react-native'; +import { Button, Text, TextInput } from 'react-native-paper'; +// import { +// Camera, +// useCameraDevice, +// useCameraPermission, +// useCodeScanner, +// } from 'react-native-vision-camera'; +import { Linking } from 'react-native'; + +import { useNavigation } from '@react-navigation/native'; +import { NativeStackNavigationProp } from '@react-navigation/native-stack'; + +import { web3WalletPair } from '../utils/wallet-connect/WalletConnectUtils'; +import styles from '../styles/stylesheet'; +import { StackParamsList } from '../types'; + +const AddSession = () => { + const navigation = + useNavigation>(); + + // const { hasPermission, requestPermission } = useCameraPermission(); + // const device = useCameraDevice('back'); + + const [currentWCURI, setCurrentWCURI] = useState(''); + // const [isActive, setIsActive] = useState(AppState.currentState === 'active'); + // const [isScanning, setScanning] = useState(true); + + // const codeScanner = useCodeScanner({ + // codeTypes: ['qr'], + // onCodeScanned: codes => { + // if (isScanning) { + // codes.forEach(code => { + // if (code.value) { + // setCurrentWCURI(code.value); + // setScanning(false); + // } + // }); + // } + // }, + // }); + + const linkToSettings = async () => { + await Linking.openSettings(); + }; + + const pair = async () => { + const pairing = await web3WalletPair({ uri: currentWCURI }); + navigation.navigate('WalletConnect'); + return pairing; + }; + + // useEffect(() => { + // const handleAppStateChange = (newState: string) => { + // setIsActive(newState === 'active'); + // }; + + // AppState.addEventListener('change', handleAppStateChange); + + // if (!hasPermission) { + // requestPermission(); + // } + // }, [hasPermission, requestPermission]); + + return ( + + {/* {!hasPermission || !device ? ( */} + {false ? ( + <> + {/* + {!hasPermission + ? 'No Camera Permission granted' + : 'No Camera Selected'} + */} + + + Go to settings + + + + ) : ( + <> + + {/* {isActive ? ( + + ) : ( + No Camera Selected! + )} */} + + + + Enter WalletConnect URI + + + + + + + + )} + + ); +}; +export default AddSession; diff --git a/src/screens/ApproveTransaction.tsx b/src/screens/ApproveTransaction.tsx new file mode 100644 index 0000000..532d8a1 --- /dev/null +++ b/src/screens/ApproveTransaction.tsx @@ -0,0 +1,300 @@ +import React, { useCallback, useEffect, useState } from 'react'; +import { Image, ScrollView, View } from 'react-native'; +import { Button, Text, TextInput } from 'react-native-paper'; +import { SvgUri } from 'react-native-svg'; +import Config from 'react-native-config'; + +import { + NativeStackNavigationProp, + NativeStackScreenProps, +} from '@react-navigation/native-stack'; +import { useNavigation } from '@react-navigation/native'; +import { DirectSecp256k1Wallet } from '@cosmjs/proto-signing'; +import { LaconicClient } from '@cerc-io/registry-sdk'; +import { GasPrice, calculateFee } from '@cosmjs/stargate'; +import { formatJsonRpcError } from '@json-rpc-tools/utils'; + +import { useNetworks } from '../context/NetworksContext'; +import { Account, StackParamsList } from '../types'; +import styles from '../styles/stylesheet'; +import { COSMOS, IS_NUMBER_REGEX } from '../utils/constants'; +import { retrieveSingleAccount } from '../utils/accounts'; +import { getPathKey } from '../utils/misc'; +import { + WalletConnectRequests, + approveWalletConnectRequest, + rejectWalletConnectRequest, +} from '../utils/wallet-connect/wallet-connect-requests'; +import { web3wallet } from '../utils/wallet-connect/WalletConnectUtils'; +import { MEMO } from './ApproveTransfer'; +import TxErrorDialog from '../components/TxErrorDialog'; +import AccountDetails from '../components/AccountDetails'; + +type ApproveTransactionProps = NativeStackScreenProps< + StackParamsList, + 'ApproveTransaction' +>; + +const ApproveTransaction = ({ route }: ApproveTransactionProps) => { + const { networksData } = useNetworks(); + + const requestSession = route.params.requestSessionData; + const requestName = requestSession.peer.metadata.name; + const requestIcon = requestSession.peer.metadata.icons[0]; + const requestURL = requestSession.peer.metadata.url; + const transactionMessage = route.params.transactionMessage; + const signer = route.params.signer; + const requestEvent = route.params.requestEvent; + const chainId = requestEvent.params.chainId; + const requestEventId = requestEvent.id; + const topic = requestEvent.topic; + + const [account, setAccount] = useState(); + const [cosmosStargateClient, setCosmosStargateClient] = + useState(); + const [cosmosGasLimit, setCosmosGasLimit] = useState(); + const [fees, setFees] = useState(); + const [txError, setTxError] = useState(); + const [isTxErrorDialogOpen, setIsTxErrorDialogOpen] = useState(false); + const [isRequestAccepted, setIsRequestAccepted] = useState(false); + + const navigation = + useNavigation>(); + + const requestedNetwork = networksData.find( + networkData => + `${networkData.namespace}:${networkData.chainId}` === chainId, + ); + const namespace = requestedNetwork!.namespace; + + useEffect(() => { + if (namespace !== COSMOS) { + return; + } + + const setClient = async () => { + if (!account) { + return; + } + + const cosmosPrivKey = ( + await getPathKey( + `${requestedNetwork?.namespace}:${requestedNetwork?.chainId}`, + account.index, + ) + ).privKey; + + const sender = await DirectSecp256k1Wallet.fromKey( + Buffer.from(cosmosPrivKey.split('0x')[1], 'hex'), + requestedNetwork?.addressPrefix, + ); + + try { + const client = await LaconicClient.connectWithSigner( + requestedNetwork?.rpcUrl!, + sender, + ); + setCosmosStargateClient(client); + } catch (error: any) { + setTxError(error.message); + setIsTxErrorDialogOpen(true); + const response = formatJsonRpcError(requestEventId, error.message); + await web3wallet!.respondSessionRequest({ topic, response }); + } + }; + + setClient(); + }, [account, requestedNetwork, chainId, namespace, requestEventId, topic]); + + const retrieveData = useCallback( + async (requestAddress: string) => { + const requestAccount = await retrieveSingleAccount( + requestedNetwork!.namespace, + requestedNetwork!.chainId, + requestAddress, + ); + if (!requestAccount) { + navigation.navigate('InvalidPath'); + return; + } + + setAccount(requestAccount); + }, + [navigation, requestedNetwork], + ); + + useEffect(() => { + retrieveData(signer); + }, [retrieveData, signer]); + + useEffect(() => { + const getCosmosGas = async () => { + try { + if (!cosmosStargateClient) { + return; + } + const gasEstimation = await cosmosStargateClient!.simulate( + transactionMessage.value.participant!, + [transactionMessage], + MEMO, + ); + + setCosmosGasLimit( + String( + Math.round(gasEstimation * Number(Config.DEFAULT_GAS_ADJUSTMENT)), + ), + ); + } catch (error: any) { + setTxError(error.message); + setIsTxErrorDialogOpen(true); + const response = formatJsonRpcError(requestEventId, error.message); + await web3wallet!.respondSessionRequest({ topic, response }); + } + }; + getCosmosGas(); + }, [cosmosStargateClient, transactionMessage, requestEventId, topic]); + + useEffect(() => { + const gasPrice = GasPrice.fromString( + requestedNetwork?.gasPrice! + requestedNetwork?.nativeDenom, + ); + + if (!cosmosGasLimit) { + return; + } + + const cosmosFees = calculateFee(Number(cosmosGasLimit), gasPrice); + + setFees(cosmosFees.amount[0].amount); + }, [namespace, cosmosGasLimit, requestedNetwork]); + + const acceptRequestHandler = async () => { + try { + setIsRequestAccepted(true); + if (!account) { + throw new Error('account not found'); + } + + let options: WalletConnectRequests; + + if (!cosmosStargateClient) { + throw new Error('Cosmos stargate client not found'); + } + + options = { + type: 'cosmos_sendTransaction', + LaconicClient: cosmosStargateClient, + // StdFee object + cosmosFee: { + // This amount is total fees required for transaction + amount: [ + { + amount: fees!, + denom: requestedNetwork!.nativeDenom!, + }, + ], + gas: cosmosGasLimit!, + }, + txMsg: transactionMessage, + }; + + const response = await approveWalletConnectRequest( + requestEvent, + account, + namespace, + requestedNetwork!.chainId, + options, + ); + + await web3wallet!.respondSessionRequest({ topic, response }); + setIsRequestAccepted(false); + navigation.navigate('Laconic'); + } catch (error: any) { + setTxError(error.message); + setIsTxErrorDialogOpen(true); + const response = formatJsonRpcError(requestEventId, error.message); + await web3wallet!.respondSessionRequest({ topic, response }); + } + }; + + const rejectRequestHandler = async () => { + const response = rejectWalletConnectRequest(requestEvent); + await web3wallet!.respondSessionRequest({ + topic, + response, + }); + + navigation.navigate('Laconic'); + }; + + return ( + <> + + + {requestIcon && ( + <> + {requestIcon.endsWith('.svg') ? ( + + + + ) : ( + + )} + + )} + {requestName} + {requestURL} + + + + Message: + + + + {JSON.stringify(transactionMessage, null, 2)} + + + <> + + Gas Limit: + + { + if (IS_NUMBER_REGEX.test(value)) { + setCosmosGasLimit(value); + } + }} + /> + + + + + + + { + setIsTxErrorDialogOpen(false); + navigation.navigate('Laconic'); + }} + /> + + ); +}; + +export default ApproveTransaction; diff --git a/src/screens/ApproveTransfer.tsx b/src/screens/ApproveTransfer.tsx new file mode 100644 index 0000000..f027433 --- /dev/null +++ b/src/screens/ApproveTransfer.tsx @@ -0,0 +1,648 @@ +import React, { useCallback, useEffect, useMemo, useState } from 'react'; +import { Image, ScrollView, View } from 'react-native'; +import { + ActivityIndicator, + Button, + Text, + Appbar, + TextInput, +} from 'react-native-paper'; +import { providers, BigNumber } from 'ethers'; +import Config from 'react-native-config'; +import { Deferrable } from 'ethers/lib/utils'; + +import { useNavigation } from '@react-navigation/native'; +import { + NativeStackNavigationProp, + NativeStackScreenProps, +} from '@react-navigation/native-stack'; +import { getHeaderTitle } from '@react-navigation/elements'; +import { DirectSecp256k1Wallet } from '@cosmjs/proto-signing'; +import { + calculateFee, + GasPrice, + MsgSendEncodeObject, + SigningStargateClient, +} from '@cosmjs/stargate'; + +import { Account, StackParamsList } from '../types'; +import AccountDetails from '../components/AccountDetails'; +import styles from '../styles/stylesheet'; +import { retrieveSingleAccount } from '../utils/accounts'; +import { + approveWalletConnectRequest, + rejectWalletConnectRequest, + WalletConnectRequests, +} from '../utils/wallet-connect/wallet-connect-requests'; +import { web3wallet } from '../utils/wallet-connect/WalletConnectUtils'; +import DataBox from '../components/DataBox'; +import { getPathKey } from '../utils/misc'; +import { useNetworks } from '../context/NetworksContext'; +import { COSMOS, EIP155, IS_NUMBER_REGEX } from '../utils/constants'; +import TxErrorDialog from '../components/TxErrorDialog'; +import { EIP155_SIGNING_METHODS } from '../utils/wallet-connect/EIP155Data'; +import { COSMOS_METHODS } from '../utils/wallet-connect/COSMOSData'; + +export const MEMO = 'Sending signed tx from Laconic Wallet'; +// Reference: https://ethereum.org/en/developers/docs/gas/#what-is-gas-limit +const ETH_MINIMUM_GAS = 21000; + +type SignRequestProps = NativeStackScreenProps< + StackParamsList, + 'ApproveTransfer' +>; + +const ApproveTransfer = ({ route }: SignRequestProps) => { + const { networksData } = useNetworks(); + + const requestSession = route.params.requestSessionData; + const requestName = requestSession.peer.metadata.name; + const requestIcon = requestSession.peer.metadata.icons[0]; + const requestURL = requestSession.peer.metadata.url; + const transaction = route.params.transaction; + const requestEvent = route.params.requestEvent; + const chainId = requestEvent.params.chainId; + const requestMethod = requestEvent.params.request.method; + + const [account, setAccount] = useState(); + const [isLoading, setIsLoading] = useState(true); + const [balance, setBalance] = useState(''); + const [isTxLoading, setIsTxLoading] = useState(false); + const [cosmosStargateClient, setCosmosStargateClient] = + useState(); + const [fees, setFees] = useState(); + const [cosmosGasLimit, setCosmosGasLimit] = useState(); + const [txError, setTxError] = useState(); + const [isTxErrorDialogOpen, setIsTxErrorDialogOpen] = useState(false); + const [ethGasPrice, setEthGasPrice] = useState(); + const [ethGasLimit, setEthGasLimit] = useState(); + const [ethMaxFee, setEthMaxFee] = useState(); + const [ethMaxPriorityFee, setEthMaxPriorityFee] = + useState(); + + const isSufficientFunds = useMemo(() => { + if (!transaction.value) { + return; + } + + if (!balance) { + return; + } + + const amountBigNum = BigNumber.from(String(transaction.value)); + const balanceBigNum = BigNumber.from(balance); + + if (amountBigNum.gte(balanceBigNum)) { + return false; + } else { + return true; + } + }, [balance, transaction]); + + const requestedNetwork = networksData.find( + networkData => + `${networkData.namespace}:${networkData.chainId}` === chainId, + ); + const namespace = requestedNetwork!.namespace; + + const sendMsg: MsgSendEncodeObject = useMemo(() => { + return { + typeUrl: '/cosmos.bank.v1beta1.MsgSend', + value: { + fromAddress: transaction.from, + toAddress: transaction.to, + amount: [ + { + amount: String(transaction.value), + denom: requestedNetwork!.nativeDenom!, + }, + ], + }, + }; + }, [requestedNetwork, transaction]); + + useEffect(() => { + if (namespace !== COSMOS) { + return; + } + + const setClient = async () => { + if (!account) { + return; + } + + const cosmosPrivKey = ( + await getPathKey( + `${requestedNetwork?.namespace}:${requestedNetwork?.chainId}`, + account.index, + ) + ).privKey; + + const sender = await DirectSecp256k1Wallet.fromKey( + Buffer.from(cosmosPrivKey.split('0x')[1], 'hex'), + requestedNetwork?.addressPrefix, + ); + + try { + const client = await SigningStargateClient.connectWithSigner( + requestedNetwork?.rpcUrl!, + sender, + ); + + setCosmosStargateClient(client); + } catch (error: any) { + setTxError(error.message); + setIsTxErrorDialogOpen(true); + } + }; + + setClient(); + }, [account, requestedNetwork, chainId, namespace]); + + const provider = useMemo(() => { + if (namespace === EIP155) { + if (!requestedNetwork) { + throw new Error('Requested chain not supported'); + } + try { + const ethProvider = new providers.JsonRpcProvider( + requestedNetwork.rpcUrl, + ); + + return ethProvider; + } catch (error: any) { + setTxError(error.message); + setIsTxErrorDialogOpen(true); + } + } + }, [requestedNetwork, namespace]); + + const navigation = + useNavigation>(); + + const retrieveData = useCallback( + async (requestAddress: string) => { + const requestAccount = await retrieveSingleAccount( + requestedNetwork!.namespace, + requestedNetwork!.chainId, + requestAddress, + ); + if (!requestAccount) { + navigation.navigate('InvalidPath'); + return; + } + + setAccount(requestAccount); + }, + [navigation, requestedNetwork], + ); + + useEffect(() => { + // Set loading to false when gas values for requested chain are fetched + // If requested chain is EVM compatible, the cosmos gas values will be undefined and vice-versa, hence the condition checks only one of them at the same time + if ( + // If requested chain is EVM compatible, set loading to false when ethMaxFee and ethPriorityFee have been populated + (ethMaxFee !== undefined && ethMaxPriorityFee !== undefined) || + // Or if requested chain is a cosmos chain, set loading to false when cosmosGasLimit has been populated + cosmosGasLimit !== undefined + ) { + setIsLoading(false); + } + }, [ethMaxFee, ethMaxPriorityFee, cosmosGasLimit]); + + useEffect(() => { + if (namespace === EIP155) { + const ethFees = BigNumber.from(ethGasLimit ?? 0) + .mul(BigNumber.from(ethMaxFee ?? ethGasPrice ?? 0)) + .toString(); + setFees(ethFees); + } else { + const gasPrice = GasPrice.fromString( + requestedNetwork?.gasPrice! + requestedNetwork?.nativeDenom, + ); + + if (!cosmosGasLimit) { + return; + } + + const cosmosFees = calculateFee(Number(cosmosGasLimit), gasPrice); + + setFees(cosmosFees.amount[0].amount); + } + }, [ + transaction, + namespace, + ethGasLimit, + ethGasPrice, + cosmosGasLimit, + requestedNetwork, + ethMaxFee, + ]); + useEffect(() => { + retrieveData(transaction.from!); + }, [retrieveData, transaction]); + + const isEIP1559 = useMemo(() => { + if (cosmosGasLimit) { + return; + } + if (ethMaxFee !== null && ethMaxPriorityFee !== null) { + return true; + } + return false; + }, [cosmosGasLimit, ethMaxFee, ethMaxPriorityFee]); + + const acceptRequestHandler = async () => { + setIsTxLoading(true); + try { + if (!account) { + throw new Error('account not found'); + } + + if (ethGasLimit && ethGasLimit.lt(ETH_MINIMUM_GAS)) { + throw new Error(`Atleast ${ETH_MINIMUM_GAS} gas limit is required`); + } + + if (ethMaxFee && ethMaxPriorityFee && ethMaxFee.lte(ethMaxPriorityFee)) { + throw new Error( + `Max fee per gas (${ethMaxFee.toNumber()}) cannot be lower than or equal to max priority fee per gas (${ethMaxPriorityFee.toNumber()})`, + ); + } + + let options: WalletConnectRequests; + + switch (requestMethod) { + case EIP155_SIGNING_METHODS.ETH_SEND_TRANSACTION: + if ( + ethMaxFee === undefined || + ethMaxPriorityFee === undefined || + ethGasPrice === undefined + ) { + throw new Error('Gas values not found'); + } + + options = { + type: 'eth_sendTransaction', + provider: provider!, + ethGasLimit: BigNumber.from(ethGasLimit), + ethGasPrice: ethGasPrice ? ethGasPrice.toHexString() : null, + maxFeePerGas: ethMaxFee, + maxPriorityFeePerGas: ethMaxPriorityFee, + }; + break; + case COSMOS_METHODS.COSMOS_SEND_TOKENS: + if (!cosmosStargateClient) { + throw new Error('Cosmos stargate client not found'); + } + + options = { + type: 'cosmos_sendTokens', + signingStargateClient: cosmosStargateClient, + // StdFee object + cosmosFee: { + // This amount is total fees required for transaction + amount: [ + { + amount: fees!, + denom: requestedNetwork!.nativeDenom!, + }, + ], + gas: cosmosGasLimit!, + }, + sendMsg, + memo: MEMO, + }; + + break; + + default: + throw new Error('Invalid method'); + } + + const response = await approveWalletConnectRequest( + requestEvent, + account, + namespace, + requestedNetwork!.chainId, + options, + ); + + const { topic } = requestEvent; + await web3wallet!.respondSessionRequest({ topic, response }); + navigation.navigate('Laconic'); + } catch (error: any) { + setTxError(error.message); + setIsTxErrorDialogOpen(true); + } + setIsTxLoading(false); + }; + + const rejectRequestHandler = async () => { + const response = rejectWalletConnectRequest(requestEvent); + const { topic } = requestEvent; + await web3wallet!.respondSessionRequest({ + topic, + response, + }); + + navigation.navigate('Laconic'); + }; + + useEffect(() => { + const getAccountBalance = async () => { + try { + if (!account) { + return; + } + if (namespace === EIP155) { + if (!provider) { + return; + } + const fetchedBalance = await provider.getBalance(account.address); + setBalance(fetchedBalance ? fetchedBalance.toString() : '0'); + } else { + const cosmosBalance = await cosmosStargateClient?.getBalance( + account.address, + requestedNetwork!.nativeDenom!.toLowerCase(), + ); + + setBalance(cosmosBalance?.amount!); + } + } catch (error: any) { + setTxError(error.message); + setIsTxErrorDialogOpen(true); + } + }; + + getAccountBalance(); + }, [account, provider, namespace, cosmosStargateClient, requestedNetwork]); + + useEffect(() => { + navigation.setOptions({ + // eslint-disable-next-line react/no-unstable-nested-components + header: ({ options, back }) => { + const title = getHeaderTitle(options, 'Approve Transaction'); + + return ( + + {back && ( + { + await rejectRequestHandler(); + navigation.navigate('Laconic'); + }} + /> + )} + + + ); + }, + }); + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [navigation, route.name]); + + useEffect(() => { + const getEthGas = async () => { + try { + if (!isSufficientFunds || !provider) { + return; + } + + const data = await provider.getFeeData(); + + setEthMaxFee(data.maxFeePerGas); + setEthMaxPriorityFee(data.maxPriorityFeePerGas); + setEthGasPrice(data.gasPrice); + + if (transaction.gasLimit) { + setEthGasLimit(BigNumber.from(transaction.gasLimit)); + } else { + const transactionObject: Deferrable = { + from: transaction.from!, + to: transaction.to!, + data: transaction.data!, + value: transaction.value!, + maxFeePerGas: data.maxFeePerGas ?? undefined, + maxPriorityFeePerGas: data.maxPriorityFeePerGas ?? undefined, + gasPrice: data.maxFeePerGas + ? undefined + : data.gasPrice ?? undefined, + }; + const gasLimit = await provider.estimateGas(transactionObject); + setEthGasLimit(gasLimit); + } + } catch (error: any) { + setTxError(error.message); + setIsTxErrorDialogOpen(true); + } + }; + getEthGas(); + }, [provider, transaction, isSufficientFunds]); + + useEffect(() => { + const getCosmosGas = async () => { + try { + if (!cosmosStargateClient) { + return; + } + if (!isSufficientFunds) { + return; + } + + const gasEstimation = await cosmosStargateClient.simulate( + transaction.from!, + [sendMsg], + MEMO, + ); + + setCosmosGasLimit( + String( + Math.round(gasEstimation * Number(Config.DEFAULT_GAS_ADJUSTMENT)), + ), + ); + } catch (error: any) { + setTxError(error.message); + setIsTxErrorDialogOpen(true); + } + }; + getCosmosGas(); + }, [cosmosStargateClient, isSufficientFunds, sendMsg, transaction]); + + useEffect(() => { + if (balance && !isSufficientFunds) { + setTxError('Insufficient funds'); + setIsTxErrorDialogOpen(true); + } + }, [isSufficientFunds, balance]); + + return ( + <> + {isLoading ? ( + + + + ) : ( + <> + + + {requestIcon && ( + + )} + {requestName} + {requestURL} + + + From + + + + + + {transaction && ( + + + + + {namespace === EIP155 ? ( + <> + {isEIP1559 === false ? ( + <> + + {'Gas Price (wei)'} + + + setEthGasPrice(BigNumber.from(value)) + } + style={styles.transactionFeesInput} + /> + + ) : ( + <> + + Max Fee Per Gas (wei) + + { + if (IS_NUMBER_REGEX.test(value)) { + setEthMaxFee(BigNumber.from(value)); + } + }} + style={styles.transactionFeesInput} + /> + + Max Priority Fee Per Gas (wei) + + { + if (IS_NUMBER_REGEX.test(value)) { + setEthMaxPriorityFee(BigNumber.from(value)); + } + }} + style={styles.transactionFeesInput} + /> + + )} + Gas Limit + { + if (IS_NUMBER_REGEX.test(value)) { + setEthGasLimit(BigNumber.from(value)); + } + }} + style={styles.transactionFeesInput} + /> + + + + ) : ( + <> + {`Fee (${ + requestedNetwork!.nativeDenom + })`} + setFees(value)} + style={styles.transactionFeesInput} + /> + Gas Limit + { + if (IS_NUMBER_REGEX.test(value)) { + setCosmosGasLimit(value); + } + }} + /> + + )} + + )} + + + + + + + )} + { + setIsTxErrorDialogOpen(false); + if (!isSufficientFunds || !balance || !fees) { + rejectRequestHandler(); + navigation.navigate('Laconic'); + } + }} + /> + + ); +}; + +export default ApproveTransfer; diff --git a/src/screens/EditNetwork.tsx b/src/screens/EditNetwork.tsx new file mode 100644 index 0000000..7bf740f --- /dev/null +++ b/src/screens/EditNetwork.tsx @@ -0,0 +1,197 @@ +import React, { useCallback } from 'react'; +import { View } from 'react-native'; +import { useForm, Controller, FieldErrors } from 'react-hook-form'; +import { TextInput, Button, HelperText, Text } from 'react-native-paper'; +import { z } from 'zod'; + +import { zodResolver } from '@hookform/resolvers/zod'; +import { + NativeStackNavigationProp, + NativeStackScreenProps, +} from '@react-navigation/native-stack'; +import { useNavigation } from '@react-navigation/native'; + +import { setInternetCredentials } from '../utils/key-store'; +import { StackParamsList } from '../types'; +import styles from '../styles/stylesheet'; +import { retrieveNetworksData } from '../utils/accounts'; +import { useNetworks } from '../context/NetworksContext'; +import { + COSMOS, + EIP155, + EMPTY_FIELD_ERROR, + INVALID_URL_ERROR, +} from '../utils/constants'; + +const ethNetworksFormSchema = z.object({ + // Adding type field for resolving typescript error + type: z.literal(EIP155).optional(), + networkName: z.string().nonempty({ message: EMPTY_FIELD_ERROR }), + rpcUrl: z.string().url({ message: INVALID_URL_ERROR }), + blockExplorerUrl: z + .string() + .url({ message: INVALID_URL_ERROR }) + .or(z.literal('')), +}); + +const cosmosNetworksFormDataSchema = z.object({ + type: z.literal(COSMOS).optional(), + networkName: z.string().nonempty({ message: EMPTY_FIELD_ERROR }), + rpcUrl: z.string().url({ message: INVALID_URL_ERROR }), + blockExplorerUrl: z + .string() + .url({ message: INVALID_URL_ERROR }) + .or(z.literal('')), + gasPrice: z + .string() + .nonempty({ message: EMPTY_FIELD_ERROR }) + .regex(/^\d+(\.\d+)?$/), +}); + +type EditNetworkProps = NativeStackScreenProps; + +const EditNetwork = ({ route }: EditNetworkProps) => { + const { setNetworksData } = useNetworks(); + const navigation = + useNavigation>(); + + const networkData = route.params.selectedNetwork; + + const networksFormDataSchema = + networkData.namespace === COSMOS + ? cosmosNetworksFormDataSchema + : ethNetworksFormSchema; + + const { + control, + formState: { errors, isSubmitting }, + handleSubmit, + } = useForm>({ + mode: 'onChange', + resolver: zodResolver(networksFormDataSchema), + }); + + const submit = useCallback( + async (data: z.infer) => { + const retrievedNetworksData = await retrieveNetworksData(); + const { type, ...dataWithoutType } = data; + const newNetworkData = { ...networkData, ...dataWithoutType }; + const index = retrievedNetworksData.findIndex( + network => network.networkId === networkData.networkId, + ); + + retrievedNetworksData.splice(index, 1, newNetworkData); + + await setInternetCredentials( + 'networks', + '_', + JSON.stringify(retrievedNetworksData), + ); + + setNetworksData(retrievedNetworksData); + + navigation.navigate('Laconic'); + }, + [networkData, navigation, setNetworksData], + ); + + return ( + + + + Edit {networkData?.networkName} details + + + ( + <> + onChange(textValue)} + /> + {errors.networkName?.message} + + )} + /> + ( + <> + onChange(textValue)} + /> + {errors.rpcUrl?.message} + + )} + /> + + ( + <> + onChange(textValue)} + /> + + {errors.blockExplorerUrl?.message} + + + )} + /> + {networkData.namespace === COSMOS && ( + ( + <> + + + { + ( + errors as FieldErrors< + z.infer + > + ).gasPrice?.message + } + + + )} + /> + )} + + + ); +}; + +export default EditNetwork; diff --git a/src/screens/HomeScreen.tsx b/src/screens/HomeScreen.tsx new file mode 100644 index 0000000..40dad76 --- /dev/null +++ b/src/screens/HomeScreen.tsx @@ -0,0 +1,176 @@ +import React, { useCallback, useEffect, useState } from 'react'; +import { View, ActivityIndicator, Image } from 'react-native'; +import { Button, Text } from 'react-native-paper'; + +import { NativeStackNavigationProp } from '@react-navigation/native-stack'; +import { useNavigation } from '@react-navigation/native'; +// import { getSdkError } from '@walletconnect/utils'; + +import { createWallet, resetWallet, retrieveAccounts } from '../utils/accounts'; +import { DialogComponent } from '../components/Dialog'; +import { NetworkDropdown } from '../components/NetworkDropdown'; +import Accounts from '../components/Accounts'; +import CreateWallet from '../components/CreateWallet'; +import ConfirmDialog from '../components/ConfirmDialog'; +import styles from '../styles/stylesheet'; +import { useAccounts } from '../context/AccountsContext'; +import { useWalletConnect } from '../context/WalletConnectContext'; +import { NetworksDataState, StackParamsList } from '../types'; +import { web3wallet } from '../utils/wallet-connect/WalletConnectUtils'; +import { useNetworks } from '../context/NetworksContext'; + +const WCLogo = () => { + return ( + + ); +}; + +const HomeScreen = () => { + const { accounts, setAccounts, setCurrentIndex } = useAccounts(); + + const { networksData, selectedNetwork, setSelectedNetwork, setNetworksData } = + useNetworks(); + const { setActiveSessions } = useWalletConnect(); + + const navigation = + useNavigation>(); + useEffect(() => { + if (accounts.length > 0) { + navigation.setOptions({ + // eslint-disable-next-line react/no-unstable-nested-components + headerRight: () => ( + + ), + }); + } else { + navigation.setOptions({ + headerRight: undefined, + }); + } + }, [navigation, accounts]); + + const [isWalletCreated, setIsWalletCreated] = useState(false); + const [isWalletCreating, setIsWalletCreating] = useState(false); + const [walletDialog, setWalletDialog] = useState(false); + const [resetWalletDialog, setResetWalletDialog] = useState(false); + // const [isAccountsFetched, setIsAccountsFetched] = useState(false); + const [isAccountsFetched, setIsAccountsFetched] = useState(true); + const [phrase, setPhrase] = useState(''); + + const hideWalletDialog = () => setWalletDialog(false); + const hideResetDialog = () => setResetWalletDialog(false); + + const fetchAccounts = useCallback(async () => { + if (!selectedNetwork) { + return; + } + + const loadedAccounts = await retrieveAccounts(selectedNetwork); + + if (loadedAccounts) { + setAccounts(loadedAccounts); + setIsWalletCreated(true); + } + + setIsAccountsFetched(true); + }, [selectedNetwork, setAccounts]); + + const createWalletHandler = async () => { + setIsWalletCreating(true); + const mnemonic = await createWallet(networksData); + if (mnemonic) { + fetchAccounts(); + setWalletDialog(true); + setPhrase(mnemonic); + setSelectedNetwork(networksData[0]); + } + }; + + const confirmResetWallet = useCallback(async () => { + setIsWalletCreated(false); + setIsWalletCreating(false); + setAccounts([]); + setCurrentIndex(0); + setNetworksData([]); + setSelectedNetwork(undefined); + await resetWallet(); + // const sessions = web3wallet!.getActiveSessions(); + + // Object.keys(sessions).forEach(async sessionId => { + // await web3wallet!.disconnectSession({ + // topic: sessionId, + // reason: getSdkError('USER_DISCONNECTED'), + // }); + // }); + setActiveSessions({}); + + hideResetDialog(); + }, [ + setAccounts, + setActiveSessions, + setCurrentIndex, + setNetworksData, + setSelectedNetwork, + ]); + + const updateNetwork = (networkData: NetworksDataState) => { + setSelectedNetwork(networkData); + setCurrentIndex(0); + }; + + useEffect(() => { + fetchAccounts(); + }, [networksData, setAccounts, selectedNetwork, fetchAccounts]); + + return ( + + {!isAccountsFetched ? ( + + Loading... + + + ) : isWalletCreated && selectedNetwork ? ( + <> + + + + + + + + + ) : ( + + )} + + + + ); +}; + +export default HomeScreen; diff --git a/src/screens/InvalidPath.tsx b/src/screens/InvalidPath.tsx new file mode 100644 index 0000000..eadef12 --- /dev/null +++ b/src/screens/InvalidPath.tsx @@ -0,0 +1,30 @@ +import React from 'react'; +import { View, Text } from 'react-native'; +import { Button } from 'react-native-paper'; + +import { NativeStackNavigationProp } from '@react-navigation/native-stack'; +import { useNavigation } from '@react-navigation/native'; + +import { StackParamsList } from '../types'; +import styles from '../styles/stylesheet'; + +const InvalidPath = () => { + const navigation = + useNavigation>(); + return ( + + + The signature request was invalid. + + + + ); +}; + +export default InvalidPath; diff --git a/src/screens/SignMessage.tsx b/src/screens/SignMessage.tsx new file mode 100644 index 0000000..4ee8972 --- /dev/null +++ b/src/screens/SignMessage.tsx @@ -0,0 +1,60 @@ +import React, { useState } from 'react'; +import { View, Alert } from 'react-native'; +import { Button, Text, TextInput } from 'react-native-paper'; + +import { NativeStackScreenProps } from '@react-navigation/native-stack'; + +import { StackParamsList } from '../types'; +import styles from '../styles/stylesheet'; +import { signMessage } from '../utils/sign-message'; +import AccountDetails from '../components/AccountDetails'; + +type SignProps = NativeStackScreenProps; + +const SignMessage = ({ route }: SignProps) => { + const namespace = route.params.selectedNamespace; + const chainId = route.params.selectedChainId; + const account = route.params.accountInfo; + + const [message, setMessage] = useState(''); + + const signMessageHandler = async () => { + const signedMessage = await signMessage({ + message, + namespace, + chainId, + accountId: account.index, + }); + Alert.alert('Signature', signedMessage); + }; + + return ( + + + + + {account && `Account ${account.index + 1}`} + + + + + + + + setMessage(text)} + value={message} + /> + + + + + + ); +}; + +export default SignMessage; diff --git a/src/screens/SignRequest.tsx b/src/screens/SignRequest.tsx new file mode 100644 index 0000000..931115b --- /dev/null +++ b/src/screens/SignRequest.tsx @@ -0,0 +1,330 @@ +import React, { useCallback, useEffect, useMemo, useState } from 'react'; +import { Alert, Image, ScrollView, View } from 'react-native'; +import { ActivityIndicator, Button, Text, Appbar } from 'react-native-paper'; +import { SvgUri } from 'react-native-svg'; + +import { useNavigation } from '@react-navigation/native'; +import { + NativeStackNavigationProp, + NativeStackScreenProps, +} from '@react-navigation/native-stack'; +import { getHeaderTitle } from '@react-navigation/elements'; + +import { Account, StackParamsList } from '../types'; +import AccountDetails from '../components/AccountDetails'; +import styles from '../styles/stylesheet'; +import { signMessage } from '../utils/sign-message'; +import { retrieveSingleAccount } from '../utils/accounts'; +import { + approveWalletConnectRequest, + rejectWalletConnectRequest, + WalletConnectRequests, +} from '../utils/wallet-connect/wallet-connect-requests'; +import { web3wallet } from '../utils/wallet-connect/WalletConnectUtils'; +import { EIP155_SIGNING_METHODS } from '../utils/wallet-connect/EIP155Data'; +import { useNetworks } from '../context/NetworksContext'; +import { COSMOS_METHODS } from '../utils/wallet-connect/COSMOSData'; + +type SignRequestProps = NativeStackScreenProps; + +const SignRequest = ({ route }: SignRequestProps) => { + const { networksData } = useNetworks(); + + const requestSession = route.params.requestSessionData; + const requestName = requestSession?.peer?.metadata?.name; + const requestIcon = requestSession?.peer?.metadata?.icons[0]; + const requestURL = requestSession?.peer?.metadata?.url; + + const [account, setAccount] = useState(); + const [message, setMessage] = useState(''); + const [namespace, setNamespace] = useState(''); + const [chainId, setChainId] = useState(''); + const [isLoading, setIsLoading] = useState(true); + const [isApproving, setIsApproving] = useState(false); + const [isRejecting, setIsRejecting] = useState(false); + + const navigation = + useNavigation>(); + + const isCosmosSignDirect = useMemo(() => { + const requestParams = route.params.requestEvent; + + if (!requestParams) { + return false; + } + + return requestParams.params.request.method === 'cosmos_signDirect'; + }, [route.params]); + + const isEthSendTransaction = useMemo(() => { + const requestParams = route.params.requestEvent; + + if (!requestParams) { + return false; + } + + return ( + requestParams.params.request.method === + EIP155_SIGNING_METHODS.ETH_SEND_TRANSACTION + ); + }, [route.params]); + + const retrieveData = useCallback( + async ( + requestNamespace: string, + requestChainId: string, + requestAddress: string, + requestMessage: string, + ) => { + const requestAccount = await retrieveSingleAccount( + requestNamespace, + requestChainId, + requestAddress, + ); + if (!requestAccount) { + navigation.navigate('InvalidPath'); + return; + } + + if (requestAccount !== account) { + setAccount(requestAccount); + } + if (requestMessage !== message) { + setMessage(decodeURIComponent(requestMessage)); + } + if (requestNamespace !== namespace) { + setNamespace(requestNamespace); + } + if (requestChainId !== chainId) { + setChainId(requestChainId); + } + setIsLoading(false); + }, + [account, message, navigation, namespace, chainId], + ); + + const sanitizePath = useCallback( + (path: string) => { + const regex = /^\/sign\/(eip155|cosmos)\/(.+)\/(.+)\/(.+)$/; + const match = path.match(regex); + if (match) { + const [, pathNamespace, pathChainId, pathAddress, pathMessage] = match; + return { + namespace: pathNamespace, + chainId: pathChainId, + address: pathAddress, + message: pathMessage, + }; + } else { + navigation.navigate('InvalidPath'); + } + return null; + }, + [navigation], + ); + + useEffect(() => { + if (route.path) { + const sanitizedRoute = sanitizePath(route.path); + sanitizedRoute && + retrieveData( + sanitizedRoute.namespace, + sanitizedRoute.chainId, + sanitizedRoute.address, + sanitizedRoute.message, + ); + return; + } + const requestEvent = route.params.requestEvent; + const requestChainId = requestEvent?.params.chainId; + + const requestedChain = networksData.find( + networkData => networkData.chainId === requestChainId?.split(':')[1], + ); + + retrieveData( + requestedChain!.namespace, + requestedChain!.chainId, + route.params.address, + route.params.message, + ); + }, [retrieveData, sanitizePath, route, networksData]); + + const handleWalletConnectRequest = async () => { + const { requestEvent } = route.params || {}; + + if (!account) { + throw new Error('account not found'); + } + + if (!requestEvent) { + throw new Error('Request event not found'); + } + + let options: WalletConnectRequests; + + switch (requestEvent.params.request.method) { + case COSMOS_METHODS.COSMOS_SIGN_DIRECT: + options = { + type: 'cosmos_signDirect', + message, + }; + break; + case COSMOS_METHODS.COSMOS_SIGN_AMINO: + options = { + type: 'cosmos_signAmino', + message, + }; + break; + case EIP155_SIGNING_METHODS.PERSONAL_SIGN: + options = { + type: 'personal_sign', + message, + }; + break; + + default: + throw new Error('Invalid Method'); + } + + const response = await approveWalletConnectRequest( + requestEvent, + account, + namespace, + chainId, + options, + ); + + const { topic } = requestEvent; + await web3wallet!.respondSessionRequest({ topic, response }); + }; + + const handleIntent = async () => { + if (!account) { + throw new Error('Account is not valid'); + } + if (message) { + const signedMessage = await signMessage({ + message, + namespace, + chainId, + accountId: account.index, + }); + Alert.alert('Signature', signedMessage); + } + }; + + const signMessageHandler = async () => { + setIsApproving(true); + if (route.params.requestEvent) { + await handleWalletConnectRequest(); + } else { + await handleIntent(); + } + + setIsApproving(false); + navigation.navigate('Laconic'); + }; + + const rejectRequestHandler = async () => { + setIsRejecting(true); + if (route.params?.requestEvent) { + const response = rejectWalletConnectRequest(route.params?.requestEvent); + const { topic } = route.params?.requestEvent; + await web3wallet!.respondSessionRequest({ + topic, + response, + }); + } + + setIsRejecting(false); + navigation.navigate('Laconic'); + }; + + useEffect(() => { + navigation.setOptions({ + // eslint-disable-next-line react/no-unstable-nested-components + header: ({ options, back }) => { + const title = getHeaderTitle(options, 'Sign Request'); + + return ( + + {back && ( + { + await rejectRequestHandler(); + navigation.navigate('Laconic'); + }} + /> + )} + + + ); + }, + }); + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [navigation, route.name]); + + return ( + <> + {isLoading ? ( + + + + ) : ( + <> + + + {requestIcon && ( + <> + {requestIcon.endsWith('.svg') ? ( + + + + ) : ( + + )} + + )} + {requestName} + {requestURL} + + + {isCosmosSignDirect || isEthSendTransaction ? ( + + + {message} + + + ) : ( + + {message} + + )} + + + + + + + )} + + ); +}; + +export default SignRequest; diff --git a/src/screens/WalletConnect.tsx b/src/screens/WalletConnect.tsx new file mode 100644 index 0000000..8ffa483 --- /dev/null +++ b/src/screens/WalletConnect.tsx @@ -0,0 +1,84 @@ +import React, { useEffect } from 'react'; +import { Image, TouchableOpacity, View } from 'react-native'; +import { List, Text } from 'react-native-paper'; +import { SvgUri } from 'react-native-svg'; + +// import { getSdkError } from '@walletconnect/utils'; + +import { useWalletConnect } from '../context/WalletConnectContext'; +import { web3wallet } from '../utils/wallet-connect/WalletConnectUtils'; +import styles from '../styles/stylesheet'; + +export default function WalletConnect() { + const { activeSessions, setActiveSessions } = useWalletConnect(); + + const disconnect = async (sessionId: string) => { + // await web3wallet!.disconnectSession({ + // topic: sessionId, + // reason: getSdkError('USER_DISCONNECTED'), + // }); + const sessions = web3wallet?.getActiveSessions() || {}; + setActiveSessions(sessions); + return; + }; + + useEffect(() => { + const sessions = web3wallet!.getActiveSessions(); + setActiveSessions(sessions); + }, [setActiveSessions]); + + return ( + + {Object.keys(activeSessions).length > 0 ? ( + <> + + Active Sessions + + + {Object.entries(activeSessions).map(([sessionId, session]) => ( + ( + <> + {session.peer.metadata.icons[0].endsWith('.svg') ? ( + + + + ) : ( + + )} + + )} + // eslint-disable-next-line react/no-unstable-nested-components + right={() => ( + disconnect(sessionId)} + style={styles.disconnectSession}> + + + )} + /> + ))} + + + ) : ( + + You have no active sessions + + )} + + ); +} diff --git a/src/setupTests.ts b/src/setupTests.ts new file mode 100644 index 0000000..8f2609b --- /dev/null +++ b/src/setupTests.ts @@ -0,0 +1,5 @@ +// jest-dom adds custom jest matchers for asserting on DOM nodes. +// allows you to do things like: +// expect(element).toHaveTextContent(/react/i) +// learn more: https://github.com/testing-library/jest-dom +import '@testing-library/jest-dom'; diff --git a/src/styles/stylesheet.js b/src/styles/stylesheet.js new file mode 100644 index 0000000..c9d8ec0 --- /dev/null +++ b/src/styles/stylesheet.js @@ -0,0 +1,287 @@ +import { StyleSheet } from 'react-native'; + +const styles = StyleSheet.create({ + createWalletContainer: { + marginTop: 20, + width: 150, + alignSelf: 'center', + }, + signLink: { + alignItems: 'flex-end', + marginTop: 24, + }, + hyperlink: { + fontWeight: '500', + textDecorationLine: 'underline', + }, + highlight: { + fontWeight: '700', + }, + accountContainer: { + padding: 8, + paddingBottom: 0, + }, + addAccountButton: { + marginTop: 24, + alignSelf: 'center', + }, + accountComponent: { + flex: 4, + }, + appContainer: { + flexGrow: 1, + marginTop: 24, + paddingHorizontal: 24, + }, + resetContainer: { + flex: 1, + justifyContent: 'center', + }, + resetButton: { + alignSelf: 'center', + }, + signButton: { + marginTop: 20, + width: 150, + alignSelf: 'center', + }, + signPage: { + paddingHorizontal: 24, + }, + addNetwork: { + paddingHorizontal: 24, + marginTop: 30, + }, + accountInfo: { + marginTop: 12, + marginBottom: 30, + }, + networkDropdown: { + marginBottom: 20, + }, + dialogTitle: { + padding: 10, + }, + dialogContents: { + marginTop: 24, + padding: 10, + borderWidth: 1, + borderRadius: 10, + }, + dialogWarning: { + color: 'red', + }, + gridContainer: { + flexDirection: 'row', + flexWrap: 'wrap', + justifyContent: 'center', + }, + gridItem: { + width: '25%', + margin: 8, + padding: 6, + borderWidth: 1, + borderColor: '#ccc', + borderRadius: 8, + alignItems: 'center', + justifyContent: 'flex-start', + }, + HDcontainer: { + marginTop: 24, + paddingHorizontal: 8, + }, + HDrowContainer: { + flexDirection: 'row', + alignItems: 'center', + }, + HDtext: { + color: 'black', + fontSize: 18, + margin: 4, + }, + HDtextInput: { + flex: 1, + }, + HDbuttonContainer: { + marginTop: 20, + width: 200, + alignSelf: 'center', + }, + spinnerContainer: { + flex: 1, + justifyContent: 'center', + alignItems: 'center', + }, + LoadingText: { + color: 'black', + fontSize: 18, + padding: 10, + }, + requestMessage: { + borderWidth: 1, + borderRadius: 5, + marginTop: 50, + height: 'auto', + alignItems: 'center', + justifyContent: 'center', + padding: 10, + }, + requestDirectMessage: { + borderWidth: 1, + borderRadius: 5, + marginTop: 20, + marginBottom: 50, + height: 500, + alignItems: 'center', + justifyContent: 'center', + padding: 8, + }, + approveTransfer: { + height: '40%', + marginBottom: 30, + }, + buttonContainer: { + flexDirection: 'row', + marginLeft: 20, + marginBottom: 10, + justifyContent: 'space-evenly', + }, + badRequestContainer: { + alignItems: 'center', + justifyContent: 'center', + padding: 20, + }, + invalidMessageText: { + color: 'black', + fontSize: 16, + textAlign: 'center', + marginBottom: 20, + }, + container: { + flex: 1, + alignItems: 'center', + justifyContent: 'center', + marginBottom: 10, + paddingHorizontal: 20, + }, + modalContentContainer: { + display: 'flex', + justifyContent: 'center', + alignItems: 'center', + borderRadius: 34, + borderBottomStartRadius: 0, + borderBottomEndRadius: 0, + borderWidth: 1, + width: '100%', + height: '50%', + position: 'absolute', + backgroundColor: 'white', + bottom: 0, + }, + modalOuterContainer: { flex: 1 }, + dappLogo: { + width: 50, + height: 50, + borderRadius: 8, + marginVertical: 16, + overflow: 'hidden', + }, + space: { + width: 50, + }, + flexRow: { + display: 'flex', + flexDirection: 'row', + justifyContent: 'space-between', + alignItems: 'center', + marginTop: 20, + paddingHorizontal: 16, + marginBottom: 10, + }, + marginVertical8: { + marginVertical: 8, + textAlign: 'center', + }, + subHeading: { + textAlign: 'center', + fontWeight: 'bold', + marginBottom: 10, + marginTop: 10, + }, + centerText: { + textAlign: 'center', + }, + messageBody: { + borderWidth: 1, + borderRadius: 6, + paddingVertical: 10, + paddingHorizontal: 10, + marginVertical: 3, + }, + cameraContainer: { + justifyContent: 'center', + alignItems: 'center', + }, + inputContainer: { + marginTop: 20, + }, + camera: { + width: 400, + height: 400, + }, + dappDetails: { + display: 'flex', + alignItems: 'center', + }, + dataBoxContainer: { + marginBottom: 10, + }, + dataBoxLabel: { + fontSize: 18, + fontWeight: 'bold', + marginBottom: 3, + color: 'black', + }, + dataBox: { + borderWidth: 1, + borderColor: '#ccc', + padding: 10, + borderRadius: 5, + }, + dataBoxData: { + fontSize: 16, + color: 'black', + }, + transactionText: { + padding: 8, + fontSize: 18, + fontWeight: 'bold', + color: 'black', + }, + balancePadding: { + padding: 8, + }, + noActiveSessions: { display: 'flex', alignItems: 'center', marginTop: 12 }, + disconnectSession: { display: 'flex', justifyContent: 'center' }, + sessionItem: { paddingLeft: 12, borderBottomWidth: 0.5 }, + sessionsContainer: { paddingLeft: 12, borderBottomWidth: 0.5 }, + walletConnectUriText: { padding: 10 }, + walletConnectLogo: { width: 24, height: 15, margin: 0 }, + selectNetworkText: { + fontWeight: 'bold', + marginVertical: 10, + }, + transactionFeesInput: { marginBottom: 10 }, + approveTransaction: { + flexGrow: 1, + marginTop: 0, + paddingHorizontal: 24, + paddingVertical: 5, + }, + transactionLabel: { + fontWeight: '700', + padding: 8, + }, +}); + +export default styles; diff --git a/src/types.ts b/src/types.ts new file mode 100644 index 0000000..c7a194a --- /dev/null +++ b/src/types.ts @@ -0,0 +1,140 @@ +import { PopulatedTransaction } from 'ethers'; + +// import { SignClientTypes, SessionTypes } from '@walletconnect/types'; +// import { Web3WalletTypes } from '@walletconnect/web3wallet'; +import { EncodeObject } from '@cosmjs/proto-signing'; + +export type StackParamsList = { + Laconic: undefined; + SignMessage: { + selectedNamespace: string; + selectedChainId: string; + accountInfo: Account; + }; + SignRequest: { + namespace: string; + address: string; + message: string; + // requestEvent?: Web3WalletTypes.SessionRequest; + // requestSessionData?: SessionTypes.Struct; + requestEvent?: any; + requestSessionData?: any; + }; + ApproveTransfer: { + transaction: PopulatedTransaction; + // requestEvent: Web3WalletTypes.SessionRequest; + // requestSessionData: SessionTypes.Struct; + requestEvent: any; + requestSessionData: any; + }; + InvalidPath: undefined; + WalletConnect: undefined; + AddSession: undefined; + AddNetwork: undefined; + EditNetwork: { + selectedNetwork: NetworksDataState; + }; + ApproveTransaction: { + transactionMessage: EncodeObject; + signer: string; + // requestEvent: Web3WalletTypes.SessionRequest; + // requestSessionData: SessionTypes.Struct; + requestEvent: any; + requestSessionData: any; + }; +}; + +export type Account = { + index: number; + pubKey: string; + address: string; + hdPath: string; +}; + +export type NetworkDropdownProps = { + updateNetwork: (networksData: NetworksDataState) => void; +}; + +export type NetworksFormData = { + networkName: string; + rpcUrl: string; + chainId: string; + currencySymbol?: string; + blockExplorerUrl?: string; + namespace: string; + nativeDenom?: string; + addressPrefix?: string; + coinType?: string; + gasPrice?: string; + isDefault: boolean; +}; + +export interface NetworksDataState extends NetworksFormData { + networkId: string; +} + +export type SignMessageParams = { + message: string; + namespace: string; + chainId: string; + accountId: number; +}; + +export type CreateWalletProps = { + isWalletCreating: boolean; + createWalletHandler: () => Promise; +}; + +export type ResetDialogProps = { + title: string; + visible: boolean; + hideDialog: () => void; + onConfirm: () => void; +}; + +export type HDPathDialogProps = { + pathCode: string; + visible: boolean; + hideDialog: () => void; + updateAccounts: (account: Account) => void; +}; + +export type CustomDialogProps = { + visible: boolean; + hideDialog: () => void; + contentText: string; + titleText?: string; +}; + +export type GridViewProps = { + words: string[]; +}; + +export type PathState = { + firstNumber: string; + secondNumber: string; + thirdNumber: string; +}; + +export interface PairingModalProps { + visible: boolean; + setModalVisible: (arg1: boolean) => void; + currentProposal: + // | SignClientTypes.EventArguments['session_proposal'] + | undefined; + setCurrentProposal: ( + arg1: + // | SignClientTypes.EventArguments['session_proposal'] + | undefined, + ) => void; + setToastVisible: (arg1: boolean) => void; +} + +export interface WalletConnectContextProps { + // activeSessions: Record; + activeSessions: Record; + setActiveSessions: ( + // activeSessions: Record, + activeSessions: Record, + ) => void; +} diff --git a/src/utils/accounts.ts b/src/utils/accounts.ts new file mode 100644 index 0000000..e844563 --- /dev/null +++ b/src/utils/accounts.ts @@ -0,0 +1,346 @@ +/* Importing this library provides react native with a secure random source. +For more information, "visit https://docs.ethers.org/v5/cookbook/react-native/#cookbook-reactnative-security" */ +import 'react-native-get-random-values'; + +import '@ethersproject/shims'; + +import { utils } from 'ethers'; +import { HDNode } from 'ethers/lib/utils'; + +import { + setInternetCredentials, + resetInternetCredentials, + getInternetCredentials, + } from './key-store'; +import { Secp256k1HdWallet } from '@cosmjs/amino'; +import { AccountData } from '@cosmjs/proto-signing'; +import { stringToPath } from '@cosmjs/crypto'; + +import { Account, NetworksDataState, NetworksFormData } from '../types'; +import { + getHDPath, + getPathKey, + resetKeyServers, + updateAccountIndices, +} from './misc'; +import { COSMOS, EIP155 } from './constants'; + +const createWallet = async ( + networksData: NetworksDataState[], +): Promise => { + const mnemonic = utils.entropyToMnemonic(utils.randomBytes(16)); + await setInternetCredentials('mnemonicServer', 'mnemonic', mnemonic); + + const hdNode = HDNode.fromMnemonic(mnemonic); + + for (const network of networksData) { + const hdPath = `m/44'/${network.coinType}'/0'/0/0`; + const node = hdNode.derivePath(hdPath); + let address; + + switch (network.namespace) { + case EIP155: + address = node.address; + break; + + case COSMOS: + address = ( + await getCosmosAccounts(mnemonic, hdPath, network.addressPrefix) + ).data.address; + break; + + default: + throw new Error('Unsupported namespace'); + } + +const accountInfo = `${hdPath},${node.privateKey},${node.publicKey},${address}`; + + await Promise.all([ + setInternetCredentials( + `accounts/${network.namespace}:${network.chainId}/0`, + '_', + accountInfo, + ), + setInternetCredentials( + `addAccountCounter/${network.namespace}:${network.chainId}`, + '_', + '1', + ), + setInternetCredentials( + `accountIndices/${network.namespace}:${network.chainId}`, + '_', + '0', + ), + ]); + } + + return mnemonic; +}; + +const addAccount = async ( + networkData: NetworksDataState, +): Promise => { + try { + const namespaceChainId = `${networkData.namespace}:${networkData.chainId}`; + const id = await getNextAccountId(namespaceChainId); + const hdPath = getHDPath(namespaceChainId, `0'/0/${id}`); + const accounts = await addAccountFromHDPath(hdPath, networkData); + await updateAccountCounter(namespaceChainId, id); + return accounts; + } catch (error) { + console.error('Error creating account:', error); + } +}; + +const addAccountFromHDPath = async ( + hdPath: string, + networkData: NetworksDataState, +): Promise => { + try { + const account = await accountInfoFromHDPath(hdPath, networkData); + if (!account) { + throw new Error('Error while creating account'); + } + + const { privKey, pubKey, address } = account; + + const namespaceChainId = `${networkData.namespace}:${networkData.chainId}`; + + const index = (await updateAccountIndices(namespaceChainId)).index; + + await Promise.all([ + setInternetCredentials( + `accounts/${namespaceChainId}/${index}`, + '_', + `${hdPath},${privKey},${pubKey},${address}`, + ), + ]); + + return { index, pubKey, address, hdPath }; + } catch (error) { + console.error(error); + } +}; + +const storeNetworkData = async ( + networkData: NetworksFormData, +): Promise => { + const networks = await getInternetCredentials('networks'); + let retrievedNetworks = []; + if (networks) { + retrievedNetworks = JSON.parse(networks!); + } + let networkId = 0; + if (retrievedNetworks.length > 0) { + networkId = retrievedNetworks[retrievedNetworks.length - 1].networkId + 1; + } + + const updatedNetworks: NetworksDataState[] = [ + ...retrievedNetworks, + { + ...networkData, + networkId: String(networkId), + }, + ]; + await setInternetCredentials( + 'networks', + '_', + JSON.stringify(updatedNetworks), + ); + return updatedNetworks; +}; + +const retrieveNetworksData = async (): Promise => { + const networks = await getInternetCredentials('networks'); + + if(!networks){ + return []; + } + const parsedNetworks: NetworksDataState[] = JSON.parse(networks); + return parsedNetworks; +}; + +export const retrieveAccountsForNetwork = async ( + namespaceChainId: string, + accountsIndices: string, +): Promise => { + const accountsIndexArray = accountsIndices.split(','); + + const loadedAccounts = await Promise.all( + accountsIndexArray.map(async i => { + const { address, path, pubKey } = await getPathKey( + namespaceChainId, + Number(i), + ); + + const account: Account = { + index: Number(i), + pubKey, + address, + hdPath: path, + }; + return account; + }), + ); + + return loadedAccounts; +}; + +const retrieveAccounts = async ( + currentNetworkData: NetworksDataState, +): Promise => { + const accountIndicesServer = await getInternetCredentials( + `accountIndices/${currentNetworkData.namespace}:${currentNetworkData.chainId}`, + ); + const accountIndices = accountIndicesServer; + if (!accountIndices) { + return; + } + const loadedAccounts = await retrieveAccountsForNetwork( + `${currentNetworkData.namespace}:${currentNetworkData.chainId}`, + accountIndices, + ) + + return loadedAccounts; +}; + +const retrieveSingleAccount = async ( + namespace: string, + chainId: string, + address: string, +) => { + let loadedAccounts; + + const accountIndicesServer = await getInternetCredentials( + `accountIndices/${namespace}:${chainId}`, + ); + const accountIndices = accountIndicesServer; + + if (!accountIndices) { + throw new Error('Indices for given chain not found'); + } + + loadedAccounts = await retrieveAccountsForNetwork( + `${namespace}:${chainId}`, + accountIndices, + ); + + if (!loadedAccounts) { + throw new Error('Accounts for given chain not found'); + } + + return loadedAccounts.find(account => account.address === address); +}; + +const resetWallet = async () => { + try { + await Promise.all([ + resetInternetCredentials('mnemonicServer'), + resetKeyServers(EIP155), + resetKeyServers(COSMOS), + setInternetCredentials('networks', '_', JSON.stringify([])), + ]); + } catch (error) { + console.error('Error resetting wallet:', error); + throw error; + } +}; + +const accountInfoFromHDPath = async ( + hdPath: string, + networkData: NetworksDataState, +): Promise< + { privKey: string; pubKey: string; address: string } | undefined +> => { + const mnemonicStore = await getInternetCredentials('mnemonicServer'); + if (!mnemonicStore) { + throw new Error('Mnemonic not found!'); + } + + const mnemonic = mnemonicStore; + const hdNode = HDNode.fromMnemonic(mnemonic); + const node = hdNode.derivePath(hdPath); + + const privKey = node.privateKey; + const pubKey = node.publicKey; + + let address: string; + + switch (networkData.namespace) { + case EIP155: + address = node.address; + break; + case COSMOS: + address = ( + await getCosmosAccounts(mnemonic, hdPath, networkData.addressPrefix) + ).data.address; + break; + default: + throw new Error('Invalid wallet type'); + } + return { privKey, pubKey, address }; +}; + +const getNextAccountId = async (namespaceChainId: string): Promise => { + const idStore = await getInternetCredentials( + `addAccountCounter/${namespaceChainId}`, + ); + if (!idStore) { + throw new Error('Account id not found'); + } + + const accountCounter = idStore; + const nextCounter = Number(accountCounter); + return nextCounter; +}; + +const updateAccountCounter = async ( + namespaceChainId: string, + id: number, +): Promise => { + const idStore = await getInternetCredentials( + `addAccountCounter/${namespaceChainId}`, + ); + if (!idStore) { + throw new Error('Account id not found'); + } + + const updatedCounter = String(id + 1); + await resetInternetCredentials(`addAccountCounter/${namespaceChainId}`); + await setInternetCredentials( + `addAccountCounter/${namespaceChainId}`, + '_', + updatedCounter, + ); +}; + +const getCosmosAccounts = async ( + mnemonic: string, + path: string, + prefix: string = COSMOS, +): Promise<{ cosmosWallet: Secp256k1HdWallet; data: AccountData }> => { + const cosmosWallet = await Secp256k1HdWallet.fromMnemonic(mnemonic, { + hdPaths: [stringToPath(path)], + prefix, + }); + + const accountsData = await cosmosWallet.getAccounts(); + const data = accountsData[0]; + + return { cosmosWallet, data }; +}; + +export { + createWallet, + addAccount, + addAccountFromHDPath, + storeNetworkData, + retrieveNetworksData, + retrieveAccounts, + retrieveSingleAccount, + resetWallet, + accountInfoFromHDPath, + getNextAccountId, + updateAccountCounter, + getCosmosAccounts, +}; diff --git a/src/utils/constants.ts b/src/utils/constants.ts new file mode 100644 index 0000000..c4956fc --- /dev/null +++ b/src/utils/constants.ts @@ -0,0 +1,36 @@ +import { COSMOS_TESTNET_CHAINS } from './wallet-connect/COSMOSData'; +import { EIP155_CHAINS } from './wallet-connect/EIP155Data'; + +export const EIP155 = 'eip155'; +export const COSMOS = 'cosmos'; +export const DEFAULT_NETWORKS = [ + { + chainId: '1', + networkName: EIP155_CHAINS['eip155:1'].name, + namespace: EIP155, + rpcUrl: EIP155_CHAINS['eip155:1'].rpc, + blockExplorerUrl: '', + currencySymbol: 'ETH', + coinType: '60', + isDefault: true, + }, + { + chainId: 'theta-testnet-001', + networkName: COSMOS_TESTNET_CHAINS['cosmos:theta-testnet-001'].name, + namespace: COSMOS, + rpcUrl: COSMOS_TESTNET_CHAINS['cosmos:theta-testnet-001'].rpc, + blockExplorerUrl: '', + nativeDenom: 'uatom', + addressPrefix: 'cosmos', + coinType: '118', + gasPrice: '0.025', + isDefault: true, + }, +]; + +export const CHAINID_DEBOUNCE_DELAY = 250; + +export const EMPTY_FIELD_ERROR = 'Field cannot be empty'; +export const INVALID_URL_ERROR = 'Invalid URL'; + +export const IS_NUMBER_REGEX = /^\d+$/; diff --git a/src/utils/key-store.ts b/src/utils/key-store.ts new file mode 100644 index 0000000..534b32e --- /dev/null +++ b/src/utils/key-store.ts @@ -0,0 +1,17 @@ +const setInternetCredentials = (name:string, username:string, password:string) => { + localStorage.setItem(name, password); +}; + +const getInternetCredentials = (name:string) : string | null => { + return localStorage.getItem(name); +}; + +const resetInternetCredentials = (name:string) => { + localStorage.removeItem(name); +}; + +export { + setInternetCredentials, + getInternetCredentials, + resetInternetCredentials +} diff --git a/src/utils/misc.ts b/src/utils/misc.ts new file mode 100644 index 0000000..ed7ba6f --- /dev/null +++ b/src/utils/misc.ts @@ -0,0 +1,158 @@ +/* Importing this library provides react native with a secure random source. +For more information, "visit https://docs.ethers.org/v5/cookbook/react-native/#cookbook-reactnative-security" */ +import 'react-native-get-random-values'; + +import '@ethersproject/shims'; + +import { + getInternetCredentials, + resetInternetCredentials, + setInternetCredentials, +} from './key-store'; + +import { AccountData } from '@cosmjs/amino'; +import { DirectSecp256k1HdWallet } from '@cosmjs/proto-signing'; +import { stringToPath } from '@cosmjs/crypto'; +import { EIP155 } from './constants'; +import { NetworksDataState } from '../types'; + +const getMnemonic = async (): Promise => { + const mnemonicStore = await getInternetCredentials('mnemonicServer'); + if (!mnemonicStore) { + throw new Error('Mnemonic not found!'); + } + + const mnemonic = mnemonicStore; + return mnemonic; +}; + +const getHDPath = (namespaceChainId: string, path: string): string => { + const namespace = namespaceChainId.split(':')[0]; + return namespace === EIP155 ? `m/44'/60'/${path}` : `m/44'/118'/${path}`; +}; + +export const getDirectWallet = async ( + mnemonic: string, + path: string, +): Promise<{ directWallet: DirectSecp256k1HdWallet; data: AccountData }> => { + const directWallet = await DirectSecp256k1HdWallet.fromMnemonic(mnemonic, { + hdPaths: [stringToPath(`m/44'/118'/${path}`)], + }); + const accountsData = await directWallet.getAccounts(); + const data = accountsData[0]; + + return { directWallet, data }; +}; + +const getPathKey = async ( + namespaceChainId: string, + accountId: number, +): Promise<{ + path: string; + privKey: string; + pubKey: string; + address: string; +}> => { + const pathKeyStore = await getInternetCredentials( + `accounts/${namespaceChainId}/${accountId}`, + ); + + if (!pathKeyStore) { + throw new Error('Error while fetching counter'); + } + + const pathKeyVal = pathKeyStore; + const pathkey = pathKeyVal.split(','); + const path = pathkey[0]; + const privKey = pathkey[1]; + const pubKey = pathkey[2]; + const address = pathkey[3]; + + return { path, privKey, pubKey, address }; +}; + +const getAccountIndices = async ( + namespaceChainId: string, +): Promise<{ + accountIndices: string; + indices: number[]; + index: number; +}> => { + const counterStore = await getInternetCredentials( + `accountIndices/${namespaceChainId}`, + ); + + if (!counterStore) { + throw new Error('Error while fetching counter'); + } + + let accountIndices = counterStore; + const indices = accountIndices.split(',').map(Number); + const index = indices[indices.length - 1] + 1; + + return { accountIndices, indices, index }; +}; + +const updateAccountIndices = async ( + namespaceChainId: string, +): Promise<{ accountIndices: string; index: number }> => { + const accountIndicesData = await getAccountIndices(namespaceChainId); + const accountIndices = accountIndicesData.accountIndices; + const index = accountIndicesData.index; + const updatedAccountIndices = `${accountIndices},${index.toString()}`; + + await resetInternetCredentials(`accountIndices/${namespaceChainId}`); + await setInternetCredentials( + `accountIndices/${namespaceChainId}`, + '_', + updatedAccountIndices, + ); + + return { accountIndices: updatedAccountIndices, index }; +}; + +const resetKeyServers = async (namespace: string) => { + const networksServer = await getInternetCredentials('networks'); + if (!networksServer) { + throw new Error('Networks not found.'); + } + + const networksData: NetworksDataState[] = JSON.parse(networksServer); + const filteredNetworks = networksData.filter( + (network: any) => network.namespace === namespace, + ); + + if (filteredNetworks.length === 0) { + throw new Error(`No networks found for namespace ${namespace}.`); + } + + filteredNetworks.forEach(async (network: any) => { + const { chainId } = network; + const namespaceChainId = `${namespace}:${chainId}`; + + const idStore = await getInternetCredentials( + `accountIndices/${namespaceChainId}`, + ); + if (!idStore) { + throw new Error(`Account indices not found for ${namespaceChainId}.`); + } + + const accountIds = idStore; + const ids = accountIds.split(',').map(Number); + const latestId = Math.max(...ids); + + for (let i = 0; i <= latestId; i++) { + await resetInternetCredentials(`accounts/${namespaceChainId}/${i}`); + } + await resetInternetCredentials(`addAccountCounter/${namespaceChainId}`); + await resetInternetCredentials(`accountIndices/${namespaceChainId}`); + }); +}; + +export { + getMnemonic, + getPathKey, + updateAccountIndices, + getHDPath, + resetKeyServers, +}; diff --git a/src/utils/sign-message.ts b/src/utils/sign-message.ts new file mode 100644 index 0000000..7348b7c --- /dev/null +++ b/src/utils/sign-message.ts @@ -0,0 +1,111 @@ +/* Importing this library provides react native with a secure random source. +For more information, "visit https://docs.ethers.org/v5/cookbook/react-native/#cookbook-reactnative-security" */ +import 'react-native-get-random-values'; + +import '@ethersproject/shims'; + +import { Wallet } from 'ethers'; +import { SignDoc } from 'cosmjs-types/cosmos/tx/v1beta1/tx'; + +import { SignMessageParams } from '../types'; +import { getDirectWallet, getMnemonic, getPathKey } from './misc'; +import { getCosmosAccounts } from './accounts'; +import { COSMOS, EIP155 } from './constants'; + +const signMessage = async ({ + message, + namespace, + chainId, + accountId, +}: SignMessageParams): Promise => { + const path = await getPathKey(`${namespace}:${chainId}`, accountId); + + switch (namespace) { + case EIP155: + return await signEthMessage(message, accountId, chainId); + case COSMOS: + return await signCosmosMessage(message, path.path); + default: + throw new Error('Invalid wallet type'); + } +}; + +const signEthMessage = async ( + message: string, + accountId: number, + chainId: string, +): Promise => { + try { + const privKey = (await getPathKey(`${EIP155}:${chainId}`, accountId)) + .privKey; + const wallet = new Wallet(privKey); + const signature = await wallet.signMessage(message); + + return signature; + } catch (error) { + console.error('Error signing Ethereum message:', error); + throw error; + } +}; + +const signCosmosMessage = async ( + message: string, + path: string, +): Promise => { + try { + const mnemonic = await getMnemonic(); + const cosmosAccount = await getCosmosAccounts(mnemonic, path); + const address = cosmosAccount.data.address; + const cosmosSignature = await cosmosAccount.cosmosWallet.signAmino( + address, + { + chain_id: '', + account_number: '0', + sequence: '0', + fee: { + gas: '0', + amount: [], + }, + msgs: [ + { + type: 'sign/MsgSignData', + value: { + signer: address, + data: btoa(message), + }, + }, + ], + memo: '', + }, + ); + + return cosmosSignature.signature.signature; + } catch (error) { + console.error('Error signing Cosmos message:', error); + throw error; + } +}; + +const signDirectMessage = async ( + namespaceChainId: string, + accountId: number, + signDoc: SignDoc, +): Promise => { + try { + const path = (await getPathKey(namespaceChainId, accountId)).path; + const mnemonic = await getMnemonic(); + const { directWallet, data } = await getDirectWallet(mnemonic, path); + + const directSignature = await directWallet.signDirect( + data.address, + signDoc, + ); + + return directSignature.signature.signature; + } catch (error) { + console.error('Error signing Cosmos message:', error); + throw error; + } +}; + +export { signMessage, signEthMessage, signCosmosMessage, signDirectMessage }; diff --git a/src/utils/wallet-connect/COSMOSData.ts b/src/utils/wallet-connect/COSMOSData.ts new file mode 100644 index 0000000..a1c6baf --- /dev/null +++ b/src/utils/wallet-connect/COSMOSData.ts @@ -0,0 +1,42 @@ +// Taken from https://github.com/WalletConnect/web-examples/blob/main/advanced/wallets/react-wallet-v2/src/data/COSMOSData.ts + +/** + * Types + */ +export type TCosmosChain = keyof typeof COSMOS_TESTNET_CHAINS; + +/** + * Chains + */ + +// Added for pay.laconic.com +export const COSMOS_TESTNET_CHAINS: Record< + string, + { + chainId: string; + name: string; + rpc: string; + namespace: string; + } +> = { + 'cosmos:theta-testnet-001': { + chainId: 'theta-testnet-001', + name: 'Cosmos Hub Testnet', + rpc: 'https://rpc-t.cosmos.nodestake.top', + namespace: 'cosmos', + }, +}; + +/** + * Methods + */ +export const COSMOS_SIGNING_METHODS = { + COSMOS_SIGN_DIRECT: 'cosmos_signDirect', + COSMOS_SIGN_AMINO: 'cosmos_signAmino', +}; + +export const COSMOS_METHODS = { + ...COSMOS_SIGNING_METHODS, + COSMOS_SEND_TOKENS: 'cosmos_sendTokens', // Added for pay.laconic.com + COSMOS_SEND_TRANSACTION: 'cosmos_sendTransaction', // Added for testnet onboarding app +}; diff --git a/src/utils/wallet-connect/EIP155Data.ts b/src/utils/wallet-connect/EIP155Data.ts new file mode 100644 index 0000000..f52aa05 --- /dev/null +++ b/src/utils/wallet-connect/EIP155Data.ts @@ -0,0 +1,43 @@ +/** + * @desc Refference list of eip155 chains + * @url https://chainlist.org + */ + +// Taken from https://github.com/WalletConnect/web-examples/blob/main/advanced/wallets/react-wallet-v2/src/data/EIP155Data.ts + +/** + * Types + */ +export type TEIP155Chain = keyof typeof EIP155_CHAINS; + +export type EIP155Chain = { + chainId: number; + name: string; + logo: string; + rgb: string; + rpc: string; + namespace: string; + smartAccountEnabled?: boolean; +}; + +/** + * Chains + */ +export const EIP155_CHAINS: Record = { + 'eip155:1': { + chainId: 1, + name: 'Ethereum', + logo: '/chain-logos/eip155-1.png', + rgb: '99, 125, 234', + rpc: 'https://cloudflare-eth.com/', + namespace: 'eip155', + }, +}; + +/** + * Methods + */ +export const EIP155_SIGNING_METHODS = { + PERSONAL_SIGN: 'personal_sign', + ETH_SEND_TRANSACTION: 'eth_sendTransaction', +}; diff --git a/src/utils/wallet-connect/WalletConnectUtils.tsx b/src/utils/wallet-connect/WalletConnectUtils.tsx new file mode 100644 index 0000000..6d5da87 --- /dev/null +++ b/src/utils/wallet-connect/WalletConnectUtils.tsx @@ -0,0 +1,36 @@ +import Config from 'react-native-config'; + +// import '@walletconnect/react-native-compat'; +import '@ethersproject/shims'; +// import { Core } from '@walletconnect/core'; +// import { ICore } from '@walletconnect/types'; +// import { Web3Wallet, IWeb3Wallet } from '@walletconnect/web3wallet'; + +export let web3wallet: + // | IWeb3Wallet + | any; +export let core: + // | ICore + | any; + +export async function createWeb3Wallet() { + // core = new Core({ + // projectId: Config.WALLET_CONNECT_PROJECT_ID, + // }); + + // web3wallet = await Web3Wallet.init({ + // core, + // metadata: { + // name: 'Laconic Wallet', + // description: 'Laconic Wallet', + // url: 'https://wallet.laconic.com/', + // icons: ['https://avatars.githubusercontent.com/u/92608123'], + // }, + // }); +} + +export async function web3WalletPair(params: { uri: string }) { + if (web3wallet) { + // return await web3wallet.core.pairing.pair({ uri: params.uri }); + } +} diff --git a/src/utils/wallet-connect/common-data.ts b/src/utils/wallet-connect/common-data.ts new file mode 100644 index 0000000..a44912e --- /dev/null +++ b/src/utils/wallet-connect/common-data.ts @@ -0,0 +1,4 @@ +export const NETWORK_METHODS = { + GET_NETWORKS: 'getNetworks', + CHANGE_NETWORK: 'changeNetwork', +}; diff --git a/src/utils/wallet-connect/helpers.ts b/src/utils/wallet-connect/helpers.ts new file mode 100644 index 0000000..d21ebfb --- /dev/null +++ b/src/utils/wallet-connect/helpers.ts @@ -0,0 +1,220 @@ +// Taken from https://medium.com/walletconnect/how-to-build-a-wallet-in-react-native-with-the-web3wallet-sdk-b6f57bf02f9a + +import { utils } from 'ethers'; + +// import { ProposalTypes } from '@walletconnect/types'; + +import { Account, NetworksDataState } from '../../types'; +import { EIP155_SIGNING_METHODS } from './EIP155Data'; +import { mergeWith } from 'lodash'; +import { retrieveAccounts } from '../accounts'; +import { COSMOS, EIP155 } from '../constants'; +import { NETWORK_METHODS } from './common-data'; +import { COSMOS_METHODS } from './COSMOSData'; + +/** + * Converts hex to utf8 string if it is valid bytes + */ +export function convertHexToUtf8(value: string) { + if (utils.isHexString(value)) { + return utils.toUtf8String(value); + } + + return value; +} + +/** + * Gets message from various signing request methods by filtering out + * a value that is not an address (thus is a message). + * If it is a hex string, it gets converted to utf8 string + */ +export function getSignParamsMessage(params: string[]) { + const message = params.filter(p => !utils.isAddress(p))[0]; + + return convertHexToUtf8(message); +} + +export const getNamespaces = async ( + // optionalNamespaces: ProposalTypes.OptionalNamespaces, + // requiredNamespaces: ProposalTypes.RequiredNamespaces, + optionalNamespaces: any, + requiredNamespaces: any, + networksData: NetworksDataState[], + selectedNetwork: NetworksDataState, + accounts: Account[], + currentIndex: number, +) => { + const namespaceChainId = `${selectedNetwork.namespace}:${selectedNetwork.chainId}`; + + const combinedNamespaces = mergeWith( + requiredNamespaces, + optionalNamespaces, + (obj, src) => + Array.isArray(obj) && Array.isArray(src) ? [...src, ...obj] : undefined, + ); + + const walletConnectChains: string[] = []; + + Object.keys(combinedNamespaces).forEach(key => { + const { chains } = combinedNamespaces[key]; + + chains && walletConnectChains.push(...chains); + }); + + // If combinedNamespaces is not empty, send back namespaces object based on requested chains + // Else send back namespaces object using currently selected network + if (Object.keys(combinedNamespaces).length > 0) { + if (!(walletConnectChains.length > 0)) { + return; + } + // Check for unsupported chains + const networkChains = networksData.map( + network => `${network.namespace}:${network.chainId}`, + ); + if (!walletConnectChains.every(chain => networkChains.includes(chain))) { + const unsupportedChains = walletConnectChains.filter( + chain => !networkChains.includes(chain), + ); + throw new Error(`Unsupported chains : ${unsupportedChains.join(',')}`); + } + + // Get required networks + const requiredNetworks = networksData.filter(network => + walletConnectChains.includes(`${network.namespace}:${network.chainId}`), + ); + // Get accounts for required networks + const requiredAddressesPromise = requiredNetworks.map( + async requiredNetwork => { + const retrievedAccounts = await retrieveAccounts(requiredNetwork); + + if (!retrievedAccounts) { + throw new Error('Accounts for given network not found'); + } + + const addresses = retrievedAccounts.map( + retrieveAccount => + `${requiredNetwork.namespace}:${requiredNetwork.chainId}:${retrieveAccount.address}`, + ); + + return addresses; + }, + ); + + const requiredAddressesArray = await Promise.all(requiredAddressesPromise); + const requiredAddresses = requiredAddressesArray.flat(); + + let sortedAccounts = requiredAddresses; + + // If selected network is included in chains requested from dApp, + // Put selected account as first account + if (walletConnectChains.includes(namespaceChainId)) { + const currentAddresses = requiredAddresses.filter(address => + address.includes(namespaceChainId), + ); + sortedAccounts = [ + currentAddresses[currentIndex], + ...currentAddresses.filter((address, index) => index !== currentIndex), + ...requiredAddresses.filter( + address => !currentAddresses.includes(address), + ), + ]; + } + + // construct namespace object + const newNamespaces = { + eip155: { + chains: walletConnectChains.filter(chain => chain.includes(EIP155)), + // TODO: Debug optional namespace methods and events being required for approval + methods: [ + ...Object.values(EIP155_SIGNING_METHODS), + ...Object.values(NETWORK_METHODS), + ...(optionalNamespaces.eip155?.methods ?? []), + ...(requiredNamespaces.eip155?.methods ?? []), + ], + events: [ + ...(optionalNamespaces.eip155?.events ?? []), + ...(requiredNamespaces.eip155?.events ?? []), + ], + accounts: sortedAccounts.filter(account => account.includes(EIP155)), + }, + cosmos: { + chains: walletConnectChains.filter(chain => chain.includes(COSMOS)), + methods: [ + ...Object.values(COSMOS_METHODS), + ...Object.values(NETWORK_METHODS), + ...(optionalNamespaces.cosmos?.methods ?? []), + ...(requiredNamespaces.cosmos?.methods ?? []), + ], + events: [ + ...(optionalNamespaces.cosmos?.events ?? []), + ...(requiredNamespaces.cosmos?.events ?? []), + ], + accounts: sortedAccounts.filter(account => account.includes(COSMOS)), + }, + }; + + return newNamespaces; + } else { + // Set selected account as the first account in supported namespaces + const sortedAccounts = [ + accounts[currentIndex], + ...accounts.filter((account, index) => index !== currentIndex), + ]; + + switch (selectedNetwork.namespace) { + case EIP155: + return { + eip155: { + chains: [namespaceChainId], + // TODO: Debug optional namespace methods and events being required for approval + methods: [ + ...Object.values(EIP155_SIGNING_METHODS), + ...Object.values(NETWORK_METHODS), + ...(optionalNamespaces.eip155?.methods ?? []), + ...(requiredNamespaces.eip155?.methods ?? []), + ], + events: [ + ...(optionalNamespaces.eip155?.events ?? []), + ...(requiredNamespaces.eip155?.events ?? []), + ], + accounts: sortedAccounts.map(ethAccount => { + return `${namespaceChainId}:${ethAccount.address}`; + }), + }, + cosmos: { + chains: [], + methods: [], + events: [], + accounts: [], + }, + }; + case COSMOS: + return { + cosmos: { + chains: [namespaceChainId], + methods: [ + ...Object.values(COSMOS_METHODS), + ...Object.values(NETWORK_METHODS), + ...(optionalNamespaces.cosmos?.methods ?? []), + ...(requiredNamespaces.cosmos?.methods ?? []), + ], + events: [ + ...(optionalNamespaces.cosmos?.events ?? []), + ...(requiredNamespaces.cosmos?.events ?? []), + ], + accounts: sortedAccounts.map(cosmosAccount => { + return `${namespaceChainId}:${cosmosAccount.address}`; + }), + }, + eip155: { + chains: [], + methods: [], + events: [], + accounts: [], + }, + }; + default: + break; + } + } +}; diff --git a/src/utils/wallet-connect/wallet-connect-requests.ts b/src/utils/wallet-connect/wallet-connect-requests.ts new file mode 100644 index 0000000..f33182e --- /dev/null +++ b/src/utils/wallet-connect/wallet-connect-requests.ts @@ -0,0 +1,221 @@ +// Taken from https://medium.com/walletconnect/how-to-build-a-wallet-in-react-native-with-the-web3wallet-sdk-b6f57bf02f9a +import { BigNumber, Wallet, providers } from 'ethers'; + +import { formatJsonRpcError, formatJsonRpcResult } from '@json-rpc-tools/utils'; +// import { SignClientTypes } from '@walletconnect/types'; +// import { getSdkError } from '@walletconnect/utils'; +import { + SigningStargateClient, + StdFee, + MsgSendEncodeObject, +} from '@cosmjs/stargate'; +import { EncodeObject } from '@cosmjs/proto-signing'; +import { LaconicClient } from '@cerc-io/registry-sdk'; + +import { EIP155_SIGNING_METHODS } from './EIP155Data'; +import { signDirectMessage, signEthMessage } from '../sign-message'; +import { Account } from '../../types'; +import { getMnemonic, getPathKey } from '../misc'; +import { getCosmosAccounts } from '../accounts'; +import { COSMOS_METHODS } from './COSMOSData'; + +interface EthSendTransaction { + type: 'eth_sendTransaction'; + provider: providers.JsonRpcProvider; + ethGasLimit: BigNumber; + ethGasPrice: string | null; + maxPriorityFeePerGas: BigNumber | null; + maxFeePerGas: BigNumber | null; +} + +interface SignMessage { + message: string; +} +interface EthPersonalSign extends SignMessage { + type: 'personal_sign'; +} + +interface CosmosSignDirect extends SignMessage { + type: 'cosmos_signDirect'; +} + +interface CosmosSignAmino extends SignMessage { + type: 'cosmos_signAmino'; +} + +interface CosmosSendTokens { + type: 'cosmos_sendTokens'; + signingStargateClient: SigningStargateClient; + cosmosFee: StdFee; + sendMsg: MsgSendEncodeObject; + memo: string; +} + +interface CosmosSendTransaction { + type: 'cosmos_sendTransaction'; + LaconicClient: LaconicClient; + cosmosFee: StdFee; + txMsg: EncodeObject; +} + +export type WalletConnectRequests = + | EthSendTransaction + | EthPersonalSign + | CosmosSignDirect + | CosmosSignAmino + | CosmosSendTokens + | CosmosSendTransaction; + +export async function approveWalletConnectRequest( + // requestEvent: SignClientTypes.EventArguments['session_request'], + requestEvent: any, + account: Account, + namespace: string, + chainId: string, + options: WalletConnectRequests, +) { + const { params, id } = requestEvent; + const { request } = params; + + const path = (await getPathKey(`${namespace}:${chainId}`, account.index)) + .path; + const mnemonic = await getMnemonic(); + const cosmosAccount = await getCosmosAccounts(mnemonic, path); + const address = account.address; + + switch (request.method) { + case EIP155_SIGNING_METHODS.ETH_SEND_TRANSACTION: + if (!(options.type === 'eth_sendTransaction')) { + throw new Error('Incorrect parameters passed'); + } + + const privKey = ( + await getPathKey(`${namespace}:${chainId}`, account.index) + ).privKey; + const wallet = new Wallet(privKey); + const sendTransaction = request.params[0]; + const updatedTransaction = + options.maxFeePerGas && options.maxPriorityFeePerGas + ? { + ...sendTransaction, + gasLimit: options.ethGasLimit, + maxFeePerGas: options.maxFeePerGas, + maxPriorityFeePerGas: options.maxPriorityFeePerGas, + type: 2, + } + : { + ...sendTransaction, + gasLimit: options.ethGasLimit, + gasPrice: options.ethGasPrice, + type: 0, + }; + + const connectedWallet = wallet.connect(options.provider); + + const hash = await connectedWallet.sendTransaction(updatedTransaction); + const receipt = typeof hash === 'string' ? hash : hash?.hash; + return formatJsonRpcResult(id, { + signature: receipt, + }); + + case EIP155_SIGNING_METHODS.PERSONAL_SIGN: + if (!(options.type === 'personal_sign')) { + throw new Error('Incorrect parameters passed'); + } + + const ethSignature = await signEthMessage( + options.message, + account.index, + chainId, + ); + return formatJsonRpcResult(id, ethSignature); + + case COSMOS_METHODS.COSMOS_SIGN_DIRECT: + // Reference: https://github.com/confio/cosmjs-types/blob/66e52711914fccd2a9d1a03e392d3628fdf499e2/src/cosmos/tx/v1beta1/tx.ts#L51 + // According above doc, in the signDoc interface 'bodyBytes' and 'authInfoBytes' have Uint8Array type + if (!(options.type === 'cosmos_signDirect')) { + throw new Error('Incorrect parameters passed'); + } + + const bodyBytesArray = Uint8Array.from( + Buffer.from(request.params.signDoc.bodyBytes, 'hex'), + ); + const authInfoBytesArray = Uint8Array.from( + Buffer.from(request.params.signDoc.authInfoBytes, 'hex'), + ); + + const cosmosDirectSignature = await signDirectMessage( + `${namespace}:${chainId}`, + account.index, + { + ...request.params.signDoc, + bodyBytes: bodyBytesArray, + authInfoBytes: authInfoBytesArray, + }, + ); + + return formatJsonRpcResult(id, { + signature: cosmosDirectSignature, + }); + + case COSMOS_METHODS.COSMOS_SIGN_AMINO: + if (!(options.type === 'cosmos_signAmino')) { + throw new Error('Incorrect parameters passed'); + } + + const cosmosAminoSignature = await cosmosAccount.cosmosWallet.signAmino( + address, + request.params.signDoc, + ); + + if (!cosmosAminoSignature) { + throw new Error('Error signing message'); + } + + return formatJsonRpcResult(id, { + signature: cosmosAminoSignature.signature.signature, + }); + + case COSMOS_METHODS.COSMOS_SEND_TOKENS: + if (!(options.type === 'cosmos_sendTokens')) { + throw new Error('Incorrect parameters passed'); + } + + const result = await options.signingStargateClient.signAndBroadcast( + address, + [options.sendMsg], + options.cosmosFee, + options.memo, + ); + + return formatJsonRpcResult(id, { + signature: result.transactionHash, + }); + + case COSMOS_METHODS.COSMOS_SEND_TRANSACTION: + if (!(options.type === 'cosmos_sendTransaction')) { + throw new Error('Incorrect parameters passed'); + } + const resultFromTx = await options.LaconicClient.signAndBroadcast( + address, + [options.txMsg], + options.cosmosFee, + ); + + return formatJsonRpcResult(id, { + code: resultFromTx.code, + }); + + default: + // throw new Error(getSdkError('INVALID_METHOD').message); + } +} + +export function rejectWalletConnectRequest( + // request: SignClientTypes.EventArguments['session_request'], + request: any, +) { + // const { id } = request; + + // return formatJsonRpcError(id, getSdkError('USER_REJECTED_METHODS').message); +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..a273b0c --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], + "allowJs": true, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noFallthroughCasesInSwitch": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react-jsx" + }, + "include": [ + "src" + ] +} diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..cf1888e --- /dev/null +++ b/yarn.lock @@ -0,0 +1,14124 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@adobe/css-tools@^4.0.1": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@adobe/css-tools/-/css-tools-4.4.0.tgz#728c484f4e10df03d5a3acd0d8adcbbebff8ad63" + integrity sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ== + +"@alloc/quick-lru@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30" + integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== + +"@ampproject/remapping@^2.2.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4" + integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.24" + +"@apideck/better-ajv-errors@^0.3.1": + version "0.3.6" + resolved "https://registry.yarnpkg.com/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz#957d4c28e886a64a8141f7522783be65733ff097" + integrity sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA== + dependencies: + json-schema "^0.4.0" + jsonpointer "^5.0.0" + leven "^3.1.0" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.24.7", "@babel/code-frame@^7.8.3": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.7.tgz#882fd9e09e8ee324e496bd040401c6f046ef4465" + integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA== + dependencies: + "@babel/highlight" "^7.24.7" + picocolors "^1.0.0" + +"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.24.8": + version "7.24.9" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.24.9.tgz#53eee4e68f1c1d0282aa0eb05ddb02d033fc43a0" + integrity sha512-e701mcfApCJqMMueQI0Fb68Amflj83+dvAvHawoBpAz+GDjCIyGHzNwnefjsWJ3xiYAqqiQFoWbspGYBdb2/ng== + +"@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.12.3", "@babel/core@^7.13.16", "@babel/core@^7.16.0", "@babel/core@^7.20.0", "@babel/core@^7.7.2", "@babel/core@^7.8.0": + version "7.24.9" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.9.tgz#dc07c9d307162c97fa9484ea997ade65841c7c82" + integrity sha512-5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.24.7" + "@babel/generator" "^7.24.9" + "@babel/helper-compilation-targets" "^7.24.8" + "@babel/helper-module-transforms" "^7.24.9" + "@babel/helpers" "^7.24.8" + "@babel/parser" "^7.24.8" + "@babel/template" "^7.24.7" + "@babel/traverse" "^7.24.8" + "@babel/types" "^7.24.9" + convert-source-map "^2.0.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" + +"@babel/eslint-parser@^7.16.3": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.24.8.tgz#bc655255fa4ded3694cc10ef3dbea6d69639c831" + integrity sha512-nYAikI4XTGokU2QX7Jx+v4rxZKhKivaQaREZjuW3mrJrbdWJ5yUfohnoUULge+zEEaKjPYNxhoRgUKktjXtbwA== + dependencies: + "@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1" + eslint-visitor-keys "^2.1.0" + semver "^6.3.1" + +"@babel/generator@^7.20.0", "@babel/generator@^7.24.8", "@babel/generator@^7.24.9", "@babel/generator@^7.7.2": + version "7.24.10" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.24.10.tgz#a4ab681ec2a78bbb9ba22a3941195e28a81d8e76" + integrity sha512-o9HBZL1G2129luEUlG1hB4N/nlYNWHnpwlND9eOMclRqqu1YDy2sSYVCFUZwl8I1Gxh+QSRrP2vD7EpUmFVXxg== + dependencies: + "@babel/types" "^7.24.9" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + jsesc "^2.5.1" + +"@babel/helper-annotate-as-pure@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz#5373c7bc8366b12a033b4be1ac13a206c6656aab" + integrity sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg== + dependencies: + "@babel/types" "^7.24.7" + +"@babel/helper-builder-binary-assignment-operator-visitor@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz#37d66feb012024f2422b762b9b2a7cfe27c7fba3" + integrity sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.24.7", "@babel/helper-compilation-targets@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.8.tgz#b607c3161cd9d1744977d4f97139572fe778c271" + integrity sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw== + dependencies: + "@babel/compat-data" "^7.24.8" + "@babel/helper-validator-option" "^7.24.8" + browserslist "^4.23.1" + lru-cache "^5.1.1" + semver "^6.3.1" + +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.24.7", "@babel/helper-create-class-features-plugin@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.8.tgz#47f546408d13c200c0867f9d935184eaa0851b09" + integrity sha512-4f6Oqnmyp2PP3olgUMmOwC3akxSm5aBYraQ6YDdKy7NcAMkDECHWG0DEnV6M2UAkERgIBhYt8S27rURPg7SxWA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-function-name" "^7.24.7" + "@babel/helper-member-expression-to-functions" "^7.24.8" + "@babel/helper-optimise-call-expression" "^7.24.7" + "@babel/helper-replace-supers" "^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + "@babel/helper-split-export-declaration" "^7.24.7" + semver "^6.3.1" + +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.24.7.tgz#be4f435a80dc2b053c76eeb4b7d16dd22cfc89da" + integrity sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + regexpu-core "^5.3.1" + semver "^6.3.1" + +"@babel/helper-define-polyfill-provider@^0.6.1", "@babel/helper-define-polyfill-provider@^0.6.2": + version "0.6.2" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz#18594f789c3594acb24cfdb4a7f7b7d2e8bd912d" + integrity sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ== + dependencies: + "@babel/helper-compilation-targets" "^7.22.6" + "@babel/helper-plugin-utils" "^7.22.5" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" + +"@babel/helper-environment-visitor@^7.18.9", "@babel/helper-environment-visitor@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz#4b31ba9551d1f90781ba83491dd59cf9b269f7d9" + integrity sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ== + dependencies: + "@babel/types" "^7.24.7" + +"@babel/helper-function-name@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz#75f1e1725742f39ac6584ee0b16d94513da38dd2" + integrity sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA== + dependencies: + "@babel/template" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/helper-hoist-variables@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz#b4ede1cde2fd89436397f30dc9376ee06b0f25ee" + integrity sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ== + dependencies: + "@babel/types" "^7.24.7" + +"@babel/helper-member-expression-to-functions@^7.24.7", "@babel/helper-member-expression-to-functions@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz#6155e079c913357d24a4c20480db7c712a5c3fb6" + integrity sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA== + dependencies: + "@babel/traverse" "^7.24.8" + "@babel/types" "^7.24.8" + +"@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz#f2f980392de5b84c3328fc71d38bd81bbb83042b" + integrity sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/helper-module-transforms@^7.24.7", "@babel/helper-module-transforms@^7.24.8", "@babel/helper-module-transforms@^7.24.9": + version "7.24.9" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.24.9.tgz#e13d26306b89eea569180868e652e7f514de9d29" + integrity sha512-oYbh+rtFKj/HwBQkFlUzvcybzklmVdVV3UU+mN7n2t/q3yGHbuVdNxyFvSBO1tfvjyArpHNcWMAzsSPdyI46hw== + dependencies: + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-module-imports" "^7.24.7" + "@babel/helper-simple-access" "^7.24.7" + "@babel/helper-split-export-declaration" "^7.24.7" + "@babel/helper-validator-identifier" "^7.24.7" + +"@babel/helper-optimise-call-expression@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz#8b0a0456c92f6b323d27cfd00d1d664e76692a0f" + integrity sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A== + dependencies: + "@babel/types" "^7.24.7" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.24.7", "@babel/helper-plugin-utils@^7.24.8", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz#94ee67e8ec0e5d44ea7baeb51e571bd26af07878" + integrity sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg== + +"@babel/helper-remap-async-to-generator@^7.18.9", "@babel/helper-remap-async-to-generator@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.24.7.tgz#b3f0f203628522713849d49403f1a414468be4c7" + integrity sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-wrap-function" "^7.24.7" + +"@babel/helper-replace-supers@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.24.7.tgz#f933b7eed81a1c0265740edc91491ce51250f765" + integrity sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg== + dependencies: + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-member-expression-to-functions" "^7.24.7" + "@babel/helper-optimise-call-expression" "^7.24.7" + +"@babel/helper-simple-access@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz#bcade8da3aec8ed16b9c4953b74e506b51b5edb3" + integrity sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz#5f8fa83b69ed5c27adc56044f8be2b3ea96669d9" + integrity sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ== + dependencies: + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/helper-split-export-declaration@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz#83949436890e07fa3d6873c61a96e3bbf692d856" + integrity sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA== + dependencies: + "@babel/types" "^7.24.7" + +"@babel/helper-string-parser@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz#5b3329c9a58803d5df425e5785865881a81ca48d" + integrity sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ== + +"@babel/helper-validator-identifier@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db" + integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w== + +"@babel/helper-validator-option@^7.24.7", "@babel/helper-validator-option@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz#3725cdeea8b480e86d34df15304806a06975e33d" + integrity sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q== + +"@babel/helper-wrap-function@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.24.7.tgz#52d893af7e42edca7c6d2c6764549826336aae1f" + integrity sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw== + dependencies: + "@babel/helper-function-name" "^7.24.7" + "@babel/template" "^7.24.7" + "@babel/traverse" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/helpers@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.8.tgz#2820d64d5d6686cca8789dd15b074cd862795873" + integrity sha512-gV2265Nkcz7weJJfvDoAEVzC1e2OTDpkGbEsebse8koXUJUXPsCMi7sRo/+SPMuMZ9MtUPnGwITTnQnU5YjyaQ== + dependencies: + "@babel/template" "^7.24.7" + "@babel/types" "^7.24.8" + +"@babel/highlight@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.7.tgz#a05ab1df134b286558aae0ed41e6c5f731bf409d" + integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw== + dependencies: + "@babel/helper-validator-identifier" "^7.24.7" + chalk "^2.4.2" + js-tokens "^4.0.0" + picocolors "^1.0.0" + +"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.7", "@babel/parser@^7.20.0", "@babel/parser@^7.20.7", "@babel/parser@^7.24.7", "@babel/parser@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.8.tgz#58a4dbbcad7eb1d48930524a3fd93d93e9084c6f" + integrity sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w== + +"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.7.tgz#fd059fd27b184ea2b4c7e646868a9a381bbc3055" + integrity sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ== + dependencies: + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.7.tgz#468096ca44bbcbe8fcc570574e12eb1950e18107" + integrity sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz#e4eabdd5109acc399b38d7999b2ef66fc2022f89" + integrity sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + "@babel/plugin-transform-optional-chaining" "^7.24.7" + +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.7.tgz#71b21bb0286d5810e63a1538aa901c58e87375ec" + integrity sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg== + dependencies: + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-proposal-async-generator-functions@^7.0.0": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz#bfb7276d2d573cb67ba379984a2334e262ba5326" + integrity sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA== + dependencies: + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-remap-async-to-generator" "^7.18.9" + "@babel/plugin-syntax-async-generators" "^7.8.4" + +"@babel/plugin-proposal-class-properties@^7.13.0", "@babel/plugin-proposal-class-properties@^7.16.0", "@babel/plugin-proposal-class-properties@^7.18.0", "@babel/plugin-proposal-class-properties@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" + integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-proposal-decorators@^7.16.4": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.24.7.tgz#7e2dcfeda4a42596b57c4c9de1f5176bbfc532e3" + integrity sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-decorators" "^7.24.7" + +"@babel/plugin-proposal-export-default-from@^7.0.0": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.24.7.tgz#0b539c46b8ac804f694e338f803c8354c0f788b6" + integrity sha512-CcmFwUJ3tKhLjPdt4NP+SHMshebytF8ZTYOv5ZDpkzq2sin80Wb5vJrGt8fhPrORQCfoSa0LAxC/DW+GAC5+Hw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-export-default-from" "^7.24.7" + +"@babel/plugin-proposal-logical-assignment-operators@^7.18.0": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz#dfbcaa8f7b4d37b51e8bfb46d94a5aea2bb89d83" + integrity sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8", "@babel/plugin-proposal-nullish-coalescing-operator@^7.16.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.0": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1" + integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-proposal-numeric-separator@^7.0.0", "@babel/plugin-proposal-numeric-separator@^7.16.0": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75" + integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-proposal-object-rest-spread@^7.20.0", "@babel/plugin-proposal-object-rest-spread@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a" + integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== + dependencies: + "@babel/compat-data" "^7.20.5" + "@babel/helper-compilation-targets" "^7.20.7" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.20.7" + +"@babel/plugin-proposal-optional-catch-binding@^7.0.0": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb" + integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-proposal-optional-chaining@^7.13.12", "@babel/plugin-proposal-optional-chaining@^7.16.0", "@babel/plugin-proposal-optional-chaining@^7.20.0": + version "7.21.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea" + integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-proposal-private-methods@^7.16.0": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea" + integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": + version "7.21.0-placeholder-for-preset-env.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" + integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== + +"@babel/plugin-syntax-async-generators@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-bigint@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" + integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3": + version "7.12.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-class-static-block@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-decorators@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.24.7.tgz#e4f8a0a8778ccec669611cd5aed1ed8e6e3a6fcf" + integrity sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-syntax-dynamic-import@^7.8.0", "@babel/plugin-syntax-dynamic-import@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" + integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.24.7.tgz#85dae9098933573aae137fb52141dd3ca52ae7ac" + integrity sha512-bTPz4/635WQ9WhwsyPdxUJDVpsi/X9BMmy/8Rf/UAlOO4jSql4CxUCjWI5PiM+jG+c4LVPTScoTw80geFj9+Bw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-syntax-export-namespace-from@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" + integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-syntax-flow@^7.12.1", "@babel/plugin-syntax-flow@^7.18.0", "@babel/plugin-syntax-flow@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.7.tgz#d1759e84dd4b437cf9fae69b4c06c41d7625bfb7" + integrity sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-syntax-import-assertions@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz#2a0b406b5871a20a841240586b1300ce2088a778" + integrity sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-syntax-import-attributes@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz#b4f9ea95a79e6912480c4b626739f86a076624ca" + integrity sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-syntax-import-meta@^7.10.4", "@babel/plugin-syntax-import-meta@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-jsx@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz#39a1fa4a7e3d3d7f34e2acc6be585b718d30e02d" + integrity sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.0.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.0.0", "@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-private-property-in-object@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-top-level-await@^7.14.5", "@babel/plugin-syntax-top-level-await@^7.8.3": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-typescript@^7.24.7", "@babel/plugin-syntax-typescript@^7.7.2": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.7.tgz#58d458271b4d3b6bb27ee6ac9525acbb259bad1c" + integrity sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-syntax-unicode-sets-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" + integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz#4f6886c11e423bd69f3ce51dbf42424a5f275514" + integrity sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-async-generator-functions@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.7.tgz#7330a5c50e05181ca52351b8fd01642000c96cfd" + integrity sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g== + dependencies: + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-remap-async-to-generator" "^7.24.7" + "@babel/plugin-syntax-async-generators" "^7.8.4" + +"@babel/plugin-transform-async-to-generator@^7.20.0", "@babel/plugin-transform-async-to-generator@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz#72a3af6c451d575842a7e9b5a02863414355bdcc" + integrity sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA== + dependencies: + "@babel/helper-module-imports" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-remap-async-to-generator" "^7.24.7" + +"@babel/plugin-transform-block-scoped-functions@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz#a4251d98ea0c0f399dafe1a35801eaba455bbf1f" + integrity sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-block-scoping@^7.0.0", "@babel/plugin-transform-block-scoping@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.7.tgz#42063e4deb850c7bd7c55e626bf4e7ab48e6ce02" + integrity sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-class-properties@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz#256879467b57b0b68c7ddfc5b76584f398cd6834" + integrity sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-class-static-block@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz#c82027ebb7010bc33c116d4b5044fbbf8c05484d" + integrity sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + +"@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.8.tgz#ad23301fe5bc153ca4cf7fb572a9bc8b0b711cf7" + integrity sha512-VXy91c47uujj758ud9wx+OMgheXm4qJfyhj1P18YvlrQkNOSrwsteHk+EFS3OMGfhMhpZa0A+81eE7G4QC+3CA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-compilation-targets" "^7.24.8" + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-function-name" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/helper-replace-supers" "^7.24.7" + "@babel/helper-split-export-declaration" "^7.24.7" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.0.0", "@babel/plugin-transform-computed-properties@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz#4cab3214e80bc71fae3853238d13d097b004c707" + integrity sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/template" "^7.24.7" + +"@babel/plugin-transform-destructuring@^7.20.0", "@babel/plugin-transform-destructuring@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.8.tgz#c828e814dbe42a2718a838c2a2e16a408e055550" + integrity sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.8" + +"@babel/plugin-transform-dotall-regex@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz#5f8bf8a680f2116a7207e16288a5f974ad47a7a0" + integrity sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-duplicate-keys@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz#dd20102897c9a2324e5adfffb67ff3610359a8ee" + integrity sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-dynamic-import@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz#4d8b95e3bae2b037673091aa09cd33fecd6419f4" + integrity sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-transform-exponentiation-operator@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz#b629ee22645f412024297d5245bce425c31f9b0d" + integrity sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-export-namespace-from@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz#176d52d8d8ed516aeae7013ee9556d540c53f197" + integrity sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + +"@babel/plugin-transform-flow-strip-types@^7.16.0", "@babel/plugin-transform-flow-strip-types@^7.20.0", "@babel/plugin-transform-flow-strip-types@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.24.7.tgz#ae454e62219288fbb734541ab00389bfb13c063e" + integrity sha512-cjRKJ7FobOH2eakx7Ja+KpJRj8+y+/SiB3ooYm/n2UJfxu0oEaOoxOinitkJcPqv9KxS0kxTGPUaR7L2XcXDXA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-flow" "^7.24.7" + +"@babel/plugin-transform-for-of@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz#f25b33f72df1d8be76399e1b8f3f9d366eb5bc70" + integrity sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + +"@babel/plugin-transform-function-name@^7.0.0", "@babel/plugin-transform-function-name@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.7.tgz#6d8601fbffe665c894440ab4470bc721dd9131d6" + integrity sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w== + dependencies: + "@babel/helper-compilation-targets" "^7.24.7" + "@babel/helper-function-name" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-json-strings@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz#f3e9c37c0a373fee86e36880d45b3664cedaf73a" + integrity sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-json-strings" "^7.8.3" + +"@babel/plugin-transform-literals@^7.0.0", "@babel/plugin-transform-literals@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.7.tgz#36b505c1e655151a9d7607799a9988fc5467d06c" + integrity sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-logical-assignment-operators@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz#a58fb6eda16c9dc8f9ff1c7b1ba6deb7f4694cb0" + integrity sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-transform-member-expression-literals@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz#3b4454fb0e302e18ba4945ba3246acb1248315df" + integrity sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-modules-amd@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz#65090ed493c4a834976a3ca1cde776e6ccff32d7" + integrity sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg== + dependencies: + "@babel/helper-module-transforms" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.24.7", "@babel/plugin-transform-modules-commonjs@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz#ab6421e564b717cb475d6fff70ae7f103536ea3c" + integrity sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA== + dependencies: + "@babel/helper-module-transforms" "^7.24.8" + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/helper-simple-access" "^7.24.7" + +"@babel/plugin-transform-modules-systemjs@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.7.tgz#f8012316c5098f6e8dee6ecd58e2bc6f003d0ce7" + integrity sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw== + dependencies: + "@babel/helper-hoist-variables" "^7.24.7" + "@babel/helper-module-transforms" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-validator-identifier" "^7.24.7" + +"@babel/plugin-transform-modules-umd@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz#edd9f43ec549099620df7df24e7ba13b5c76efc8" + integrity sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A== + dependencies: + "@babel/helper-module-transforms" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.0.0", "@babel/plugin-transform-named-capturing-groups-regex@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz#9042e9b856bc6b3688c0c2e4060e9e10b1460923" + integrity sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-new-target@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz#31ff54c4e0555cc549d5816e4ab39241dfb6ab00" + integrity sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-nullish-coalescing-operator@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz#1de4534c590af9596f53d67f52a92f12db984120" + integrity sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-transform-numeric-separator@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz#bea62b538c80605d8a0fac9b40f48e97efa7de63" + integrity sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-transform-object-rest-spread@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz#d13a2b93435aeb8a197e115221cab266ba6e55d6" + integrity sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q== + dependencies: + "@babel/helper-compilation-targets" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.24.7" + +"@babel/plugin-transform-object-super@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz#66eeaff7830bba945dd8989b632a40c04ed625be" + integrity sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-replace-supers" "^7.24.7" + +"@babel/plugin-transform-optional-catch-binding@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz#00eabd883d0dd6a60c1c557548785919b6e717b4" + integrity sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-transform-optional-chaining@^7.24.7", "@babel/plugin-transform-optional-chaining@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.8.tgz#bb02a67b60ff0406085c13d104c99a835cdf365d" + integrity sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz#5881f0ae21018400e320fc7eb817e529d1254b68" + integrity sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-private-methods@^7.22.5", "@babel/plugin-transform-private-methods@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz#e6318746b2ae70a59d023d5cc1344a2ba7a75f5e" + integrity sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-private-property-in-object@^7.22.11", "@babel/plugin-transform-private-property-in-object@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz#4eec6bc701288c1fab5f72e6a4bbc9d67faca061" + integrity sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-create-class-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + +"@babel/plugin-transform-property-literals@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz#f0d2ed8380dfbed949c42d4d790266525d63bbdc" + integrity sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-react-constant-elements@^7.12.1": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.24.7.tgz#b85e8f240b14400277f106c9c9b585d9acf608a1" + integrity sha512-7LidzZfUXyfZ8/buRW6qIIHBY8wAZ1OrY9c/wTr8YhZ6vMPo+Uc/CVFLYY1spZrEQlD4w5u8wjqk5NQ3OVqQKA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-react-display-name@^7.0.0", "@babel/plugin-transform-react-display-name@^7.16.0", "@babel/plugin-transform-react-display-name@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.7.tgz#9caff79836803bc666bcfe210aeb6626230c293b" + integrity sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-react-jsx-development@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.24.7.tgz#eaee12f15a93f6496d852509a850085e6361470b" + integrity sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ== + dependencies: + "@babel/plugin-transform-react-jsx" "^7.24.7" + +"@babel/plugin-transform-react-jsx-self@^7.0.0": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.7.tgz#66bff0248ea0b549972e733516ffad577477bdab" + integrity sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-react-jsx-source@^7.0.0": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.7.tgz#1198aab2548ad19582013815c938d3ebd8291ee3" + integrity sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-react-jsx@^7.0.0", "@babel/plugin-transform-react-jsx@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.24.7.tgz#17cd06b75a9f0e2bd076503400e7c4b99beedac4" + integrity sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-module-imports" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/plugin-syntax-jsx" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/plugin-transform-react-pure-annotations@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.24.7.tgz#bdd9d140d1c318b4f28b29a00fb94f97ecab1595" + integrity sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-regenerator@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz#021562de4534d8b4b1851759fd7af4e05d2c47f8" + integrity sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + regenerator-transform "^0.15.2" + +"@babel/plugin-transform-reserved-words@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz#80037fe4fbf031fc1125022178ff3938bb3743a4" + integrity sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-runtime@^7.0.0", "@babel/plugin-transform-runtime@^7.16.4": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.7.tgz#00a5bfaf8c43cf5c8703a8a6e82b59d9c58f38ca" + integrity sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw== + dependencies: + "@babel/helper-module-imports" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + babel-plugin-polyfill-corejs2 "^0.4.10" + babel-plugin-polyfill-corejs3 "^0.10.1" + babel-plugin-polyfill-regenerator "^0.6.1" + semver "^6.3.1" + +"@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz#85448c6b996e122fa9e289746140aaa99da64e73" + integrity sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-spread@^7.0.0", "@babel/plugin-transform-spread@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz#e8a38c0fde7882e0fb8f160378f74bd885cc7bb3" + integrity sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.24.7" + +"@babel/plugin-transform-sticky-regex@^7.0.0", "@babel/plugin-transform-sticky-regex@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz#96ae80d7a7e5251f657b5cf18f1ea6bf926f5feb" + integrity sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-template-literals@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz#a05debb4a9072ae8f985bcf77f3f215434c8f8c8" + integrity sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-typeof-symbol@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz#383dab37fb073f5bfe6e60c654caac309f92ba1c" + integrity sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.8" + +"@babel/plugin-transform-typescript@^7.24.7", "@babel/plugin-transform-typescript@^7.5.0": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.8.tgz#c104d6286e04bf7e44b8cba1b686d41bad57eb84" + integrity sha512-CgFgtN61BbdOGCP4fLaAMOPkzWUh6yQZNMr5YSt8uz2cZSSiQONCQFWqsE4NeVfOIhqDOlS9CR3WD91FzMeB2Q== + dependencies: + "@babel/helper-annotate-as-pure" "^7.24.7" + "@babel/helper-create-class-features-plugin" "^7.24.8" + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/plugin-syntax-typescript" "^7.24.7" + +"@babel/plugin-transform-unicode-escapes@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz#2023a82ced1fb4971630a2e079764502c4148e0e" + integrity sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-unicode-property-regex@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz#9073a4cd13b86ea71c3264659590ac086605bbcd" + integrity sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-unicode-regex@^7.0.0", "@babel/plugin-transform-unicode-regex@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz#dfc3d4a51127108099b19817c0963be6a2adf19f" + integrity sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/plugin-transform-unicode-sets-regex@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz#d40705d67523803a576e29c63cef6e516b858ed9" + integrity sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.24.7" + "@babel/helper-plugin-utils" "^7.24.7" + +"@babel/preset-env@^7.11.0", "@babel/preset-env@^7.12.1", "@babel/preset-env@^7.16.4", "@babel/preset-env@^7.24.8": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.24.8.tgz#e0db94d7f17d6f0e2564e8d29190bc8cdacec2d1" + integrity sha512-vObvMZB6hNWuDxhSaEPTKCwcqkAIuDtE+bQGn4XMXne1DSLzFVY8Vmj1bm+mUQXYNN8NmaQEO+r8MMbzPr1jBQ== + dependencies: + "@babel/compat-data" "^7.24.8" + "@babel/helper-compilation-targets" "^7.24.8" + "@babel/helper-plugin-utils" "^7.24.8" + "@babel/helper-validator-option" "^7.24.8" + "@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.24.7" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.24.7" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.24.7" + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.24.7" + "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-import-assertions" "^7.24.7" + "@babel/plugin-syntax-import-attributes" "^7.24.7" + "@babel/plugin-syntax-import-meta" "^7.10.4" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-top-level-await" "^7.14.5" + "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" + "@babel/plugin-transform-arrow-functions" "^7.24.7" + "@babel/plugin-transform-async-generator-functions" "^7.24.7" + "@babel/plugin-transform-async-to-generator" "^7.24.7" + "@babel/plugin-transform-block-scoped-functions" "^7.24.7" + "@babel/plugin-transform-block-scoping" "^7.24.7" + "@babel/plugin-transform-class-properties" "^7.24.7" + "@babel/plugin-transform-class-static-block" "^7.24.7" + "@babel/plugin-transform-classes" "^7.24.8" + "@babel/plugin-transform-computed-properties" "^7.24.7" + "@babel/plugin-transform-destructuring" "^7.24.8" + "@babel/plugin-transform-dotall-regex" "^7.24.7" + "@babel/plugin-transform-duplicate-keys" "^7.24.7" + "@babel/plugin-transform-dynamic-import" "^7.24.7" + "@babel/plugin-transform-exponentiation-operator" "^7.24.7" + "@babel/plugin-transform-export-namespace-from" "^7.24.7" + "@babel/plugin-transform-for-of" "^7.24.7" + "@babel/plugin-transform-function-name" "^7.24.7" + "@babel/plugin-transform-json-strings" "^7.24.7" + "@babel/plugin-transform-literals" "^7.24.7" + "@babel/plugin-transform-logical-assignment-operators" "^7.24.7" + "@babel/plugin-transform-member-expression-literals" "^7.24.7" + "@babel/plugin-transform-modules-amd" "^7.24.7" + "@babel/plugin-transform-modules-commonjs" "^7.24.8" + "@babel/plugin-transform-modules-systemjs" "^7.24.7" + "@babel/plugin-transform-modules-umd" "^7.24.7" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.24.7" + "@babel/plugin-transform-new-target" "^7.24.7" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.24.7" + "@babel/plugin-transform-numeric-separator" "^7.24.7" + "@babel/plugin-transform-object-rest-spread" "^7.24.7" + "@babel/plugin-transform-object-super" "^7.24.7" + "@babel/plugin-transform-optional-catch-binding" "^7.24.7" + "@babel/plugin-transform-optional-chaining" "^7.24.8" + "@babel/plugin-transform-parameters" "^7.24.7" + "@babel/plugin-transform-private-methods" "^7.24.7" + "@babel/plugin-transform-private-property-in-object" "^7.24.7" + "@babel/plugin-transform-property-literals" "^7.24.7" + "@babel/plugin-transform-regenerator" "^7.24.7" + "@babel/plugin-transform-reserved-words" "^7.24.7" + "@babel/plugin-transform-shorthand-properties" "^7.24.7" + "@babel/plugin-transform-spread" "^7.24.7" + "@babel/plugin-transform-sticky-regex" "^7.24.7" + "@babel/plugin-transform-template-literals" "^7.24.7" + "@babel/plugin-transform-typeof-symbol" "^7.24.8" + "@babel/plugin-transform-unicode-escapes" "^7.24.7" + "@babel/plugin-transform-unicode-property-regex" "^7.24.7" + "@babel/plugin-transform-unicode-regex" "^7.24.7" + "@babel/plugin-transform-unicode-sets-regex" "^7.24.7" + "@babel/preset-modules" "0.1.6-no-external-plugins" + babel-plugin-polyfill-corejs2 "^0.4.10" + babel-plugin-polyfill-corejs3 "^0.10.4" + babel-plugin-polyfill-regenerator "^0.6.1" + core-js-compat "^3.37.1" + semver "^6.3.1" + +"@babel/preset-flow@^7.13.13", "@babel/preset-flow@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.24.7.tgz#eef5cb8e05e97a448fc50c16826f5612fe512c06" + integrity sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-validator-option" "^7.24.7" + "@babel/plugin-transform-flow-strip-types" "^7.24.7" + +"@babel/preset-modules@0.1.6-no-external-plugins": + version "0.1.6-no-external-plugins" + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a" + integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/types" "^7.4.4" + esutils "^2.0.2" + +"@babel/preset-react@^7.12.5", "@babel/preset-react@^7.16.0", "@babel/preset-react@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.24.7.tgz#480aeb389b2a798880bf1f889199e3641cbb22dc" + integrity sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-validator-option" "^7.24.7" + "@babel/plugin-transform-react-display-name" "^7.24.7" + "@babel/plugin-transform-react-jsx" "^7.24.7" + "@babel/plugin-transform-react-jsx-development" "^7.24.7" + "@babel/plugin-transform-react-pure-annotations" "^7.24.7" + +"@babel/preset-typescript@^7.13.0", "@babel/preset-typescript@^7.16.0", "@babel/preset-typescript@^7.24.7": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.24.7.tgz#66cd86ea8f8c014855671d5ea9a737139cbbfef1" + integrity sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.7" + "@babel/helper-validator-option" "^7.24.7" + "@babel/plugin-syntax-jsx" "^7.24.7" + "@babel/plugin-transform-modules-commonjs" "^7.24.7" + "@babel/plugin-transform-typescript" "^7.24.7" + +"@babel/register@^7.13.16": + version "7.24.6" + resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.24.6.tgz#59e21dcc79e1d04eed5377633b0f88029a6bef9e" + integrity sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w== + dependencies: + clone-deep "^4.0.1" + find-cache-dir "^2.0.0" + make-dir "^2.1.0" + pirates "^4.0.6" + source-map-support "^0.5.16" + +"@babel/regjsgen@^0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" + integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== + +"@babel/runtime@^7.0.0", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.16.3", "@babel/runtime@^7.18.3", "@babel/runtime@^7.18.6", "@babel/runtime@^7.23.9", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.8.tgz#5d958c3827b13cc6d05e038c07fb2e5e3420d82e" + integrity sha512-5F7SDGs1T72ZczbRwbGO9lQi0NLjQxzl6i4lJxLxfW9U5UluCSyEJeniWvnhl3/euNiqQVbo8zruhsDfid0esA== + dependencies: + regenerator-runtime "^0.14.0" + +"@babel/template@^7.0.0", "@babel/template@^7.24.7", "@babel/template@^7.3.3": + version "7.24.7" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.24.7.tgz#02efcee317d0609d2c07117cb70ef8fb17ab7315" + integrity sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig== + dependencies: + "@babel/code-frame" "^7.24.7" + "@babel/parser" "^7.24.7" + "@babel/types" "^7.24.7" + +"@babel/traverse@^7.20.0", "@babel/traverse@^7.24.7", "@babel/traverse@^7.24.8", "@babel/traverse@^7.7.2": + version "7.24.8" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.8.tgz#6c14ed5232b7549df3371d820fbd9abfcd7dfab7" + integrity sha512-t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ== + dependencies: + "@babel/code-frame" "^7.24.7" + "@babel/generator" "^7.24.8" + "@babel/helper-environment-visitor" "^7.24.7" + "@babel/helper-function-name" "^7.24.7" + "@babel/helper-hoist-variables" "^7.24.7" + "@babel/helper-split-export-declaration" "^7.24.7" + "@babel/parser" "^7.24.8" + "@babel/types" "^7.24.8" + debug "^4.3.1" + globals "^11.1.0" + +"@babel/types@^7.0.0", "@babel/types@^7.12.6", "@babel/types@^7.20.0", "@babel/types@^7.20.7", "@babel/types@^7.24.7", "@babel/types@^7.24.8", "@babel/types@^7.24.9", "@babel/types@^7.3.3", "@babel/types@^7.4.4": + version "7.24.9" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.9.tgz#228ce953d7b0d16646e755acf204f4cf3d08cc73" + integrity sha512-xm8XrMKz0IlUdocVbYJe0Z9xEgidU7msskG8BbhnTPK/HZ2z/7FP7ykqPgrUH+C+r414mNfNWam1f2vqOjqjYQ== + dependencies: + "@babel/helper-string-parser" "^7.24.8" + "@babel/helper-validator-identifier" "^7.24.7" + to-fast-properties "^2.0.0" + +"@bcoe/v8-coverage@^0.2.3": + version "0.2.3" + resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" + integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== + +"@callstack/react-theme-provider@^3.0.9": + version "3.0.9" + resolved "https://registry.yarnpkg.com/@callstack/react-theme-provider/-/react-theme-provider-3.0.9.tgz#01035fa1231f1fffc1a806be1b55eb82716e80c1" + integrity sha512-tTQ0uDSCL0ypeMa8T/E9wAZRGKWj8kXP7+6RYgPTfOPs9N07C9xM8P02GJ3feETap4Ux5S69D9nteq9mEj86NA== + dependencies: + deepmerge "^3.2.0" + hoist-non-react-statics "^3.3.0" + +"@cerc-io/registry-sdk@^0.2.2": + version "0.2.2" + resolved "https://git.vdb.to/api/packages/cerc-io/npm/%40cerc-io%2Fregistry-sdk/-/0.2.2/registry-sdk-0.2.2.tgz#2e8a533f069b4bb9f4cd4798e783f52e29167d0d" + integrity sha512-ocRMbWtdewOg02ORfK1U+qbTqB46anHP4ApXokGkY4d+mFSApR3sdUEi2geHcs8oh+SG8YAp7LUJ9AAJneNY8g== + dependencies: + "@cosmjs/amino" "^0.28.1" + "@cosmjs/crypto" "^0.28.1" + "@cosmjs/encoding" "^0.28.1" + "@cosmjs/launchpad" "^0.27.1" + "@cosmjs/proto-signing" "^0.32.2" + "@cosmjs/stargate" "^0.32.2" + "@cosmjs/tendermint-rpc" "^0.32.2" + "@ipld/dag-cbor" "^7.0.1" + "@ipld/dag-json" "^8.0.9" + "@metamask/eth-sig-util" "^4.0.0" + "@tharsis/address-converter" "^0.1.7" + "@tharsis/eip712" "^0.2.1" + "@tharsis/proto" "^0.1.16" + "@tharsis/provider" "^0.2.4" + "@tharsis/transactions" "^0.2.2" + axios "^0.26.1" + bip32 "3.0.1" + bip39 "^3.0.4" + canonical-json "^0.0.4" + ethers "^5.6.2" + graphql.js "^0.6.8" + js-sha256 "^0.9.0" + js-yaml "^3.14.1" + lodash "^4.17.21" + multiformats "^9.5.4" + node-yaml "^4.0.1" + secp256k1 "^4.0.1" + semver "^7.3.5" + tiny-secp256k1 "^1.1.6" + +"@chain-registry/types@^0.45.31": + version "0.45.31" + resolved "https://registry.yarnpkg.com/@chain-registry/types/-/types-0.45.31.tgz#58a5b90c0f7274f42f81832205b598610a527a8e" + integrity sha512-91b5sgi5uw1zuIxjhEDc6SO+Oa1eaYA/Mf4jvaxFx19iO80d0dpG0eDvAU1vDorWmibhoJAk1B/0Qnm6cZQ9Jg== + +"@confio/ics23@^0.6.8": + version "0.6.8" + resolved "https://registry.yarnpkg.com/@confio/ics23/-/ics23-0.6.8.tgz#2a6b4f1f2b7b20a35d9a0745bb5a446e72930b3d" + integrity sha512-wB6uo+3A50m0sW/EWcU64xpV/8wShZ6bMTa7pF8eYsTrSkQA7oLUIJcs/wb8g4y2Oyq701BaGiO6n/ak5WXO1w== + dependencies: + "@noble/hashes" "^1.0.0" + protobufjs "^6.8.8" + +"@cosmjs/amino@0.27.1": + version "0.27.1" + resolved "https://registry.yarnpkg.com/@cosmjs/amino/-/amino-0.27.1.tgz#0910256b5aecd794420bb5f7319d98fc63252fa1" + integrity sha512-w56ar/nK9+qlvWDpBPRmD0Blk2wfkkLqRi1COs1x7Ll1LF0AtkIBUjbRKplENLbNovK0T3h+w8bHiFm+GBGQOA== + dependencies: + "@cosmjs/crypto" "0.27.1" + "@cosmjs/encoding" "0.27.1" + "@cosmjs/math" "0.27.1" + "@cosmjs/utils" "0.27.1" + +"@cosmjs/amino@^0.28.1": + version "0.28.13" + resolved "https://registry.yarnpkg.com/@cosmjs/amino/-/amino-0.28.13.tgz#b51417a23c1ff8ef8b85a6862eba8492c6c44f38" + integrity sha512-IHnH2zGwaY69qT4mVAavr/pfzx6YE+ud1NHJbvVePlbGiz68CXTi5LHR+K0lrKB5mQ7E+ZErWz2mw5U/x+V1wQ== + dependencies: + "@cosmjs/crypto" "0.28.13" + "@cosmjs/encoding" "0.28.13" + "@cosmjs/math" "0.28.13" + "@cosmjs/utils" "0.28.13" + +"@cosmjs/amino@^0.32.3", "@cosmjs/amino@^0.32.4": + version "0.32.4" + resolved "https://registry.yarnpkg.com/@cosmjs/amino/-/amino-0.32.4.tgz#3908946c0394e6d431694c8992c5147079a1c860" + integrity sha512-zKYOt6hPy8obIFtLie/xtygCkH9ZROiQ12UHfKsOkWaZfPQUvVbtgmu6R4Kn1tFLI/SRkw7eqhaogmW/3NYu/Q== + dependencies: + "@cosmjs/crypto" "^0.32.4" + "@cosmjs/encoding" "^0.32.4" + "@cosmjs/math" "^0.32.4" + "@cosmjs/utils" "^0.32.4" + +"@cosmjs/crypto@0.27.1": + version "0.27.1" + resolved "https://registry.yarnpkg.com/@cosmjs/crypto/-/crypto-0.27.1.tgz#271c853089a3baf3acd6cf0b2122fd49f8815743" + integrity sha512-vbcxwSt99tIYJg8Spp00wc3zx72qx+pY3ozGuBN8gAvySnagK9dQ/jHwtWQWdammmdD6oW+75WfIHZ+gNa+Ybg== + dependencies: + "@cosmjs/encoding" "0.27.1" + "@cosmjs/math" "0.27.1" + "@cosmjs/utils" "0.27.1" + bip39 "^3.0.2" + bn.js "^5.2.0" + elliptic "^6.5.3" + js-sha3 "^0.8.0" + libsodium-wrappers "^0.7.6" + ripemd160 "^2.0.2" + sha.js "^2.4.11" + +"@cosmjs/crypto@0.28.13", "@cosmjs/crypto@^0.28.1": + version "0.28.13" + resolved "https://registry.yarnpkg.com/@cosmjs/crypto/-/crypto-0.28.13.tgz#541b6a36f616b2da5a568ead46d4e83841ceb412" + integrity sha512-ynKfM0q/tMBQMHJby6ad8lR3gkgBKaelQhIsCZTjClsnuC7oYT9y3ThSZCUWr7Pa9h0J8ahU2YV2oFWFVWJQzQ== + dependencies: + "@cosmjs/encoding" "0.28.13" + "@cosmjs/math" "0.28.13" + "@cosmjs/utils" "0.28.13" + "@noble/hashes" "^1" + bn.js "^5.2.0" + elliptic "^6.5.3" + libsodium-wrappers "^0.7.6" + +"@cosmjs/crypto@^0.32.3", "@cosmjs/crypto@^0.32.4": + version "0.32.4" + resolved "https://registry.yarnpkg.com/@cosmjs/crypto/-/crypto-0.32.4.tgz#5d29633b661eaf092ddb3e7ea6299cfd6f4507a2" + integrity sha512-zicjGU051LF1V9v7bp8p7ovq+VyC91xlaHdsFOTo2oVry3KQikp8L/81RkXmUIT8FxMwdx1T7DmFwVQikcSDIw== + dependencies: + "@cosmjs/encoding" "^0.32.4" + "@cosmjs/math" "^0.32.4" + "@cosmjs/utils" "^0.32.4" + "@noble/hashes" "^1" + bn.js "^5.2.0" + elliptic "^6.5.4" + libsodium-wrappers-sumo "^0.7.11" + +"@cosmjs/encoding@0.27.1": + version "0.27.1" + resolved "https://registry.yarnpkg.com/@cosmjs/encoding/-/encoding-0.27.1.tgz#3cd5bc0af743485eb2578cdb08cfa84c86d610e1" + integrity sha512-rayLsA0ojHeniaRfWWcqSsrE/T1rl1gl0OXVNtXlPwLJifKBeLEefGbOUiAQaT0wgJ8VNGBazVtAZBpJidfDhw== + dependencies: + base64-js "^1.3.0" + bech32 "^1.1.4" + readonly-date "^1.0.0" + +"@cosmjs/encoding@0.28.13", "@cosmjs/encoding@^0.28.1": + version "0.28.13" + resolved "https://registry.yarnpkg.com/@cosmjs/encoding/-/encoding-0.28.13.tgz#7994e8e2c435beaf0690296ffb0f7f3eaec8150b" + integrity sha512-jtXbAYtV77rLHxoIrjGFsvgGjeTKttuHRv6cvuy3toCZzY7JzTclKH5O2g36IIE4lXwD9xwuhGJ2aa6A3dhNkA== + dependencies: + base64-js "^1.3.0" + bech32 "^1.1.4" + readonly-date "^1.0.0" + +"@cosmjs/encoding@^0.32.4": + version "0.32.4" + resolved "https://registry.yarnpkg.com/@cosmjs/encoding/-/encoding-0.32.4.tgz#646e0e809f7f4f1414d8fa991fb0ffe6c633aede" + integrity sha512-tjvaEy6ZGxJchiizzTn7HVRiyTg1i4CObRRaTRPknm5EalE13SV+TCHq38gIDfyUeden4fCuaBVEdBR5+ti7Hw== + dependencies: + base64-js "^1.3.0" + bech32 "^1.1.4" + readonly-date "^1.0.0" + +"@cosmjs/json-rpc@^0.32.4": + version "0.32.4" + resolved "https://registry.yarnpkg.com/@cosmjs/json-rpc/-/json-rpc-0.32.4.tgz#be91eb89ea78bd5dc02d0a9fa184dd6790790f0b" + integrity sha512-/jt4mBl7nYzfJ2J/VJ+r19c92mUKF0Lt0JxM3MXEJl7wlwW5haHAWtzRujHkyYMXOwIR+gBqT2S0vntXVBRyhQ== + dependencies: + "@cosmjs/stream" "^0.32.4" + xstream "^11.14.0" + +"@cosmjs/launchpad@^0.27.1": + version "0.27.1" + resolved "https://registry.yarnpkg.com/@cosmjs/launchpad/-/launchpad-0.27.1.tgz#b6f1995748be96560f5f01e84d3ff907477dda77" + integrity sha512-DcFwGD/z5PK8CzO2sojDxa+Be9EIEtRZb2YawgVnw2Ht/p5FlNv+OVo8qlishpBdalXEN7FvQ1dVeDFEe9TuJw== + dependencies: + "@cosmjs/amino" "0.27.1" + "@cosmjs/crypto" "0.27.1" + "@cosmjs/encoding" "0.27.1" + "@cosmjs/math" "0.27.1" + "@cosmjs/utils" "0.27.1" + axios "^0.21.2" + fast-deep-equal "^3.1.3" + +"@cosmjs/math@0.27.1": + version "0.27.1" + resolved "https://registry.yarnpkg.com/@cosmjs/math/-/math-0.27.1.tgz#be78857b008ffc6b1ed6fecaa1c4cd5bc38c07d7" + integrity sha512-cHWVjmfIjtRc7f80n7x+J5k8pe+vTVTQ0lA82tIxUgqUvgS6rogPP/TmGtTiZ4+NxWxd11DUISY6gVpr18/VNQ== + dependencies: + bn.js "^5.2.0" + +"@cosmjs/math@0.28.13": + version "0.28.13" + resolved "https://registry.yarnpkg.com/@cosmjs/math/-/math-0.28.13.tgz#50c05bc67007a04216f7f5e0c93f57270f8cc077" + integrity sha512-PDpL8W/kbyeWi0mQ2OruyqE8ZUAdxPs1xCbDX3WXJwy2oU+X2UTbkuweJHVpS9CIqmZulBoWQAmlf6t6zr1N/g== + dependencies: + bn.js "^5.2.0" + +"@cosmjs/math@^0.32.4": + version "0.32.4" + resolved "https://registry.yarnpkg.com/@cosmjs/math/-/math-0.32.4.tgz#87ac9eadc06696e30a30bdb562a495974bfd0a1a" + integrity sha512-++dqq2TJkoB8zsPVYCvrt88oJWsy1vMOuSOKcdlnXuOA/ASheTJuYy4+oZlTQ3Fr8eALDLGGPhJI02W2HyAQaw== + dependencies: + bn.js "^5.2.0" + +"@cosmjs/proto-signing@^0.32.2", "@cosmjs/proto-signing@^0.32.3", "@cosmjs/proto-signing@^0.32.4": + version "0.32.4" + resolved "https://registry.yarnpkg.com/@cosmjs/proto-signing/-/proto-signing-0.32.4.tgz#5a06e087c6d677439c8c9b25b5223d5e72c4cd93" + integrity sha512-QdyQDbezvdRI4xxSlyM1rSVBO2st5sqtbEIl3IX03uJ7YiZIQHyv6vaHVf1V4mapusCqguiHJzm4N4gsFdLBbQ== + dependencies: + "@cosmjs/amino" "^0.32.4" + "@cosmjs/crypto" "^0.32.4" + "@cosmjs/encoding" "^0.32.4" + "@cosmjs/math" "^0.32.4" + "@cosmjs/utils" "^0.32.4" + cosmjs-types "^0.9.0" + +"@cosmjs/socket@^0.32.4": + version "0.32.4" + resolved "https://registry.yarnpkg.com/@cosmjs/socket/-/socket-0.32.4.tgz#86ab6adf3a442314774c0810b7a7cfcddf4f2082" + integrity sha512-davcyYziBhkzfXQTu1l5NrpDYv0K9GekZCC9apBRvL1dvMc9F/ygM7iemHjUA+z8tJkxKxrt/YPjJ6XNHzLrkw== + dependencies: + "@cosmjs/stream" "^0.32.4" + isomorphic-ws "^4.0.1" + ws "^7" + xstream "^11.14.0" + +"@cosmjs/stargate@^0.32.2", "@cosmjs/stargate@^0.32.3": + version "0.32.4" + resolved "https://registry.yarnpkg.com/@cosmjs/stargate/-/stargate-0.32.4.tgz#bd0e4d3bf613b629addbf5f875d3d3b50f640af1" + integrity sha512-usj08LxBSsPRq9sbpCeVdyLx2guEcOHfJS9mHGCLCXpdAPEIEQEtWLDpEUc0LEhWOx6+k/ChXTc5NpFkdrtGUQ== + dependencies: + "@confio/ics23" "^0.6.8" + "@cosmjs/amino" "^0.32.4" + "@cosmjs/encoding" "^0.32.4" + "@cosmjs/math" "^0.32.4" + "@cosmjs/proto-signing" "^0.32.4" + "@cosmjs/stream" "^0.32.4" + "@cosmjs/tendermint-rpc" "^0.32.4" + "@cosmjs/utils" "^0.32.4" + cosmjs-types "^0.9.0" + xstream "^11.14.0" + +"@cosmjs/stream@^0.32.4": + version "0.32.4" + resolved "https://registry.yarnpkg.com/@cosmjs/stream/-/stream-0.32.4.tgz#83e1f2285807467c56d9ea0e1113f79d9fa63802" + integrity sha512-Gih++NYHEiP+oyD4jNEUxU9antoC0pFSg+33Hpp0JlHwH0wXhtD3OOKnzSfDB7OIoEbrzLJUpEjOgpCp5Z+W3A== + dependencies: + xstream "^11.14.0" + +"@cosmjs/tendermint-rpc@^0.32.2", "@cosmjs/tendermint-rpc@^0.32.4": + version "0.32.4" + resolved "https://registry.yarnpkg.com/@cosmjs/tendermint-rpc/-/tendermint-rpc-0.32.4.tgz#b36f9ec657498e42c97e21bb7368798ef6279752" + integrity sha512-MWvUUno+4bCb/LmlMIErLypXxy7ckUuzEmpufYYYd9wgbdCXaTaO08SZzyFM5PI8UJ/0S2AmUrgWhldlbxO8mw== + dependencies: + "@cosmjs/crypto" "^0.32.4" + "@cosmjs/encoding" "^0.32.4" + "@cosmjs/json-rpc" "^0.32.4" + "@cosmjs/math" "^0.32.4" + "@cosmjs/socket" "^0.32.4" + "@cosmjs/stream" "^0.32.4" + "@cosmjs/utils" "^0.32.4" + axios "^1.6.0" + readonly-date "^1.0.0" + xstream "^11.14.0" + +"@cosmjs/utils@0.27.1": + version "0.27.1" + resolved "https://registry.yarnpkg.com/@cosmjs/utils/-/utils-0.27.1.tgz#1c8efde17256346ef142a3bd15158ee4055470e2" + integrity sha512-VG7QPDiMUzVPxRdJahDV8PXxVdnuAHiIuG56hldV4yPnOz/si/DLNd7VAUUA5923b6jS1Hhev0Hr6AhEkcxBMg== + +"@cosmjs/utils@0.28.13": + version "0.28.13" + resolved "https://registry.yarnpkg.com/@cosmjs/utils/-/utils-0.28.13.tgz#2fd2844ec832d7833811e2ae1691305d09791a08" + integrity sha512-dVeMBiyg+46x7XBZEfJK8yTihphbCFpjVYmLJVqmTsHfJwymQ65cpyW/C+V/LgWARGK8hWQ/aX9HM5Ao8QmMSg== + +"@cosmjs/utils@^0.32.4": + version "0.32.4" + resolved "https://registry.yarnpkg.com/@cosmjs/utils/-/utils-0.32.4.tgz#a9a717c9fd7b1984d9cefdd0ef6c6f254060c671" + integrity sha512-D1Yc+Zy8oL/hkUkFUL/bwxvuDBzRGpc4cF7/SkdhxX4iHpSLgdOuTt1mhCh9+kl6NQREy9t7SYZ6xeW5gFe60w== + +"@craftzdog/react-native-buffer@^6.0.5": + version "6.0.5" + resolved "https://registry.yarnpkg.com/@craftzdog/react-native-buffer/-/react-native-buffer-6.0.5.tgz#0d4fbe0dd104186d2806655e3c0d25cebdae91d3" + integrity sha512-Av+YqfwA9e7jhgI9GFE/gTpwl/H+dRRLmZyJPOpKTy107j9Oj7oXlm3/YiMNz+C/CEGqcKAOqnXDLs4OL6AAFw== + dependencies: + ieee754 "^1.2.1" + react-native-quick-base64 "^2.0.5" + +"@csstools/normalize.css@*": + version "12.1.1" + resolved "https://registry.yarnpkg.com/@csstools/normalize.css/-/normalize.css-12.1.1.tgz#f0ad221b7280f3fc814689786fd9ee092776ef8f" + integrity sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ== + +"@csstools/postcss-cascade-layers@^1.1.1": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz#8a997edf97d34071dd2e37ea6022447dd9e795ad" + integrity sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA== + dependencies: + "@csstools/selector-specificity" "^2.0.2" + postcss-selector-parser "^6.0.10" + +"@csstools/postcss-color-function@^1.1.1": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz#2bd36ab34f82d0497cfacdc9b18d34b5e6f64b6b" + integrity sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw== + dependencies: + "@csstools/postcss-progressive-custom-properties" "^1.1.0" + postcss-value-parser "^4.2.0" + +"@csstools/postcss-font-format-keywords@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz#677b34e9e88ae997a67283311657973150e8b16a" + integrity sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg== + dependencies: + postcss-value-parser "^4.2.0" + +"@csstools/postcss-hwb-function@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz#ab54a9fce0ac102c754854769962f2422ae8aa8b" + integrity sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w== + dependencies: + postcss-value-parser "^4.2.0" + +"@csstools/postcss-ic-unit@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz#28237d812a124d1a16a5acc5c3832b040b303e58" + integrity sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw== + dependencies: + "@csstools/postcss-progressive-custom-properties" "^1.1.0" + postcss-value-parser "^4.2.0" + +"@csstools/postcss-is-pseudo-class@^2.0.7": + version "2.0.7" + resolved "https://registry.yarnpkg.com/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz#846ae6c0d5a1eaa878fce352c544f9c295509cd1" + integrity sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA== + dependencies: + "@csstools/selector-specificity" "^2.0.0" + postcss-selector-parser "^6.0.10" + +"@csstools/postcss-nested-calc@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz#d7e9d1d0d3d15cf5ac891b16028af2a1044d0c26" + integrity sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ== + dependencies: + postcss-value-parser "^4.2.0" + +"@csstools/postcss-normalize-display-values@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz#15da54a36e867b3ac5163ee12c1d7f82d4d612c3" + integrity sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw== + dependencies: + postcss-value-parser "^4.2.0" + +"@csstools/postcss-oklab-function@^1.1.1": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz#88cee0fbc8d6df27079ebd2fa016ee261eecf844" + integrity sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA== + dependencies: + "@csstools/postcss-progressive-custom-properties" "^1.1.0" + postcss-value-parser "^4.2.0" + +"@csstools/postcss-progressive-custom-properties@^1.1.0", "@csstools/postcss-progressive-custom-properties@^1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz#542292558384361776b45c85226b9a3a34f276fa" + integrity sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA== + dependencies: + postcss-value-parser "^4.2.0" + +"@csstools/postcss-stepped-value-functions@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz#f8772c3681cc2befed695e2b0b1d68e22f08c4f4" + integrity sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ== + dependencies: + postcss-value-parser "^4.2.0" + +"@csstools/postcss-text-decoration-shorthand@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz#ea96cfbc87d921eca914d3ad29340d9bcc4c953f" + integrity sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw== + dependencies: + postcss-value-parser "^4.2.0" + +"@csstools/postcss-trigonometric-functions@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz#94d3e4774c36d35dcdc88ce091336cb770d32756" + integrity sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og== + dependencies: + postcss-value-parser "^4.2.0" + +"@csstools/postcss-unset-value@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz#c99bb70e2cdc7312948d1eb41df2412330b81f77" + integrity sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g== + +"@csstools/selector-specificity@^2.0.0", "@csstools/selector-specificity@^2.0.2": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz#2cbcf822bf3764c9658c4d2e568bd0c0cb748016" + integrity sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw== + +"@emotion/babel-plugin@^11.12.0": + version "11.12.0" + resolved "https://registry.yarnpkg.com/@emotion/babel-plugin/-/babel-plugin-11.12.0.tgz#7b43debb250c313101b3f885eba634f1d723fcc2" + integrity sha512-y2WQb+oP8Jqvvclh8Q55gLUyb7UFvgv7eJfsj7td5TToBrIUtPay2kMrZi4xjq9qw2vD0ZR5fSho0yqoFgX7Rw== + dependencies: + "@babel/helper-module-imports" "^7.16.7" + "@babel/runtime" "^7.18.3" + "@emotion/hash" "^0.9.2" + "@emotion/memoize" "^0.9.0" + "@emotion/serialize" "^1.2.0" + babel-plugin-macros "^3.1.0" + convert-source-map "^1.5.0" + escape-string-regexp "^4.0.0" + find-root "^1.1.0" + source-map "^0.5.7" + stylis "4.2.0" + +"@emotion/cache@^11.11.0", "@emotion/cache@^11.13.0": + version "11.13.0" + resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.13.0.tgz#8f51748b8116691dee0408b08ad758b8d246b097" + integrity sha512-hPV345J/tH0Cwk2wnU/3PBzORQ9HeX+kQSbwI+jslzpRCHE6fSGTohswksA/Ensr8znPzwfzKZCmAM9Lmlhp7g== + dependencies: + "@emotion/memoize" "^0.9.0" + "@emotion/sheet" "^1.4.0" + "@emotion/utils" "^1.4.0" + "@emotion/weak-memoize" "^0.4.0" + stylis "4.2.0" + +"@emotion/hash@^0.9.2": + version "0.9.2" + resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.9.2.tgz#ff9221b9f58b4dfe61e619a7788734bd63f6898b" + integrity sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g== + +"@emotion/is-prop-valid@^1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.3.0.tgz#bd84ba972195e8a2d42462387581560ef780e4e2" + integrity sha512-SHetuSLvJDzuNbOdtPVbq6yMMMlLoW5Q94uDqJZqy50gcmAjxFkVqmzqSGEFq9gT2iMuIeKV1PXVWmvUhuZLlQ== + dependencies: + "@emotion/memoize" "^0.9.0" + +"@emotion/memoize@^0.9.0": + version "0.9.0" + resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.9.0.tgz#745969d649977776b43fc7648c556aaa462b4102" + integrity sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ== + +"@emotion/react@^11.13.0": + version "11.13.0" + resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.13.0.tgz#a9ebf827b98220255e5760dac89fa2d38ca7b43d" + integrity sha512-WkL+bw1REC2VNV1goQyfxjx1GYJkcc23CRQkXX+vZNLINyfI7o+uUn/rTGPt/xJ3bJHd5GcljgnxHf4wRw5VWQ== + dependencies: + "@babel/runtime" "^7.18.3" + "@emotion/babel-plugin" "^11.12.0" + "@emotion/cache" "^11.13.0" + "@emotion/serialize" "^1.3.0" + "@emotion/use-insertion-effect-with-fallbacks" "^1.1.0" + "@emotion/utils" "^1.4.0" + "@emotion/weak-memoize" "^0.4.0" + hoist-non-react-statics "^3.3.1" + +"@emotion/serialize@^1.2.0", "@emotion/serialize@^1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.3.0.tgz#e07cadfc967a4e7816e0c3ffaff4c6ce05cb598d" + integrity sha512-jACuBa9SlYajnpIVXB+XOXnfJHyckDfe6fOpORIM6yhBDlqGuExvDdZYHDQGoDf3bZXGv7tNr+LpLjJqiEQ6EA== + dependencies: + "@emotion/hash" "^0.9.2" + "@emotion/memoize" "^0.9.0" + "@emotion/unitless" "^0.9.0" + "@emotion/utils" "^1.4.0" + csstype "^3.0.2" + +"@emotion/sheet@^1.4.0": + version "1.4.0" + resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.4.0.tgz#c9299c34d248bc26e82563735f78953d2efca83c" + integrity sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg== + +"@emotion/styled@^11.13.0": + version "11.13.0" + resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-11.13.0.tgz#633fd700db701472c7a5dbef54d6f9834e9fb190" + integrity sha512-tkzkY7nQhW/zC4hztlwucpT8QEZ6eUzpXDRhww/Eej4tFfO0FxQYWRyg/c5CCXa4d/f174kqeXYjuQRnhzf6dA== + dependencies: + "@babel/runtime" "^7.18.3" + "@emotion/babel-plugin" "^11.12.0" + "@emotion/is-prop-valid" "^1.3.0" + "@emotion/serialize" "^1.3.0" + "@emotion/use-insertion-effect-with-fallbacks" "^1.1.0" + "@emotion/utils" "^1.4.0" + +"@emotion/unitless@^0.9.0": + version "0.9.0" + resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.9.0.tgz#8e5548f072bd67b8271877e51c0f95c76a66cbe2" + integrity sha512-TP6GgNZtmtFaFcsOgExdnfxLLpRDla4Q66tnenA9CktvVSdNKDvMVuUah4QvWPIpNjrWsGg3qeGo9a43QooGZQ== + +"@emotion/use-insertion-effect-with-fallbacks@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.1.0.tgz#1a818a0b2c481efba0cf34e5ab1e0cb2dcb9dfaf" + integrity sha512-+wBOcIV5snwGgI2ya3u99D7/FJquOIniQT1IKyDsBmEgwvpxMNeS65Oib7OnE2d2aY+3BU4OiH+0Wchf8yk3Hw== + +"@emotion/utils@^1.4.0": + version "1.4.0" + resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-1.4.0.tgz#262f1d02aaedb2ec91c83a0955dd47822ad5fbdd" + integrity sha512-spEnrA1b6hDR/C68lC2M7m6ALPUHZC0lIY7jAS/B/9DuuO1ZP04eov8SMv/6fwRd8pzmsn2AuJEznRREWlQrlQ== + +"@emotion/weak-memoize@^0.4.0": + version "0.4.0" + resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz#5e13fac887f08c44f76b0ccaf3370eb00fec9bb6" + integrity sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg== + +"@eslint-community/eslint-utils@^4.2.0": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" + integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== + dependencies: + eslint-visitor-keys "^3.3.0" + +"@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.6.1": + version "4.11.0" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.11.0.tgz#b0ffd0312b4a3fd2d6f77237e7248a5ad3a680ae" + integrity sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A== + +"@eslint/eslintrc@^2.1.4": + version "2.1.4" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad" + integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ== + dependencies: + ajv "^6.12.4" + debug "^4.3.2" + espree "^9.6.0" + globals "^13.19.0" + ignore "^5.2.0" + import-fresh "^3.2.1" + js-yaml "^4.1.0" + minimatch "^3.1.2" + strip-json-comments "^3.1.1" + +"@eslint/js@8.57.0": + version "8.57.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.0.tgz#a5417ae8427873f1dd08b70b3574b453e67b5f7f" + integrity sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g== + +"@ethersproject/abi@5.7.0", "@ethersproject/abi@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.7.0.tgz#b3f3e045bbbeed1af3947335c247ad625a44e449" + integrity sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA== + dependencies: + "@ethersproject/address" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/constants" "^5.7.0" + "@ethersproject/hash" "^5.7.0" + "@ethersproject/keccak256" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/strings" "^5.7.0" + +"@ethersproject/abstract-provider@5.7.0", "@ethersproject/abstract-provider@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz#b0a8550f88b6bf9d51f90e4795d48294630cb9ef" + integrity sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw== + dependencies: + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/networks" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/transactions" "^5.7.0" + "@ethersproject/web" "^5.7.0" + +"@ethersproject/abstract-signer@5.7.0", "@ethersproject/abstract-signer@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz#13f4f32117868452191a4649723cb086d2b596b2" + integrity sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ== + dependencies: + "@ethersproject/abstract-provider" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + +"@ethersproject/address@5.7.0", "@ethersproject/address@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.7.0.tgz#19b56c4d74a3b0a46bfdbb6cfcc0a153fc697f37" + integrity sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA== + dependencies: + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/keccak256" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/rlp" "^5.7.0" + +"@ethersproject/base64@5.7.0", "@ethersproject/base64@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.7.0.tgz#ac4ee92aa36c1628173e221d0d01f53692059e1c" + integrity sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ== + dependencies: + "@ethersproject/bytes" "^5.7.0" + +"@ethersproject/basex@5.7.0", "@ethersproject/basex@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.7.0.tgz#97034dc7e8938a8ca943ab20f8a5e492ece4020b" + integrity sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + +"@ethersproject/bignumber@5.7.0", "@ethersproject/bignumber@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.7.0.tgz#e2f03837f268ba655ffba03a57853e18a18dc9c2" + integrity sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + bn.js "^5.2.1" + +"@ethersproject/bytes@5.7.0", "@ethersproject/bytes@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.7.0.tgz#a00f6ea8d7e7534d6d87f47188af1148d71f155d" + integrity sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A== + dependencies: + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/constants@5.7.0", "@ethersproject/constants@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.7.0.tgz#df80a9705a7e08984161f09014ea012d1c75295e" + integrity sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA== + dependencies: + "@ethersproject/bignumber" "^5.7.0" + +"@ethersproject/contracts@5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/contracts/-/contracts-5.7.0.tgz#c305e775abd07e48aa590e1a877ed5c316f8bd1e" + integrity sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg== + dependencies: + "@ethersproject/abi" "^5.7.0" + "@ethersproject/abstract-provider" "^5.7.0" + "@ethersproject/abstract-signer" "^5.7.0" + "@ethersproject/address" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/constants" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/transactions" "^5.7.0" + +"@ethersproject/hash@5.7.0", "@ethersproject/hash@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.7.0.tgz#eb7aca84a588508369562e16e514b539ba5240a7" + integrity sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g== + dependencies: + "@ethersproject/abstract-signer" "^5.7.0" + "@ethersproject/address" "^5.7.0" + "@ethersproject/base64" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/keccak256" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/strings" "^5.7.0" + +"@ethersproject/hdnode@5.7.0", "@ethersproject/hdnode@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/hdnode/-/hdnode-5.7.0.tgz#e627ddc6b466bc77aebf1a6b9e47405ca5aef9cf" + integrity sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg== + dependencies: + "@ethersproject/abstract-signer" "^5.7.0" + "@ethersproject/basex" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/pbkdf2" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/sha2" "^5.7.0" + "@ethersproject/signing-key" "^5.7.0" + "@ethersproject/strings" "^5.7.0" + "@ethersproject/transactions" "^5.7.0" + "@ethersproject/wordlists" "^5.7.0" + +"@ethersproject/json-wallets@5.7.0", "@ethersproject/json-wallets@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz#5e3355287b548c32b368d91014919ebebddd5360" + integrity sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g== + dependencies: + "@ethersproject/abstract-signer" "^5.7.0" + "@ethersproject/address" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/hdnode" "^5.7.0" + "@ethersproject/keccak256" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/pbkdf2" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/random" "^5.7.0" + "@ethersproject/strings" "^5.7.0" + "@ethersproject/transactions" "^5.7.0" + aes-js "3.0.0" + scrypt-js "3.0.1" + +"@ethersproject/keccak256@5.7.0", "@ethersproject/keccak256@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.7.0.tgz#3186350c6e1cd6aba7940384ec7d6d9db01f335a" + integrity sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg== + dependencies: + "@ethersproject/bytes" "^5.7.0" + js-sha3 "0.8.0" + +"@ethersproject/logger@5.7.0", "@ethersproject/logger@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.7.0.tgz#6ce9ae168e74fecf287be17062b590852c311892" + integrity sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig== + +"@ethersproject/networks@5.7.1", "@ethersproject/networks@^5.7.0": + version "5.7.1" + resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.7.1.tgz#118e1a981d757d45ccea6bb58d9fd3d9db14ead6" + integrity sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ== + dependencies: + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/pbkdf2@5.7.0", "@ethersproject/pbkdf2@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz#d2267d0a1f6e123f3771007338c47cccd83d3102" + integrity sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/sha2" "^5.7.0" + +"@ethersproject/properties@5.7.0", "@ethersproject/properties@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.7.0.tgz#a6e12cb0439b878aaf470f1902a176033067ed30" + integrity sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw== + dependencies: + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/providers@5.7.2": + version "5.7.2" + resolved "https://registry.yarnpkg.com/@ethersproject/providers/-/providers-5.7.2.tgz#f8b1a4f275d7ce58cf0a2eec222269a08beb18cb" + integrity sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg== + dependencies: + "@ethersproject/abstract-provider" "^5.7.0" + "@ethersproject/abstract-signer" "^5.7.0" + "@ethersproject/address" "^5.7.0" + "@ethersproject/base64" "^5.7.0" + "@ethersproject/basex" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/constants" "^5.7.0" + "@ethersproject/hash" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/networks" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/random" "^5.7.0" + "@ethersproject/rlp" "^5.7.0" + "@ethersproject/sha2" "^5.7.0" + "@ethersproject/strings" "^5.7.0" + "@ethersproject/transactions" "^5.7.0" + "@ethersproject/web" "^5.7.0" + bech32 "1.1.4" + ws "7.4.6" + +"@ethersproject/random@5.7.0", "@ethersproject/random@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.7.0.tgz#af19dcbc2484aae078bb03656ec05df66253280c" + integrity sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/rlp@5.7.0", "@ethersproject/rlp@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.7.0.tgz#de39e4d5918b9d74d46de93af80b7685a9c21304" + integrity sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/sha2@5.7.0", "@ethersproject/sha2@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.7.0.tgz#9a5f7a7824ef784f7f7680984e593a800480c9fb" + integrity sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + hash.js "1.1.7" + +"@ethersproject/shims@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/shims/-/shims-5.7.0.tgz#ee32e543418595774029c5ea6123ea8995e7e154" + integrity sha512-WeDptc6oAprov5CCN2LJ/6/+dC9gTonnkdAtLepm/7P5Z+3PRxS5NpfVWmOMs1yE4Vitl2cU8bOPWC0GvGSbVg== + +"@ethersproject/signing-key@5.7.0", "@ethersproject/signing-key@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.7.0.tgz#06b2df39411b00bc57c7c09b01d1e41cf1b16ab3" + integrity sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + bn.js "^5.2.1" + elliptic "6.5.4" + hash.js "1.1.7" + +"@ethersproject/solidity@5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/solidity/-/solidity-5.7.0.tgz#5e9c911d8a2acce2a5ebb48a5e2e0af20b631cb8" + integrity sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA== + dependencies: + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/keccak256" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/sha2" "^5.7.0" + "@ethersproject/strings" "^5.7.0" + +"@ethersproject/strings@5.7.0", "@ethersproject/strings@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.7.0.tgz#54c9d2a7c57ae8f1205c88a9d3a56471e14d5ed2" + integrity sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/constants" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/transactions@5.7.0", "@ethersproject/transactions@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.7.0.tgz#91318fc24063e057885a6af13fdb703e1f993d3b" + integrity sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ== + dependencies: + "@ethersproject/address" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/constants" "^5.7.0" + "@ethersproject/keccak256" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/rlp" "^5.7.0" + "@ethersproject/signing-key" "^5.7.0" + +"@ethersproject/units@5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/units/-/units-5.7.0.tgz#637b563d7e14f42deeee39245275d477aae1d8b1" + integrity sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg== + dependencies: + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/constants" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + +"@ethersproject/wallet@5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/wallet/-/wallet-5.7.0.tgz#4e5d0790d96fe21d61d38fb40324e6c7ef350b2d" + integrity sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA== + dependencies: + "@ethersproject/abstract-provider" "^5.7.0" + "@ethersproject/abstract-signer" "^5.7.0" + "@ethersproject/address" "^5.7.0" + "@ethersproject/bignumber" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/hash" "^5.7.0" + "@ethersproject/hdnode" "^5.7.0" + "@ethersproject/json-wallets" "^5.7.0" + "@ethersproject/keccak256" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/random" "^5.7.0" + "@ethersproject/signing-key" "^5.7.0" + "@ethersproject/transactions" "^5.7.0" + "@ethersproject/wordlists" "^5.7.0" + +"@ethersproject/web@5.7.1", "@ethersproject/web@^5.7.0": + version "5.7.1" + resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.7.1.tgz#de1f285b373149bee5928f4eb7bcb87ee5fbb4ae" + integrity sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w== + dependencies: + "@ethersproject/base64" "^5.7.0" + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/strings" "^5.7.0" + +"@ethersproject/wordlists@5.7.0", "@ethersproject/wordlists@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@ethersproject/wordlists/-/wordlists-5.7.0.tgz#8fb2c07185d68c3e09eb3bfd6e779ba2774627f5" + integrity sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA== + dependencies: + "@ethersproject/bytes" "^5.7.0" + "@ethersproject/hash" "^5.7.0" + "@ethersproject/logger" "^5.7.0" + "@ethersproject/properties" "^5.7.0" + "@ethersproject/strings" "^5.7.0" + +"@hapi/hoek@^9.0.0", "@hapi/hoek@^9.3.0": + version "9.3.0" + resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" + integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== + +"@hapi/topo@^5.1.0": + version "5.1.0" + resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" + integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@hookform/resolvers@^3.3.4": + version "3.9.0" + resolved "https://registry.yarnpkg.com/@hookform/resolvers/-/resolvers-3.9.0.tgz#cf540ac21c6c0cd24a40cf53d8e6d64391fb753d" + integrity sha512-bU0Gr4EepJ/EQsH/IwEzYLsT/PEj5C0ynLQ4m+GSHS+xKH4TfSelhluTgOaoc4kA5s7eCsQbM4wvZLzELmWzUg== + +"@humanwhocodes/config-array@^0.11.14": + version "0.11.14" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.14.tgz#d78e481a039f7566ecc9660b4ea7fe6b1fec442b" + integrity sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg== + dependencies: + "@humanwhocodes/object-schema" "^2.0.2" + debug "^4.3.1" + minimatch "^3.0.5" + +"@humanwhocodes/module-importer@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" + integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== + +"@humanwhocodes/object-schema@^2.0.2": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz#4a2868d75d6d6963e423bcf90b7fd1be343409d3" + integrity sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA== + +"@ipld/dag-cbor@^7.0.1": + version "7.0.3" + resolved "https://registry.yarnpkg.com/@ipld/dag-cbor/-/dag-cbor-7.0.3.tgz#aa31b28afb11a807c3d627828a344e5521ac4a1e" + integrity sha512-1VVh2huHsuohdXC1bGJNE8WR72slZ9XE2T3wbBBq31dm7ZBatmKLLxrB+XAqafxfRFjv08RZmj/W/ZqaM13AuA== + dependencies: + cborg "^1.6.0" + multiformats "^9.5.4" + +"@ipld/dag-json@^8.0.9": + version "8.0.11" + resolved "https://registry.yarnpkg.com/@ipld/dag-json/-/dag-json-8.0.11.tgz#8d30cc2dfacb0aef04d327465d3df91e79e8b6ce" + integrity sha512-Pea7JXeYHTWXRTIhBqBlhw7G53PJ7yta3G/sizGEZyzdeEwhZRr0od5IQ0r2ZxOt1Do+2czddjeEPp+YTxDwCA== + dependencies: + cborg "^1.5.4" + multiformats "^9.5.4" + +"@isaacs/cliui@^8.0.2": + version "8.0.2" + resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" + integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== + 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" + +"@isaacs/ttlcache@^1.4.1": + version "1.4.1" + resolved "https://registry.yarnpkg.com/@isaacs/ttlcache/-/ttlcache-1.4.1.tgz#21fb23db34e9b6220c6ba023a0118a2dd3461ea2" + integrity sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA== + +"@istanbuljs/load-nyc-config@^1.0.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" + integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== + dependencies: + camelcase "^5.3.1" + find-up "^4.1.0" + get-package-type "^0.1.0" + js-yaml "^3.13.1" + resolve-from "^5.0.0" + +"@istanbuljs/schema@^0.1.2": + version "0.1.3" + resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" + integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== + +"@jest/console@^27.5.1": + version "27.5.1" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-27.5.1.tgz#260fe7239602fe5130a94f1aa386eff54b014bba" + integrity sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg== + dependencies: + "@jest/types" "^27.5.1" + "@types/node" "*" + chalk "^4.0.0" + jest-message-util "^27.5.1" + jest-util "^27.5.1" + slash "^3.0.0" + +"@jest/console@^28.1.3": + version "28.1.3" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-28.1.3.tgz#2030606ec03a18c31803b8a36382762e447655df" + integrity sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw== + dependencies: + "@jest/types" "^28.1.3" + "@types/node" "*" + chalk "^4.0.0" + jest-message-util "^28.1.3" + jest-util "^28.1.3" + slash "^3.0.0" + +"@jest/core@^27.5.1": + version "27.5.1" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-27.5.1.tgz#267ac5f704e09dc52de2922cbf3af9edcd64b626" + integrity sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ== + dependencies: + "@jest/console" "^27.5.1" + "@jest/reporters" "^27.5.1" + "@jest/test-result" "^27.5.1" + "@jest/transform" "^27.5.1" + "@jest/types" "^27.5.1" + "@types/node" "*" + ansi-escapes "^4.2.1" + chalk "^4.0.0" + emittery "^0.8.1" + exit "^0.1.2" + graceful-fs "^4.2.9" + jest-changed-files "^27.5.1" + jest-config "^27.5.1" + jest-haste-map "^27.5.1" + jest-message-util "^27.5.1" + jest-regex-util "^27.5.1" + jest-resolve "^27.5.1" + jest-resolve-dependencies "^27.5.1" + jest-runner "^27.5.1" + jest-runtime "^27.5.1" + jest-snapshot "^27.5.1" + jest-util "^27.5.1" + jest-validate "^27.5.1" + jest-watcher "^27.5.1" + micromatch "^4.0.4" + rimraf "^3.0.0" + slash "^3.0.0" + strip-ansi "^6.0.0" + +"@jest/create-cache-key-function@^29.6.3": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/create-cache-key-function/-/create-cache-key-function-29.7.0.tgz#793be38148fab78e65f40ae30c36785f4ad859f0" + integrity sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA== + dependencies: + "@jest/types" "^29.6.3" + +"@jest/environment@^27.5.1": + version "27.5.1" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-27.5.1.tgz#d7425820511fe7158abbecc010140c3fd3be9c74" + integrity sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA== + dependencies: + "@jest/fake-timers" "^27.5.1" + "@jest/types" "^27.5.1" + "@types/node" "*" + jest-mock "^27.5.1" + +"@jest/environment@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.7.0.tgz#24d61f54ff1f786f3cd4073b4b94416383baf2a7" + integrity sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw== + dependencies: + "@jest/fake-timers" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + jest-mock "^29.7.0" + +"@jest/expect-utils@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.7.0.tgz#023efe5d26a8a70f21677d0a1afc0f0a44e3a1c6" + integrity sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA== + dependencies: + jest-get-type "^29.6.3" + +"@jest/fake-timers@^27.5.1": + version "27.5.1" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-27.5.1.tgz#76979745ce0579c8a94a4678af7a748eda8ada74" + integrity sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ== + dependencies: + "@jest/types" "^27.5.1" + "@sinonjs/fake-timers" "^8.0.1" + "@types/node" "*" + jest-message-util "^27.5.1" + jest-mock "^27.5.1" + jest-util "^27.5.1" + +"@jest/fake-timers@^29.7.0": + version "29.7.0" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.7.0.tgz#fd91bf1fffb16d7d0d24a426ab1a47a49881a565" + integrity sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ== + dependencies: + "@jest/types" "^29.6.3" + "@sinonjs/fake-timers" "^10.0.2" + "@types/node" "*" + jest-message-util "^29.7.0" + jest-mock "^29.7.0" + jest-util "^29.7.0" + +"@jest/globals@^27.5.1": + version "27.5.1" + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-27.5.1.tgz#7ac06ce57ab966566c7963431cef458434601b2b" + integrity sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q== + dependencies: + "@jest/environment" "^27.5.1" + "@jest/types" "^27.5.1" + expect "^27.5.1" + +"@jest/reporters@^27.5.1": + version "27.5.1" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-27.5.1.tgz#ceda7be96170b03c923c37987b64015812ffec04" + integrity sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw== + dependencies: + "@bcoe/v8-coverage" "^0.2.3" + "@jest/console" "^27.5.1" + "@jest/test-result" "^27.5.1" + "@jest/transform" "^27.5.1" + "@jest/types" "^27.5.1" + "@types/node" "*" + chalk "^4.0.0" + collect-v8-coverage "^1.0.0" + exit "^0.1.2" + glob "^7.1.2" + graceful-fs "^4.2.9" + istanbul-lib-coverage "^3.0.0" + istanbul-lib-instrument "^5.1.0" + istanbul-lib-report "^3.0.0" + istanbul-lib-source-maps "^4.0.0" + istanbul-reports "^3.1.3" + jest-haste-map "^27.5.1" + jest-resolve "^27.5.1" + jest-util "^27.5.1" + jest-worker "^27.5.1" + slash "^3.0.0" + source-map "^0.6.0" + string-length "^4.0.1" + terminal-link "^2.0.0" + v8-to-istanbul "^8.1.0" + +"@jest/schemas@^28.1.3": + version "28.1.3" + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-28.1.3.tgz#ad8b86a66f11f33619e3d7e1dcddd7f2d40ff905" + integrity sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg== + dependencies: + "@sinclair/typebox" "^0.24.1" + +"@jest/schemas@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03" + integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== + dependencies: + "@sinclair/typebox" "^0.27.8" + +"@jest/source-map@^27.5.1": + version "27.5.1" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-27.5.1.tgz#6608391e465add4205eae073b55e7f279e04e8cf" + integrity sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg== + dependencies: + callsites "^3.0.0" + graceful-fs "^4.2.9" + source-map "^0.6.0" + +"@jest/test-result@^27.5.1": + version "27.5.1" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.5.1.tgz#56a6585fa80f7cdab72b8c5fc2e871d03832f5bb" + integrity sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag== + dependencies: + "@jest/console" "^27.5.1" + "@jest/types" "^27.5.1" + "@types/istanbul-lib-coverage" "^2.0.0" + collect-v8-coverage "^1.0.0" + +"@jest/test-result@^28.1.3": + version "28.1.3" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-28.1.3.tgz#5eae945fd9f4b8fcfce74d239e6f725b6bf076c5" + integrity sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg== + dependencies: + "@jest/console" "^28.1.3" + "@jest/types" "^28.1.3" + "@types/istanbul-lib-coverage" "^2.0.0" + collect-v8-coverage "^1.0.0" + +"@jest/test-sequencer@^27.5.1": + version "27.5.1" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz#4057e0e9cea4439e544c6353c6affe58d095745b" + integrity sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ== + dependencies: + "@jest/test-result" "^27.5.1" + graceful-fs "^4.2.9" + jest-haste-map "^27.5.1" + jest-runtime "^27.5.1" + +"@jest/transform@^27.5.1": + version "27.5.1" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-27.5.1.tgz#6c3501dcc00c4c08915f292a600ece5ecfe1f409" + integrity sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw== + dependencies: + "@babel/core" "^7.1.0" + "@jest/types" "^27.5.1" + babel-plugin-istanbul "^6.1.1" + chalk "^4.0.0" + convert-source-map "^1.4.0" + fast-json-stable-stringify "^2.0.0" + graceful-fs "^4.2.9" + jest-haste-map "^27.5.1" + jest-regex-util "^27.5.1" + jest-util "^27.5.1" + micromatch "^4.0.4" + pirates "^4.0.4" + slash "^3.0.0" + source-map "^0.6.1" + write-file-atomic "^3.0.0" + +"@jest/types@^26.6.2": + version "26.6.2" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.6.2.tgz#bef5a532030e1d88a2f5a6d933f84e97226ed48e" + integrity sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^15.0.0" + chalk "^4.0.0" + +"@jest/types@^27.5.1": + version "27.5.1" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.5.1.tgz#3c79ec4a8ba61c170bf937bcf9e98a9df175ec80" + integrity sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^16.0.0" + chalk "^4.0.0" + +"@jest/types@^28.1.3": + version "28.1.3" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-28.1.3.tgz#b05de80996ff12512bc5ceb1d208285a7d11748b" + integrity sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ== + dependencies: + "@jest/schemas" "^28.1.3" + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^17.0.8" + chalk "^4.0.0" + +"@jest/types@^29.6.3": + version "29.6.3" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59" + integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== + dependencies: + "@jest/schemas" "^29.6.3" + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^17.0.8" + chalk "^4.0.0" + +"@jridgewell/gen-mapping@^0.3.2", "@jridgewell/gen-mapping@^0.3.5": + version "0.3.5" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" + integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== + dependencies: + "@jridgewell/set-array" "^1.2.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.24" + +"@jridgewell/resolve-uri@^3.1.0": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" + integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== + +"@jridgewell/set-array@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" + integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== + +"@jridgewell/source-map@^0.3.3": + version "0.3.6" + resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.6.tgz#9d71ca886e32502eb9362c9a74a46787c36df81a" + integrity sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ== + dependencies: + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a" + integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== + +"@jridgewell/trace-mapping@^0.3.20", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": + version "0.3.25" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" + integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== + dependencies: + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" + +"@json-rpc-tools/types@^1.7.6": + version "1.7.6" + resolved "https://registry.yarnpkg.com/@json-rpc-tools/types/-/types-1.7.6.tgz#5abd5fde01364a130c46093b501715bcce5bdc0e" + integrity sha512-nDSqmyRNEqEK9TZHtM15uNnDljczhCUdBmRhpNZ95bIPKEDQ+nTDmGMFd2lLin3upc5h2VVVd9tkTDdbXUhDIQ== + dependencies: + keyvaluestorage-interface "^1.0.0" + +"@json-rpc-tools/utils@^1.7.6": + version "1.7.6" + resolved "https://registry.yarnpkg.com/@json-rpc-tools/utils/-/utils-1.7.6.tgz#67f04987dbaa2e7adb6adff1575367b75a9a9ba1" + integrity sha512-HjA8x/U/Q78HRRe19yh8HVKoZ+Iaoo3YZjakJYxR+rw52NHo6jM+VE9b8+7ygkCFXl/EHID5wh/MkXaE/jGyYw== + dependencies: + "@json-rpc-tools/types" "^1.7.6" + "@pedrouid/environment" "^1.0.1" + +"@leichtgewicht/ip-codec@^2.0.1": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz#4fc56c15c580b9adb7dc3c333a134e540b44bfb1" + integrity sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw== + +"@metamask/eth-sig-util@^4.0.0": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@metamask/eth-sig-util/-/eth-sig-util-4.0.1.tgz#3ad61f6ea9ad73ba5b19db780d40d9aae5157088" + integrity sha512-tghyZKLHZjcdlDqCA3gNZmLeR0XvOE9U1qoQO9ohyAZT6Pya+H9vkBPcsyXytmYLNgVoin7CKCmweo/R43V+tQ== + dependencies: + ethereumjs-abi "^0.6.8" + ethereumjs-util "^6.2.1" + ethjs-util "^0.1.6" + tweetnacl "^1.0.3" + tweetnacl-util "^0.15.1" + +"@mui/core-downloads-tracker@^5.16.4": + version "5.16.4" + resolved "https://registry.yarnpkg.com/@mui/core-downloads-tracker/-/core-downloads-tracker-5.16.4.tgz#a34de72acd7e81fdbcc7eeb07786205e90dda148" + integrity sha512-rNdHXhclwjEZnK+//3SR43YRx0VtjdHnUFhMSGYmAMJve+KiwEja/41EYh8V3pZKqF2geKyfcFUenTfDTYUR4w== + +"@mui/material@^5.16.4": + version "5.16.4" + resolved "https://registry.yarnpkg.com/@mui/material/-/material-5.16.4.tgz#992d630637d9d38620e4937fb11d0a97965fdabf" + integrity sha512-dBnh3/zRYgEVIS3OE4oTbujse3gifA0qLMmuUk13ywsDCbngJsdgwW5LuYeiT5pfA8PGPGSqM7mxNytYXgiMCw== + dependencies: + "@babel/runtime" "^7.23.9" + "@mui/core-downloads-tracker" "^5.16.4" + "@mui/system" "^5.16.4" + "@mui/types" "^7.2.15" + "@mui/utils" "^5.16.4" + "@popperjs/core" "^2.11.8" + "@types/react-transition-group" "^4.4.10" + clsx "^2.1.0" + csstype "^3.1.3" + prop-types "^15.8.1" + react-is "^18.3.1" + react-transition-group "^4.4.5" + +"@mui/private-theming@^5.16.4": + version "5.16.4" + resolved "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-5.16.4.tgz#0118f137975b35dc4774c6d593b8fcf86594c3fc" + integrity sha512-ZsAm8cq31SJ37SVWLRlu02v9SRthxnfQofaiv14L5Bht51B0dz6yQEoVU/V8UduZDCCIrWkBHuReVfKhE/UuXA== + dependencies: + "@babel/runtime" "^7.23.9" + "@mui/utils" "^5.16.4" + prop-types "^15.8.1" + +"@mui/styled-engine@^5.16.4": + version "5.16.4" + resolved "https://registry.yarnpkg.com/@mui/styled-engine/-/styled-engine-5.16.4.tgz#a7a8c9079c307bab91ccd65ed5dd1496ddf2a3ab" + integrity sha512-0+mnkf+UiAmTVB8PZFqOhqf729Yh0Cxq29/5cA3VAyDVTRIUUQ8FXQhiAhUIbijFmM72rY80ahFPXIm4WDbzcA== + dependencies: + "@babel/runtime" "^7.23.9" + "@emotion/cache" "^11.11.0" + csstype "^3.1.3" + prop-types "^15.8.1" + +"@mui/system@^5.16.4": + version "5.16.4" + resolved "https://registry.yarnpkg.com/@mui/system/-/system-5.16.4.tgz#c03f971ed273f0ad06c69c949c05e866ad211407" + integrity sha512-ET1Ujl2/8hbsD611/mqUuNArMCGv/fIWO/f8B3ZqF5iyPHM2aS74vhTNyjytncc4i6dYwGxNk+tLa7GwjNS0/w== + dependencies: + "@babel/runtime" "^7.23.9" + "@mui/private-theming" "^5.16.4" + "@mui/styled-engine" "^5.16.4" + "@mui/types" "^7.2.15" + "@mui/utils" "^5.16.4" + clsx "^2.1.0" + csstype "^3.1.3" + prop-types "^15.8.1" + +"@mui/types@^7.2.15": + version "7.2.15" + resolved "https://registry.yarnpkg.com/@mui/types/-/types-7.2.15.tgz#dadd232fe9a70be0d526630675dff3b110f30b53" + integrity sha512-nbo7yPhtKJkdf9kcVOF8JZHPZTmqXjJ/tI0bdWgHg5tp9AnIN4Y7f7wm9T+0SyGYJk76+GYZ8Q5XaTYAsUHN0Q== + +"@mui/utils@^5.16.4": + version "5.16.4" + resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-5.16.4.tgz#8e50e27a630e3d8eeb3e9d3bc31cbb0e4956f5fd" + integrity sha512-nlppYwq10TBIFqp7qxY0SvbACOXeOjeVL3pOcDsK0FT8XjrEXh9/+lkg8AEIzD16z7YfiJDQjaJG2OLkE7BxNg== + dependencies: + "@babel/runtime" "^7.23.9" + "@types/prop-types" "^15.7.12" + clsx "^2.1.1" + prop-types "^15.8.1" + react-is "^18.3.1" + +"@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1": + version "5.1.1-v1" + resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz#dbf733a965ca47b1973177dc0bb6c889edcfb129" + integrity sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg== + dependencies: + eslint-scope "5.1.1" + +"@noble/hashes@^1", "@noble/hashes@^1.0.0", "@noble/hashes@^1.2.0": + version "1.4.0" + resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.4.0.tgz#45814aa329f30e4fe0ba49426f49dfccdd066426" + integrity sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg== + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@octetstream/promisify@2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@octetstream/promisify/-/promisify-2.0.2.tgz#29ac3bd7aefba646db670227f895d812c1a19615" + integrity sha512-7XHoRB61hxsz8lBQrjC1tq/3OEIgpvGWg6DKAdwi7WRzruwkmsdwmOoUXbU4Dtd4RSOMDwed0SkP3y8UlMt1Bg== + +"@pedrouid/environment@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@pedrouid/environment/-/environment-1.0.1.tgz#858f0f8a057340e0b250398b75ead77d6f4342ec" + integrity sha512-HaW78NszGzRZd9SeoI3JD11JqY+lubnaOx7Pewj5pfjqWXOEATpeKIFb9Z4t2WBUK2iryiXX3lzWwmYWgUL0Ug== + +"@pkgjs/parseargs@^0.11.0": + version "0.11.0" + resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" + integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== + +"@pmmmwh/react-refresh-webpack-plugin@^0.5.3": + version "0.5.15" + resolved "https://registry.yarnpkg.com/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.15.tgz#f126be97c30b83ed777e2aeabd518bc592e6e7c4" + integrity sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ== + dependencies: + ansi-html "^0.0.9" + core-js-pure "^3.23.3" + error-stack-parser "^2.0.6" + html-entities "^2.1.0" + loader-utils "^2.0.4" + schema-utils "^4.2.0" + source-map "^0.7.3" + +"@popperjs/core@^2.11.8": + version "2.11.8" + resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.8.tgz#6b79032e760a0899cd4204710beede972a3a185f" + integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A== + +"@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" + integrity sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ== + +"@protobufjs/base64@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" + integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== + +"@protobufjs/codegen@^2.0.4": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" + integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg== + +"@protobufjs/eventemitter@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" + integrity sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q== + +"@protobufjs/fetch@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" + integrity sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ== + dependencies: + "@protobufjs/aspromise" "^1.1.1" + "@protobufjs/inquire" "^1.1.0" + +"@protobufjs/float@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" + integrity sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ== + +"@protobufjs/inquire@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" + integrity sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q== + +"@protobufjs/path@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" + integrity sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA== + +"@protobufjs/pool@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" + integrity sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw== + +"@protobufjs/utf8@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" + integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw== + +"@react-native-async-storage/async-storage@^1.22.3": + version "1.24.0" + resolved "https://registry.yarnpkg.com/@react-native-async-storage/async-storage/-/async-storage-1.24.0.tgz#888efbc62a26f7d9464b32f4d3027b7f2771999b" + integrity sha512-W4/vbwUOYOjco0x3toB8QCr7EjIP6nE9G7o8PMguvvjYT5Awg09lyV4enACRx4s++PPulBiBSjL0KTFx2u0Z/g== + dependencies: + merge-options "^3.0.4" + +"@react-native-community/cli-clean@13.6.9": + version "13.6.9" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-13.6.9.tgz#b6754f39c2b877c9d730feb848945150e1d52209" + integrity sha512-7Dj5+4p9JggxuVNOjPbduZBAP1SUgNhLKVw5noBUzT/3ZpUZkDM+RCSwyoyg8xKWoE4OrdUAXwAFlMcFDPKykA== + dependencies: + "@react-native-community/cli-tools" "13.6.9" + chalk "^4.1.2" + execa "^5.0.0" + fast-glob "^3.3.2" + +"@react-native-community/cli-config@13.6.9": + version "13.6.9" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-13.6.9.tgz#d609a64d40a173c89bd7d24e31807bb7dcba69f9" + integrity sha512-rFfVBcNojcMm+KKHE/xqpqXg8HoKl4EC7bFHUrahMJ+y/tZll55+oX/PGG37rzB8QzP2UbMQ19DYQKC1G7kXeg== + dependencies: + "@react-native-community/cli-tools" "13.6.9" + chalk "^4.1.2" + cosmiconfig "^5.1.0" + deepmerge "^4.3.0" + fast-glob "^3.3.2" + joi "^17.2.1" + +"@react-native-community/cli-debugger-ui@13.6.9": + version "13.6.9" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-13.6.9.tgz#bc5727c51964206a00d417e5148b46331a81d5a5" + integrity sha512-TkN7IdFmGPPvTpAo3nCAH9uwGCPxWBEAwpqEZDrq0NWllI7Tdie8vDpGdrcuCcKalmhq6OYnkXzeBah7O1Ztpw== + dependencies: + serve-static "^1.13.1" + +"@react-native-community/cli-doctor@13.6.9": + version "13.6.9" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-13.6.9.tgz#f1d4eeff427ddc8a9d19851042621c10939c35cb" + integrity sha512-5quFaLdWFQB+677GXh5dGU9I5eg2z6Vg4jOX9vKnc9IffwyIFAyJfCZHrxLSRPDGNXD7biDQUdoezXYGwb6P/A== + dependencies: + "@react-native-community/cli-config" "13.6.9" + "@react-native-community/cli-platform-android" "13.6.9" + "@react-native-community/cli-platform-apple" "13.6.9" + "@react-native-community/cli-platform-ios" "13.6.9" + "@react-native-community/cli-tools" "13.6.9" + chalk "^4.1.2" + command-exists "^1.2.8" + deepmerge "^4.3.0" + envinfo "^7.10.0" + execa "^5.0.0" + hermes-profile-transformer "^0.0.6" + node-stream-zip "^1.9.1" + ora "^5.4.1" + semver "^7.5.2" + strip-ansi "^5.2.0" + wcwidth "^1.0.1" + yaml "^2.2.1" + +"@react-native-community/cli-hermes@13.6.9": + version "13.6.9" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-hermes/-/cli-hermes-13.6.9.tgz#88c8dfe936a0d4272efc54429eda9ccc3fca3ad8" + integrity sha512-GvwiwgvFw4Ws+krg2+gYj8sR3g05evmNjAHkKIKMkDTJjZ8EdyxbkifRUs1ZCq3TMZy2oeblZBXCJVOH4W7ZbA== + dependencies: + "@react-native-community/cli-platform-android" "13.6.9" + "@react-native-community/cli-tools" "13.6.9" + chalk "^4.1.2" + hermes-profile-transformer "^0.0.6" + +"@react-native-community/cli-platform-android@13.6.9": + version "13.6.9" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-13.6.9.tgz#b175b9b11334fc90da3f395432678bd53c30fae4" + integrity sha512-9KsYGdr08QhdvT3Ht7e8phQB3gDX9Fs427NJe0xnoBh+PDPTI2BD5ks5ttsH8CzEw8/P6H8tJCHq6hf2nxd9cw== + dependencies: + "@react-native-community/cli-tools" "13.6.9" + chalk "^4.1.2" + execa "^5.0.0" + fast-glob "^3.3.2" + fast-xml-parser "^4.2.4" + logkitty "^0.7.1" + +"@react-native-community/cli-platform-apple@13.6.9": + version "13.6.9" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-apple/-/cli-platform-apple-13.6.9.tgz#02fb5dc47d62acd85f4d7a852e93216927a772fa" + integrity sha512-KoeIHfhxMhKXZPXmhQdl6EE+jGKWwoO9jUVWgBvibpVmsNjo7woaG/tfJMEWfWF3najX1EkQAoJWpCDBMYWtlA== + dependencies: + "@react-native-community/cli-tools" "13.6.9" + chalk "^4.1.2" + execa "^5.0.0" + fast-glob "^3.3.2" + fast-xml-parser "^4.0.12" + ora "^5.4.1" + +"@react-native-community/cli-platform-ios@13.6.9": + version "13.6.9" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-13.6.9.tgz#f37ceab41c2302e8f0d4bcbd3bf58b3353db4306" + integrity sha512-CiUcHlGs8vE0CAB4oi1f+dzniqfGuhWPNrDvae2nm8dewlahTBwIcK5CawyGezjcJoeQhjBflh9vloska+nlnw== + dependencies: + "@react-native-community/cli-platform-apple" "13.6.9" + +"@react-native-community/cli-server-api@13.6.9": + version "13.6.9" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-13.6.9.tgz#269e666bc26e9d0b2f42c7f6099559b5f9259e9d" + integrity sha512-W8FSlCPWymO+tlQfM3E0JmM8Oei5HZsIk5S0COOl0MRi8h0NmHI4WSTF2GCfbFZkcr2VI/fRsocoN8Au4EZAug== + dependencies: + "@react-native-community/cli-debugger-ui" "13.6.9" + "@react-native-community/cli-tools" "13.6.9" + compression "^1.7.1" + connect "^3.6.5" + errorhandler "^1.5.1" + nocache "^3.0.1" + pretty-format "^26.6.2" + serve-static "^1.13.1" + ws "^6.2.2" + +"@react-native-community/cli-tools@13.6.9": + version "13.6.9" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-13.6.9.tgz#2baee279358ba1a863e737b2fa9f45659ad91929" + integrity sha512-OXaSjoN0mZVw3nrAwcY1PC0uMfyTd9fz7Cy06dh+EJc+h0wikABsVRzV8cIOPrVV+PPEEXE0DBrH20T2puZzgQ== + dependencies: + appdirsjs "^1.2.4" + chalk "^4.1.2" + execa "^5.0.0" + find-up "^5.0.0" + mime "^2.4.1" + node-fetch "^2.6.0" + open "^6.2.0" + ora "^5.4.1" + semver "^7.5.2" + shell-quote "^1.7.3" + sudo-prompt "^9.0.0" + +"@react-native-community/cli-types@13.6.9": + version "13.6.9" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-13.6.9.tgz#08bfb796eacf0daeb31e2de516e81e78a36a1a55" + integrity sha512-RLxDppvRxXfs3hxceW/mShi+6o5yS+kFPnPqZTaMKKR5aSg7LwDpLQW4K2D22irEG8e6RKDkZUeH9aL3vO2O0w== + dependencies: + joi "^17.2.1" + +"@react-native-community/cli@13.6.9": + version "13.6.9" + resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-13.6.9.tgz#ba6360b94e0aba9c4001bda256cf7e57e2ecb02c" + integrity sha512-hFJL4cgLPxncJJd/epQ4dHnMg5Jy/7Q56jFvA3MHViuKpzzfTCJCB+pGY54maZbtym53UJON9WTGpM3S81UfjQ== + dependencies: + "@react-native-community/cli-clean" "13.6.9" + "@react-native-community/cli-config" "13.6.9" + "@react-native-community/cli-debugger-ui" "13.6.9" + "@react-native-community/cli-doctor" "13.6.9" + "@react-native-community/cli-hermes" "13.6.9" + "@react-native-community/cli-server-api" "13.6.9" + "@react-native-community/cli-tools" "13.6.9" + "@react-native-community/cli-types" "13.6.9" + chalk "^4.1.2" + commander "^9.4.1" + deepmerge "^4.3.0" + execa "^5.0.0" + find-up "^4.1.0" + fs-extra "^8.1.0" + graceful-fs "^4.1.3" + prompts "^2.4.2" + semver "^7.5.2" + +"@react-native-community/netinfo@^11.3.1": + version "11.3.2" + resolved "https://registry.yarnpkg.com/@react-native-community/netinfo/-/netinfo-11.3.2.tgz#e63201d0b87ad42d086d1003be48ae7b327f0594" + integrity sha512-YsaS3Dutnzqd1BEoeC+DEcuNJedYRkN6Ef3kftT5Sm8ExnCF94C/nl4laNxuvFli3+Jz8Df3jO25Jn8A9S0h4w== + +"@react-native/assets-registry@0.74.85": + version "0.74.85" + resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.74.85.tgz#ae903c0c25f4d6a751d53d63245d5612c81edd98" + integrity sha512-59YmIQxfGDw4aP9S/nAM+sjSFdW8fUP6fsqczCcXgL2YVEjyER9XCaUT0J1K+PdHep8pi05KUgIKUds8P3jbmA== + +"@react-native/babel-plugin-codegen@0.74.85": + version "0.74.85" + resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.74.85.tgz#067224bf5099ee2679babd700c7115822a747004" + integrity sha512-48TSDclRB5OMXiImiJkLxyCfRyLsqkCgI8buugCZzvXcYslfV7gCvcyFyQldtcOmerV+CK4RAj7QS4hmB5Mr8Q== + dependencies: + "@react-native/codegen" "0.74.85" + +"@react-native/babel-preset@0.74.85": + version "0.74.85" + resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.74.85.tgz#3ce6ca77a318dec226fd9e3fff9c2ef7b0aa66e3" + integrity sha512-yMHUlN8INbK5BBwiBuQMftdWkpm1IgCsoJTKcGD2OpSgZhwwm8RUSvGhdRMzB2w7bsqqBmaEMleGtW6aCR7B9w== + dependencies: + "@babel/core" "^7.20.0" + "@babel/plugin-proposal-async-generator-functions" "^7.0.0" + "@babel/plugin-proposal-class-properties" "^7.18.0" + "@babel/plugin-proposal-export-default-from" "^7.0.0" + "@babel/plugin-proposal-logical-assignment-operators" "^7.18.0" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.0" + "@babel/plugin-proposal-numeric-separator" "^7.0.0" + "@babel/plugin-proposal-object-rest-spread" "^7.20.0" + "@babel/plugin-proposal-optional-catch-binding" "^7.0.0" + "@babel/plugin-proposal-optional-chaining" "^7.20.0" + "@babel/plugin-syntax-dynamic-import" "^7.8.0" + "@babel/plugin-syntax-export-default-from" "^7.0.0" + "@babel/plugin-syntax-flow" "^7.18.0" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.0.0" + "@babel/plugin-syntax-optional-chaining" "^7.0.0" + "@babel/plugin-transform-arrow-functions" "^7.0.0" + "@babel/plugin-transform-async-to-generator" "^7.20.0" + "@babel/plugin-transform-block-scoping" "^7.0.0" + "@babel/plugin-transform-classes" "^7.0.0" + "@babel/plugin-transform-computed-properties" "^7.0.0" + "@babel/plugin-transform-destructuring" "^7.20.0" + "@babel/plugin-transform-flow-strip-types" "^7.20.0" + "@babel/plugin-transform-function-name" "^7.0.0" + "@babel/plugin-transform-literals" "^7.0.0" + "@babel/plugin-transform-modules-commonjs" "^7.0.0" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.0.0" + "@babel/plugin-transform-parameters" "^7.0.0" + "@babel/plugin-transform-private-methods" "^7.22.5" + "@babel/plugin-transform-private-property-in-object" "^7.22.11" + "@babel/plugin-transform-react-display-name" "^7.0.0" + "@babel/plugin-transform-react-jsx" "^7.0.0" + "@babel/plugin-transform-react-jsx-self" "^7.0.0" + "@babel/plugin-transform-react-jsx-source" "^7.0.0" + "@babel/plugin-transform-runtime" "^7.0.0" + "@babel/plugin-transform-shorthand-properties" "^7.0.0" + "@babel/plugin-transform-spread" "^7.0.0" + "@babel/plugin-transform-sticky-regex" "^7.0.0" + "@babel/plugin-transform-typescript" "^7.5.0" + "@babel/plugin-transform-unicode-regex" "^7.0.0" + "@babel/template" "^7.0.0" + "@react-native/babel-plugin-codegen" "0.74.85" + babel-plugin-transform-flow-enums "^0.0.2" + react-refresh "^0.14.0" + +"@react-native/codegen@0.74.85": + version "0.74.85" + resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.74.85.tgz#568464071c0b9be741da1a1ab43b1df88180ca5d" + integrity sha512-N7QwoS4Hq/uQmoH83Ewedy6D0M7xbQsOU3OMcQf0eY3ltQ7S2hd9/R4UTalQWRn1OUJfXR6OG12QJ4FStKgV6Q== + dependencies: + "@babel/parser" "^7.20.0" + glob "^7.1.1" + hermes-parser "0.19.1" + invariant "^2.2.4" + jscodeshift "^0.14.0" + mkdirp "^0.5.1" + nullthrows "^1.1.1" + +"@react-native/community-cli-plugin@0.74.85": + version "0.74.85" + resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.74.85.tgz#5bf95599166fd2b8bf10612250006e282053f6c4" + integrity sha512-ODzND33eA2owAY3g9jgCdqB+BjAh8qJ7dvmSotXgrgDYr3MJMpd8gvHTIPe2fg4Kab+wk8uipRhrE0i0RYMwtQ== + dependencies: + "@react-native-community/cli-server-api" "13.6.9" + "@react-native-community/cli-tools" "13.6.9" + "@react-native/dev-middleware" "0.74.85" + "@react-native/metro-babel-transformer" "0.74.85" + chalk "^4.0.0" + execa "^5.1.1" + metro "^0.80.3" + metro-config "^0.80.3" + metro-core "^0.80.3" + node-fetch "^2.2.0" + querystring "^0.2.1" + readline "^1.3.0" + +"@react-native/debugger-frontend@0.74.85": + version "0.74.85" + resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.74.85.tgz#a7af94a7b81cb59f241fd1771d1b083445329700" + integrity sha512-gUIhhpsYLUTYWlWw4vGztyHaX/kNlgVspSvKe2XaPA7o3jYKUoNLc3Ov7u70u/MBWfKdcEffWq44eSe3j3s5JQ== + +"@react-native/dev-middleware@0.74.85": + version "0.74.85" + resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.74.85.tgz#eca35aceb882b1111385f7c20f1aad7a33a2734e" + integrity sha512-BRmgCK5vnMmHaKRO+h8PKJmHHH3E6JFuerrcfE3wG2eZ1bcSr+QTu8DAlpxsDWvJvHpCi8tRJGauxd+Ssj/c7w== + dependencies: + "@isaacs/ttlcache" "^1.4.1" + "@react-native/debugger-frontend" "0.74.85" + "@rnx-kit/chromium-edge-launcher" "^1.0.0" + chrome-launcher "^0.15.2" + connect "^3.6.5" + debug "^2.2.0" + node-fetch "^2.2.0" + nullthrows "^1.1.1" + open "^7.0.3" + selfsigned "^2.4.1" + serve-static "^1.13.1" + temp-dir "^2.0.0" + ws "^6.2.2" + +"@react-native/gradle-plugin@0.74.85": + version "0.74.85" + resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.74.85.tgz#7c7d16655a4c15da87402ae3f7d6566466aea723" + integrity sha512-1VQSLukJzaVMn1MYcs8Weo1nUW8xCas2XU1KuoV7OJPk6xPnEBFJmapmEGP5mWeEy7kcTXJmddEgy1wwW0tcig== + +"@react-native/js-polyfills@0.74.85": + version "0.74.85" + resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.74.85.tgz#1abfeeaec5ff24b6a1b3e2296e760359fce47739" + integrity sha512-gp4Rg9le3lVZeW7Cie6qLfekvRKZuhJ3LKgi1SFB4N154z1wIclypAJXVXgWBsy8JKJfTwRI+sffC4qZDlvzrg== + +"@react-native/metro-babel-transformer@0.74.85": + version "0.74.85" + resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.74.85.tgz#d530d9a6bd319ece226a2d6aaa00b464a1928089" + integrity sha512-JIrXqEwhTvWPtGArgMptIPGstMdXQIkwSjKVYt+7VC4a9Pw1GurIWanIJheEW6ZuCVvTc0VZkwglFz9JVjzDjA== + dependencies: + "@babel/core" "^7.20.0" + "@react-native/babel-preset" "0.74.85" + hermes-parser "0.19.1" + nullthrows "^1.1.1" + +"@react-native/normalize-colors@0.74.85", "@react-native/normalize-colors@^0.74.1": + version "0.74.85" + resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.74.85.tgz#62bcb9ab1b10b822ca0278fdfdf23d3b18e125da" + integrity sha512-pcE4i0X7y3hsAE0SpIl7t6dUc0B0NZLd1yv7ssm4FrLhWG+CGyIq4eFDXpmPU1XHmL5PPySxTAjEMiwv6tAmOw== + +"@react-native/virtualized-lists@0.74.85": + version "0.74.85" + resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.74.85.tgz#a6178c7168953807b3b610c9f8d208a6f758407d" + integrity sha512-jx2Zw0qlZteoQ+0KxRc7s4drsljLBEP534FaNZ950e9+CN9nVkLsV6rigcTjDR8wjKMSBWhKf0C0C3egYz7Ehg== + dependencies: + invariant "^2.2.4" + nullthrows "^1.1.1" + +"@react-navigation/core@^6.4.17": + version "6.4.17" + resolved "https://registry.yarnpkg.com/@react-navigation/core/-/core-6.4.17.tgz#f277a196b578c8a456efcc563d1c9bd87eb4ab04" + integrity sha512-Nd76EpomzChWAosGqWOYE3ItayhDzIEzzZsT7PfGcRFDgW5miHV2t4MZcq9YIK4tzxZjVVpYbIynOOQQd1e0Cg== + dependencies: + "@react-navigation/routers" "^6.1.9" + escape-string-regexp "^4.0.0" + nanoid "^3.1.23" + query-string "^7.1.3" + react-is "^16.13.0" + use-latest-callback "^0.2.1" + +"@react-navigation/elements@^1.3.30", "@react-navigation/elements@^1.3.31": + version "1.3.31" + resolved "https://registry.yarnpkg.com/@react-navigation/elements/-/elements-1.3.31.tgz#28dd802a0787bb03fc0e5be296daf1804dbebbcf" + integrity sha512-bUzP4Awlljx5RKEExw8WYtif8EuQni2glDaieYROKTnaxsu9kEIA515sXQgUDZU4Ob12VoL7+z70uO3qrlfXcQ== + +"@react-navigation/native-stack@^6.9.18": + version "6.10.1" + resolved "https://registry.yarnpkg.com/@react-navigation/native-stack/-/native-stack-6.10.1.tgz#8ceea729b47af4ab18024d129e08ebd8888feeb9" + integrity sha512-MDTHtelO2EhY1sEbz4YMNw+1YoE0sWXSHLUYireQZFHUXKDfYiWYbxXg2Q08Ool0KEvnZjP0hh0Wm6/ZnvDCtw== + dependencies: + "@react-navigation/elements" "^1.3.31" + warn-once "^0.1.0" + +"@react-navigation/native@^6.1.10": + version "6.1.18" + resolved "https://registry.yarnpkg.com/@react-navigation/native/-/native-6.1.18.tgz#338fa9afa2c89feec1d3eac41c963840d8d6f106" + integrity sha512-mIT9MiL/vMm4eirLcmw2h6h/Nm5FICtnYSdohq4vTLA2FF/6PNhByM7s8ffqoVfE5L0uAa6Xda1B7oddolUiGg== + dependencies: + "@react-navigation/core" "^6.4.17" + escape-string-regexp "^4.0.0" + fast-deep-equal "^3.1.3" + nanoid "^3.1.23" + +"@react-navigation/routers@^6.1.9": + version "6.1.9" + resolved "https://registry.yarnpkg.com/@react-navigation/routers/-/routers-6.1.9.tgz#73f5481a15a38e36592a0afa13c3c064b9f90bed" + integrity sha512-lTM8gSFHSfkJvQkxacGM6VJtBt61ip2XO54aNfswD+KMw6eeZ4oehl7m0me3CR9hnDE4+60iAZR8sAhvCiI3NA== + dependencies: + nanoid "^3.1.23" + +"@rnx-kit/chromium-edge-launcher@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@rnx-kit/chromium-edge-launcher/-/chromium-edge-launcher-1.0.0.tgz#c0df8ea00a902c7a417cd9655aab06de398b939c" + integrity sha512-lzD84av1ZQhYUS+jsGqJiCMaJO2dn9u+RTT9n9q6D3SaKVwWqv+7AoRKqBu19bkwyE+iFRl1ymr40QS90jVFYg== + dependencies: + "@types/node" "^18.0.0" + escape-string-regexp "^4.0.0" + is-wsl "^2.2.0" + lighthouse-logger "^1.0.0" + mkdirp "^1.0.4" + rimraf "^3.0.2" + +"@rollup/plugin-babel@^5.2.0": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz#04bc0608f4aa4b2e4b1aebf284344d0f68fda283" + integrity sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q== + dependencies: + "@babel/helper-module-imports" "^7.10.4" + "@rollup/pluginutils" "^3.1.0" + +"@rollup/plugin-node-resolve@^11.2.1": + version "11.2.1" + resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz#82aa59397a29cd4e13248b106e6a4a1880362a60" + integrity sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg== + dependencies: + "@rollup/pluginutils" "^3.1.0" + "@types/resolve" "1.17.1" + builtin-modules "^3.1.0" + deepmerge "^4.2.2" + is-module "^1.0.0" + resolve "^1.19.0" + +"@rollup/plugin-replace@^2.4.1": + version "2.4.2" + resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz#a2d539314fbc77c244858faa523012825068510a" + integrity sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg== + dependencies: + "@rollup/pluginutils" "^3.1.0" + magic-string "^0.25.7" + +"@rollup/pluginutils@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b" + integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== + dependencies: + "@types/estree" "0.0.39" + estree-walker "^1.0.1" + picomatch "^2.2.2" + +"@rushstack/eslint-patch@^1.1.0": + version "1.10.3" + resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.10.3.tgz#391d528054f758f81e53210f1a1eebcf1a8b1d20" + integrity sha512-qC/xYId4NMebE6w/V33Fh9gWxLgURiNYgVNObbJl2LZv0GUUItCcCqC5axQSwRaAgaxl2mELq1rMzlswaQ0Zxg== + +"@sideway/address@^4.1.5": + version "4.1.5" + resolved "https://registry.yarnpkg.com/@sideway/address/-/address-4.1.5.tgz#4bc149a0076623ced99ca8208ba780d65a99b9d5" + integrity sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@sideway/formula@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.1.tgz#80fcbcbaf7ce031e0ef2dd29b1bfc7c3f583611f" + integrity sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg== + +"@sideway/pinpoint@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" + integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== + +"@sinclair/typebox@^0.24.1": + version "0.24.51" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.24.51.tgz#645f33fe4e02defe26f2f5c0410e1c094eac7f5f" + integrity sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA== + +"@sinclair/typebox@^0.27.8": + version "0.27.8" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" + integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== + +"@sinonjs/commons@^1.7.0": + version "1.8.6" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.6.tgz#80c516a4dc264c2a69115e7578d62581ff455ed9" + integrity sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ== + dependencies: + type-detect "4.0.8" + +"@sinonjs/commons@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.1.tgz#1029357e44ca901a615585f6d27738dbc89084cd" + integrity sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ== + dependencies: + type-detect "4.0.8" + +"@sinonjs/fake-timers@^10.0.2": + version "10.3.0" + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz#55fdff1ecab9f354019129daf4df0dd4d923ea66" + integrity sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA== + dependencies: + "@sinonjs/commons" "^3.0.0" + +"@sinonjs/fake-timers@^8.0.1": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz#3fdc2b6cb58935b21bfb8d1625eb1300484316e7" + integrity sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg== + dependencies: + "@sinonjs/commons" "^1.7.0" + +"@surma/rollup-plugin-off-main-thread@^2.2.3": + version "2.2.3" + resolved "https://registry.yarnpkg.com/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz#ee34985952ca21558ab0d952f00298ad2190c053" + integrity sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ== + dependencies: + ejs "^3.1.6" + json5 "^2.2.0" + magic-string "^0.25.0" + string.prototype.matchall "^4.0.6" + +"@svgr/babel-plugin-add-jsx-attribute@^5.4.0": + version "5.4.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz#81ef61947bb268eb9d50523446f9c638fb355906" + integrity sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg== + +"@svgr/babel-plugin-remove-jsx-attribute@^5.4.0": + version "5.4.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz#6b2c770c95c874654fd5e1d5ef475b78a0a962ef" + integrity sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg== + +"@svgr/babel-plugin-remove-jsx-empty-expression@^5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz#25621a8915ed7ad70da6cea3d0a6dbc2ea933efd" + integrity sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA== + +"@svgr/babel-plugin-replace-jsx-attribute-value@^5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz#0b221fc57f9fcd10e91fe219e2cd0dd03145a897" + integrity sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ== + +"@svgr/babel-plugin-svg-dynamic-title@^5.4.0": + version "5.4.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz#139b546dd0c3186b6e5db4fefc26cb0baea729d7" + integrity sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg== + +"@svgr/babel-plugin-svg-em-dimensions@^5.4.0": + version "5.4.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz#6543f69526632a133ce5cabab965deeaea2234a0" + integrity sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw== + +"@svgr/babel-plugin-transform-react-native-svg@^5.4.0": + version "5.4.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz#00bf9a7a73f1cad3948cdab1f8dfb774750f8c80" + integrity sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q== + +"@svgr/babel-plugin-transform-svg-component@^5.5.0": + version "5.5.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz#583a5e2a193e214da2f3afeb0b9e8d3250126b4a" + integrity sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ== + +"@svgr/babel-preset@^5.5.0": + version "5.5.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-5.5.0.tgz#8af54f3e0a8add7b1e2b0fcd5a882c55393df327" + integrity sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig== + dependencies: + "@svgr/babel-plugin-add-jsx-attribute" "^5.4.0" + "@svgr/babel-plugin-remove-jsx-attribute" "^5.4.0" + "@svgr/babel-plugin-remove-jsx-empty-expression" "^5.0.1" + "@svgr/babel-plugin-replace-jsx-attribute-value" "^5.0.1" + "@svgr/babel-plugin-svg-dynamic-title" "^5.4.0" + "@svgr/babel-plugin-svg-em-dimensions" "^5.4.0" + "@svgr/babel-plugin-transform-react-native-svg" "^5.4.0" + "@svgr/babel-plugin-transform-svg-component" "^5.5.0" + +"@svgr/core@^5.5.0": + version "5.5.0" + resolved "https://registry.yarnpkg.com/@svgr/core/-/core-5.5.0.tgz#82e826b8715d71083120fe8f2492ec7d7874a579" + integrity sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ== + dependencies: + "@svgr/plugin-jsx" "^5.5.0" + camelcase "^6.2.0" + cosmiconfig "^7.0.0" + +"@svgr/hast-util-to-babel-ast@^5.5.0": + version "5.5.0" + resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz#5ee52a9c2533f73e63f8f22b779f93cd432a5461" + integrity sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ== + dependencies: + "@babel/types" "^7.12.6" + +"@svgr/plugin-jsx@^5.5.0": + version "5.5.0" + resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz#1aa8cd798a1db7173ac043466d7b52236b369000" + integrity sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA== + dependencies: + "@babel/core" "^7.12.3" + "@svgr/babel-preset" "^5.5.0" + "@svgr/hast-util-to-babel-ast" "^5.5.0" + svg-parser "^2.0.2" + +"@svgr/plugin-svgo@^5.5.0": + version "5.5.0" + resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz#02da55d85320549324e201c7b2e53bf431fcc246" + integrity sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ== + dependencies: + cosmiconfig "^7.0.0" + deepmerge "^4.2.2" + svgo "^1.2.2" + +"@svgr/webpack@^5.5.0": + version "5.5.0" + resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-5.5.0.tgz#aae858ee579f5fa8ce6c3166ef56c6a1b381b640" + integrity sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g== + dependencies: + "@babel/core" "^7.12.3" + "@babel/plugin-transform-react-constant-elements" "^7.12.1" + "@babel/preset-env" "^7.12.1" + "@babel/preset-react" "^7.12.5" + "@svgr/core" "^5.5.0" + "@svgr/plugin-jsx" "^5.5.0" + "@svgr/plugin-svgo" "^5.5.0" + loader-utils "^2.0.0" + +"@testing-library/dom@^8.5.0": + version "8.20.1" + resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-8.20.1.tgz#2e52a32e46fc88369eef7eef634ac2a192decd9f" + integrity sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g== + dependencies: + "@babel/code-frame" "^7.10.4" + "@babel/runtime" "^7.12.5" + "@types/aria-query" "^5.0.1" + aria-query "5.1.3" + chalk "^4.1.0" + dom-accessibility-api "^0.5.9" + lz-string "^1.5.0" + pretty-format "^27.0.2" + +"@testing-library/jest-dom@^5.14.1": + version "5.17.0" + resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-5.17.0.tgz#5e97c8f9a15ccf4656da00fecab505728de81e0c" + integrity sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg== + dependencies: + "@adobe/css-tools" "^4.0.1" + "@babel/runtime" "^7.9.2" + "@types/testing-library__jest-dom" "^5.9.1" + aria-query "^5.0.0" + chalk "^3.0.0" + css.escape "^1.5.1" + dom-accessibility-api "^0.5.6" + lodash "^4.17.15" + redent "^3.0.0" + +"@testing-library/react@^13.0.0": + version "13.4.0" + resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-13.4.0.tgz#6a31e3bf5951615593ad984e96b9e5e2d9380966" + integrity sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw== + dependencies: + "@babel/runtime" "^7.12.5" + "@testing-library/dom" "^8.5.0" + "@types/react-dom" "^18.0.0" + +"@testing-library/user-event@^13.2.1": + version "13.5.0" + resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-13.5.0.tgz#69d77007f1e124d55314a2b73fd204b333b13295" + integrity sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg== + dependencies: + "@babel/runtime" "^7.12.5" + +"@tharsis/address-converter@^0.1.7": + version "0.1.8" + resolved "https://registry.yarnpkg.com/@tharsis/address-converter/-/address-converter-0.1.8.tgz#15323e25f6b41d9a4741627f5a1b4ed4547d23f6" + integrity sha512-z7zdNczV8RIzBNxzIzRFhC5ujiQ3Lt04At9rooo2pL6QONDDMMLxsqH3o28ie80k5DXSXaMJ6gffATeehxwAkw== + dependencies: + bech32 "^2.0.0" + crypto-addr-codec "^0.1.7" + link-module-alias "^1.2.0" + shx "^0.3.4" + +"@tharsis/eip712@^0.2.1", "@tharsis/eip712@^0.2.4": + version "0.2.4" + resolved "https://registry.yarnpkg.com/@tharsis/eip712/-/eip712-0.2.4.tgz#4c38247ae24e42f7f6053f3cf7887c7f79a36ee8" + integrity sha512-tn3zghCpsar2ZDsF8d7eBAfr+Toeqd9uOxFTa8LlCyewXmXE18mPMyoLeNDYX0jU7kTO0TTV9RQf0uNCahzQHA== + dependencies: + link-module-alias "^1.2.0" + shx "^0.3.4" + +"@tharsis/proto@^0.1.16", "@tharsis/proto@^0.1.20": + version "0.1.20" + resolved "https://registry.yarnpkg.com/@tharsis/proto/-/proto-0.1.20.tgz#3a372d303e51e4ca2747dee1549a2a31f17094b5" + integrity sha512-Ls7Mmw8Oe9uTPpyxcjsjmiREK/MQwrdF4AHwB5J7MsQEjyk7rNFS2lbPDB8hT4bzquIhF9MOTt4Nvh83iyMAAA== + dependencies: + "@types/google-protobuf" "^3.15.5" + "@types/node" "^17.0.21" + google-protobuf "^3.19.4" + link-module-alias "^1.2.0" + sha3 "^2.1.4" + shx "^0.3.4" + +"@tharsis/provider@^0.2.4": + version "0.2.4" + resolved "https://registry.yarnpkg.com/@tharsis/provider/-/provider-0.2.4.tgz#6caf21af1b7416a27712cb7b5f230c79c53ef202" + integrity sha512-gAVKhQfeDmcdp4nCFPfuR0BZkbPaqozMG7wL5gLo+KhuzzeIs4VZvUt4gFCZph1dvsqPy2KLU+4h2/eiWroeMA== + dependencies: + "@types/node" "^17.0.21" + link-module-alias "^1.2.0" + shx "^0.3.4" + +"@tharsis/transactions@^0.2.2": + version "0.2.6" + resolved "https://registry.yarnpkg.com/@tharsis/transactions/-/transactions-0.2.6.tgz#b6478eca3987e69e060d098adf601d68d8960da9" + integrity sha512-RHDYaLYvDL4UvKveN08vppsRyjTOnJ2eSBBCXmSyRBbeEVXOBG83qhoECx9nrcs3gXzEL5pqU3PUe3p+3hzfDQ== + dependencies: + "@tharsis/eip712" "^0.2.4" + "@tharsis/proto" "^0.1.20" + "@types/node" "^17.0.21" + link-module-alias "^1.2.0" + shx "^0.3.4" + +"@tootallnate/once@1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" + integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== + +"@trysound/sax@0.2.0": + version "0.2.0" + resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad" + integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== + +"@types/aria-query@^5.0.1": + version "5.0.4" + resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-5.0.4.tgz#1a31c3d378850d2778dabb6374d036dcba4ba708" + integrity sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw== + +"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.5.tgz#3df15f27ba85319caa07ba08d0721889bb39c017" + integrity sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA== + dependencies: + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + +"@types/babel__generator@*": + version "7.6.8" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.8.tgz#f836c61f48b1346e7d2b0d93c6dacc5b9535d3ab" + integrity sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw== + dependencies: + "@babel/types" "^7.0.0" + +"@types/babel__template@*": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.4.tgz#5672513701c1b2199bc6dad636a9d7491586766f" + integrity sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + +"@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": + version "7.20.6" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.6.tgz#8dc9f0ae0f202c08d8d4dab648912c8d6038e3f7" + integrity sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg== + dependencies: + "@babel/types" "^7.20.7" + +"@types/bn.js@^4.11.3": + version "4.11.6" + resolved "https://registry.yarnpkg.com/@types/bn.js/-/bn.js-4.11.6.tgz#c306c70d9358aaea33cd4eda092a742b9505967c" + integrity sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg== + dependencies: + "@types/node" "*" + +"@types/body-parser@*": + version "1.19.5" + resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.5.tgz#04ce9a3b677dc8bd681a17da1ab9835dc9d3ede4" + integrity sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg== + dependencies: + "@types/connect" "*" + "@types/node" "*" + +"@types/bonjour@^3.5.9": + version "3.5.13" + resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.13.tgz#adf90ce1a105e81dd1f9c61fdc5afda1bfb92956" + integrity sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ== + dependencies: + "@types/node" "*" + +"@types/connect-history-api-fallback@^1.3.5": + version "1.5.4" + resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz#7de71645a103056b48ac3ce07b3520b819c1d5b3" + integrity sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw== + dependencies: + "@types/express-serve-static-core" "*" + "@types/node" "*" + +"@types/connect@*": + version "3.4.38" + resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz#5ba7f3bc4fbbdeaff8dded952e5ff2cc53f8d858" + integrity sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug== + dependencies: + "@types/node" "*" + +"@types/eslint-scope@^3.7.3": + version "3.7.7" + resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.7.tgz#3108bd5f18b0cdb277c867b3dd449c9ed7079ac5" + integrity sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg== + dependencies: + "@types/eslint" "*" + "@types/estree" "*" + +"@types/eslint@*": + version "9.6.0" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-9.6.0.tgz#51d4fe4d0316da9e9f2c80884f2c20ed5fb022ff" + integrity sha512-gi6WQJ7cHRgZxtkQEoyHMppPjq9Kxo5Tjn2prSKDSmZrCz8TZ3jSRCeTJm+WoM+oB0WG37bRqLzaaU3q7JypGg== + dependencies: + "@types/estree" "*" + "@types/json-schema" "*" + +"@types/eslint@^7.29.0 || ^8.4.1": + version "8.56.11" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.56.11.tgz#e2ff61510a3b9454b3329fe7731e3b4c6f780041" + integrity sha512-sVBpJMf7UPo/wGecYOpk2aQya2VUGeHhe38WG7/mN5FufNSubf5VT9Uh9Uyp8/eLJpu1/tuhJ/qTo4mhSB4V4Q== + dependencies: + "@types/estree" "*" + "@types/json-schema" "*" + +"@types/estree@*", "@types/estree@^1.0.5": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" + integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== + +"@types/estree@0.0.39": + version "0.0.39" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" + integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== + +"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.33": + version "4.19.5" + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.19.5.tgz#218064e321126fcf9048d1ca25dd2465da55d9c6" + integrity sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg== + dependencies: + "@types/node" "*" + "@types/qs" "*" + "@types/range-parser" "*" + "@types/send" "*" + +"@types/express@*", "@types/express@^4.17.13": + version "4.17.21" + resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.21.tgz#c26d4a151e60efe0084b23dc3369ebc631ed192d" + integrity sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ== + dependencies: + "@types/body-parser" "*" + "@types/express-serve-static-core" "^4.17.33" + "@types/qs" "*" + "@types/serve-static" "*" + +"@types/google-protobuf@^3.15.5": + version "3.15.12" + resolved "https://registry.yarnpkg.com/@types/google-protobuf/-/google-protobuf-3.15.12.tgz#eb2ba0eddd65712211a2b455dc6071d665ccf49b" + integrity sha512-40um9QqwHjRS92qnOaDpL7RmDK15NuZYo9HihiJRbYkMQZlWnuH8AdvbMy8/o6lgLmKbDUKa+OALCltHdbOTpQ== + +"@types/graceful-fs@^4.1.2": + version "4.1.9" + resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.9.tgz#2a06bc0f68a20ab37b3e36aa238be6abdf49e8b4" + integrity sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ== + dependencies: + "@types/node" "*" + +"@types/html-minifier-terser@^6.0.0": + version "6.1.0" + resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#4fc33a00c1d0c16987b1a20cf92d20614c55ac35" + integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg== + +"@types/http-errors@*": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.4.tgz#7eb47726c391b7345a6ec35ad7f4de469cf5ba4f" + integrity sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA== + +"@types/http-proxy@^1.17.8": + version "1.17.14" + resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.14.tgz#57f8ccaa1c1c3780644f8a94f9c6b5000b5e2eec" + integrity sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w== + dependencies: + "@types/node" "*" + +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": + version "2.0.6" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz#7739c232a1fee9b4d3ce8985f314c0c6d33549d7" + integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w== + +"@types/istanbul-lib-report@*": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz#53047614ae72e19fc0401d872de3ae2b4ce350bf" + integrity sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA== + dependencies: + "@types/istanbul-lib-coverage" "*" + +"@types/istanbul-reports@^3.0.0": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz#0f03e3d2f670fbdac586e34b433783070cc16f54" + integrity sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ== + dependencies: + "@types/istanbul-lib-report" "*" + +"@types/jest@*": + version "29.5.12" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.12.tgz#7f7dc6eb4cf246d2474ed78744b05d06ce025544" + integrity sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw== + dependencies: + expect "^29.0.0" + pretty-format "^29.0.0" + +"@types/jest@^27.0.1": + version "27.5.2" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-27.5.2.tgz#ec49d29d926500ffb9fd22b84262e862049c026c" + integrity sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA== + dependencies: + jest-matcher-utils "^27.0.0" + pretty-format "^27.0.0" + +"@types/json-schema@*", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": + version "7.0.15" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" + integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== + +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== + +"@types/lodash@^4.17.7": + version "4.17.7" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.7.tgz#2f776bcb53adc9e13b2c0dfd493dfcbd7de43612" + integrity sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA== + +"@types/long@^4.0.1": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@types/long/-/long-4.0.2.tgz#b74129719fc8d11c01868010082d483b7545591a" + integrity sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA== + +"@types/mime@^1": + version "1.3.5" + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.5.tgz#1ef302e01cf7d2b5a0fa526790c9123bf1d06690" + integrity sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w== + +"@types/node-forge@^1.3.0": + version "1.3.11" + resolved "https://registry.yarnpkg.com/@types/node-forge/-/node-forge-1.3.11.tgz#0972ea538ddb0f4d9c2fa0ec5db5724773a604da" + integrity sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ== + dependencies: + "@types/node" "*" + +"@types/node@*", "@types/node@>=13.7.0": + version "20.14.12" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.14.12.tgz#129d7c3a822cb49fc7ff661235f19cfefd422b49" + integrity sha512-r7wNXakLeSsGT0H1AU863vS2wa5wBOK4bWMjZz2wj+8nBx+m5PeIn0k8AloSLpRuiwdRQZwarZqHE4FNArPuJQ== + dependencies: + undici-types "~5.26.4" + +"@types/node@10.12.18": + version "10.12.18" + resolved "https://registry.yarnpkg.com/@types/node/-/node-10.12.18.tgz#1d3ca764718915584fcd9f6344621b7672665c67" + integrity sha512-fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ== + +"@types/node@^16.7.13": + version "16.18.104" + resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.104.tgz#33d5f4886c54133af0ff02445e57c5254025ee53" + integrity sha512-OF3keVCbfPlkzxnnDBUZJn1RiCJzKeadjiW0xTEb0G1SUJ5gDVb3qnzZr2T4uIFvsbKJbXy1v2DN7e2zaEY7jQ== + +"@types/node@^17.0.21", "@types/node@^17.0.31": + version "17.0.45" + resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190" + integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw== + +"@types/node@^18.0.0": + version "18.19.42" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.42.tgz#b54ed4752c85427906aab40917b0f7f3d724bf72" + integrity sha512-d2ZFc/3lnK2YCYhos8iaNIYu9Vfhr92nHiyJHRltXWjXUBjEE+A4I58Tdbnw4VhggSW+2j5y5gTrLs4biNnubg== + dependencies: + undici-types "~5.26.4" + +"@types/parse-json@^4.0.0": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.2.tgz#5950e50960793055845e956c427fc2b0d70c5239" + integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw== + +"@types/pbkdf2@^3.0.0": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@types/pbkdf2/-/pbkdf2-3.1.2.tgz#2dc43808e9985a2c69ff02e2d2027bd4fe33e8dc" + integrity sha512-uRwJqmiXmh9++aSu1VNEn3iIxWOhd8AHXNSdlaLfdAAdSTY9jYVeGWnzejM3dvrkbqE3/hyQkQQ29IFATEGlew== + dependencies: + "@types/node" "*" + +"@types/prettier@^2.1.5": + version "2.7.3" + resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.3.tgz#3e51a17e291d01d17d3fc61422015a933af7a08f" + integrity sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA== + +"@types/prop-types@*", "@types/prop-types@^15.7.12": + version "15.7.12" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.12.tgz#12bb1e2be27293c1406acb6af1c3f3a1481d98c6" + integrity sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q== + +"@types/q@^1.5.1": + version "1.5.8" + resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.8.tgz#95f6c6a08f2ad868ba230ead1d2d7f7be3db3837" + integrity sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw== + +"@types/qs@*": + version "6.9.15" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.15.tgz#adde8a060ec9c305a82de1babc1056e73bd64dce" + integrity sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg== + +"@types/range-parser@*": + version "1.2.7" + resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.7.tgz#50ae4353eaaddc04044279812f52c8c65857dbcb" + integrity sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ== + +"@types/react-dom@^18.0.0": + version "18.3.0" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.3.0.tgz#0cbc818755d87066ab6ca74fbedb2547d74a82b0" + integrity sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg== + dependencies: + "@types/react" "*" + +"@types/react-transition-group@^4.4.10": + version "4.4.10" + resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.10.tgz#6ee71127bdab1f18f11ad8fb3322c6da27c327ac" + integrity sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q== + dependencies: + "@types/react" "*" + +"@types/react@*", "@types/react@^18.0.0": + version "18.3.3" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.3.tgz#9679020895318b0915d7a3ab004d92d33375c45f" + integrity sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw== + dependencies: + "@types/prop-types" "*" + csstype "^3.0.2" + +"@types/resolve@1.17.1": + version "1.17.1" + resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.17.1.tgz#3afd6ad8967c77e4376c598a82ddd58f46ec45d6" + integrity sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw== + dependencies: + "@types/node" "*" + +"@types/retry@0.12.0": + version "0.12.0" + resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d" + integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA== + +"@types/secp256k1@^4.0.1": + version "4.0.6" + resolved "https://registry.yarnpkg.com/@types/secp256k1/-/secp256k1-4.0.6.tgz#d60ba2349a51c2cbc5e816dcd831a42029d376bf" + integrity sha512-hHxJU6PAEUn0TP4S/ZOzuTUvJWuZ6eIKeNKb5RBpODvSl6hp1Wrw4s7ATY50rklRCScUDpHzVA/DQdSjJ3UoYQ== + dependencies: + "@types/node" "*" + +"@types/semver@^7.3.12": + version "7.5.8" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.8.tgz#8268a8c57a3e4abd25c165ecd36237db7948a55e" + integrity sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ== + +"@types/send@*": + version "0.17.4" + resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.4.tgz#6619cd24e7270793702e4e6a4b958a9010cfc57a" + integrity sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA== + dependencies: + "@types/mime" "^1" + "@types/node" "*" + +"@types/serve-index@^1.9.1": + version "1.9.4" + resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.4.tgz#e6ae13d5053cb06ed36392110b4f9a49ac4ec898" + integrity sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug== + dependencies: + "@types/express" "*" + +"@types/serve-static@*", "@types/serve-static@^1.13.10": + version "1.15.7" + resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.7.tgz#22174bbd74fb97fe303109738e9b5c2f3064f714" + integrity sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw== + dependencies: + "@types/http-errors" "*" + "@types/node" "*" + "@types/send" "*" + +"@types/sockjs@^0.3.33": + version "0.3.36" + resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.36.tgz#ce322cf07bcc119d4cbf7f88954f3a3bd0f67535" + integrity sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q== + dependencies: + "@types/node" "*" + +"@types/stack-utils@^2.0.0": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8" + integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw== + +"@types/testing-library__jest-dom@^5.9.1": + version "5.14.9" + resolved "https://registry.yarnpkg.com/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.9.tgz#0fb1e6a0278d87b6737db55af5967570b67cb466" + integrity sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw== + dependencies: + "@types/jest" "*" + +"@types/trusted-types@^2.0.2": + version "2.0.7" + resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.7.tgz#baccb07a970b91707df3a3e8ba6896c57ead2d11" + integrity sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw== + +"@types/ws@^8.5.5": + version "8.5.11" + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.11.tgz#90ad17b3df7719ce3e6bc32f83ff954d38656508" + integrity sha512-4+q7P5h3SpJxaBft0Dzpbr6lmMaqh0Jr2tbhJZ/luAwvD7ohSCniYkwz/pLxuT2h0EOa6QADgJj1Ko+TzRfZ+w== + dependencies: + "@types/node" "*" + +"@types/yargs-parser@*": + version "21.0.3" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15" + integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ== + +"@types/yargs@^15.0.0": + version "15.0.19" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.19.tgz#328fb89e46109ecbdb70c295d96ff2f46dfd01b9" + integrity sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA== + dependencies: + "@types/yargs-parser" "*" + +"@types/yargs@^16.0.0": + version "16.0.9" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.9.tgz#ba506215e45f7707e6cbcaf386981155b7ab956e" + integrity sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA== + dependencies: + "@types/yargs-parser" "*" + +"@types/yargs@^17.0.8": + version "17.0.32" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.32.tgz#030774723a2f7faafebf645f4e5a48371dca6229" + integrity sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog== + dependencies: + "@types/yargs-parser" "*" + +"@typescript-eslint/eslint-plugin@^5.5.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz#aeef0328d172b9e37d9bab6dbc13b87ed88977db" + integrity sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag== + dependencies: + "@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" + graphemer "^1.4.0" + ignore "^5.2.0" + natural-compare-lite "^1.4.0" + semver "^7.3.7" + tsutils "^3.21.0" + +"@typescript-eslint/experimental-utils@^5.0.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz#14559bf73383a308026b427a4a6129bae2146741" + integrity sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw== + dependencies: + "@typescript-eslint/utils" "5.62.0" + +"@typescript-eslint/parser@^5.5.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7" + integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA== + dependencies: + "@typescript-eslint/scope-manager" "5.62.0" + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/typescript-estree" "5.62.0" + debug "^4.3.4" + +"@typescript-eslint/scope-manager@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz#d9457ccc6a0b8d6b37d0eb252a23022478c5460c" + integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w== + dependencies: + "@typescript-eslint/types" "5.62.0" + "@typescript-eslint/visitor-keys" "5.62.0" + +"@typescript-eslint/type-utils@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz#286f0389c41681376cdad96b309cedd17d70346a" + integrity sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew== + dependencies: + "@typescript-eslint/typescript-estree" "5.62.0" + "@typescript-eslint/utils" "5.62.0" + debug "^4.3.4" + tsutils "^3.21.0" + +"@typescript-eslint/types@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f" + integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ== + +"@typescript-eslint/typescript-estree@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b" + integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA== + dependencies: + "@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" + semver "^7.3.7" + tsutils "^3.21.0" + +"@typescript-eslint/utils@5.62.0", "@typescript-eslint/utils@^5.58.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.62.0.tgz#141e809c71636e4a75daa39faed2fb5f4b10df86" + integrity sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ== + dependencies: + "@eslint-community/eslint-utils" "^4.2.0" + "@types/json-schema" "^7.0.9" + "@types/semver" "^7.3.12" + "@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" + semver "^7.3.7" + +"@typescript-eslint/visitor-keys@5.62.0": + version "5.62.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e" + integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw== + dependencies: + "@typescript-eslint/types" "5.62.0" + eslint-visitor-keys "^3.3.0" + +"@ungap/structured-clone@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" + integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== + +"@webassemblyjs/ast@1.12.1", "@webassemblyjs/ast@^1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.12.1.tgz#bb16a0e8b1914f979f45864c23819cc3e3f0d4bb" + integrity sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg== + dependencies: + "@webassemblyjs/helper-numbers" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + +"@webassemblyjs/floating-point-hex-parser@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz#dacbcb95aff135c8260f77fa3b4c5fea600a6431" + integrity sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw== + +"@webassemblyjs/helper-api-error@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz#6132f68c4acd59dcd141c44b18cbebbd9f2fa768" + integrity sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q== + +"@webassemblyjs/helper-buffer@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz#6df20d272ea5439bf20ab3492b7fb70e9bfcb3f6" + integrity sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw== + +"@webassemblyjs/helper-numbers@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz#cbce5e7e0c1bd32cf4905ae444ef64cea919f1b5" + integrity sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g== + dependencies: + "@webassemblyjs/floating-point-hex-parser" "1.11.6" + "@webassemblyjs/helper-api-error" "1.11.6" + "@xtuc/long" "4.2.2" + +"@webassemblyjs/helper-wasm-bytecode@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz#bb2ebdb3b83aa26d9baad4c46d4315283acd51e9" + integrity sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA== + +"@webassemblyjs/helper-wasm-section@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz#3da623233ae1a60409b509a52ade9bc22a37f7bf" + integrity sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g== + dependencies: + "@webassemblyjs/ast" "1.12.1" + "@webassemblyjs/helper-buffer" "1.12.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/wasm-gen" "1.12.1" + +"@webassemblyjs/ieee754@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz#bb665c91d0b14fffceb0e38298c329af043c6e3a" + integrity sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg== + dependencies: + "@xtuc/ieee754" "^1.2.0" + +"@webassemblyjs/leb128@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.6.tgz#70e60e5e82f9ac81118bc25381a0b283893240d7" + integrity sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ== + dependencies: + "@xtuc/long" "4.2.2" + +"@webassemblyjs/utf8@1.11.6": + version "1.11.6" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.6.tgz#90f8bc34c561595fe156603be7253cdbcd0fab5a" + integrity sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA== + +"@webassemblyjs/wasm-edit@^1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz#9f9f3ff52a14c980939be0ef9d5df9ebc678ae3b" + integrity sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g== + dependencies: + "@webassemblyjs/ast" "1.12.1" + "@webassemblyjs/helper-buffer" "1.12.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/helper-wasm-section" "1.12.1" + "@webassemblyjs/wasm-gen" "1.12.1" + "@webassemblyjs/wasm-opt" "1.12.1" + "@webassemblyjs/wasm-parser" "1.12.1" + "@webassemblyjs/wast-printer" "1.12.1" + +"@webassemblyjs/wasm-gen@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz#a6520601da1b5700448273666a71ad0a45d78547" + integrity sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w== + dependencies: + "@webassemblyjs/ast" "1.12.1" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/ieee754" "1.11.6" + "@webassemblyjs/leb128" "1.11.6" + "@webassemblyjs/utf8" "1.11.6" + +"@webassemblyjs/wasm-opt@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz#9e6e81475dfcfb62dab574ac2dda38226c232bc5" + integrity sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg== + dependencies: + "@webassemblyjs/ast" "1.12.1" + "@webassemblyjs/helper-buffer" "1.12.1" + "@webassemblyjs/wasm-gen" "1.12.1" + "@webassemblyjs/wasm-parser" "1.12.1" + +"@webassemblyjs/wasm-parser@1.12.1", "@webassemblyjs/wasm-parser@^1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz#c47acb90e6f083391e3fa61d113650eea1e95937" + integrity sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ== + dependencies: + "@webassemblyjs/ast" "1.12.1" + "@webassemblyjs/helper-api-error" "1.11.6" + "@webassemblyjs/helper-wasm-bytecode" "1.11.6" + "@webassemblyjs/ieee754" "1.11.6" + "@webassemblyjs/leb128" "1.11.6" + "@webassemblyjs/utf8" "1.11.6" + +"@webassemblyjs/wast-printer@1.12.1": + version "1.12.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz#bcecf661d7d1abdaf989d8341a4833e33e2b31ac" + integrity sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA== + dependencies: + "@webassemblyjs/ast" "1.12.1" + "@xtuc/long" "4.2.2" + +"@xtuc/ieee754@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" + integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== + +"@xtuc/long@4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" + integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== + +"@yarnpkg/lockfile@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" + integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== + +Base64@~0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/Base64/-/Base64-0.2.1.tgz#ba3a4230708e186705065e66babdd4c35cf60028" + integrity sha512-reGEWshDmTDQDsCec/HduOO9Wyj6yMOupMfhIf3ugN1TDlK2NQW4DDJSqNNtp380SNcvRfXtO8HSCQot0d0SMw== + +abab@^2.0.3, abab@^2.0.5: + version "2.0.6" + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" + integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== + +abort-controller@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" + integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== + dependencies: + event-target-shim "^5.0.0" + +accepts@^1.3.7, accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7, accepts@~1.3.8: + version "1.3.8" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" + integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== + dependencies: + mime-types "~2.1.34" + negotiator "0.6.3" + +acorn-globals@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" + integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== + dependencies: + acorn "^7.1.1" + acorn-walk "^7.1.1" + +acorn-import-attributes@^1.9.5: + version "1.9.5" + resolved "https://registry.yarnpkg.com/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz#7eb1557b1ba05ef18b5ed0ec67591bfab04688ef" + integrity sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ== + +acorn-jsx@^5.3.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn-walk@^7.1.1: + version "7.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" + integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== + +acorn@^7.1.1: + version "7.4.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + +acorn@^8.2.4, acorn@^8.7.1, acorn@^8.8.2, acorn@^8.9.0: + version "8.12.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248" + integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== + +address@^1.0.1, address@^1.1.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/address/-/address-1.2.2.tgz#2b5248dac5485a6390532c6a517fda2e3faac89e" + integrity sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA== + +adjust-sourcemap-loader@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz#fc4a0fd080f7d10471f30a7320f25560ade28c99" + integrity sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A== + dependencies: + loader-utils "^2.0.0" + regex-parser "^2.2.11" + +aes-js@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/aes-js/-/aes-js-3.0.0.tgz#e21df10ad6c2053295bcbb8dab40b09dbea87e4d" + integrity sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw== + +agent-base@6: + version "6.0.2" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== + dependencies: + debug "4" + +ajv-formats@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520" + integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== + dependencies: + ajv "^8.0.0" + +ajv-keywords@^3.4.1, ajv-keywords@^3.5.2: + version "3.5.2" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" + integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== + +ajv-keywords@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16" + integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== + dependencies: + fast-deep-equal "^3.1.3" + +ajv@^6.12.2, ajv@^6.12.4, ajv@^6.12.5: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ajv@^8.0.0, ajv@^8.6.0, ajv@^8.9.0: + version "8.17.1" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6" + integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g== + dependencies: + fast-deep-equal "^3.1.3" + fast-uri "^3.0.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + +anser@^1.4.9: + version "1.4.10" + resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.10.tgz#befa3eddf282684bd03b63dcda3927aef8c2e35b" + integrity sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww== + +ansi-escapes@^4.2.1, ansi-escapes@^4.3.1: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + +ansi-fragments@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/ansi-fragments/-/ansi-fragments-0.2.1.tgz#24409c56c4cc37817c3d7caa99d8969e2de5a05e" + integrity sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w== + dependencies: + colorette "^1.0.7" + slice-ansi "^2.0.0" + strip-ansi "^5.0.0" + +ansi-html-community@^0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41" + integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw== + +ansi-html@^0.0.9: + version "0.0.9" + resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.9.tgz#6512d02342ae2cc68131952644a129cb734cd3f0" + integrity sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg== + +ansi-regex@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" + integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== + +ansi-regex@^5.0.0, ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-regex@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" + integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== + +ansi-styles@^3.2.0, ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +ansi-styles@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" + integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== + +ansi-styles@^6.1.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" + integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== + +any-promise@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== + +anymatch@^3.0.3, anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +appdirsjs@^1.2.4: + version "1.2.7" + resolved "https://registry.yarnpkg.com/appdirsjs/-/appdirsjs-1.2.7.tgz#50b4b7948a26ba6090d4aede2ae2dc2b051be3b3" + integrity sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw== + +arg@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" + integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +aria-query@5.1.3, aria-query@~5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e" + integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== + dependencies: + deep-equal "^2.0.5" + +aria-query@^5.0.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.0.tgz#650c569e41ad90b51b3d7df5e5eed1c7549c103e" + integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A== + dependencies: + dequal "^2.0.3" + +array-buffer-byte-length@^1.0.0, array-buffer-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz#1e5583ec16763540a27ae52eed99ff899223568f" + integrity sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg== + dependencies: + call-bind "^1.0.5" + is-array-buffer "^3.0.4" + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== + +array-includes@^3.1.6, array-includes@^3.1.7, array-includes@^3.1.8: + version "3.1.8" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.8.tgz#5e370cbe172fdd5dd6530c1d4aadda25281ba97d" + integrity sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-object-atoms "^1.0.0" + get-intrinsic "^1.2.4" + is-string "^1.0.7" + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +array.prototype.findlast@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz#3e4fbcb30a15a7f5bf64cf2faae22d139c2e4904" + integrity sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + es-shim-unscopables "^1.0.2" + +array.prototype.findlastindex@^1.2.3: + version "1.2.5" + resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz#8c35a755c72908719453f87145ca011e39334d0d" + integrity sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + es-shim-unscopables "^1.0.2" + +array.prototype.flat@^1.3.1, array.prototype.flat@^1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz#1476217df8cff17d72ee8f3ba06738db5b387d18" + integrity sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + es-shim-unscopables "^1.0.0" + +array.prototype.flatmap@^1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz#c9a7c6831db8e719d6ce639190146c24bbd3e527" + integrity sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + es-shim-unscopables "^1.0.0" + +array.prototype.reduce@^1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.7.tgz#6aadc2f995af29cb887eb866d981dc85ab6f7dc7" + integrity sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-array-method-boxes-properly "^1.0.0" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + is-string "^1.0.7" + +array.prototype.tosorted@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz#fe954678ff53034e717ea3352a03f0b0b86f7ffc" + integrity sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.3" + es-errors "^1.3.0" + es-shim-unscopables "^1.0.2" + +arraybuffer.prototype.slice@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz#097972f4255e41bc3425e37dc3f6421cf9aefde6" + integrity sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A== + dependencies: + array-buffer-byte-length "^1.0.1" + call-bind "^1.0.5" + define-properties "^1.2.1" + es-abstract "^1.22.3" + es-errors "^1.2.1" + get-intrinsic "^1.2.3" + is-array-buffer "^3.0.4" + is-shared-array-buffer "^1.0.2" + +art@^0.10.1: + version "0.10.3" + resolved "https://registry.yarnpkg.com/art/-/art-0.10.3.tgz#b01d84a968ccce6208df55a733838c96caeeaea2" + integrity sha512-HXwbdofRTiJT6qZX/FnchtldzJjS3vkLJxQilc3Xj+ma2MXjY4UAyQ0ls1XZYVnDvVIBiFZbC6QsvtW86TD6tQ== + +asap@~2.0.3, asap@~2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== + +asn1.js@^4.10.1: + version "4.10.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" + integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +assert@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/assert/-/assert-2.1.0.tgz#6d92a238d05dc02e7427c881fb8be81c8448b2dd" + integrity sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw== + dependencies: + call-bind "^1.0.2" + is-nan "^1.3.2" + object-is "^1.1.5" + object.assign "^4.1.4" + util "^0.12.5" + +ast-types-flow@^0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.8.tgz#0a85e1c92695769ac13a428bb653e7538bea27d6" + integrity sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ== + +ast-types@0.15.2: + version "0.15.2" + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.15.2.tgz#39ae4809393c4b16df751ee563411423e85fb49d" + integrity sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg== + dependencies: + tslib "^2.0.1" + +astral-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" + integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== + +async-limiter@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" + integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== + +async@^3.2.3: + version "3.2.5" + resolved "https://registry.yarnpkg.com/async/-/async-3.2.5.tgz#ebd52a8fdaf7a2289a24df399f8d8485c8a46b66" + integrity sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg== + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + +at-least-node@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" + integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== + +autoprefixer@^10.4.13: + version "10.4.19" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.19.tgz#ad25a856e82ee9d7898c59583c1afeb3fa65f89f" + integrity sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew== + dependencies: + browserslist "^4.23.0" + caniuse-lite "^1.0.30001599" + fraction.js "^4.3.7" + normalize-range "^0.1.2" + picocolors "^1.0.0" + postcss-value-parser "^4.2.0" + +available-typed-arrays@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846" + integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ== + dependencies: + possible-typed-array-names "^1.0.0" + +axe-core@^4.9.1: + version "4.9.1" + resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.9.1.tgz#fcd0f4496dad09e0c899b44f6c4bb7848da912ae" + integrity sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw== + +axios@^0.21.2: + version "0.21.4" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" + integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== + dependencies: + follow-redirects "^1.14.0" + +axios@^0.26.1: + version "0.26.1" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.26.1.tgz#1ede41c51fcf51bbbd6fd43669caaa4f0495aaa9" + integrity sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA== + dependencies: + follow-redirects "^1.14.8" + +axios@^1.6.0: + version "1.7.2" + resolved "https://registry.yarnpkg.com/axios/-/axios-1.7.2.tgz#b625db8a7051fbea61c35a3cbb3a1daa7b9c7621" + integrity sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw== + dependencies: + follow-redirects "^1.15.6" + form-data "^4.0.0" + proxy-from-env "^1.1.0" + +axobject-query@~3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.1.1.tgz#3b6e5c6d4e43ca7ba51c5babf99d22a9c68485e1" + integrity sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg== + dependencies: + deep-equal "^2.0.5" + +babel-core@^7.0.0-bridge.0: + version "7.0.0-bridge.0" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz#95a492ddd90f9b4e9a4a1da14eb335b87b634ece" + integrity sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg== + +babel-jest@^27.4.2, babel-jest@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-27.5.1.tgz#a1bf8d61928edfefd21da27eb86a695bfd691444" + integrity sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg== + dependencies: + "@jest/transform" "^27.5.1" + "@jest/types" "^27.5.1" + "@types/babel__core" "^7.1.14" + babel-plugin-istanbul "^6.1.1" + babel-preset-jest "^27.5.1" + chalk "^4.0.0" + graceful-fs "^4.2.9" + slash "^3.0.0" + +babel-loader@^8.2.3: + version "8.3.0" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.3.0.tgz#124936e841ba4fe8176786d6ff28add1f134d6a8" + integrity sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q== + dependencies: + find-cache-dir "^3.3.1" + loader-utils "^2.0.0" + make-dir "^3.1.0" + schema-utils "^2.6.5" + +babel-loader@^9.1.3: + version "9.1.3" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.3.tgz#3d0e01b4e69760cc694ee306fe16d358aa1c6f9a" + integrity sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw== + dependencies: + find-cache-dir "^4.0.0" + schema-utils "^4.0.0" + +babel-plugin-istanbul@^6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" + integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@istanbuljs/load-nyc-config" "^1.0.0" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-instrument "^5.0.4" + test-exclude "^6.0.0" + +babel-plugin-jest-hoist@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz#9be98ecf28c331eb9f5df9c72d6f89deb8181c2e" + integrity sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ== + dependencies: + "@babel/template" "^7.3.3" + "@babel/types" "^7.3.3" + "@types/babel__core" "^7.0.0" + "@types/babel__traverse" "^7.0.6" + +babel-plugin-macros@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1" + integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg== + dependencies: + "@babel/runtime" "^7.12.5" + cosmiconfig "^7.0.0" + resolve "^1.19.0" + +babel-plugin-named-asset-import@^0.3.8: + version "0.3.8" + resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz#6b7fa43c59229685368683c28bc9734f24524cc2" + integrity sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q== + +babel-plugin-polyfill-corejs2@^0.4.10: + version "0.4.11" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz#30320dfe3ffe1a336c15afdcdafd6fd615b25e33" + integrity sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q== + dependencies: + "@babel/compat-data" "^7.22.6" + "@babel/helper-define-polyfill-provider" "^0.6.2" + semver "^6.3.1" + +babel-plugin-polyfill-corejs3@^0.10.1, babel-plugin-polyfill-corejs3@^0.10.4: + version "0.10.4" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz#789ac82405ad664c20476d0233b485281deb9c77" + integrity sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.6.1" + core-js-compat "^3.36.1" + +babel-plugin-polyfill-regenerator@^0.6.1: + version "0.6.2" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz#addc47e240edd1da1058ebda03021f382bba785e" + integrity sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.6.2" + +babel-plugin-transform-flow-enums@^0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-enums/-/babel-plugin-transform-flow-enums-0.0.2.tgz#d1d0cc9bdc799c850ca110d0ddc9f21b9ec3ef25" + integrity sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ== + dependencies: + "@babel/plugin-syntax-flow" "^7.12.1" + +babel-plugin-transform-react-remove-prop-types@^0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz#f2edaf9b4c6a5fbe5c1d678bfb531078c1555f3a" + integrity sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA== + +babel-preset-current-node-syntax@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" + integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== + dependencies: + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-bigint" "^7.8.3" + "@babel/plugin-syntax-class-properties" "^7.8.3" + "@babel/plugin-syntax-import-meta" "^7.8.3" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.8.3" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-top-level-await" "^7.8.3" + +babel-preset-jest@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz#91f10f58034cb7989cb4f962b69fa6eef6a6bc81" + integrity sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag== + dependencies: + babel-plugin-jest-hoist "^27.5.1" + babel-preset-current-node-syntax "^1.0.0" + +babel-preset-react-app@^10.0.1: + version "10.0.1" + resolved "https://registry.yarnpkg.com/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz#ed6005a20a24f2c88521809fa9aea99903751584" + integrity sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg== + dependencies: + "@babel/core" "^7.16.0" + "@babel/plugin-proposal-class-properties" "^7.16.0" + "@babel/plugin-proposal-decorators" "^7.16.4" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.16.0" + "@babel/plugin-proposal-numeric-separator" "^7.16.0" + "@babel/plugin-proposal-optional-chaining" "^7.16.0" + "@babel/plugin-proposal-private-methods" "^7.16.0" + "@babel/plugin-transform-flow-strip-types" "^7.16.0" + "@babel/plugin-transform-react-display-name" "^7.16.0" + "@babel/plugin-transform-runtime" "^7.16.4" + "@babel/preset-env" "^7.16.4" + "@babel/preset-react" "^7.16.0" + "@babel/preset-typescript" "^7.16.0" + "@babel/runtime" "^7.16.3" + babel-plugin-macros "^3.1.0" + babel-plugin-transform-react-remove-prop-types "^0.4.24" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base-x@^3.0.2, base-x@^3.0.8: + version "3.0.10" + resolved "https://registry.yarnpkg.com/base-x/-/base-x-3.0.10.tgz#62de58653f8762b5d6f8d9fe30fa75f7b2585a75" + integrity sha512-7d0s06rR9rYaIWHkpfLIFICM/tkSVdoPC9qYAQRpxn9DdKNWNsKC0uk++akckyLq16Tx2WIinnZ6WRriAt6njQ== + dependencies: + safe-buffer "^5.0.1" + +base64-js@^1.3.0, base64-js@^1.3.1, base64-js@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +batch@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" + integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw== + +bech32@1.1.4, bech32@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/bech32/-/bech32-1.1.4.tgz#e38c9f37bf179b8eb16ae3a772b40c356d4832e9" + integrity sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ== + +bech32@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/bech32/-/bech32-2.0.0.tgz#078d3686535075c8c79709f054b1b226a133b355" + integrity sha512-LcknSilhIGatDAsY1ak2I8VtGaHNhgMSYVxFrGLXv+xLHytaKZKcaUJJUE7qmBr7h33o5YQwP55pMI0xmkpJwg== + +bfj@^7.0.2: + version "7.1.0" + resolved "https://registry.yarnpkg.com/bfj/-/bfj-7.1.0.tgz#c5177d522103f9040e1b12980fe8c38cf41d3f8b" + integrity sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw== + dependencies: + bluebird "^3.7.2" + check-types "^11.2.3" + hoopy "^0.1.4" + jsonpath "^1.1.1" + tryer "^1.0.1" + +big-integer@1.6.36: + version "1.6.36" + resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.36.tgz#78631076265d4ae3555c04f85e7d9d2f3a071a36" + integrity sha512-t70bfa7HYEA1D9idDbmuv7YbsbVkQ+Hp+8KFSul4aE5e/i1bjCNIRYJZlA8Q8p0r9T8cF/RVvwUgRA//FydEyg== + +big.js@^5.2.2: + version "5.2.2" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" + integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== + +binary-extensions@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522" + integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw== + +bindings@^1.3.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + +bip32@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/bip32/-/bip32-3.0.1.tgz#1d1121469cce6e910e0ec3a5a1990dd62687e2a3" + integrity sha512-Uhpp9aEx3iyiO7CpbNGFxv9WcMIVdGoHG04doQ5Ln0u60uwDah7jUSc3QMV/fSZGm/Oo01/OeAmYevXV+Gz5jQ== + dependencies: + "@types/node" "10.12.18" + bs58check "^2.1.1" + create-hash "^1.2.0" + create-hmac "^1.1.7" + typeforce "^1.11.5" + wif "^2.0.6" + +bip39@^3.0.2, bip39@^3.0.4: + version "3.1.0" + resolved "https://registry.yarnpkg.com/bip39/-/bip39-3.1.0.tgz#c55a418deaf48826a6ceb34ac55b3ee1577e18a3" + integrity sha512-c9kiwdk45Do5GL0vJMe7tS95VjCii65mYAH7DfWl3uW8AVzXKQVUm64i3hzVybBDMp9r7j9iNxR85+ul8MdN/A== + dependencies: + "@noble/hashes" "^1.2.0" + +bl@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + +blakejs@^1.1.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/blakejs/-/blakejs-1.2.1.tgz#5057e4206eadb4a97f7c0b6e197a505042fc3814" + integrity sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ== + +bluebird@^3.7.2: + version "3.7.2" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.0, bn.js@^4.11.8, bn.js@^4.11.9: + version "4.12.0" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" + integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== + +bn.js@^5.0.0, bn.js@^5.2.0, bn.js@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" + integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== + +body-parser@1.20.2: + version "1.20.2" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.2.tgz#6feb0e21c4724d06de7ff38da36dad4f57a747fd" + integrity sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA== + dependencies: + bytes "3.1.2" + content-type "~1.0.5" + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + http-errors "2.0.0" + iconv-lite "0.4.24" + on-finished "2.4.1" + qs "6.11.0" + raw-body "2.5.2" + type-is "~1.6.18" + unpipe "1.0.0" + +bonjour-service@^1.0.11: + version "1.2.1" + resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.2.1.tgz#eb41b3085183df3321da1264719fbada12478d02" + integrity sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw== + dependencies: + fast-deep-equal "^3.1.3" + multicast-dns "^7.2.5" + +boolbase@^1.0.0, boolbase@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@^3.0.3, braces@~3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== + dependencies: + fill-range "^7.1.1" + +brorand@^1.0.1, brorand@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== + +browser-process-hrtime@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" + integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== + +browserify-aes@^1.0.4, browserify-aes@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" + integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== + dependencies: + buffer-xor "^1.0.3" + cipher-base "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.3" + inherits "^2.0.1" + safe-buffer "^5.0.1" + +browserify-cipher@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" + integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== + dependencies: + browserify-aes "^1.0.4" + browserify-des "^1.0.0" + evp_bytestokey "^1.0.0" + +browserify-des@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" + integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== + dependencies: + cipher-base "^1.0.1" + des.js "^1.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +browserify-rsa@^4.0.0, browserify-rsa@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d" + integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog== + dependencies: + bn.js "^5.0.0" + randombytes "^2.0.1" + +browserify-sign@^4.0.0: + version "4.2.3" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.3.tgz#7afe4c01ec7ee59a89a558a4b75bd85ae62d4208" + integrity sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw== + dependencies: + bn.js "^5.2.1" + browserify-rsa "^4.1.0" + create-hash "^1.2.0" + create-hmac "^1.1.7" + elliptic "^6.5.5" + hash-base "~3.0" + inherits "^2.0.4" + parse-asn1 "^5.1.7" + readable-stream "^2.3.8" + safe-buffer "^5.2.1" + +browserslist@^4.0.0, browserslist@^4.18.1, browserslist@^4.21.10, browserslist@^4.21.4, browserslist@^4.23.0, browserslist@^4.23.1: + version "4.23.2" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.2.tgz#244fe803641f1c19c28c48c4b6ec9736eb3d32ed" + integrity sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA== + dependencies: + caniuse-lite "^1.0.30001640" + electron-to-chromium "^1.4.820" + node-releases "^2.0.14" + update-browserslist-db "^1.1.0" + +bs58@^4.0.0, bs58@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a" + integrity sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw== + dependencies: + base-x "^3.0.2" + +bs58check@<3.0.0, bs58check@^2.1.1, bs58check@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/bs58check/-/bs58check-2.1.2.tgz#53b018291228d82a5aa08e7d796fdafda54aebfc" + integrity sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA== + dependencies: + bs58 "^4.0.0" + create-hash "^1.1.0" + safe-buffer "^5.1.2" + +bser@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== + dependencies: + node-int64 "^0.4.0" + +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer-xor@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + integrity sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ== + +buffer@6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.2.1" + +buffer@^5.4.3, buffer@^5.5.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + +builtin-modules@^3.1.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6" + integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw== + +bytes@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== + +bytes@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== + +call-bind@^1.0.0, call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" + integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + set-function-length "^1.2.1" + +caller-callsite@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" + integrity sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ== + dependencies: + callsites "^2.0.0" + +caller-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" + integrity sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A== + dependencies: + caller-callsite "^2.0.0" + +callsites@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" + integrity sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ== + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camel-case@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" + integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== + dependencies: + pascal-case "^3.1.2" + tslib "^2.0.3" + +camelcase-css@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" + integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== + +camelcase@^5.0.0, camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.2.0, camelcase@^6.2.1: + version "6.3.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +caniuse-api@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" + integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== + dependencies: + browserslist "^4.0.0" + caniuse-lite "^1.0.0" + lodash.memoize "^4.1.2" + lodash.uniq "^4.5.0" + +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001599, caniuse-lite@^1.0.30001640: + version "1.0.30001643" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001643.tgz#9c004caef315de9452ab970c3da71085f8241dbd" + integrity sha512-ERgWGNleEilSrHM6iUz/zJNSQTP8Mr21wDWpdgvRwcTXGAq6jMtOUPP4dqFPTdKqZ2wKTdtB+uucZ3MRpAUSmg== + +canonical-json@^0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/canonical-json/-/canonical-json-0.0.4.tgz#6579c072c3db5c477ec41dc978fbf2b8f41074a3" + integrity sha512-2sW7x0m/P7dqEnO0O87U7RTVQAaa7MELcd+Jd9FA6CYgYtwJ1TlDWIYMD8nuMkH1KoThsJogqgLyklrt9d/Azw== + +case-sensitive-paths-webpack-plugin@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz#db64066c6422eed2e08cc14b986ca43796dbc6d4" + integrity sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw== + +cborg@^1.5.4, cborg@^1.6.0: + version "1.10.2" + resolved "https://registry.yarnpkg.com/cborg/-/cborg-1.10.2.tgz#83cd581b55b3574c816f82696307c7512db759a1" + integrity sha512-b3tFPA9pUr2zCUiCfRd2+wok2/LBSNUMKOuRRok+WlvvAgEt/PlbgPTsZUcwCOs53IJvLgTp0eotwtosE6njug== + +chain-registry@^1.41.2: + version "1.63.38" + resolved "https://registry.yarnpkg.com/chain-registry/-/chain-registry-1.63.38.tgz#164b397770108e3cd482da8f49fea9416f4f6758" + integrity sha512-FvCxOqNL4Ec/WZGx2DepaPaoqoA7GIAN6JAXhL7Z+dFUt6XFArPlivVrN/G/fCRztG79DsIBX0OQw49+THkINg== + dependencies: + "@chain-registry/types" "^0.45.31" + +chalk@^2.4.1, chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" + integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +char-regex@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" + integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== + +char-regex@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-2.0.1.tgz#6dafdb25f9d3349914079f010ba8d0e6ff9cd01e" + integrity sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw== + +check-types@^11.2.3: + version "11.2.3" + resolved "https://registry.yarnpkg.com/check-types/-/check-types-11.2.3.tgz#1ffdf68faae4e941fce252840b1787b8edc93b71" + integrity sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg== + +chokidar@^3.4.2, chokidar@^3.5.3: + version "3.6.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b" + integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +chrome-launcher@^0.15.2: + version "0.15.2" + resolved "https://registry.yarnpkg.com/chrome-launcher/-/chrome-launcher-0.15.2.tgz#4e6404e32200095fdce7f6a1e1004f9bd36fa5da" + integrity sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ== + dependencies: + "@types/node" "*" + escape-string-regexp "^4.0.0" + is-wsl "^2.2.0" + lighthouse-logger "^1.0.0" + +chrome-trace-event@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz#05bffd7ff928465093314708c93bdfa9bd1f0f5b" + integrity sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ== + +ci-info@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" + integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== + +ci-info@^3.2.0, ci-info@^3.7.0: + version "3.9.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" + integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== + +cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +cjs-module-lexer@^1.0.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.3.1.tgz#c485341ae8fd999ca4ee5af2d7a1c9ae01e0099c" + integrity sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q== + +clean-css@^5.2.2: + version "5.3.3" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.3.tgz#b330653cd3bd6b75009cc25c714cae7b93351ccd" + integrity sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg== + dependencies: + source-map "~0.6.0" + +cli-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== + dependencies: + restore-cursor "^3.1.0" + +cli-spinners@^2.5.0: + version "2.9.2" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz#1773a8f4b9c4d6ac31563df53b3fc1d79462fe41" + integrity sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg== + +cliui@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" + integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^6.2.0" + +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +cliui@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" + integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.1" + wrap-ansi "^7.0.0" + +clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== + dependencies: + is-plain-object "^2.0.4" + kind-of "^6.0.2" + shallow-clone "^3.0.0" + +clone@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== + +clsx@^2.1.0, clsx@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/clsx/-/clsx-2.1.1.tgz#eed397c9fd8bd882bfb18deab7102049a2f32999" + integrity sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA== + +co@4.6.0, co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== + +coa@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3" + integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA== + dependencies: + "@types/q" "^1.5.1" + chalk "^2.4.1" + q "^1.1.2" + +collect-v8-coverage@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz#c0b29bcd33bcd0779a1344c2136051e6afd3d9e9" + integrity sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q== + +color-convert@^1.9.0, color-convert@^1.9.3: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@^1.0.0, color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +color-string@^1.6.0: + version "1.9.1" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4" + integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg== + dependencies: + color-name "^1.0.0" + simple-swizzle "^0.2.2" + +color@^3.1.2: + version "3.2.1" + resolved "https://registry.yarnpkg.com/color/-/color-3.2.1.tgz#3544dc198caf4490c3ecc9a790b54fe9ff45e164" + integrity sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA== + dependencies: + color-convert "^1.9.3" + color-string "^1.6.0" + +colord@^2.9.1: + version "2.9.3" + resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43" + integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== + +colorette@^1.0.7: + version "1.4.0" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40" + integrity sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g== + +colorette@^2.0.10: + version "2.0.20" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" + integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== + +combined-stream@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +command-exists@^1.2.8: + version "1.2.9" + resolved "https://registry.yarnpkg.com/command-exists/-/command-exists-1.2.9.tgz#c50725af3808c8ab0260fd60b01fbfa25b954f69" + integrity sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w== + +commander@^2.20.0: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +commander@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" + integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== + +commander@^7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" + integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== + +commander@^8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" + integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== + +commander@^9.4.1: + version "9.5.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz#bc08d1eb5cedf7ccb797a96199d41c7bc3e60d30" + integrity sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ== + +common-path-prefix@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-3.0.0.tgz#7d007a7e07c58c4b4d5f433131a19141b29f11e0" + integrity sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w== + +common-tags@^1.8.0: + version "1.8.2" + resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.2.tgz#94ebb3c076d26032745fd54face7f688ef5ac9c6" + integrity sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA== + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== + +compressible@~2.0.16: + version "2.0.18" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" + integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== + dependencies: + mime-db ">= 1.43.0 < 2" + +compression@^1.7.1, compression@^1.7.4: + version "1.7.4" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" + integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + dependencies: + accepts "~1.3.5" + bytes "3.0.0" + compressible "~2.0.16" + debug "2.6.9" + on-headers "~1.0.2" + safe-buffer "5.1.2" + vary "~1.1.2" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +confusing-browser-globals@^1.0.11: + version "1.0.11" + resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz#ae40e9b57cdd3915408a2805ebd3a5585608dc81" + integrity sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA== + +connect-history-api-fallback@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz#647264845251a0daf25b97ce87834cace0f5f1c8" + integrity sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA== + +connect@^3.6.5: + version "3.7.0" + resolved "https://registry.yarnpkg.com/connect/-/connect-3.7.0.tgz#5d49348910caa5e07a01800b030d0c35f20484f8" + integrity sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ== + dependencies: + debug "2.6.9" + finalhandler "1.1.2" + parseurl "~1.3.3" + utils-merge "1.0.1" + +content-disposition@0.5.4: + version "0.5.4" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" + integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== + dependencies: + safe-buffer "5.2.1" + +content-type@~1.0.4, content-type@~1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" + integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== + +convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + +convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== + +cookie@0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051" + integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== + +core-js-compat@^3.36.1, core-js-compat@^3.37.1: + version "3.37.1" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.37.1.tgz#c844310c7852f4bdf49b8d339730b97e17ff09ee" + integrity sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg== + dependencies: + browserslist "^4.23.0" + +core-js-pure@^3.23.3: + version "3.37.1" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.37.1.tgz#2b4b34281f54db06c9a9a5bd60105046900553bd" + integrity sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA== + +core-js@^3.19.2, core-js@^3.37.1: + version "3.37.1" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.37.1.tgz#d21751ddb756518ac5a00e4d66499df981a62db9" + integrity sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw== + +core-util-is@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + +cosmiconfig@^5.0.5, cosmiconfig@^5.1.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" + integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== + dependencies: + import-fresh "^2.0.0" + is-directory "^0.3.1" + js-yaml "^3.13.1" + parse-json "^4.0.0" + +cosmiconfig@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" + integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.1.0" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.7.2" + +cosmiconfig@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" + integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.2.1" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.10.0" + +cosmjs-types@^0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/cosmjs-types/-/cosmjs-types-0.9.0.tgz#c3bc482d28c7dfa25d1445093fdb2d9da1f6cfcc" + integrity sha512-MN/yUe6mkJwHnCFfsNPeCfXVhyxHYW6c/xDUzrSbBycYzw++XvWDMJArXp2pLdgD6FQ8DW79vkPjeNKVrXaHeQ== + +create-ecdh@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e" + integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== + dependencies: + bn.js "^4.1.0" + elliptic "^6.5.3" + +create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" + integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== + dependencies: + cipher-base "^1.0.1" + inherits "^2.0.1" + md5.js "^1.3.4" + ripemd160 "^2.0.1" + sha.js "^2.4.0" + +create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" + integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== + dependencies: + cipher-base "^1.0.3" + create-hash "^1.1.0" + inherits "^2.0.1" + ripemd160 "^2.0.0" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +create-react-class@^15.6.2: + version "15.7.0" + resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.7.0.tgz#7499d7ca2e69bb51d13faf59bd04f0c65a1d6c1e" + integrity sha512-QZv4sFWG9S5RUvkTYWbflxeZX+JG7Cz0Tn33rQBJ+WFQTqTfUTjMjiv9tnfXazjsO5r0KhPs+AqCjyrQX6h2ng== + dependencies: + loose-envify "^1.3.1" + object-assign "^4.1.1" + +cross-fetch@^3.1.5: + version "3.1.8" + resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.8.tgz#0327eba65fd68a7d119f8fb2bf9334a1a7956f82" + integrity sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg== + dependencies: + node-fetch "^2.6.12" + +cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypto-addr-codec@^0.1.7: + version "0.1.8" + resolved "https://registry.yarnpkg.com/crypto-addr-codec/-/crypto-addr-codec-0.1.8.tgz#45c4b24e2ebce8e24a54536ee0ca25b65787b016" + integrity sha512-GqAK90iLLgP3FvhNmHbpT3wR6dEdaM8hZyZtLX29SPardh3OA13RFLHDR6sntGCgRWOfiHqW6sIyohpNqOtV/g== + dependencies: + base-x "^3.0.8" + big-integer "1.6.36" + blakejs "^1.1.0" + bs58 "^4.0.1" + ripemd160-min "0.0.6" + safe-buffer "^5.2.0" + sha3 "^2.1.1" + +crypto-browserify@^3.12.0: + version "3.12.0" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" + integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== + dependencies: + browserify-cipher "^1.0.0" + browserify-sign "^4.0.0" + create-ecdh "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.0" + diffie-hellman "^5.0.0" + inherits "^2.0.1" + pbkdf2 "^3.0.3" + public-encrypt "^4.0.0" + randombytes "^2.0.0" + randomfill "^1.0.3" + +crypto-random-string@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" + integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== + +css-blank-pseudo@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz#36523b01c12a25d812df343a32c322d2a2324561" + integrity sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ== + dependencies: + postcss-selector-parser "^6.0.9" + +css-declaration-sorter@^6.3.1: + version "6.4.1" + resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz#28beac7c20bad7f1775be3a7129d7eae409a3a71" + integrity sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g== + +css-has-pseudo@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz#57f6be91ca242d5c9020ee3e51bbb5b89fc7af73" + integrity sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw== + dependencies: + postcss-selector-parser "^6.0.9" + +css-in-js-utils@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/css-in-js-utils/-/css-in-js-utils-3.1.0.tgz#640ae6a33646d401fc720c54fc61c42cd76ae2bb" + integrity sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A== + dependencies: + hyphenate-style-name "^1.0.3" + +css-loader@^6.5.1: + version "6.11.0" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.11.0.tgz#33bae3bf6363d0a7c2cf9031c96c744ff54d85ba" + integrity sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g== + dependencies: + icss-utils "^5.1.0" + postcss "^8.4.33" + postcss-modules-extract-imports "^3.1.0" + postcss-modules-local-by-default "^4.0.5" + postcss-modules-scope "^3.2.0" + postcss-modules-values "^4.0.0" + postcss-value-parser "^4.2.0" + semver "^7.5.4" + +css-minimizer-webpack-plugin@^3.2.0: + version "3.4.1" + resolved "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz#ab78f781ced9181992fe7b6e4f3422e76429878f" + integrity sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q== + dependencies: + cssnano "^5.0.6" + jest-worker "^27.0.2" + postcss "^8.3.5" + schema-utils "^4.0.0" + serialize-javascript "^6.0.0" + source-map "^0.6.1" + +css-prefers-color-scheme@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz#ca8a22e5992c10a5b9d315155e7caee625903349" + integrity sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA== + +css-select-base-adapter@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7" + integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w== + +css-select@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef" + integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ== + dependencies: + boolbase "^1.0.0" + css-what "^3.2.1" + domutils "^1.7.0" + nth-check "^1.0.2" + +css-select@^4.1.3: + version "4.3.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" + integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== + dependencies: + boolbase "^1.0.0" + css-what "^6.0.1" + domhandler "^4.3.1" + domutils "^2.8.0" + nth-check "^2.0.1" + +css-select@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6" + integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg== + dependencies: + boolbase "^1.0.0" + css-what "^6.1.0" + domhandler "^5.0.2" + domutils "^3.0.1" + nth-check "^2.0.1" + +css-tree@1.0.0-alpha.37: + version "1.0.0-alpha.37" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22" + integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg== + dependencies: + mdn-data "2.0.4" + source-map "^0.6.1" + +css-tree@^1.1.2, css-tree@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" + integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== + dependencies: + mdn-data "2.0.14" + source-map "^0.6.1" + +css-what@^3.2.1: + version "3.4.2" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4" + integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ== + +css-what@^6.0.1, css-what@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" + integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== + +css.escape@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb" + integrity sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg== + +cssdb@^7.1.0: + version "7.11.2" + resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-7.11.2.tgz#127a2f5b946ee653361a5af5333ea85a39df5ae5" + integrity sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A== + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +cssnano-preset-default@^5.2.14: + version "5.2.14" + resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz#309def4f7b7e16d71ab2438052093330d9ab45d8" + integrity sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A== + dependencies: + css-declaration-sorter "^6.3.1" + cssnano-utils "^3.1.0" + postcss-calc "^8.2.3" + postcss-colormin "^5.3.1" + postcss-convert-values "^5.1.3" + postcss-discard-comments "^5.1.2" + postcss-discard-duplicates "^5.1.0" + postcss-discard-empty "^5.1.1" + postcss-discard-overridden "^5.1.0" + postcss-merge-longhand "^5.1.7" + postcss-merge-rules "^5.1.4" + postcss-minify-font-values "^5.1.0" + postcss-minify-gradients "^5.1.1" + postcss-minify-params "^5.1.4" + postcss-minify-selectors "^5.2.1" + postcss-normalize-charset "^5.1.0" + postcss-normalize-display-values "^5.1.0" + postcss-normalize-positions "^5.1.1" + postcss-normalize-repeat-style "^5.1.1" + postcss-normalize-string "^5.1.0" + postcss-normalize-timing-functions "^5.1.0" + postcss-normalize-unicode "^5.1.1" + postcss-normalize-url "^5.1.0" + postcss-normalize-whitespace "^5.1.1" + postcss-ordered-values "^5.1.3" + postcss-reduce-initial "^5.1.2" + postcss-reduce-transforms "^5.1.0" + postcss-svgo "^5.1.0" + postcss-unique-selectors "^5.1.1" + +cssnano-utils@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-3.1.0.tgz#95684d08c91511edfc70d2636338ca37ef3a6861" + integrity sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA== + +cssnano@^5.0.6: + version "5.1.15" + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.15.tgz#ded66b5480d5127fcb44dac12ea5a983755136bf" + integrity sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw== + dependencies: + cssnano-preset-default "^5.2.14" + lilconfig "^2.0.3" + yaml "^1.10.2" + +csso@^4.0.2, csso@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" + integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== + dependencies: + css-tree "^1.1.2" + +cssom@^0.4.4: + version "0.4.4" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" + integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== + +cssom@~0.3.6: + version "0.3.8" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" + integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== + +cssstyle@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" + integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== + dependencies: + cssom "~0.3.6" + +csstype@^3.0.2, csstype@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" + integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== + +damerau-levenshtein@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" + integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== + +data-urls@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" + integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== + dependencies: + abab "^2.0.3" + whatwg-mimetype "^2.3.0" + whatwg-url "^8.0.0" + +data-view-buffer@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.1.tgz#8ea6326efec17a2e42620696e671d7d5a8bc66b2" + integrity sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +data-view-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz#90721ca95ff280677eb793749fce1011347669e2" + integrity sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +data-view-byte-offset@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz#5e0bbfb4828ed2d1b9b400cd8a7d119bca0ff18a" + integrity sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +dayjs@^1.8.15: + version "1.11.12" + resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.12.tgz#5245226cc7f40a15bf52e0b99fd2a04669ccac1d" + integrity sha512-Rt2g+nTbLlDWZTwwrIXjy9MeiZmSDI375FvZs72ngxx8PDC6YXOeR3q5LAuPzjZQxhiWdRKac7RKV+YyQYfYIg== + +debug@2.6.9, debug@^2.2.0, debug@^2.6.0, debug@^2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: + version "4.3.5" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.5.tgz#e83444eceb9fedd4a1da56d671ae2446a01a6e1e" + integrity sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg== + dependencies: + ms "2.1.2" + +debug@^3.2.7: + version "3.2.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + dependencies: + ms "^2.1.1" + +decamelize@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== + +decimal.js@^10.2.1: + version "10.4.3" + resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.3.tgz#1044092884d245d1b7f65725fa4ad4c6f781cc23" + integrity sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA== + +decode-uri-component@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" + integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== + +dedent@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" + integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== + +deep-equal@^2.0.5: + version "2.2.3" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.3.tgz#af89dafb23a396c7da3e862abc0be27cf51d56e1" + integrity sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA== + dependencies: + array-buffer-byte-length "^1.0.0" + call-bind "^1.0.5" + es-get-iterator "^1.1.3" + get-intrinsic "^1.2.2" + is-arguments "^1.1.1" + is-array-buffer "^3.0.2" + is-date-object "^1.0.5" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + isarray "^2.0.5" + object-is "^1.1.5" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.5.1" + side-channel "^1.0.4" + which-boxed-primitive "^1.0.2" + which-collection "^1.0.1" + which-typed-array "^1.1.13" + +deep-is@^0.1.3, deep-is@~0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +deepmerge@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-3.3.0.tgz#d3c47fd6f3a93d517b14426b0628a17b0125f5f7" + integrity sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA== + +deepmerge@^4.2.2, deepmerge@^4.3.0: + version "4.3.1" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" + integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== + +default-gateway@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-6.0.3.tgz#819494c888053bdb743edbf343d6cdf7f2943a71" + integrity sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg== + dependencies: + execa "^5.0.0" + +defaults@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" + integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== + dependencies: + clone "^1.0.2" + +define-data-property@^1.0.1, define-data-property@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" + integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + gopd "^1.0.1" + +define-lazy-prop@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" + integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== + +define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" + integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== + dependencies: + define-data-property "^1.0.1" + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== + +denodeify@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/denodeify/-/denodeify-1.2.1.tgz#3a36287f5034e699e7577901052c2e6c94251631" + integrity sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg== + +depd@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + +depd@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== + +dequal@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" + integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== + +des.js@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.1.0.tgz#1d37f5766f3bbff4ee9638e871a8768c173b81da" + integrity sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg== + dependencies: + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +destroy@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" + integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== + +detect-newline@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" + integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== + +detect-node@^2.0.4: + version "2.1.0" + resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" + integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== + +detect-port-alt@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.6.tgz#24707deabe932d4a3cf621302027c2b266568275" + integrity sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q== + dependencies: + address "^1.0.1" + debug "^2.6.0" + +didyoumean@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" + integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== + +diff-sequences@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.5.1.tgz#eaecc0d327fd68c8d9672a1e64ab8dccb2ef5327" + integrity sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ== + +diff-sequences@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.6.3.tgz#4deaf894d11407c51efc8418012f9e70b84ea921" + integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== + +diffie-hellman@^5.0.0: + version "5.0.3" + resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" + integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== + dependencies: + bn.js "^4.1.0" + miller-rabin "^4.0.0" + randombytes "^2.0.0" + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +dlv@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" + integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== + +dns-packet@^5.2.2: + version "5.6.1" + resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.6.1.tgz#ae888ad425a9d1478a0674256ab866de1012cf2f" + integrity sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw== + dependencies: + "@leichtgewicht/ip-codec" "^2.0.1" + +doctrine@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== + dependencies: + esutils "^2.0.2" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +dom-accessibility-api@^0.5.6, dom-accessibility-api@^0.5.9: + version "0.5.16" + resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz#5a7429e6066eb3664d911e33fb0e45de8eb08453" + integrity sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg== + +dom-converter@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768" + integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== + dependencies: + utila "~0.4" + +dom-helpers@^5.0.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902" + integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA== + dependencies: + "@babel/runtime" "^7.8.7" + csstype "^3.0.2" + +dom-serializer@0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" + integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== + dependencies: + domelementtype "^2.0.1" + entities "^2.0.0" + +dom-serializer@^1.0.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" + integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.2.0" + entities "^2.0.0" + +dom-serializer@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" + integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== + dependencies: + domelementtype "^2.3.0" + domhandler "^5.0.2" + entities "^4.2.0" + +domelementtype@1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" + integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== + +domelementtype@^2.0.1, domelementtype@^2.2.0, domelementtype@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + +domexception@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304" + integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg== + dependencies: + webidl-conversions "^5.0.0" + +domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" + integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== + dependencies: + domelementtype "^2.2.0" + +domhandler@^5.0.2, domhandler@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" + integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== + dependencies: + domelementtype "^2.3.0" + +domutils@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" + integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== + dependencies: + dom-serializer "0" + domelementtype "1" + +domutils@^2.5.2, domutils@^2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" + integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== + dependencies: + dom-serializer "^1.0.1" + domelementtype "^2.2.0" + domhandler "^4.2.0" + +domutils@^3.0.1: + version "3.1.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e" + integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA== + dependencies: + dom-serializer "^2.0.0" + domelementtype "^2.3.0" + domhandler "^5.0.3" + +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +dotenv-expand@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0" + integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA== + +dotenv@^10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" + integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== + +duplexer@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" + integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== + +eastasianwidth@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" + integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== + +ejs@^3.1.6: + version "3.1.10" + resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz#69ab8358b14e896f80cc39e62087b88500c3ac3b" + integrity sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA== + dependencies: + jake "^10.8.5" + +electron-to-chromium@^1.4.820: + version "1.5.0" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.0.tgz#0d3123a9f09189b9c7ab4b5d6848d71b3c1fd0e8" + integrity sha512-Vb3xHHYnLseK8vlMJQKJYXJ++t4u1/qJ3vykuVrVjvdiOEhYyT1AuP4x03G8EnPmYvYOhe9T+dADTmthjRQMkA== + +elliptic@6.5.4: + version "6.5.4" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" + integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== + dependencies: + bn.js "^4.11.9" + brorand "^1.1.0" + hash.js "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" + +elliptic@^6.4.0, elliptic@^6.5.2, elliptic@^6.5.3, elliptic@^6.5.4, elliptic@^6.5.5: + version "6.5.6" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.6.tgz#ee5f7c3a00b98a2144ac84d67d01f04d438fa53e" + integrity sha512-mpzdtpeCLuS3BmE3pO3Cpp5bbjlOPY2Q0PgoF+Od1XZrHLYI28Xe3ossCmYCQt11FQKEYd9+PF8jymTvtWJSHQ== + dependencies: + bn.js "^4.11.9" + brorand "^1.1.0" + hash.js "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" + +emittery@^0.10.2: + version "0.10.2" + resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.10.2.tgz#902eec8aedb8c41938c46e9385e9db7e03182933" + integrity sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw== + +emittery@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.8.1.tgz#bb23cc86d03b30aa75a7f734819dee2e1ba70860" + integrity sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +emoji-regex@^9.2.2: + version "9.2.2" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== + +emojis-list@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" + integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== + +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== + +enhanced-resolve@^5.17.0: + version "5.17.1" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz#67bfbbcc2f81d511be77d686a90267ef7f898a15" + integrity sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg== + dependencies: + graceful-fs "^4.2.4" + tapable "^2.2.0" + +entities@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +entities@^4.2.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" + integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== + +envinfo@^7.10.0: + version "7.13.0" + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.13.0.tgz#81fbb81e5da35d74e814941aeab7c325a606fb31" + integrity sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +error-stack-parser@^2.0.6: + version "2.1.4" + resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.1.4.tgz#229cb01cdbfa84440bfa91876285b94680188286" + integrity sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ== + dependencies: + stackframe "^1.3.4" + +errorhandler@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/errorhandler/-/errorhandler-1.5.1.tgz#b9ba5d17cf90744cd1e851357a6e75bf806a9a91" + integrity sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A== + dependencies: + accepts "~1.3.7" + escape-html "~1.0.3" + +es-abstract@^1.17.2, es-abstract@^1.17.5, es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.1, es-abstract@^1.23.2, es-abstract@^1.23.3: + version "1.23.3" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.3.tgz#8f0c5a35cd215312573c5a27c87dfd6c881a0aa0" + integrity sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A== + dependencies: + array-buffer-byte-length "^1.0.1" + arraybuffer.prototype.slice "^1.0.3" + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" + data-view-buffer "^1.0.1" + data-view-byte-length "^1.0.1" + data-view-byte-offset "^1.0.0" + es-define-property "^1.0.0" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + es-set-tostringtag "^2.0.3" + es-to-primitive "^1.2.1" + function.prototype.name "^1.1.6" + get-intrinsic "^1.2.4" + get-symbol-description "^1.0.2" + globalthis "^1.0.3" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + has-proto "^1.0.3" + has-symbols "^1.0.3" + hasown "^2.0.2" + internal-slot "^1.0.7" + is-array-buffer "^3.0.4" + is-callable "^1.2.7" + is-data-view "^1.0.1" + is-negative-zero "^2.0.3" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.3" + is-string "^1.0.7" + is-typed-array "^1.1.13" + is-weakref "^1.0.2" + object-inspect "^1.13.1" + object-keys "^1.1.1" + object.assign "^4.1.5" + regexp.prototype.flags "^1.5.2" + safe-array-concat "^1.1.2" + safe-regex-test "^1.0.3" + string.prototype.trim "^1.2.9" + string.prototype.trimend "^1.0.8" + string.prototype.trimstart "^1.0.8" + typed-array-buffer "^1.0.2" + typed-array-byte-length "^1.0.1" + typed-array-byte-offset "^1.0.2" + typed-array-length "^1.0.6" + unbox-primitive "^1.0.2" + which-typed-array "^1.1.15" + +es-array-method-boxes-properly@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e" + integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== + +es-define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" + integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== + dependencies: + get-intrinsic "^1.2.4" + +es-errors@^1.2.1, es-errors@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + +es-get-iterator@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.3.tgz#3ef87523c5d464d41084b2c3c9c214f1199763d6" + integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.3" + has-symbols "^1.0.3" + is-arguments "^1.1.1" + is-map "^2.0.2" + is-set "^2.0.2" + is-string "^1.0.7" + isarray "^2.0.5" + stop-iteration-iterator "^1.0.0" + +es-iterator-helpers@^1.0.19: + version "1.0.19" + resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.0.19.tgz#117003d0e5fec237b4b5c08aded722e0c6d50ca8" + integrity sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.3" + es-errors "^1.3.0" + es-set-tostringtag "^2.0.3" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + globalthis "^1.0.3" + has-property-descriptors "^1.0.2" + has-proto "^1.0.3" + has-symbols "^1.0.3" + internal-slot "^1.0.7" + iterator.prototype "^1.1.2" + safe-array-concat "^1.1.2" + +es-module-lexer@^1.2.1: + version "1.5.4" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.5.4.tgz#a8efec3a3da991e60efa6b633a7cad6ab8d26b78" + integrity sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw== + +es-object-atoms@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.0.0.tgz#ddb55cd47ac2e240701260bc2a8e31ecb643d941" + integrity sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw== + dependencies: + es-errors "^1.3.0" + +es-set-tostringtag@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz#8bb60f0a440c2e4281962428438d58545af39777" + integrity sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ== + dependencies: + get-intrinsic "^1.2.4" + has-tostringtag "^1.0.2" + hasown "^2.0.1" + +es-shim-unscopables@^1.0.0, es-shim-unscopables@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz#1f6942e71ecc7835ed1c8a83006d8771a63a3763" + integrity sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw== + dependencies: + hasown "^2.0.0" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +escalade@^3.1.1, escalade@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" + integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== + +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +escape-string-regexp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" + integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== + +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +escodegen@^1.8.1: + version "1.14.3" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" + integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== + dependencies: + esprima "^4.0.1" + estraverse "^4.2.0" + esutils "^2.0.2" + optionator "^0.8.1" + optionalDependencies: + source-map "~0.6.1" + +escodegen@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.1.0.tgz#ba93bbb7a43986d29d6041f99f5262da773e2e17" + integrity sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w== + dependencies: + esprima "^4.0.1" + estraverse "^5.2.0" + esutils "^2.0.2" + optionalDependencies: + source-map "~0.6.1" + +eslint-config-react-app@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz#73ba3929978001c5c86274c017ea57eb5fa644b4" + integrity sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA== + dependencies: + "@babel/core" "^7.16.0" + "@babel/eslint-parser" "^7.16.3" + "@rushstack/eslint-patch" "^1.1.0" + "@typescript-eslint/eslint-plugin" "^5.5.0" + "@typescript-eslint/parser" "^5.5.0" + babel-preset-react-app "^10.0.1" + confusing-browser-globals "^1.0.11" + eslint-plugin-flowtype "^8.0.3" + eslint-plugin-import "^2.25.3" + eslint-plugin-jest "^25.3.0" + eslint-plugin-jsx-a11y "^6.5.1" + eslint-plugin-react "^7.27.1" + eslint-plugin-react-hooks "^4.3.0" + eslint-plugin-testing-library "^5.0.1" + +eslint-import-resolver-node@^0.3.9: + version "0.3.9" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz#d4eaac52b8a2e7c3cd1903eb00f7e053356118ac" + integrity sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g== + dependencies: + debug "^3.2.7" + is-core-module "^2.13.0" + resolve "^1.22.4" + +eslint-module-utils@^2.8.0: + version "2.8.1" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz#52f2404300c3bd33deece9d7372fb337cc1d7c34" + integrity sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q== + dependencies: + debug "^3.2.7" + +eslint-plugin-flowtype@^8.0.3: + version "8.0.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz#e1557e37118f24734aa3122e7536a038d34a4912" + integrity sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ== + dependencies: + lodash "^4.17.21" + string-natural-compare "^3.0.1" + +eslint-plugin-import@^2.25.3: + version "2.29.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz#d45b37b5ef5901d639c15270d74d46d161150643" + integrity sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw== + dependencies: + array-includes "^3.1.7" + array.prototype.findlastindex "^1.2.3" + array.prototype.flat "^1.3.2" + array.prototype.flatmap "^1.3.2" + debug "^3.2.7" + doctrine "^2.1.0" + eslint-import-resolver-node "^0.3.9" + eslint-module-utils "^2.8.0" + hasown "^2.0.0" + is-core-module "^2.13.1" + is-glob "^4.0.3" + minimatch "^3.1.2" + object.fromentries "^2.0.7" + object.groupby "^1.0.1" + object.values "^1.1.7" + semver "^6.3.1" + tsconfig-paths "^3.15.0" + +eslint-plugin-jest@^25.3.0: + version "25.7.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz#ff4ac97520b53a96187bad9c9814e7d00de09a6a" + integrity sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ== + dependencies: + "@typescript-eslint/experimental-utils" "^5.0.0" + +eslint-plugin-jsx-a11y@^6.5.1: + version "6.9.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.9.0.tgz#67ab8ff460d4d3d6a0b4a570e9c1670a0a8245c8" + integrity sha512-nOFOCaJG2pYqORjK19lqPqxMO/JpvdCZdPtNdxY3kvom3jTvkAbOvQvD8wuD0G8BYR0IGAGYDlzqWJOh/ybn2g== + dependencies: + aria-query "~5.1.3" + array-includes "^3.1.8" + array.prototype.flatmap "^1.3.2" + ast-types-flow "^0.0.8" + axe-core "^4.9.1" + axobject-query "~3.1.1" + damerau-levenshtein "^1.0.8" + emoji-regex "^9.2.2" + es-iterator-helpers "^1.0.19" + hasown "^2.0.2" + jsx-ast-utils "^3.3.5" + language-tags "^1.0.9" + minimatch "^3.1.2" + object.fromentries "^2.0.8" + safe-regex-test "^1.0.3" + string.prototype.includes "^2.0.0" + +eslint-plugin-react-hooks@^4.3.0: + version "4.6.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz#c829eb06c0e6f484b3fbb85a97e57784f328c596" + integrity sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ== + +eslint-plugin-react@^7.27.1: + version "7.35.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.35.0.tgz#00b1e4559896710e58af6358898f2ff917ea4c41" + integrity sha512-v501SSMOWv8gerHkk+IIQBkcGRGrO2nfybfj5pLxuJNFTPxxA3PSryhXTK+9pNbtkggheDdsC0E9Q8CuPk6JKA== + dependencies: + array-includes "^3.1.8" + array.prototype.findlast "^1.2.5" + array.prototype.flatmap "^1.3.2" + array.prototype.tosorted "^1.1.4" + doctrine "^2.1.0" + es-iterator-helpers "^1.0.19" + estraverse "^5.3.0" + hasown "^2.0.2" + jsx-ast-utils "^2.4.1 || ^3.0.0" + minimatch "^3.1.2" + object.entries "^1.1.8" + object.fromentries "^2.0.8" + object.values "^1.2.0" + prop-types "^15.8.1" + resolve "^2.0.0-next.5" + semver "^6.3.1" + string.prototype.matchall "^4.0.11" + string.prototype.repeat "^1.0.0" + +eslint-plugin-testing-library@^5.0.1: + version "5.11.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz#5b46cdae96d4a78918711c0b4792f90088e62d20" + integrity sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw== + dependencies: + "@typescript-eslint/utils" "^5.58.0" + +eslint-scope@5.1.1, eslint-scope@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +eslint-scope@^7.2.2: + version "7.2.2" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" + integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== + dependencies: + esrecurse "^4.3.0" + estraverse "^5.2.0" + +eslint-visitor-keys@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" + integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== + +eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" + integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== + +eslint-webpack-plugin@^3.1.1: + version "3.2.0" + resolved "https://registry.yarnpkg.com/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz#1978cdb9edc461e4b0195a20da950cf57988347c" + integrity sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w== + dependencies: + "@types/eslint" "^7.29.0 || ^8.4.1" + jest-worker "^28.0.2" + micromatch "^4.0.5" + normalize-path "^3.0.0" + schema-utils "^4.0.0" + +eslint@^8.3.0: + version "8.57.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.57.0.tgz#c786a6fd0e0b68941aaf624596fb987089195668" + integrity sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ== + dependencies: + "@eslint-community/eslint-utils" "^4.2.0" + "@eslint-community/regexpp" "^4.6.1" + "@eslint/eslintrc" "^2.1.4" + "@eslint/js" "8.57.0" + "@humanwhocodes/config-array" "^0.11.14" + "@humanwhocodes/module-importer" "^1.0.1" + "@nodelib/fs.walk" "^1.2.8" + "@ungap/structured-clone" "^1.2.0" + ajv "^6.12.4" + chalk "^4.0.0" + cross-spawn "^7.0.2" + debug "^4.3.2" + doctrine "^3.0.0" + escape-string-regexp "^4.0.0" + eslint-scope "^7.2.2" + eslint-visitor-keys "^3.4.3" + espree "^9.6.1" + esquery "^1.4.2" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" + find-up "^5.0.0" + glob-parent "^6.0.2" + globals "^13.19.0" + graphemer "^1.4.0" + ignore "^5.2.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + is-path-inside "^3.0.3" + js-yaml "^4.1.0" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.4.1" + lodash.merge "^4.6.2" + minimatch "^3.1.2" + natural-compare "^1.4.0" + optionator "^0.9.3" + strip-ansi "^6.0.1" + text-table "^0.2.0" + +espree@^9.6.0, espree@^9.6.1: + version "9.6.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" + integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== + dependencies: + acorn "^8.9.0" + acorn-jsx "^5.3.2" + eslint-visitor-keys "^3.4.1" + +esprima@1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-1.2.2.tgz#76a0fd66fcfe154fd292667dc264019750b1657b" + integrity sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A== + +esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.4.2: + version "1.6.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7" + integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1, estraverse@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +estree-walker@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700" + integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== + +ethereum-cryptography@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz#8d6143cfc3d74bf79bbd8edecdf29e4ae20dd191" + integrity sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ== + dependencies: + "@types/pbkdf2" "^3.0.0" + "@types/secp256k1" "^4.0.1" + blakejs "^1.1.0" + browserify-aes "^1.2.0" + bs58check "^2.1.2" + create-hash "^1.2.0" + create-hmac "^1.1.7" + hash.js "^1.1.7" + keccak "^3.0.0" + pbkdf2 "^3.0.17" + randombytes "^2.1.0" + safe-buffer "^5.1.2" + scrypt-js "^3.0.0" + secp256k1 "^4.0.1" + setimmediate "^1.0.5" + +ethereumjs-abi@^0.6.8: + version "0.6.8" + resolved "https://registry.yarnpkg.com/ethereumjs-abi/-/ethereumjs-abi-0.6.8.tgz#71bc152db099f70e62f108b7cdfca1b362c6fcae" + integrity sha512-Tx0r/iXI6r+lRsdvkFDlut0N08jWMnKRZ6Gkq+Nmw75lZe4e6o3EkSnkaBP5NF6+m5PTGAr9JP43N3LyeoglsA== + dependencies: + bn.js "^4.11.8" + ethereumjs-util "^6.0.0" + +ethereumjs-util@^6.0.0, ethereumjs-util@^6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz#fcb4e4dd5ceacb9d2305426ab1a5cd93e3163b69" + integrity sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw== + dependencies: + "@types/bn.js" "^4.11.3" + bn.js "^4.11.0" + create-hash "^1.1.2" + elliptic "^6.5.2" + ethereum-cryptography "^0.1.3" + ethjs-util "0.1.6" + rlp "^2.2.3" + +ethers@5.7.2, ethers@^5.6.2: + version "5.7.2" + resolved "https://registry.yarnpkg.com/ethers/-/ethers-5.7.2.tgz#3a7deeabbb8c030d4126b24f84e525466145872e" + integrity sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg== + dependencies: + "@ethersproject/abi" "5.7.0" + "@ethersproject/abstract-provider" "5.7.0" + "@ethersproject/abstract-signer" "5.7.0" + "@ethersproject/address" "5.7.0" + "@ethersproject/base64" "5.7.0" + "@ethersproject/basex" "5.7.0" + "@ethersproject/bignumber" "5.7.0" + "@ethersproject/bytes" "5.7.0" + "@ethersproject/constants" "5.7.0" + "@ethersproject/contracts" "5.7.0" + "@ethersproject/hash" "5.7.0" + "@ethersproject/hdnode" "5.7.0" + "@ethersproject/json-wallets" "5.7.0" + "@ethersproject/keccak256" "5.7.0" + "@ethersproject/logger" "5.7.0" + "@ethersproject/networks" "5.7.1" + "@ethersproject/pbkdf2" "5.7.0" + "@ethersproject/properties" "5.7.0" + "@ethersproject/providers" "5.7.2" + "@ethersproject/random" "5.7.0" + "@ethersproject/rlp" "5.7.0" + "@ethersproject/sha2" "5.7.0" + "@ethersproject/signing-key" "5.7.0" + "@ethersproject/solidity" "5.7.0" + "@ethersproject/strings" "5.7.0" + "@ethersproject/transactions" "5.7.0" + "@ethersproject/units" "5.7.0" + "@ethersproject/wallet" "5.7.0" + "@ethersproject/web" "5.7.1" + "@ethersproject/wordlists" "5.7.0" + +ethjs-util@0.1.6, ethjs-util@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/ethjs-util/-/ethjs-util-0.1.6.tgz#f308b62f185f9fe6237132fb2a9818866a5cd536" + integrity sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w== + dependencies: + is-hex-prefixed "1.0.0" + strip-hex-prefix "1.0.0" + +event-target-shim@^5.0.0, event-target-shim@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" + integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== + +eventemitter3@^4.0.0: + version "4.0.7" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +events@^3.2.0, events@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== + +evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" + integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== + dependencies: + md5.js "^1.3.4" + safe-buffer "^5.1.1" + +execa@^5.0.0, execa@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + 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" + +exit@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== + +expect@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/expect/-/expect-27.5.1.tgz#83ce59f1e5bdf5f9d2b94b61d2050db48f3fef74" + integrity sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw== + dependencies: + "@jest/types" "^27.5.1" + jest-get-type "^27.5.1" + jest-matcher-utils "^27.5.1" + jest-message-util "^27.5.1" + +expect@^29.0.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/expect/-/expect-29.7.0.tgz#578874590dcb3214514084c08115d8aee61e11bc" + integrity sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw== + dependencies: + "@jest/expect-utils" "^29.7.0" + jest-get-type "^29.6.3" + jest-matcher-utils "^29.7.0" + jest-message-util "^29.7.0" + jest-util "^29.7.0" + +express@^4.17.3: + version "4.19.2" + resolved "https://registry.yarnpkg.com/express/-/express-4.19.2.tgz#e25437827a3aa7f2a827bc8171bbbb664a356465" + integrity sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q== + dependencies: + accepts "~1.3.8" + array-flatten "1.1.1" + body-parser "1.20.2" + content-disposition "0.5.4" + content-type "~1.0.4" + cookie "0.6.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "2.0.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "1.2.0" + fresh "0.5.2" + http-errors "2.0.0" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "2.4.1" + parseurl "~1.3.3" + path-to-regexp "0.1.7" + proxy-addr "~2.0.7" + qs "6.11.0" + range-parser "~1.2.1" + safe-buffer "5.2.1" + send "0.18.0" + serve-static "1.15.0" + setprototypeof "1.2.0" + statuses "2.0.1" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + +fast-base64-decode@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fast-base64-decode/-/fast-base64-decode-1.0.0.tgz#b434a0dd7d92b12b43f26819300d2dafb83ee418" + integrity sha512-qwaScUgUGBYeDNRnbc/KyllVU88Jk1pRHPStuF/lO7B0/RTRLj7U0lkdTAutlBblY08rwZDff6tNU9cjv6j//Q== + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-glob@^3.2.9, fast-glob@^3.3.0, fast-glob@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== + 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" + +fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fast-loops@^1.1.3: + version "1.1.4" + resolved "https://registry.yarnpkg.com/fast-loops/-/fast-loops-1.1.4.tgz#61bc77d518c0af5073a638c6d9d5c7683f069ce2" + integrity sha512-8dbd3XWoKCTms18ize6JmQF1SFnnfj5s0B7rRry22EofgMu7B6LKHVh+XfFqFGsqnbH54xgeO83PzpKI+ODhlg== + +fast-uri@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.1.tgz#cddd2eecfc83a71c1be2cc2ef2061331be8a7134" + integrity sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw== + +fast-xml-parser@^4.0.12, fast-xml-parser@^4.2.4: + version "4.4.0" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.4.0.tgz#341cc98de71e9ba9e651a67f41f1752d1441a501" + integrity sha512-kLY3jFlwIYwBNDojclKsNAC12sfD6NwW74QB2CoNGPvtVxjliYehVunB3HYyNi+n4Tt1dAcgwYvmKF/Z18flqg== + dependencies: + strnum "^1.0.5" + +fastq@^1.6.0: + version "1.17.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== + dependencies: + reusify "^1.0.4" + +faye-websocket@^0.11.3: + version "0.11.4" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da" + integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g== + dependencies: + websocket-driver ">=0.5.1" + +fb-watchman@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" + integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== + dependencies: + bser "2.1.1" + +fbjs-css-vars@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz#216551136ae02fe255932c3ec8775f18e2c078b8" + integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ== + +fbjs@^3.0.4: + version "3.0.5" + resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-3.0.5.tgz#aa0edb7d5caa6340011790bd9249dbef8a81128d" + integrity sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg== + dependencies: + cross-fetch "^3.1.5" + fbjs-css-vars "^1.0.0" + loose-envify "^1.0.0" + object-assign "^4.1.0" + promise "^7.1.1" + setimmediate "^1.0.5" + ua-parser-js "^1.0.35" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +file-loader@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d" + integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw== + dependencies: + loader-utils "^2.0.0" + schema-utils "^3.0.0" + +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + +filelist@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5" + integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q== + dependencies: + minimatch "^5.0.1" + +filesize@^8.0.6: + version "8.0.7" + resolved "https://registry.yarnpkg.com/filesize/-/filesize-8.0.7.tgz#695e70d80f4e47012c132d57a059e80c6b580bd8" + integrity sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ== + +fill-range@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" + integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== + dependencies: + to-regex-range "^5.0.1" + +filter-obj@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/filter-obj/-/filter-obj-1.1.0.tgz#9b311112bc6c6127a16e016c6c5d7f19e0805c5b" + integrity sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ== + +finalhandler@1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" + integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "~2.3.0" + parseurl "~1.3.3" + statuses "~1.5.0" + unpipe "~1.0.0" + +finalhandler@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" + integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "2.4.1" + parseurl "~1.3.3" + statuses "2.0.1" + unpipe "~1.0.0" + +find-cache-dir@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" + integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== + dependencies: + commondir "^1.0.1" + make-dir "^2.0.0" + pkg-dir "^3.0.0" + +find-cache-dir@^3.3.1: + version "3.3.2" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" + integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== + dependencies: + commondir "^1.0.1" + make-dir "^3.0.2" + pkg-dir "^4.1.0" + +find-cache-dir@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-4.0.0.tgz#a30ee0448f81a3990708f6453633c733e2f6eec2" + integrity sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg== + dependencies: + common-path-prefix "^3.0.0" + pkg-dir "^7.0.0" + +find-root@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" + integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== + +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + +find-up@^4.0.0, find-up@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +find-up@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-6.3.0.tgz#2abab3d3280b2dc7ac10199ef324c4e002c8c790" + integrity sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw== + dependencies: + locate-path "^7.1.0" + path-exists "^5.0.0" + +find-yarn-workspace-root@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz#f47fb8d239c900eb78179aa81b66673eac88f7bd" + integrity sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ== + dependencies: + micromatch "^4.0.2" + +flat-cache@^3.0.4: + version "3.2.0" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee" + integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== + dependencies: + flatted "^3.2.9" + keyv "^4.5.3" + rimraf "^3.0.2" + +flatted@^3.2.9: + version "3.3.1" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" + integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== + +flow-enums-runtime@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/flow-enums-runtime/-/flow-enums-runtime-0.0.6.tgz#5bb0cd1b0a3e471330f4d109039b7eba5cb3e787" + integrity sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw== + +flow-parser@0.*: + version "0.241.0" + resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.241.0.tgz#cc42f2e1ea8e9ef0a9ab5a9c3d9be01fc121d973" + integrity sha512-82yKXpz7iWknWFsognZUf5a6mBQLnVrYoYSU9Nbu7FTOpKlu3v9ehpiI9mYXuaIO3J0ojX1b83M/InXvld9HUw== + +follow-redirects@^1.0.0, follow-redirects@^1.14.0, follow-redirects@^1.14.8, follow-redirects@^1.15.6: + version "1.15.6" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.6.tgz#7f815c0cda4249c74ff09e95ef97c23b5fd0399b" + integrity sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +foreground-child@^3.1.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.2.1.tgz#767004ccf3a5b30df39bed90718bab43fe0a59f7" + integrity sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA== + dependencies: + cross-spawn "^7.0.0" + signal-exit "^4.0.1" + +fork-ts-checker-webpack-plugin@^6.5.0: + version "6.5.3" + resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz#eda2eff6e22476a2688d10661688c47f611b37f3" + integrity sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ== + dependencies: + "@babel/code-frame" "^7.8.3" + "@types/json-schema" "^7.0.5" + chalk "^4.1.0" + chokidar "^3.4.2" + cosmiconfig "^6.0.0" + deepmerge "^4.2.2" + fs-extra "^9.0.0" + glob "^7.1.6" + memfs "^3.1.2" + minimatch "^3.0.4" + schema-utils "2.7.0" + semver "^7.3.2" + tapable "^1.0.0" + +form-data@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" + integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +form-data@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" + integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +forwarded@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" + integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== + +fraction.js@^4.3.7: + version "4.3.7" + resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7" + integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== + +fs-extra@^10.0.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" + integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-extra@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" + integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-extra@^9.0.0, fs-extra@^9.0.1: + version "9.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" + integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== + dependencies: + at-least-node "^1.0.0" + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-monkey@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.6.tgz#8ead082953e88d992cf3ff844faa907b26756da2" + integrity sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg== + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@^2.3.2, fsevents@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== + +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + +function.prototype.name@^1.1.5, function.prototype.name@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd" + integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + functions-have-names "^1.2.3" + +functions-have-names@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-caller-file@^2.0.1, get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" + integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + has-proto "^1.0.1" + has-symbols "^1.0.3" + hasown "^2.0.0" + +get-own-enumerable-property-symbols@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" + integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== + +get-package-type@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" + integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +get-symbol-description@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.2.tgz#533744d5aa20aca4e079c8e5daf7fd44202821f5" + integrity sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg== + dependencies: + call-bind "^1.0.5" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob-to-regexp@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" + integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== + +glob@^10.3.10: + version "10.4.5" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz#f4d9f0b90ffdbab09c9d77f5f29b4262517b0956" + integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg== + dependencies: + foreground-child "^3.1.0" + jackspeak "^3.1.2" + minimatch "^9.0.4" + minipass "^7.1.2" + package-json-from-dist "^1.0.0" + path-scurry "^1.11.1" + +glob@^7.0.0, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +global-modules@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" + integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== + dependencies: + global-prefix "^3.0.0" + +global-prefix@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" + integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== + dependencies: + ini "^1.3.5" + kind-of "^6.0.2" + which "^1.3.1" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globals@^13.19.0: + version "13.24.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171" + integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== + dependencies: + type-fest "^0.20.2" + +globalthis@^1.0.1, globalthis@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz#7430ed3a975d97bfb59bcce41f5cabbafa651236" + integrity sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ== + dependencies: + define-properties "^1.2.1" + gopd "^1.0.1" + +globby@^11.0.4, globby@^11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.2.9" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^3.0.0" + +google-protobuf@^3.19.4: + version "3.21.4" + resolved "https://registry.yarnpkg.com/google-protobuf/-/google-protobuf-3.21.4.tgz#2f933e8b6e5e9f8edde66b7be0024b68f77da6c9" + integrity sha512-MnG7N936zcKTco4Jd2PX2U96Kf9PxygAPKBug+74LHzmHXmceN16MmRcdgZv+DGef/S9YvQAfRsNCn4cjf9yyQ== + +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + +graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + +graphemer@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== + +graphql.js@^0.6.8: + version "0.6.8" + resolved "https://registry.yarnpkg.com/graphql.js/-/graphql.js-0.6.8.tgz#5c2e57311b5e74c6665ff9394394bc76f273542f" + integrity sha512-y1OxsvPCfBell00yb2T1E+JQjFXzbmqDT3hsf7Ckof80DlRuQ3SrmLL7KC04Up81vlBj+l9opYJjDLf9OgMH3w== + +gzip-size@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-6.0.0.tgz#065367fd50c239c0671cbcbad5be3e2eeb10e462" + integrity sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q== + dependencies: + duplexer "^0.1.2" + +handle-thing@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e" + integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== + +harmony-reflect@^1.4.6: + version "1.6.2" + resolved "https://registry.yarnpkg.com/harmony-reflect/-/harmony-reflect-1.6.2.tgz#31ecbd32e648a34d030d86adb67d4d47547fe710" + integrity sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g== + +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" + integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== + dependencies: + es-define-property "^1.0.0" + +has-proto@^1.0.1, has-proto@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" + integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== + +has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" + integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== + dependencies: + has-symbols "^1.0.3" + +hash-base@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" + integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== + dependencies: + inherits "^2.0.4" + readable-stream "^3.6.0" + safe-buffer "^5.2.0" + +hash-base@~3.0: + version "3.0.4" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" + integrity sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3, hash.js@^1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.1" + +hasown@^2.0.0, hasown@^2.0.1, hasown@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + dependencies: + function-bind "^1.1.2" + +he@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +hermes-estree@0.19.1: + version "0.19.1" + resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.19.1.tgz#d5924f5fac2bf0532547ae9f506d6db8f3c96392" + integrity sha512-daLGV3Q2MKk8w4evNMKwS8zBE/rcpA800nu1Q5kM08IKijoSnPe9Uo1iIxzPKRkn95IxxsgBMPeYHt3VG4ej2g== + +hermes-estree@0.20.1: + version "0.20.1" + resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.20.1.tgz#0b9a544cf883a779a8e1444b915fa365bef7f72d" + integrity sha512-SQpZK4BzR48kuOg0v4pb3EAGNclzIlqMj3Opu/mu7bbAoFw6oig6cEt/RAi0zTFW/iW6Iz9X9ggGuZTAZ/yZHg== + +hermes-parser@0.19.1: + version "0.19.1" + resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.19.1.tgz#1044348097165b7c93dc198a80b04ed5130d6b1a" + integrity sha512-Vp+bXzxYJWrpEuJ/vXxUsLnt0+y4q9zyi4zUlkLqD8FKv4LjIfOvP69R/9Lty3dCyKh0E2BU7Eypqr63/rKT/A== + dependencies: + hermes-estree "0.19.1" + +hermes-parser@0.20.1: + version "0.20.1" + resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.20.1.tgz#ad10597b99f718b91e283f81cbe636c50c3cff92" + integrity sha512-BL5P83cwCogI8D7rrDCgsFY0tdYUtmFP9XaXtl2IQjC+2Xo+4okjfXintlTxcIwl4qeGddEl28Z11kbVIw0aNA== + dependencies: + hermes-estree "0.20.1" + +hermes-profile-transformer@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/hermes-profile-transformer/-/hermes-profile-transformer-0.0.6.tgz#bd0f5ecceda80dd0ddaae443469ab26fb38fc27b" + integrity sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ== + dependencies: + source-map "^0.7.3" + +hmac-drbg@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.1: + version "3.3.2" + resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" + integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== + dependencies: + react-is "^16.7.0" + +hoopy@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/hoopy/-/hoopy-0.1.4.tgz#609207d661100033a9a9402ad3dea677381c1b1d" + integrity sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ== + +hpack.js@^2.1.6: + version "2.1.6" + resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" + integrity sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ== + dependencies: + inherits "^2.0.1" + obuf "^1.0.0" + readable-stream "^2.0.1" + wbuf "^1.1.0" + +html-encoding-sniffer@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3" + integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ== + dependencies: + whatwg-encoding "^1.0.5" + +html-entities@^2.1.0, html-entities@^2.3.2: + version "2.5.2" + resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.5.2.tgz#201a3cf95d3a15be7099521620d19dfb4f65359f" + integrity sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA== + +html-escaper@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" + integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== + +html-minifier-terser@^6.0.2: + version "6.1.0" + resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#bfc818934cc07918f6b3669f5774ecdfd48f32ab" + integrity sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw== + dependencies: + camel-case "^4.1.2" + clean-css "^5.2.2" + commander "^8.3.0" + he "^1.2.0" + param-case "^3.0.4" + relateurl "^0.2.7" + terser "^5.10.0" + +html-webpack-plugin@^5.5.0: + version "5.6.0" + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.6.0.tgz#50a8fa6709245608cb00e811eacecb8e0d7b7ea0" + integrity sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw== + dependencies: + "@types/html-minifier-terser" "^6.0.0" + html-minifier-terser "^6.0.2" + lodash "^4.17.21" + pretty-error "^4.0.0" + tapable "^2.0.0" + +htmlparser2@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7" + integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.0.0" + domutils "^2.5.2" + entities "^2.0.0" + +http-browserify@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/http-browserify/-/http-browserify-1.7.0.tgz#33795ade72df88acfbfd36773cefeda764735b20" + integrity sha512-Irf/LJXmE3cBzU1eaR4+NEX6bmVLqt1wkmDiA7kBwH7zmb0D8kBAXsDmQ88hhj/qv9iEZKlyGx/hrMcFi8sOHw== + dependencies: + Base64 "~0.2.0" + inherits "~2.0.1" + +http-deceiver@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" + integrity sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw== + +http-errors@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" + integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== + dependencies: + depd "2.0.0" + inherits "2.0.4" + setprototypeof "1.2.0" + statuses "2.0.1" + toidentifier "1.0.1" + +http-errors@~1.6.2: + version "1.6.3" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" + integrity sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A== + dependencies: + depd "~1.1.2" + inherits "2.0.3" + setprototypeof "1.1.0" + statuses ">= 1.4.0 < 2" + +http-parser-js@>=0.5.1: + version "0.5.8" + resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.8.tgz#af23090d9ac4e24573de6f6aecc9d84a48bf20e3" + integrity sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q== + +http-proxy-agent@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" + integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== + dependencies: + "@tootallnate/once" "1" + agent-base "6" + debug "4" + +http-proxy-middleware@^2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz#e1a4dd6979572c7ab5a4e4b55095d1f32a74963f" + integrity sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw== + dependencies: + "@types/http-proxy" "^1.17.8" + http-proxy "^1.18.1" + is-glob "^4.0.1" + is-plain-obj "^3.0.0" + micromatch "^4.0.2" + +http-proxy@^1.18.1: + version "1.18.1" + resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" + integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== + dependencies: + eventemitter3 "^4.0.0" + follow-redirects "^1.0.0" + requires-port "^1.0.0" + +https-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" + integrity sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg== + +https-proxy-agent@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" + integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== + dependencies: + agent-base "6" + debug "4" + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +hyphenate-style-name@^1.0.3: + version "1.1.0" + resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.1.0.tgz#1797bf50369588b47b72ca6d5e65374607cf4436" + integrity sha512-WDC/ui2VVRrz3jOVi+XtjqkDjiVjTtFaAGiW37k6b+ohyQ5wYDOGkvCZa8+H0nx3gyvv0+BST9xuOgIyGQ00gw== + +iconv-lite@0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +iconv-lite@^0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + +icss-utils@^5.0.0, icss-utils@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" + integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== + +idb@^7.0.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/idb/-/idb-7.1.1.tgz#d910ded866d32c7ced9befc5bfdf36f572ced72b" + integrity sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ== + +identity-obj-proxy@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz#94d2bda96084453ef36fbc5aaec37e0f79f1fc14" + integrity sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA== + dependencies: + harmony-reflect "^1.4.6" + +ieee754@^1.1.13, ieee754@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +ignore@^5.2.0: + version "5.3.1" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef" + integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== + +image-size@^1.0.2: + version "1.1.1" + resolved "https://registry.yarnpkg.com/image-size/-/image-size-1.1.1.tgz#ddd67d4dc340e52ac29ce5f546a09f4e29e840ac" + integrity sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ== + dependencies: + queue "6.0.2" + +immer@^9.0.7: + version "9.0.21" + resolved "https://registry.yarnpkg.com/immer/-/immer-9.0.21.tgz#1e025ea31a40f24fb064f1fef23e931496330176" + integrity sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA== + +import-fresh@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" + integrity sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg== + dependencies: + caller-path "^2.0.0" + resolve-from "^3.0.0" + +import-fresh@^3.1.0, import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +import-local@^3.0.2: + version "3.2.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.2.0.tgz#c3d5c745798c02a6f8b897726aba5100186ee260" + integrity sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA== + dependencies: + pkg-dir "^4.2.0" + resolve-cwd "^3.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3, inherits@~2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== + +ini@^1.3.5: + version "1.3.8" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" + integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== + +inline-style-prefixer@^6.0.1: + version "6.0.4" + resolved "https://registry.yarnpkg.com/inline-style-prefixer/-/inline-style-prefixer-6.0.4.tgz#4290ed453ab0e4441583284ad86e41ad88384f44" + integrity sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg== + dependencies: + css-in-js-utils "^3.1.0" + fast-loops "^1.1.3" + +internal-slot@^1.0.4, internal-slot@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.7.tgz#c06dcca3ed874249881007b0a5523b172a190802" + integrity sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g== + dependencies: + es-errors "^1.3.0" + hasown "^2.0.0" + side-channel "^1.0.4" + +interpret@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" + integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== + +invariant@^2.2.4: + version "2.2.4" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== + dependencies: + loose-envify "^1.0.0" + +ipaddr.js@1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== + +ipaddr.js@^2.0.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.2.0.tgz#d33fa7bac284f4de7af949638c9d68157c6b92e8" + integrity sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA== + +is-arguments@^1.0.4, is-arguments@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-array-buffer@^3.0.2, is-array-buffer@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.4.tgz#7a1f92b3d61edd2bc65d24f130530ea93d7fae98" + integrity sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.1" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-arrayish@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" + integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== + +is-async-function@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.0.0.tgz#8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646" + integrity sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA== + dependencies: + has-tostringtag "^1.0.0" + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + +is-core-module@^2.13.0, is-core-module@^2.13.1: + version "2.15.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.15.0.tgz#71c72ec5442ace7e76b306e9d48db361f22699ea" + integrity sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA== + dependencies: + hasown "^2.0.2" + +is-data-view@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.1.tgz#4b4d3a511b70f3dc26d42c03ca9ca515d847759f" + integrity sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w== + dependencies: + is-typed-array "^1.1.13" + +is-date-object@^1.0.1, is-date-object@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-directory@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + integrity sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw== + +is-docker@^2.0.0, is-docker@^2.1.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-finalizationregistry@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz#c8749b65f17c133313e661b1289b95ad3dbd62e6" + integrity sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw== + dependencies: + call-bind "^1.0.2" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-generator-fn@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" + integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== + +is-generator-function@^1.0.10, is-generator-function@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + dependencies: + has-tostringtag "^1.0.0" + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-hex-prefixed@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz#7d8d37e6ad77e5d127148913c573e082d777f554" + integrity sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA== + +is-interactive@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" + integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== + +is-map@^2.0.2, is-map@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz#ede96b7fe1e270b3c4465e3a465658764926d62e" + integrity sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw== + +is-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" + integrity sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g== + +is-nan@^1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" + integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + +is-negative-zero@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747" + integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-obj@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" + integrity sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg== + +is-path-inside@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== + +is-plain-obj@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + +is-plain-obj@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7" + integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== + +is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + +is-potential-custom-element-name@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" + integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== + +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" + integrity sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA== + +is-root@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c" + integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg== + +is-set@^2.0.2, is-set@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz#8ab209ea424608141372ded6e0cb200ef1d9d01d" + integrity sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg== + +is-shared-array-buffer@^1.0.2, is-shared-array-buffer@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz#1237f1cba059cdb62431d378dcc37d9680181688" + integrity sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg== + dependencies: + call-bind "^1.0.7" + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.13, is-typed-array@^1.1.3: + version "1.1.13" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.13.tgz#d6c5ca56df62334959322d7d7dd1cca50debe229" + integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw== + dependencies: + which-typed-array "^1.1.14" + +is-typedarray@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +is-weakmap@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz#bf72615d649dfe5f699079c54b83e47d1ae19cfd" + integrity sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w== + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +is-weakset@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.3.tgz#e801519df8c0c43e12ff2834eead84ec9e624007" + integrity sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ== + dependencies: + call-bind "^1.0.7" + get-intrinsic "^1.2.4" + +is-wsl@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" + integrity sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw== + +is-wsl@^2.1.1, is-wsl@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== + dependencies: + is-docker "^2.0.0" + +isarray@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + +isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== + +isomorphic-ws@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" + integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== + +istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz#2d166c4b0644d43a39f04bf6c2edd1e585f31756" + integrity sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg== + +istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" + integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== + dependencies: + "@babel/core" "^7.12.3" + "@babel/parser" "^7.14.7" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-coverage "^3.2.0" + semver "^6.3.0" + +istanbul-lib-report@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz#908305bac9a5bd175ac6a74489eafd0fc2445a7d" + integrity sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw== + dependencies: + istanbul-lib-coverage "^3.0.0" + make-dir "^4.0.0" + supports-color "^7.1.0" + +istanbul-lib-source-maps@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" + integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== + dependencies: + debug "^4.1.1" + istanbul-lib-coverage "^3.0.0" + source-map "^0.6.1" + +istanbul-reports@^3.1.3: + version "3.1.7" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.7.tgz#daed12b9e1dca518e15c056e1e537e741280fa0b" + integrity sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g== + dependencies: + html-escaper "^2.0.0" + istanbul-lib-report "^3.0.0" + +iterator.prototype@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/iterator.prototype/-/iterator.prototype-1.1.2.tgz#5e29c8924f01916cb9335f1ff80619dcff22b0c0" + integrity sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w== + dependencies: + define-properties "^1.2.1" + get-intrinsic "^1.2.1" + has-symbols "^1.0.3" + reflect.getprototypeof "^1.0.4" + set-function-name "^2.0.1" + +jackspeak@^3.1.2: + version "3.4.3" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz#8833a9d89ab4acde6188942bd1c53b6390ed5a8a" + integrity sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw== + dependencies: + "@isaacs/cliui" "^8.0.2" + optionalDependencies: + "@pkgjs/parseargs" "^0.11.0" + +jake@^10.8.5: + version "10.9.2" + resolved "https://registry.yarnpkg.com/jake/-/jake-10.9.2.tgz#6ae487e6a69afec3a5e167628996b59f35ae2b7f" + integrity sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA== + dependencies: + async "^3.2.3" + chalk "^4.0.2" + filelist "^1.0.4" + minimatch "^3.1.2" + +jest-changed-files@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-27.5.1.tgz#a348aed00ec9bf671cc58a66fcbe7c3dfd6a68f5" + integrity sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw== + dependencies: + "@jest/types" "^27.5.1" + execa "^5.0.0" + throat "^6.0.1" + +jest-circus@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-27.5.1.tgz#37a5a4459b7bf4406e53d637b49d22c65d125ecc" + integrity sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw== + dependencies: + "@jest/environment" "^27.5.1" + "@jest/test-result" "^27.5.1" + "@jest/types" "^27.5.1" + "@types/node" "*" + chalk "^4.0.0" + co "^4.6.0" + dedent "^0.7.0" + expect "^27.5.1" + is-generator-fn "^2.0.0" + jest-each "^27.5.1" + jest-matcher-utils "^27.5.1" + jest-message-util "^27.5.1" + jest-runtime "^27.5.1" + jest-snapshot "^27.5.1" + jest-util "^27.5.1" + pretty-format "^27.5.1" + slash "^3.0.0" + stack-utils "^2.0.3" + throat "^6.0.1" + +jest-cli@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-27.5.1.tgz#278794a6e6458ea8029547e6c6cbf673bd30b145" + integrity sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw== + dependencies: + "@jest/core" "^27.5.1" + "@jest/test-result" "^27.5.1" + "@jest/types" "^27.5.1" + chalk "^4.0.0" + exit "^0.1.2" + graceful-fs "^4.2.9" + import-local "^3.0.2" + jest-config "^27.5.1" + jest-util "^27.5.1" + jest-validate "^27.5.1" + prompts "^2.0.1" + yargs "^16.2.0" + +jest-config@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-27.5.1.tgz#5c387de33dca3f99ad6357ddeccd91bf3a0e4a41" + integrity sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA== + dependencies: + "@babel/core" "^7.8.0" + "@jest/test-sequencer" "^27.5.1" + "@jest/types" "^27.5.1" + babel-jest "^27.5.1" + chalk "^4.0.0" + ci-info "^3.2.0" + deepmerge "^4.2.2" + glob "^7.1.1" + graceful-fs "^4.2.9" + jest-circus "^27.5.1" + jest-environment-jsdom "^27.5.1" + jest-environment-node "^27.5.1" + jest-get-type "^27.5.1" + jest-jasmine2 "^27.5.1" + jest-regex-util "^27.5.1" + jest-resolve "^27.5.1" + jest-runner "^27.5.1" + jest-util "^27.5.1" + jest-validate "^27.5.1" + micromatch "^4.0.4" + parse-json "^5.2.0" + pretty-format "^27.5.1" + slash "^3.0.0" + strip-json-comments "^3.1.1" + +jest-diff@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.5.1.tgz#a07f5011ac9e6643cf8a95a462b7b1ecf6680def" + integrity sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw== + dependencies: + chalk "^4.0.0" + diff-sequences "^27.5.1" + jest-get-type "^27.5.1" + pretty-format "^27.5.1" + +jest-diff@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.7.0.tgz#017934a66ebb7ecf6f205e84699be10afd70458a" + integrity sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw== + dependencies: + chalk "^4.0.0" + diff-sequences "^29.6.3" + jest-get-type "^29.6.3" + pretty-format "^29.7.0" + +jest-docblock@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-27.5.1.tgz#14092f364a42c6108d42c33c8cf30e058e25f6c0" + integrity sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ== + dependencies: + detect-newline "^3.0.0" + +jest-each@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-27.5.1.tgz#5bc87016f45ed9507fed6e4702a5b468a5b2c44e" + integrity sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ== + dependencies: + "@jest/types" "^27.5.1" + chalk "^4.0.0" + jest-get-type "^27.5.1" + jest-util "^27.5.1" + pretty-format "^27.5.1" + +jest-environment-jsdom@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz#ea9ccd1fc610209655a77898f86b2b559516a546" + integrity sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw== + dependencies: + "@jest/environment" "^27.5.1" + "@jest/fake-timers" "^27.5.1" + "@jest/types" "^27.5.1" + "@types/node" "*" + jest-mock "^27.5.1" + jest-util "^27.5.1" + jsdom "^16.6.0" + +jest-environment-node@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-27.5.1.tgz#dedc2cfe52fab6b8f5714b4808aefa85357a365e" + integrity sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw== + dependencies: + "@jest/environment" "^27.5.1" + "@jest/fake-timers" "^27.5.1" + "@jest/types" "^27.5.1" + "@types/node" "*" + jest-mock "^27.5.1" + jest-util "^27.5.1" + +jest-environment-node@^29.6.3: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.7.0.tgz#0b93e111dda8ec120bc8300e6d1fb9576e164376" + integrity sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw== + dependencies: + "@jest/environment" "^29.7.0" + "@jest/fake-timers" "^29.7.0" + "@jest/types" "^29.6.3" + "@types/node" "*" + jest-mock "^29.7.0" + jest-util "^29.7.0" + +jest-get-type@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.5.1.tgz#3cd613c507b0f7ace013df407a1c1cd578bcb4f1" + integrity sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw== + +jest-get-type@^29.6.3: + version "29.6.3" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.6.3.tgz#36f499fdcea197c1045a127319c0481723908fd1" + integrity sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw== + +jest-haste-map@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz#9fd8bd7e7b4fa502d9c6164c5640512b4e811e7f" + integrity sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng== + dependencies: + "@jest/types" "^27.5.1" + "@types/graceful-fs" "^4.1.2" + "@types/node" "*" + anymatch "^3.0.3" + fb-watchman "^2.0.0" + graceful-fs "^4.2.9" + jest-regex-util "^27.5.1" + jest-serializer "^27.5.1" + jest-util "^27.5.1" + jest-worker "^27.5.1" + micromatch "^4.0.4" + walker "^1.0.7" + optionalDependencies: + fsevents "^2.3.2" + +jest-jasmine2@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz#a037b0034ef49a9f3d71c4375a796f3b230d1ac4" + integrity sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ== + dependencies: + "@jest/environment" "^27.5.1" + "@jest/source-map" "^27.5.1" + "@jest/test-result" "^27.5.1" + "@jest/types" "^27.5.1" + "@types/node" "*" + chalk "^4.0.0" + co "^4.6.0" + expect "^27.5.1" + is-generator-fn "^2.0.0" + jest-each "^27.5.1" + jest-matcher-utils "^27.5.1" + jest-message-util "^27.5.1" + jest-runtime "^27.5.1" + jest-snapshot "^27.5.1" + jest-util "^27.5.1" + pretty-format "^27.5.1" + throat "^6.0.1" + +jest-leak-detector@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz#6ec9d54c3579dd6e3e66d70e3498adf80fde3fb8" + integrity sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ== + dependencies: + jest-get-type "^27.5.1" + pretty-format "^27.5.1" + +jest-matcher-utils@^27.0.0, jest-matcher-utils@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz#9c0cdbda8245bc22d2331729d1091308b40cf8ab" + integrity sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw== + dependencies: + chalk "^4.0.0" + jest-diff "^27.5.1" + jest-get-type "^27.5.1" + pretty-format "^27.5.1" + +jest-matcher-utils@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz#ae8fec79ff249fd592ce80e3ee474e83a6c44f12" + integrity sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g== + dependencies: + chalk "^4.0.0" + jest-diff "^29.7.0" + jest-get-type "^29.6.3" + pretty-format "^29.7.0" + +jest-message-util@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.5.1.tgz#bdda72806da10d9ed6425e12afff38cd1458b6cf" + integrity sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g== + dependencies: + "@babel/code-frame" "^7.12.13" + "@jest/types" "^27.5.1" + "@types/stack-utils" "^2.0.0" + chalk "^4.0.0" + graceful-fs "^4.2.9" + micromatch "^4.0.4" + pretty-format "^27.5.1" + slash "^3.0.0" + stack-utils "^2.0.3" + +jest-message-util@^28.1.3: + version "28.1.3" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-28.1.3.tgz#232def7f2e333f1eecc90649b5b94b0055e7c43d" + integrity sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g== + dependencies: + "@babel/code-frame" "^7.12.13" + "@jest/types" "^28.1.3" + "@types/stack-utils" "^2.0.0" + chalk "^4.0.0" + graceful-fs "^4.2.9" + micromatch "^4.0.4" + pretty-format "^28.1.3" + slash "^3.0.0" + stack-utils "^2.0.3" + +jest-message-util@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.7.0.tgz#8bc392e204e95dfe7564abbe72a404e28e51f7f3" + integrity sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w== + dependencies: + "@babel/code-frame" "^7.12.13" + "@jest/types" "^29.6.3" + "@types/stack-utils" "^2.0.0" + chalk "^4.0.0" + graceful-fs "^4.2.9" + micromatch "^4.0.4" + pretty-format "^29.7.0" + slash "^3.0.0" + stack-utils "^2.0.3" + +jest-mock@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-27.5.1.tgz#19948336d49ef4d9c52021d34ac7b5f36ff967d6" + integrity sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og== + dependencies: + "@jest/types" "^27.5.1" + "@types/node" "*" + +jest-mock@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.7.0.tgz#4e836cf60e99c6fcfabe9f99d017f3fdd50a6347" + integrity sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw== + dependencies: + "@jest/types" "^29.6.3" + "@types/node" "*" + jest-util "^29.7.0" + +jest-pnp-resolver@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" + integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== + +jest-regex-util@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz#4da143f7e9fd1e542d4aa69617b38e4a78365b95" + integrity sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg== + +jest-regex-util@^28.0.0: + version "28.0.2" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-28.0.2.tgz#afdc377a3b25fb6e80825adcf76c854e5bf47ead" + integrity sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw== + +jest-resolve-dependencies@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz#d811ecc8305e731cc86dd79741ee98fed06f1da8" + integrity sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg== + dependencies: + "@jest/types" "^27.5.1" + jest-regex-util "^27.5.1" + jest-snapshot "^27.5.1" + +jest-resolve@^27.4.2, jest-resolve@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-27.5.1.tgz#a2f1c5a0796ec18fe9eb1536ac3814c23617b384" + integrity sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw== + dependencies: + "@jest/types" "^27.5.1" + chalk "^4.0.0" + graceful-fs "^4.2.9" + jest-haste-map "^27.5.1" + jest-pnp-resolver "^1.2.2" + jest-util "^27.5.1" + jest-validate "^27.5.1" + resolve "^1.20.0" + resolve.exports "^1.1.0" + slash "^3.0.0" + +jest-runner@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-27.5.1.tgz#071b27c1fa30d90540805c5645a0ec167c7b62e5" + integrity sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ== + dependencies: + "@jest/console" "^27.5.1" + "@jest/environment" "^27.5.1" + "@jest/test-result" "^27.5.1" + "@jest/transform" "^27.5.1" + "@jest/types" "^27.5.1" + "@types/node" "*" + chalk "^4.0.0" + emittery "^0.8.1" + graceful-fs "^4.2.9" + jest-docblock "^27.5.1" + jest-environment-jsdom "^27.5.1" + jest-environment-node "^27.5.1" + jest-haste-map "^27.5.1" + jest-leak-detector "^27.5.1" + jest-message-util "^27.5.1" + jest-resolve "^27.5.1" + jest-runtime "^27.5.1" + jest-util "^27.5.1" + jest-worker "^27.5.1" + source-map-support "^0.5.6" + throat "^6.0.1" + +jest-runtime@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-27.5.1.tgz#4896003d7a334f7e8e4a53ba93fb9bcd3db0a1af" + integrity sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A== + dependencies: + "@jest/environment" "^27.5.1" + "@jest/fake-timers" "^27.5.1" + "@jest/globals" "^27.5.1" + "@jest/source-map" "^27.5.1" + "@jest/test-result" "^27.5.1" + "@jest/transform" "^27.5.1" + "@jest/types" "^27.5.1" + chalk "^4.0.0" + cjs-module-lexer "^1.0.0" + collect-v8-coverage "^1.0.0" + execa "^5.0.0" + glob "^7.1.3" + graceful-fs "^4.2.9" + jest-haste-map "^27.5.1" + jest-message-util "^27.5.1" + jest-mock "^27.5.1" + jest-regex-util "^27.5.1" + jest-resolve "^27.5.1" + jest-snapshot "^27.5.1" + jest-util "^27.5.1" + slash "^3.0.0" + strip-bom "^4.0.0" + +jest-serializer@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-27.5.1.tgz#81438410a30ea66fd57ff730835123dea1fb1f64" + integrity sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w== + dependencies: + "@types/node" "*" + graceful-fs "^4.2.9" + +jest-snapshot@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-27.5.1.tgz#b668d50d23d38054a51b42c4039cab59ae6eb6a1" + integrity sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA== + dependencies: + "@babel/core" "^7.7.2" + "@babel/generator" "^7.7.2" + "@babel/plugin-syntax-typescript" "^7.7.2" + "@babel/traverse" "^7.7.2" + "@babel/types" "^7.0.0" + "@jest/transform" "^27.5.1" + "@jest/types" "^27.5.1" + "@types/babel__traverse" "^7.0.4" + "@types/prettier" "^2.1.5" + babel-preset-current-node-syntax "^1.0.0" + chalk "^4.0.0" + expect "^27.5.1" + graceful-fs "^4.2.9" + jest-diff "^27.5.1" + jest-get-type "^27.5.1" + jest-haste-map "^27.5.1" + jest-matcher-utils "^27.5.1" + jest-message-util "^27.5.1" + jest-util "^27.5.1" + natural-compare "^1.4.0" + pretty-format "^27.5.1" + semver "^7.3.2" + +jest-util@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-27.5.1.tgz#3ba9771e8e31a0b85da48fe0b0891fb86c01c2f9" + integrity sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw== + dependencies: + "@jest/types" "^27.5.1" + "@types/node" "*" + chalk "^4.0.0" + ci-info "^3.2.0" + graceful-fs "^4.2.9" + picomatch "^2.2.3" + +jest-util@^28.1.3: + version "28.1.3" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-28.1.3.tgz#f4f932aa0074f0679943220ff9cbba7e497028b0" + integrity sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ== + dependencies: + "@jest/types" "^28.1.3" + "@types/node" "*" + chalk "^4.0.0" + ci-info "^3.2.0" + graceful-fs "^4.2.9" + picomatch "^2.2.3" + +jest-util@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc" + integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== + dependencies: + "@jest/types" "^29.6.3" + "@types/node" "*" + chalk "^4.0.0" + ci-info "^3.2.0" + graceful-fs "^4.2.9" + picomatch "^2.2.3" + +jest-validate@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-27.5.1.tgz#9197d54dc0bdb52260b8db40b46ae668e04df067" + integrity sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ== + dependencies: + "@jest/types" "^27.5.1" + camelcase "^6.2.0" + chalk "^4.0.0" + jest-get-type "^27.5.1" + leven "^3.1.0" + pretty-format "^27.5.1" + +jest-validate@^29.6.3: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.7.0.tgz#7bf705511c64da591d46b15fce41400d52147d9c" + integrity sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw== + dependencies: + "@jest/types" "^29.6.3" + camelcase "^6.2.0" + chalk "^4.0.0" + jest-get-type "^29.6.3" + leven "^3.1.0" + pretty-format "^29.7.0" + +jest-watch-typeahead@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz#b4a6826dfb9c9420da2f7bc900de59dad11266a9" + integrity sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw== + dependencies: + ansi-escapes "^4.3.1" + chalk "^4.0.0" + jest-regex-util "^28.0.0" + jest-watcher "^28.0.0" + slash "^4.0.0" + string-length "^5.0.1" + strip-ansi "^7.0.1" + +jest-watcher@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-27.5.1.tgz#71bd85fb9bde3a2c2ec4dc353437971c43c642a2" + integrity sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw== + dependencies: + "@jest/test-result" "^27.5.1" + "@jest/types" "^27.5.1" + "@types/node" "*" + ansi-escapes "^4.2.1" + chalk "^4.0.0" + jest-util "^27.5.1" + string-length "^4.0.1" + +jest-watcher@^28.0.0: + version "28.1.3" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-28.1.3.tgz#c6023a59ba2255e3b4c57179fc94164b3e73abd4" + integrity sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g== + dependencies: + "@jest/test-result" "^28.1.3" + "@jest/types" "^28.1.3" + "@types/node" "*" + ansi-escapes "^4.2.1" + chalk "^4.0.0" + emittery "^0.10.2" + jest-util "^28.1.3" + string-length "^4.0.1" + +jest-worker@^26.2.1: + version "26.6.2" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed" + integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== + dependencies: + "@types/node" "*" + merge-stream "^2.0.0" + supports-color "^7.0.0" + +jest-worker@^27.0.2, jest-worker@^27.4.5, jest-worker@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" + integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== + dependencies: + "@types/node" "*" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +jest-worker@^28.0.2: + version "28.1.3" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-28.1.3.tgz#7e3c4ce3fa23d1bb6accb169e7f396f98ed4bb98" + integrity sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g== + dependencies: + "@types/node" "*" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +jest-worker@^29.6.3: + version "29.7.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.7.0.tgz#acad073acbbaeb7262bd5389e1bcf43e10058d4a" + integrity sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw== + dependencies: + "@types/node" "*" + jest-util "^29.7.0" + merge-stream "^2.0.0" + supports-color "^8.0.0" + +jest@^27.4.3: + version "27.5.1" + resolved "https://registry.yarnpkg.com/jest/-/jest-27.5.1.tgz#dadf33ba70a779be7a6fc33015843b51494f63fc" + integrity sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ== + dependencies: + "@jest/core" "^27.5.1" + import-local "^3.0.2" + jest-cli "^27.5.1" + +jiti@^1.21.0: + version "1.21.6" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.6.tgz#6c7f7398dd4b3142767f9a168af2f317a428d268" + integrity sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w== + +joi@^17.2.1: + version "17.13.3" + resolved "https://registry.yarnpkg.com/joi/-/joi-17.13.3.tgz#0f5cc1169c999b30d344366d384b12d92558bcec" + integrity sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA== + dependencies: + "@hapi/hoek" "^9.3.0" + "@hapi/topo" "^5.1.0" + "@sideway/address" "^4.1.5" + "@sideway/formula" "^3.0.1" + "@sideway/pinpoint" "^2.0.0" + +js-sha256@^0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/js-sha256/-/js-sha256-0.9.0.tgz#0b89ac166583e91ef9123644bd3c5334ce9d0966" + integrity sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA== + +js-sha3@0.8.0, js-sha3@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" + integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^3.13.1, js-yaml@^3.14.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +jsc-android@^250231.0.0: + version "250231.0.0" + resolved "https://registry.yarnpkg.com/jsc-android/-/jsc-android-250231.0.0.tgz#91720f8df382a108872fa4b3f558f33ba5e95262" + integrity sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw== + +jsc-safe-url@^0.2.2: + version "0.2.4" + resolved "https://registry.yarnpkg.com/jsc-safe-url/-/jsc-safe-url-0.2.4.tgz#141c14fbb43791e88d5dc64e85a374575a83477a" + integrity sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q== + +jscodeshift@^0.14.0: + version "0.14.0" + resolved "https://registry.yarnpkg.com/jscodeshift/-/jscodeshift-0.14.0.tgz#7542e6715d6d2e8bde0b4e883f0ccea358b46881" + integrity sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA== + dependencies: + "@babel/core" "^7.13.16" + "@babel/parser" "^7.13.16" + "@babel/plugin-proposal-class-properties" "^7.13.0" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.13.8" + "@babel/plugin-proposal-optional-chaining" "^7.13.12" + "@babel/plugin-transform-modules-commonjs" "^7.13.8" + "@babel/preset-flow" "^7.13.13" + "@babel/preset-typescript" "^7.13.0" + "@babel/register" "^7.13.16" + babel-core "^7.0.0-bridge.0" + chalk "^4.1.2" + flow-parser "0.*" + graceful-fs "^4.2.4" + micromatch "^4.0.4" + neo-async "^2.5.0" + node-dir "^0.1.17" + recast "^0.21.0" + temp "^0.8.4" + write-file-atomic "^2.3.0" + +jsdom@^16.6.0: + version "16.7.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710" + integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw== + dependencies: + abab "^2.0.5" + acorn "^8.2.4" + acorn-globals "^6.0.0" + cssom "^0.4.4" + cssstyle "^2.3.0" + data-urls "^2.0.0" + decimal.js "^10.2.1" + domexception "^2.0.1" + escodegen "^2.0.0" + form-data "^3.0.0" + html-encoding-sniffer "^2.0.1" + http-proxy-agent "^4.0.1" + https-proxy-agent "^5.0.0" + is-potential-custom-element-name "^1.0.1" + nwsapi "^2.2.0" + parse5 "6.0.1" + saxes "^5.0.1" + symbol-tree "^3.2.4" + tough-cookie "^4.0.0" + w3c-hr-time "^1.0.2" + w3c-xmlserializer "^2.0.0" + webidl-conversions "^6.1.0" + whatwg-encoding "^1.0.5" + whatwg-mimetype "^2.3.0" + whatwg-url "^8.5.0" + ws "^7.4.6" + xml-name-validator "^3.0.0" + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== + +json-buffer@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" + integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== + +json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + +json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json-schema@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5" + integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json-stable-stringify@^1.0.2: + version "1.1.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz#52d4361b47d49168bcc4e564189a42e5a7439454" + integrity sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg== + dependencies: + call-bind "^1.0.5" + isarray "^2.0.5" + jsonify "^0.0.1" + object-keys "^1.1.1" + +json5@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" + integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== + dependencies: + minimist "^1.2.0" + +json5@^2.1.2, json5@^2.2.0, json5@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + +jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== + optionalDependencies: + graceful-fs "^4.1.6" + +jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + dependencies: + universalify "^2.0.0" + optionalDependencies: + graceful-fs "^4.1.6" + +jsonify@^0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz#2aa3111dae3d34a0f151c63f3a45d995d9420978" + integrity sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg== + +jsonpath@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/jsonpath/-/jsonpath-1.1.1.tgz#0ca1ed8fb65bb3309248cc9d5466d12d5b0b9901" + integrity sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w== + dependencies: + esprima "1.2.2" + static-eval "2.0.2" + underscore "1.12.1" + +jsonpointer@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.1.tgz#2110e0af0900fd37467b5907ecd13a7884a1b559" + integrity sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ== + +"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.5: + version "3.3.5" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz#4766bd05a8e2a11af222becd19e15575e52a853a" + integrity sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ== + dependencies: + array-includes "^3.1.6" + array.prototype.flat "^1.3.1" + object.assign "^4.1.4" + object.values "^1.1.6" + +junk@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/junk/-/junk-3.1.0.tgz#31499098d902b7e98c5d9b9c80f43457a88abfa1" + integrity sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ== + +keccak@^3.0.0: + version "3.0.4" + resolved "https://registry.yarnpkg.com/keccak/-/keccak-3.0.4.tgz#edc09b89e633c0549da444432ecf062ffadee86d" + integrity sha512-3vKuW0jV8J3XNTzvfyicFR5qvxrSAGl7KIhvgOu5cmWwM7tZRj3fMbj/pfIf4be7aznbc+prBWGjywox/g2Y6Q== + dependencies: + node-addon-api "^2.0.0" + node-gyp-build "^4.2.0" + readable-stream "^3.6.0" + +keyv@^4.5.3: + version "4.5.4" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" + integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== + dependencies: + json-buffer "3.0.1" + +keyvaluestorage-interface@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/keyvaluestorage-interface/-/keyvaluestorage-interface-1.0.0.tgz#13ebdf71f5284ad54be94bd1ad9ed79adad515ff" + integrity sha512-8t6Q3TclQ4uZynJY9IGr2+SsIGwK9JHcO6ootkHCGA0CrQCRy+VkouYNO2xicET6b9al7QKzpebNow+gkpCL8g== + +kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +klaw-sync@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz#1fd2cfd56ebb6250181114f0a581167099c2b28c" + integrity sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ== + dependencies: + graceful-fs "^4.1.11" + +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + +klona@^2.0.4, klona@^2.0.5: + version "2.0.6" + resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.6.tgz#85bffbf819c03b2f53270412420a4555ef882e22" + integrity sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA== + +language-subtag-registry@^0.3.20: + version "0.3.23" + resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz#23529e04d9e3b74679d70142df3fd2eb6ec572e7" + integrity sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ== + +language-tags@^1.0.9: + version "1.0.9" + resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.9.tgz#1ffdcd0ec0fafb4b1be7f8b11f306ad0f9c08777" + integrity sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA== + dependencies: + language-subtag-registry "^0.3.20" + +launch-editor@^2.6.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.8.0.tgz#7255d90bdba414448e2138faa770a74f28451305" + integrity sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA== + dependencies: + picocolors "^1.0.0" + shell-quote "^1.8.1" + +leven@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + +libsodium-sumo@^0.7.14: + version "0.7.14" + resolved "https://registry.yarnpkg.com/libsodium-sumo/-/libsodium-sumo-0.7.14.tgz#9a53e09944f092f603a1e1d4446414de0b3fb0fc" + integrity sha512-2nDge6qlAjcwyslAhWfVumlkeSNK5+WCfKa2/VEq9prvlT5vP2FR0m0o5hmKaYqfsZ4TQVj5czQsimZvXDB1CQ== + +libsodium-wrappers-sumo@^0.7.11: + version "0.7.14" + resolved "https://registry.yarnpkg.com/libsodium-wrappers-sumo/-/libsodium-wrappers-sumo-0.7.14.tgz#86301f14b37a77d847eb0396f2b83cdb1c47c480" + integrity sha512-0lm7ZwN5a95J2yUi8R1rgQeeaVDIWnvNzgVmXmZswis4mC+bQtbDrB+QpJlL4qklaKx3hVpJjoc6ubzJFiv64Q== + dependencies: + libsodium-sumo "^0.7.14" + +libsodium-wrappers@^0.7.6: + version "0.7.14" + resolved "https://registry.yarnpkg.com/libsodium-wrappers/-/libsodium-wrappers-0.7.14.tgz#b21d9e8d58de686c6318a772805ee1c5d02035a5" + integrity sha512-300TtsePizhJZ7HjLmWr6hLHAgJUxIGhapSw+EwfCtDuWaEmEdGXSQv6j6qFw0bs9l4vS2NH9BtOHfXAq6h5kQ== + dependencies: + libsodium "^0.7.14" + +libsodium@^0.7.14: + version "0.7.14" + resolved "https://registry.yarnpkg.com/libsodium/-/libsodium-0.7.14.tgz#d9daace70dbc36051b947d37999bb6337c364c88" + integrity sha512-/pOd7eO6oZrfORquRTC4284OUJFcMi8F3Vnc9xtRBT0teLfOUxWIItaBFF3odYjZ7nlJNwnLdUVEUFHxVyX/Sw== + +lighthouse-logger@^1.0.0: + version "1.4.2" + resolved "https://registry.yarnpkg.com/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz#aef90f9e97cd81db367c7634292ee22079280aaa" + integrity sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g== + dependencies: + debug "^2.6.9" + marky "^1.2.2" + +lilconfig@^2.0.3, lilconfig@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" + integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== + +lilconfig@^3.0.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.2.tgz#e4a7c3cb549e3a606c8dcc32e5ae1005e62c05cb" + integrity sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow== + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +link-module-alias@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/link-module-alias/-/link-module-alias-1.2.0.tgz#6a3b7b014cfe18b2759a1222fffce6a40fc120e4" + integrity sha512-ahPjXepbSVKbahTB6LxR//VHm8HPfI+QQygCH+E82spBY4HR5VPJTvlhKBc9F7muVxnS6C1rRfoPOXAbWO/fyw== + dependencies: + chalk "^2.4.1" + +loader-runner@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1" + integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== + +loader-utils@^2.0.0, loader-utils@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c" + integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^2.1.2" + +loader-utils@^3.2.0: + version "3.3.1" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-3.3.1.tgz#735b9a19fd63648ca7adbd31c2327dfe281304e5" + integrity sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg== + +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +locate-path@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-7.2.0.tgz#69cb1779bd90b35ab1e771e1f2f89a202c2a8a8a" + integrity sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA== + dependencies: + p-locate "^6.0.0" + +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== + +lodash.memoize@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== + +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lodash.sortby@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" + integrity sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA== + +lodash.throttle@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" + integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ== + +lodash.uniq@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" + integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== + +lodash@^4.17.15, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.7.0: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +logkitty@^0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/logkitty/-/logkitty-0.7.1.tgz#8e8d62f4085a826e8d38987722570234e33c6aa7" + integrity sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ== + dependencies: + ansi-fragments "^0.2.1" + dayjs "^1.8.15" + yargs "^15.1.0" + +long@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" + integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== + +loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + +lru-cache@^10.2.0: + version "10.4.3" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119" + integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== + +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + +lz-string@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.5.0.tgz#c1ab50f77887b712621201ba9fd4e3a6ed099941" + integrity sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ== + +magic-string@^0.25.0, magic-string@^0.25.7: + version "0.25.9" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c" + integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== + dependencies: + sourcemap-codec "^1.4.8" + +make-dir@^2.0.0, make-dir@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" + integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== + dependencies: + pify "^4.0.1" + semver "^5.6.0" + +make-dir@^3.0.2, make-dir@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + dependencies: + semver "^6.0.0" + +make-dir@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-4.0.0.tgz#c3c2307a771277cd9638305f915c29ae741b614e" + integrity sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw== + dependencies: + semver "^7.5.3" + +makeerror@1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" + integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== + dependencies: + tmpl "1.0.5" + +marky@^1.2.2: + version "1.2.5" + resolved "https://registry.yarnpkg.com/marky/-/marky-1.2.5.tgz#55796b688cbd72390d2d399eaaf1832c9413e3c0" + integrity sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q== + +md5.js@^1.3.4: + version "1.3.5" + resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" + integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +mdn-data@2.0.14: + version "2.0.14" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" + integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== + +mdn-data@2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" + integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== + +memfs@^3.1.2, memfs@^3.4.3: + version "3.6.0" + resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.6.0.tgz#d7a2110f86f79dd950a8b6df6d57bc984aa185f6" + integrity sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ== + dependencies: + fs-monkey "^1.0.4" + +memoize-one@^5.0.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.2.1.tgz#8337aa3c4335581839ec01c3d594090cebe8f00e" + integrity sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q== + +memoize-one@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-6.0.0.tgz#b2591b871ed82948aee4727dc6abceeeac8c1045" + integrity sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw== + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== + +merge-options@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/merge-options/-/merge-options-3.0.4.tgz#84709c2aa2a4b24c1981f66c179fe5565cc6dbb7" + integrity sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ== + dependencies: + is-plain-obj "^2.1.0" + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== + +metro-babel-transformer@0.80.9: + version "0.80.9" + resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.80.9.tgz#7051ba377b7d2140abd23f4846bbbb1e81fea99b" + integrity sha512-d76BSm64KZam1nifRZlNJmtwIgAeZhZG3fi3K+EmPOlrR8rDtBxQHDSN3fSGeNB9CirdTyabTMQCkCup6BXFSQ== + dependencies: + "@babel/core" "^7.20.0" + hermes-parser "0.20.1" + nullthrows "^1.1.1" + +metro-cache-key@0.80.9: + version "0.80.9" + resolved "https://registry.yarnpkg.com/metro-cache-key/-/metro-cache-key-0.80.9.tgz#a04cbb0a7828509bb10dde9789ef761c0c60bc3d" + integrity sha512-hRcYGhEiWIdM87hU0fBlcGr+tHDEAT+7LYNCW89p5JhErFt/QaAkVx4fb5bW3YtXGv5BTV7AspWPERoIb99CXg== + +metro-cache@0.80.9: + version "0.80.9" + resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.80.9.tgz#b914318a90dbcd51b4c27836184519c441ba5123" + integrity sha512-ujEdSI43QwI+Dj2xuNax8LMo8UgKuXJEdxJkzGPU6iIx42nYa1byQ+aADv/iPh5sh5a//h5FopraW5voXSgm2w== + dependencies: + metro-core "0.80.9" + rimraf "^3.0.2" + +metro-config@0.80.9, metro-config@^0.80.3: + version "0.80.9" + resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.80.9.tgz#4eb6948b0ddc7c38d9d4ba8ddf22a67ca1c2bc06" + integrity sha512-28wW7CqS3eJrunRGnsibWldqgwRP9ywBEf7kg+uzUHkSFJNKPM1K3UNSngHmH0EZjomizqQA2Zi6/y6VdZMolg== + dependencies: + connect "^3.6.5" + cosmiconfig "^5.0.5" + jest-validate "^29.6.3" + metro "0.80.9" + metro-cache "0.80.9" + metro-core "0.80.9" + metro-runtime "0.80.9" + +metro-core@0.80.9, metro-core@^0.80.3: + version "0.80.9" + resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.80.9.tgz#3af21d0b09d71ec9c0840f028bffb36bc3619727" + integrity sha512-tbltWQn+XTdULkGdzHIxlxk4SdnKxttvQQV3wpqqFbHDteR4gwCyTR2RyYJvxgU7HELfHtrVbqgqAdlPByUSbg== + dependencies: + lodash.throttle "^4.1.1" + metro-resolver "0.80.9" + +metro-file-map@0.80.9: + version "0.80.9" + resolved "https://registry.yarnpkg.com/metro-file-map/-/metro-file-map-0.80.9.tgz#ed8783f6e35dfc005794344c2a9fcd6e914885aa" + integrity sha512-sBUjVtQMHagItJH/wGU9sn3k2u0nrCl0CdR4SFMO1tksXLKbkigyQx4cbpcyPVOAmGTVuy3jyvBlELaGCAhplQ== + dependencies: + anymatch "^3.0.3" + debug "^2.2.0" + fb-watchman "^2.0.0" + graceful-fs "^4.2.4" + invariant "^2.2.4" + jest-worker "^29.6.3" + micromatch "^4.0.4" + node-abort-controller "^3.1.1" + nullthrows "^1.1.1" + walker "^1.0.7" + optionalDependencies: + fsevents "^2.3.2" + +metro-minify-terser@0.80.9: + version "0.80.9" + resolved "https://registry.yarnpkg.com/metro-minify-terser/-/metro-minify-terser-0.80.9.tgz#2b7798cba2bd4bd69cc5ce05a45bf66291542f83" + integrity sha512-FEeCeFbkvvPuhjixZ1FYrXtO0araTpV6UbcnGgDUpH7s7eR5FG/PiJz3TsuuPP/HwCK19cZtQydcA2QrCw446A== + dependencies: + terser "^5.15.0" + +metro-resolver@0.80.9: + version "0.80.9" + resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.80.9.tgz#bae9120a0553e0cb59da6429e83a7e97465cc1a8" + integrity sha512-wAPIjkN59BQN6gocVsAvvpZ1+LQkkqUaswlT++cJafE/e54GoVkMNCmrR4BsgQHr9DknZ5Um/nKueeN7kaEz9w== + +metro-runtime@0.80.9, metro-runtime@^0.80.3: + version "0.80.9" + resolved "https://registry.yarnpkg.com/metro-runtime/-/metro-runtime-0.80.9.tgz#665312bd4e4d38fea921b3153d6ab47846eb4f08" + integrity sha512-8PTVIgrVcyU+X/rVCy/9yxNlvXsBCk5JwwkbAm/Dm+Abo6NBGtNjWF0M1Xo/NWCb4phamNWcD7cHdR91HhbJvg== + dependencies: + "@babel/runtime" "^7.0.0" + +metro-source-map@0.80.9, metro-source-map@^0.80.3: + version "0.80.9" + resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.80.9.tgz#df8f673137548f37ab9f9dcfa771b354a452cfab" + integrity sha512-RMn+XS4VTJIwMPOUSj61xlxgBvPeY4G6s5uIn6kt6HB6A/k9ekhr65UkkDD7WzHYs3a9o869qU8tvOZvqeQzgw== + dependencies: + "@babel/traverse" "^7.20.0" + "@babel/types" "^7.20.0" + invariant "^2.2.4" + metro-symbolicate "0.80.9" + nullthrows "^1.1.1" + ob1 "0.80.9" + source-map "^0.5.6" + vlq "^1.0.0" + +metro-symbolicate@0.80.9: + version "0.80.9" + resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.80.9.tgz#8d1d19d26ebb36b9d13dbd29814fdd71d6009db7" + integrity sha512-Ykae12rdqSs98hg41RKEToojuIW85wNdmSe/eHUgMkzbvCFNVgcC0w3dKZEhSsqQOXapXRlLtHkaHLil0UD/EA== + dependencies: + invariant "^2.2.4" + metro-source-map "0.80.9" + nullthrows "^1.1.1" + source-map "^0.5.6" + through2 "^2.0.1" + vlq "^1.0.0" + +metro-transform-plugins@0.80.9: + version "0.80.9" + resolved "https://registry.yarnpkg.com/metro-transform-plugins/-/metro-transform-plugins-0.80.9.tgz#473a2c0a9e48043210547abe61cdeedb77725422" + integrity sha512-UlDk/uc8UdfLNJhPbF3tvwajyuuygBcyp+yBuS/q0z3QSuN/EbLllY3rK8OTD9n4h00qZ/qgxGv/lMFJkwP4vg== + dependencies: + "@babel/core" "^7.20.0" + "@babel/generator" "^7.20.0" + "@babel/template" "^7.0.0" + "@babel/traverse" "^7.20.0" + nullthrows "^1.1.1" + +metro-transform-worker@0.80.9: + version "0.80.9" + resolved "https://registry.yarnpkg.com/metro-transform-worker/-/metro-transform-worker-0.80.9.tgz#f1d8ef4f77228bb7e1d20d3c06934166e8ee3b28" + integrity sha512-c/IrzMUVnI0hSVVit4TXzt3A1GiUltGVlzCmLJWxNrBGHGrJhvgePj38+GXl1Xf4Fd4vx6qLUkKMQ3ux73bFLQ== + dependencies: + "@babel/core" "^7.20.0" + "@babel/generator" "^7.20.0" + "@babel/parser" "^7.20.0" + "@babel/types" "^7.20.0" + metro "0.80.9" + metro-babel-transformer "0.80.9" + metro-cache "0.80.9" + metro-cache-key "0.80.9" + metro-minify-terser "0.80.9" + metro-source-map "0.80.9" + metro-transform-plugins "0.80.9" + nullthrows "^1.1.1" + +metro@0.80.9, metro@^0.80.3: + version "0.80.9" + resolved "https://registry.yarnpkg.com/metro/-/metro-0.80.9.tgz#de3c2011df62036520d51d040d2dde0d015aecb6" + integrity sha512-Bc57Xf3GO2Xe4UWQsBj/oW6YfLPABEu8jfDVDiNmJvoQW4CO34oDPuYKe4KlXzXhcuNsqOtSxpbjCRRVjhhREg== + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/core" "^7.20.0" + "@babel/generator" "^7.20.0" + "@babel/parser" "^7.20.0" + "@babel/template" "^7.0.0" + "@babel/traverse" "^7.20.0" + "@babel/types" "^7.20.0" + accepts "^1.3.7" + chalk "^4.0.0" + ci-info "^2.0.0" + connect "^3.6.5" + debug "^2.2.0" + denodeify "^1.2.1" + error-stack-parser "^2.0.6" + graceful-fs "^4.2.4" + hermes-parser "0.20.1" + image-size "^1.0.2" + invariant "^2.2.4" + jest-worker "^29.6.3" + jsc-safe-url "^0.2.2" + lodash.throttle "^4.1.1" + metro-babel-transformer "0.80.9" + metro-cache "0.80.9" + metro-cache-key "0.80.9" + metro-config "0.80.9" + metro-core "0.80.9" + metro-file-map "0.80.9" + metro-resolver "0.80.9" + metro-runtime "0.80.9" + metro-source-map "0.80.9" + metro-symbolicate "0.80.9" + metro-transform-plugins "0.80.9" + metro-transform-worker "0.80.9" + mime-types "^2.1.27" + node-fetch "^2.2.0" + nullthrows "^1.1.1" + rimraf "^3.0.2" + serialize-error "^2.1.0" + source-map "^0.5.6" + strip-ansi "^6.0.0" + throat "^5.0.0" + ws "^7.5.1" + yargs "^17.6.2" + +micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5: + version "4.0.7" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.7.tgz#33e8190d9fe474a9895525f5618eee136d46c2e5" + integrity sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q== + dependencies: + braces "^3.0.3" + picomatch "^2.3.1" + +miller-rabin@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" + integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== + dependencies: + bn.js "^4.0.0" + brorand "^1.0.1" + +mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +"mime-db@>= 1.43.0 < 2": + version "1.53.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.53.0.tgz#3cb63cd820fc29896d9d4e8c32ab4fcd74ccb447" + integrity sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg== + +mime-types@^2.1.12, mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.24, mime-types@~2.1.34: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mime@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mime@^2.4.1: + version "2.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" + integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +min-indent@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" + integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== + +mini-css-extract-plugin@^2.4.5: + version "2.9.0" + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.0.tgz#c73a1327ccf466f69026ac22a8e8fd707b78a235" + integrity sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA== + dependencies: + schema-utils "^4.0.0" + tapable "^2.2.1" + +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== + +minimatch@^3.0.2, minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^5.0.1: + version "5.1.6" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" + integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== + dependencies: + brace-expansion "^2.0.1" + +minimatch@^9.0.4: + version "9.0.5" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5" + integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== + dependencies: + brace-expansion "^2.0.1" + +minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.6: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707" + integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== + +mkdirp@^0.5.1, mkdirp@~0.5.1: + version "0.5.6" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== + dependencies: + minimist "^1.2.6" + +mkdirp@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@2.1.3, ms@^2.1.1: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +multicast-dns@^7.2.5: + version "7.2.5" + resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-7.2.5.tgz#77eb46057f4d7adbd16d9290fa7299f6fa64cced" + integrity sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg== + dependencies: + dns-packet "^5.2.2" + thunky "^1.0.2" + +multiformats@^9.5.4: + version "9.9.0" + resolved "https://registry.yarnpkg.com/multiformats/-/multiformats-9.9.0.tgz#c68354e7d21037a8f1f8833c8ccd68618e8f1d37" + integrity sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg== + +mz@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== + dependencies: + any-promise "^1.0.0" + object-assign "^4.0.1" + thenify-all "^1.0.0" + +nan@^2.13.2: + version "2.20.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.20.0.tgz#08c5ea813dd54ed16e5bd6505bf42af4f7838ca3" + integrity sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw== + +nanoid@^3.1.23, nanoid@^3.3.7: + version "3.3.7" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" + integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== + +natural-compare-lite@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4" + integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +negotiator@0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== + +neo-async@^2.5.0, neo-async@^2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +nocache@^3.0.1: + version "3.0.4" + resolved "https://registry.yarnpkg.com/nocache/-/nocache-3.0.4.tgz#5b37a56ec6e09fc7d401dceaed2eab40c8bfdf79" + integrity sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw== + +node-abort-controller@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/node-abort-controller/-/node-abort-controller-3.1.1.tgz#a94377e964a9a37ac3976d848cb5c765833b8548" + integrity sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ== + +node-addon-api@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-2.0.2.tgz#432cfa82962ce494b132e9d72a15b29f71ff5d32" + integrity sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA== + +node-dir@^0.1.17: + version "0.1.17" + resolved "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.17.tgz#5f5665d93351335caabef8f1c554516cf5f1e4e5" + integrity sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg== + dependencies: + minimatch "^3.0.2" + +node-fetch@^2.2.0, node-fetch@^2.6.0, node-fetch@^2.6.12: + version "2.7.0" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" + integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== + dependencies: + whatwg-url "^5.0.0" + +node-forge@^1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" + integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== + +node-gyp-build@^4.2.0: + version "4.8.1" + resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.8.1.tgz#976d3ad905e71b76086f4f0b0d3637fe79b6cda5" + integrity sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw== + +node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== + +node-releases@^2.0.14: + version "2.0.18" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f" + integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== + +node-stream-zip@^1.9.1: + version "1.15.0" + resolved "https://registry.yarnpkg.com/node-stream-zip/-/node-stream-zip-1.15.0.tgz#158adb88ed8004c6c49a396b50a6a5de3bca33ea" + integrity sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw== + +node-yaml@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/node-yaml/-/node-yaml-4.0.1.tgz#3675d27c275fbea9c02e2b0faa18bb1699444cb3" + integrity sha512-ZPKi3OexXdiklsRW9g4P7jAxHAhoBRZCFmIDMQ89clLhMz+MTJuCM9y5f1R7Ru75H84hWJouwpxVOq1SdRTe7A== + dependencies: + co "4.6.0" + junk "3.1.0" + promise-fs "2.1.1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== + +normalize-url@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" + integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +nth-check@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" + integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== + dependencies: + boolbase "~1.0.0" + +nth-check@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" + integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== + dependencies: + boolbase "^1.0.0" + +nullthrows@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1" + integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw== + +nwsapi@^2.2.0: + version "2.2.12" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.12.tgz#fb6af5c0ec35b27b4581eb3bbad34ec9e5c696f8" + integrity sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w== + +ob1@0.80.9: + version "0.80.9" + resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.80.9.tgz#4ae3edd807536097674ff943509089f5d4e0649f" + integrity sha512-v9yOxowkZbxWhKOaaTyLjIm1aLy4ebMNcSn4NYJKOAI/Qv+SkfEfszpLr2GIxsccmb2Y2HA9qtsqiIJ80ucpVA== + +object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-hash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" + integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== + +object-inspect@^1.13.1: + version "1.13.2" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.2.tgz#dea0088467fb991e67af4058147a24824a3043ff" + integrity sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g== + +object-is@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.6.tgz#1a6a53aed2dd8f7e6775ff870bea58545956ab07" + integrity sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.4, object.assign@^4.1.5: + version "4.1.5" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0" + integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== + dependencies: + call-bind "^1.0.5" + define-properties "^1.2.1" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +object.entries@^1.1.8: + version "1.1.8" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.8.tgz#bffe6f282e01f4d17807204a24f8edd823599c41" + integrity sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + +object.fromentries@^2.0.7, object.fromentries@^2.0.8: + version "2.0.8" + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz#f7195d8a9b97bd95cbc1999ea939ecd1a2b00c65" + integrity sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-object-atoms "^1.0.0" + +object.getownpropertydescriptors@^2.1.0: + version "2.1.8" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.8.tgz#2f1fe0606ec1a7658154ccd4f728504f69667923" + integrity sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A== + dependencies: + array.prototype.reduce "^1.0.6" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-object-atoms "^1.0.0" + gopd "^1.0.1" + safe-array-concat "^1.1.2" + +object.groupby@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.3.tgz#9b125c36238129f6f7b61954a1e7176148d5002e" + integrity sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + +object.values@^1.1.0, object.values@^1.1.6, object.values@^1.1.7, object.values@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.2.0.tgz#65405a9d92cee68ac2d303002e0b8470a4d9ab1b" + integrity sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + +obuf@^1.0.0, obuf@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" + integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== + +on-finished@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" + integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== + dependencies: + ee-first "1.1.1" + +on-finished@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + integrity sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww== + dependencies: + ee-first "1.1.1" + +on-headers@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.0, onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +open@^6.2.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/open/-/open-6.4.0.tgz#5c13e96d0dc894686164f18965ecfe889ecfc8a9" + integrity sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg== + dependencies: + is-wsl "^1.1.0" + +open@^7.0.3, open@^7.4.2: + version "7.4.2" + resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321" + integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q== + dependencies: + is-docker "^2.0.0" + is-wsl "^2.1.1" + +open@^8.0.9, open@^8.4.0: + version "8.4.2" + resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" + integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ== + dependencies: + define-lazy-prop "^2.0.0" + is-docker "^2.1.1" + is-wsl "^2.2.0" + +optionator@^0.8.1: + version "0.8.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" + integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.6" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + word-wrap "~1.2.3" + +optionator@^0.9.3: + version "0.9.4" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz#7ea1c1a5d91d764fb282139c88fe11e182a3a734" + integrity sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g== + dependencies: + 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.5" + +ora@^5.4.1: + version "5.4.1" + resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" + integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== + dependencies: + bl "^4.1.0" + chalk "^4.1.0" + cli-cursor "^3.1.0" + cli-spinners "^2.5.0" + is-interactive "^1.0.0" + is-unicode-supported "^0.1.0" + log-symbols "^4.1.0" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + +os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== + +p-limit@^2.0.0, p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-limit@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-4.0.0.tgz#914af6544ed32bfa54670b061cafcbd04984b644" + integrity sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== + dependencies: + yocto-queue "^1.0.0" + +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +p-locate@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-6.0.0.tgz#3da9a49d4934b901089dca3302fa65dc5a05c04f" + integrity sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw== + dependencies: + p-limit "^4.0.0" + +p-retry@^4.5.0: + version "4.6.2" + resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-4.6.2.tgz#9baae7184057edd4e17231cee04264106e092a16" + integrity sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ== + dependencies: + "@types/retry" "0.12.0" + retry "^0.13.1" + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +package-json-from-dist@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz#e501cd3094b278495eb4258d4c9f6d5ac3019f00" + integrity sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw== + +param-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" + integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-asn1@^5.0.0, parse-asn1@^5.1.7: + version "5.1.7" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.7.tgz#73cdaaa822125f9647165625eb45f8a051d2df06" + integrity sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg== + dependencies: + asn1.js "^4.10.1" + browserify-aes "^1.2.0" + evp_bytestokey "^1.0.3" + hash-base "~3.0" + pbkdf2 "^3.1.2" + safe-buffer "^5.2.1" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +parse-json@^5.0.0, parse-json@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +parse5@6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" + integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== + +parseurl@~1.3.2, parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + +pascal-case@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" + integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +patch-package@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/patch-package/-/patch-package-8.0.0.tgz#d191e2f1b6e06a4624a0116bcb88edd6714ede61" + integrity sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA== + dependencies: + "@yarnpkg/lockfile" "^1.1.0" + chalk "^4.1.2" + ci-info "^3.7.0" + cross-spawn "^7.0.3" + find-yarn-workspace-root "^2.0.0" + fs-extra "^9.0.0" + json-stable-stringify "^1.0.2" + klaw-sync "^6.0.0" + minimist "^1.2.6" + open "^7.4.2" + rimraf "^2.6.3" + semver "^7.5.3" + slash "^2.0.0" + tmp "^0.0.33" + yaml "^2.2.2" + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-exists@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-5.0.0.tgz#a6aad9489200b21fab31e49cf09277e5116fb9e7" + integrity sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-scurry@^1.11.1: + version "1.11.1" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2" + integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== + dependencies: + lru-cache "^10.2.0" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +pbkdf2@^3.0.17, pbkdf2@^3.0.3, pbkdf2@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075" + integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA== + dependencies: + create-hash "^1.1.2" + create-hmac "^1.1.4" + ripemd160 "^2.0.1" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== + +picocolors@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f" + integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA== + +picocolors@^1.0.0, picocolors@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.1.tgz#a8ad579b571952f0e5d25892de5445bcfe25aaa1" + integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.2.3, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pify@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== + +pify@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== + +pirates@^4.0.1, pirates@^4.0.4, pirates@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== + +pkg-dir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" + integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== + dependencies: + find-up "^3.0.0" + +pkg-dir@^4.1.0, pkg-dir@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + +pkg-dir@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-7.0.0.tgz#8f0c08d6df4476756c5ff29b3282d0bab7517d11" + integrity sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA== + dependencies: + find-up "^6.3.0" + +pkg-up@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5" + integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA== + dependencies: + find-up "^3.0.0" + +possible-typed-array-names@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz#89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f" + integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== + +postcss-attribute-case-insensitive@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz#03d761b24afc04c09e757e92ff53716ae8ea2741" + integrity sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ== + dependencies: + postcss-selector-parser "^6.0.10" + +postcss-browser-comments@^4: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz#bcfc86134df5807f5d3c0eefa191d42136b5e72a" + integrity sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg== + +postcss-calc@^8.2.3: + version "8.2.4" + resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-8.2.4.tgz#77b9c29bfcbe8a07ff6693dc87050828889739a5" + integrity sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q== + dependencies: + postcss-selector-parser "^6.0.9" + postcss-value-parser "^4.2.0" + +postcss-clamp@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/postcss-clamp/-/postcss-clamp-4.1.0.tgz#7263e95abadd8c2ba1bd911b0b5a5c9c93e02363" + integrity sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-color-functional-notation@^4.2.4: + version "4.2.4" + resolved "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz#21a909e8d7454d3612d1659e471ce4696f28caec" + integrity sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-color-hex-alpha@^8.0.4: + version "8.0.4" + resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz#c66e2980f2fbc1a63f5b079663340ce8b55f25a5" + integrity sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-color-rebeccapurple@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz#63fdab91d878ebc4dd4b7c02619a0c3d6a56ced0" + integrity sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-colormin@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.3.1.tgz#86c27c26ed6ba00d96c79e08f3ffb418d1d1988f" + integrity sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ== + dependencies: + browserslist "^4.21.4" + caniuse-api "^3.0.0" + colord "^2.9.1" + postcss-value-parser "^4.2.0" + +postcss-convert-values@^5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz#04998bb9ba6b65aa31035d669a6af342c5f9d393" + integrity sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA== + dependencies: + browserslist "^4.21.4" + postcss-value-parser "^4.2.0" + +postcss-custom-media@^8.0.2: + version "8.0.2" + resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz#c8f9637edf45fef761b014c024cee013f80529ea" + integrity sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-custom-properties@^12.1.10: + version "12.1.11" + resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz#d14bb9b3989ac4d40aaa0e110b43be67ac7845cf" + integrity sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-custom-selectors@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz#1ab4684d65f30fed175520f82d223db0337239d9" + integrity sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg== + dependencies: + postcss-selector-parser "^6.0.4" + +postcss-dir-pseudo-class@^6.0.5: + version "6.0.5" + resolved "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz#2bf31de5de76added44e0a25ecf60ae9f7c7c26c" + integrity sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA== + dependencies: + postcss-selector-parser "^6.0.10" + +postcss-discard-comments@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz#8df5e81d2925af2780075840c1526f0660e53696" + integrity sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ== + +postcss-discard-duplicates@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz#9eb4fe8456706a4eebd6d3b7b777d07bad03e848" + integrity sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw== + +postcss-discard-empty@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz#e57762343ff7f503fe53fca553d18d7f0c369c6c" + integrity sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A== + +postcss-discard-overridden@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz#7e8c5b53325747e9d90131bb88635282fb4a276e" + integrity sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw== + +postcss-double-position-gradients@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz#b96318fdb477be95997e86edd29c6e3557a49b91" + integrity sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ== + dependencies: + "@csstools/postcss-progressive-custom-properties" "^1.1.0" + postcss-value-parser "^4.2.0" + +postcss-env-function@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/postcss-env-function/-/postcss-env-function-4.0.6.tgz#7b2d24c812f540ed6eda4c81f6090416722a8e7a" + integrity sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-flexbugs-fixes@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz#2028e145313074fc9abe276cb7ca14e5401eb49d" + integrity sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ== + +postcss-focus-visible@^6.0.4: + version "6.0.4" + resolved "https://registry.yarnpkg.com/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz#50c9ea9afa0ee657fb75635fabad25e18d76bf9e" + integrity sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw== + dependencies: + postcss-selector-parser "^6.0.9" + +postcss-focus-within@^5.0.4: + version "5.0.4" + resolved "https://registry.yarnpkg.com/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz#5b1d2ec603195f3344b716c0b75f61e44e8d2e20" + integrity sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ== + dependencies: + postcss-selector-parser "^6.0.9" + +postcss-font-variant@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz#efd59b4b7ea8bb06127f2d031bfbb7f24d32fa66" + integrity sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA== + +postcss-gap-properties@^3.0.5: + version "3.0.5" + resolved "https://registry.yarnpkg.com/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz#f7e3cddcf73ee19e94ccf7cb77773f9560aa2fff" + integrity sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg== + +postcss-image-set-function@^4.0.7: + version "4.0.7" + resolved "https://registry.yarnpkg.com/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz#08353bd756f1cbfb3b6e93182c7829879114481f" + integrity sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-import@^15.1.0: + version "15.1.0" + resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70" + integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew== + dependencies: + postcss-value-parser "^4.0.0" + read-cache "^1.0.0" + resolve "^1.1.7" + +postcss-initial@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-initial/-/postcss-initial-4.0.1.tgz#529f735f72c5724a0fb30527df6fb7ac54d7de42" + integrity sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ== + +postcss-js@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.1.tgz#61598186f3703bab052f1c4f7d805f3991bee9d2" + integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw== + dependencies: + camelcase-css "^2.0.1" + +postcss-lab-function@^4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz#6fe4c015102ff7cd27d1bd5385582f67ebdbdc98" + integrity sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w== + dependencies: + "@csstools/postcss-progressive-custom-properties" "^1.1.0" + postcss-value-parser "^4.2.0" + +postcss-load-config@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.2.tgz#7159dcf626118d33e299f485d6afe4aff7c4a3e3" + integrity sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ== + dependencies: + lilconfig "^3.0.0" + yaml "^2.3.4" + +postcss-loader@^6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-6.2.1.tgz#0895f7346b1702103d30fdc66e4d494a93c008ef" + integrity sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q== + dependencies: + cosmiconfig "^7.0.0" + klona "^2.0.5" + semver "^7.3.5" + +postcss-logical@^5.0.4: + version "5.0.4" + resolved "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-5.0.4.tgz#ec75b1ee54421acc04d5921576b7d8db6b0e6f73" + integrity sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g== + +postcss-media-minmax@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz#7140bddec173e2d6d657edbd8554a55794e2a5b5" + integrity sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ== + +postcss-merge-longhand@^5.1.7: + version "5.1.7" + resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz#24a1bdf402d9ef0e70f568f39bdc0344d568fb16" + integrity sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ== + dependencies: + postcss-value-parser "^4.2.0" + stylehacks "^5.1.1" + +postcss-merge-rules@^5.1.4: + version "5.1.4" + resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz#2f26fa5cacb75b1402e213789f6766ae5e40313c" + integrity sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g== + dependencies: + browserslist "^4.21.4" + caniuse-api "^3.0.0" + cssnano-utils "^3.1.0" + postcss-selector-parser "^6.0.5" + +postcss-minify-font-values@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz#f1df0014a726083d260d3bd85d7385fb89d1f01b" + integrity sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-minify-gradients@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz#f1fe1b4f498134a5068240c2f25d46fcd236ba2c" + integrity sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw== + dependencies: + colord "^2.9.1" + cssnano-utils "^3.1.0" + postcss-value-parser "^4.2.0" + +postcss-minify-params@^5.1.4: + version "5.1.4" + resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz#c06a6c787128b3208b38c9364cfc40c8aa5d7352" + integrity sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw== + dependencies: + browserslist "^4.21.4" + cssnano-utils "^3.1.0" + postcss-value-parser "^4.2.0" + +postcss-minify-selectors@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz#d4e7e6b46147b8117ea9325a915a801d5fe656c6" + integrity sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg== + dependencies: + postcss-selector-parser "^6.0.5" + +postcss-modules-extract-imports@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz#b4497cb85a9c0c4b5aabeb759bb25e8d89f15002" + integrity sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q== + +postcss-modules-local-by-default@^4.0.5: + version "4.0.5" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz#f1b9bd757a8edf4d8556e8d0f4f894260e3df78f" + integrity sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw== + dependencies: + icss-utils "^5.0.0" + postcss-selector-parser "^6.0.2" + postcss-value-parser "^4.1.0" + +postcss-modules-scope@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz#a43d28289a169ce2c15c00c4e64c0858e43457d5" + integrity sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ== + dependencies: + postcss-selector-parser "^6.0.4" + +postcss-modules-values@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c" + integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== + dependencies: + icss-utils "^5.0.0" + +postcss-nested@^6.0.1: + version "6.2.0" + resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.2.0.tgz#4c2d22ab5f20b9cb61e2c5c5915950784d068131" + integrity sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ== + dependencies: + postcss-selector-parser "^6.1.1" + +postcss-nesting@^10.2.0: + version "10.2.0" + resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-10.2.0.tgz#0b12ce0db8edfd2d8ae0aaf86427370b898890be" + integrity sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA== + dependencies: + "@csstools/selector-specificity" "^2.0.0" + postcss-selector-parser "^6.0.10" + +postcss-normalize-charset@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz#9302de0b29094b52c259e9b2cf8dc0879879f0ed" + integrity sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg== + +postcss-normalize-display-values@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz#72abbae58081960e9edd7200fcf21ab8325c3da8" + integrity sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-positions@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz#ef97279d894087b59325b45c47f1e863daefbb92" + integrity sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-repeat-style@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz#e9eb96805204f4766df66fd09ed2e13545420fb2" + integrity sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-string@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz#411961169e07308c82c1f8c55f3e8a337757e228" + integrity sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-timing-functions@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz#d5614410f8f0b2388e9f240aa6011ba6f52dafbb" + integrity sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-unicode@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz#f67297fca3fea7f17e0d2caa40769afc487aa030" + integrity sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA== + dependencies: + browserslist "^4.21.4" + postcss-value-parser "^4.2.0" + +postcss-normalize-url@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz#ed9d88ca82e21abef99f743457d3729a042adcdc" + integrity sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew== + dependencies: + normalize-url "^6.0.1" + postcss-value-parser "^4.2.0" + +postcss-normalize-whitespace@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz#08a1a0d1ffa17a7cc6efe1e6c9da969cc4493cfa" + integrity sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize@^10.0.1: + version "10.0.1" + resolved "https://registry.yarnpkg.com/postcss-normalize/-/postcss-normalize-10.0.1.tgz#464692676b52792a06b06880a176279216540dd7" + integrity sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA== + dependencies: + "@csstools/normalize.css" "*" + postcss-browser-comments "^4" + sanitize.css "*" + +postcss-opacity-percentage@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz#5b89b35551a556e20c5d23eb5260fbfcf5245da6" + integrity sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A== + +postcss-ordered-values@^5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz#b6fd2bd10f937b23d86bc829c69e7732ce76ea38" + integrity sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ== + dependencies: + cssnano-utils "^3.1.0" + postcss-value-parser "^4.2.0" + +postcss-overflow-shorthand@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz#7ed6486fec44b76f0eab15aa4866cda5d55d893e" + integrity sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-page-break@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/postcss-page-break/-/postcss-page-break-3.0.4.tgz#7fbf741c233621622b68d435babfb70dd8c1ee5f" + integrity sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ== + +postcss-place@^7.0.5: + version "7.0.5" + resolved "https://registry.yarnpkg.com/postcss-place/-/postcss-place-7.0.5.tgz#95dbf85fd9656a3a6e60e832b5809914236986c4" + integrity sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-preset-env@^7.0.1: + version "7.8.3" + resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz#2a50f5e612c3149cc7af75634e202a5b2ad4f1e2" + integrity sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag== + dependencies: + "@csstools/postcss-cascade-layers" "^1.1.1" + "@csstools/postcss-color-function" "^1.1.1" + "@csstools/postcss-font-format-keywords" "^1.0.1" + "@csstools/postcss-hwb-function" "^1.0.2" + "@csstools/postcss-ic-unit" "^1.0.1" + "@csstools/postcss-is-pseudo-class" "^2.0.7" + "@csstools/postcss-nested-calc" "^1.0.0" + "@csstools/postcss-normalize-display-values" "^1.0.1" + "@csstools/postcss-oklab-function" "^1.1.1" + "@csstools/postcss-progressive-custom-properties" "^1.3.0" + "@csstools/postcss-stepped-value-functions" "^1.0.1" + "@csstools/postcss-text-decoration-shorthand" "^1.0.0" + "@csstools/postcss-trigonometric-functions" "^1.0.2" + "@csstools/postcss-unset-value" "^1.0.2" + autoprefixer "^10.4.13" + browserslist "^4.21.4" + css-blank-pseudo "^3.0.3" + css-has-pseudo "^3.0.4" + css-prefers-color-scheme "^6.0.3" + cssdb "^7.1.0" + postcss-attribute-case-insensitive "^5.0.2" + postcss-clamp "^4.1.0" + postcss-color-functional-notation "^4.2.4" + postcss-color-hex-alpha "^8.0.4" + postcss-color-rebeccapurple "^7.1.1" + postcss-custom-media "^8.0.2" + postcss-custom-properties "^12.1.10" + postcss-custom-selectors "^6.0.3" + postcss-dir-pseudo-class "^6.0.5" + postcss-double-position-gradients "^3.1.2" + postcss-env-function "^4.0.6" + postcss-focus-visible "^6.0.4" + postcss-focus-within "^5.0.4" + postcss-font-variant "^5.0.0" + postcss-gap-properties "^3.0.5" + postcss-image-set-function "^4.0.7" + postcss-initial "^4.0.1" + postcss-lab-function "^4.2.1" + postcss-logical "^5.0.4" + postcss-media-minmax "^5.0.0" + postcss-nesting "^10.2.0" + postcss-opacity-percentage "^1.1.2" + postcss-overflow-shorthand "^3.0.4" + postcss-page-break "^3.0.4" + postcss-place "^7.0.5" + postcss-pseudo-class-any-link "^7.1.6" + postcss-replace-overflow-wrap "^4.0.0" + postcss-selector-not "^6.0.1" + postcss-value-parser "^4.2.0" + +postcss-pseudo-class-any-link@^7.1.6: + version "7.1.6" + resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz#2693b221902da772c278def85a4d9a64b6e617ab" + integrity sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w== + dependencies: + postcss-selector-parser "^6.0.10" + +postcss-reduce-initial@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz#798cd77b3e033eae7105c18c9d371d989e1382d6" + integrity sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg== + dependencies: + browserslist "^4.21.4" + caniuse-api "^3.0.0" + +postcss-reduce-transforms@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz#333b70e7758b802f3dd0ddfe98bb1ccfef96b6e9" + integrity sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-replace-overflow-wrap@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz#d2df6bed10b477bf9c52fab28c568b4b29ca4319" + integrity sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw== + +postcss-selector-not@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz#8f0a709bf7d4b45222793fc34409be407537556d" + integrity sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ== + dependencies: + postcss-selector-parser "^6.0.10" + +postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9, postcss-selector-parser@^6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.1.tgz#5be94b277b8955904476a2400260002ce6c56e38" + integrity sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-svgo@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.1.0.tgz#0a317400ced789f233a28826e77523f15857d80d" + integrity sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA== + dependencies: + postcss-value-parser "^4.2.0" + svgo "^2.7.0" + +postcss-unique-selectors@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz#a9f273d1eacd09e9aa6088f4b0507b18b1b541b6" + integrity sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA== + dependencies: + postcss-selector-parser "^6.0.5" + +postcss-value-parser@^4.0.0, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + +postcss@^7.0.35: + version "7.0.39" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.39.tgz#9624375d965630e2e1f2c02a935c82a59cb48309" + integrity sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA== + dependencies: + picocolors "^0.2.1" + source-map "^0.6.1" + +postcss@^8.3.5, postcss@^8.4.23, postcss@^8.4.33, postcss@^8.4.4: + version "8.4.39" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.39.tgz#aa3c94998b61d3a9c259efa51db4b392e1bde0e3" + integrity sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw== + dependencies: + nanoid "^3.3.7" + picocolors "^1.0.1" + source-map-js "^1.2.0" + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== + +pretty-bytes@^5.3.0, pretty-bytes@^5.4.1: + version "5.6.0" + resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" + integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== + +pretty-error@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-4.0.0.tgz#90a703f46dd7234adb46d0f84823e9d1cb8f10d6" + integrity sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw== + dependencies: + lodash "^4.17.20" + renderkid "^3.0.0" + +pretty-format@^26.5.2, pretty-format@^26.6.2: + version "26.6.2" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93" + integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg== + dependencies: + "@jest/types" "^26.6.2" + ansi-regex "^5.0.0" + ansi-styles "^4.0.0" + react-is "^17.0.1" + +pretty-format@^27.0.0, pretty-format@^27.0.2, pretty-format@^27.5.1: + version "27.5.1" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e" + integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== + dependencies: + ansi-regex "^5.0.1" + ansi-styles "^5.0.0" + react-is "^17.0.1" + +pretty-format@^28.1.3: + version "28.1.3" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-28.1.3.tgz#c9fba8cedf99ce50963a11b27d982a9ae90970d5" + integrity sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q== + dependencies: + "@jest/schemas" "^28.1.3" + ansi-regex "^5.0.1" + ansi-styles "^5.0.0" + react-is "^18.0.0" + +pretty-format@^29.0.0, pretty-format@^29.7.0: + version "29.7.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.7.0.tgz#ca42c758310f365bfa71a0bda0a807160b776812" + integrity sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ== + dependencies: + "@jest/schemas" "^29.6.3" + ansi-styles "^5.0.0" + react-is "^18.0.0" + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +promise-fs@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/promise-fs/-/promise-fs-2.1.1.tgz#0b725a592c165ff16157d1f13640ba390637e557" + integrity sha512-43p7e4QzAQ3w6eyN0+gbBL7jXiZFWLWYITg9wIObqkBySu/a5K1EDcQ/S6UyB/bmiZWDA4NjTbcopKLTaKcGSw== + dependencies: + "@octetstream/promisify" "2.0.2" + +promise@^7.1.1: + version "7.3.1" + resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" + integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== + dependencies: + asap "~2.0.3" + +promise@^8.1.0, promise@^8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/promise/-/promise-8.3.0.tgz#8cb333d1edeb61ef23869fbb8a4ea0279ab60e0a" + integrity sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg== + dependencies: + asap "~2.0.6" + +prompts@^2.0.1, prompts@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + +prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1: + version "15.8.1" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" + integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.13.1" + +protobufjs@^6.8.8: + version "6.11.4" + resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-6.11.4.tgz#29a412c38bf70d89e537b6d02d904a6f448173aa" + integrity sha512-5kQWPaJHi1WoCpjTGszzQ32PG2F4+wRY6BmAT4Vfw56Q2FZ4YZzK20xUYQH4YkfehY1e6QSICrJquM6xXZNcrw== + dependencies: + "@protobufjs/aspromise" "^1.1.2" + "@protobufjs/base64" "^1.1.2" + "@protobufjs/codegen" "^2.0.4" + "@protobufjs/eventemitter" "^1.1.0" + "@protobufjs/fetch" "^1.1.0" + "@protobufjs/float" "^1.0.2" + "@protobufjs/inquire" "^1.1.0" + "@protobufjs/path" "^1.1.2" + "@protobufjs/pool" "^1.1.0" + "@protobufjs/utf8" "^1.1.0" + "@types/long" "^4.0.1" + "@types/node" ">=13.7.0" + long "^4.0.0" + +proxy-addr@~2.0.7: + version "2.0.7" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" + integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== + dependencies: + forwarded "0.2.0" + ipaddr.js "1.9.1" + +proxy-from-env@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" + integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== + +psl@^1.1.33: + version "1.9.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" + integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== + +public-encrypt@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" + integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== + dependencies: + bn.js "^4.1.0" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + parse-asn1 "^5.0.0" + randombytes "^2.0.1" + safe-buffer "^5.1.2" + +punycode@^2.1.0, punycode@^2.1.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== + +q@^1.1.2: + version "1.5.1" + resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" + integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw== + +qs@6.11.0: + version "6.11.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" + integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== + dependencies: + side-channel "^1.0.4" + +query-string@^7.1.3: + version "7.1.3" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-7.1.3.tgz#a1cf90e994abb113a325804a972d98276fe02328" + integrity sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg== + dependencies: + decode-uri-component "^0.2.2" + filter-obj "^1.1.0" + split-on-first "^1.0.0" + strict-uri-encode "^2.0.0" + +querystring@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.1.tgz#40d77615bb09d16902a85c3e38aa8b5ed761c2dd" + integrity sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg== + +querystringify@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" + integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +queue@6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/queue/-/queue-6.0.2.tgz#b91525283e2315c7553d2efa18d83e76432fed65" + integrity sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA== + dependencies: + inherits "~2.0.3" + +raf@^3.4.1: + version "3.4.1" + resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39" + integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA== + dependencies: + performance-now "^2.1.0" + +randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +randomfill@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" + integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== + dependencies: + randombytes "^2.0.5" + safe-buffer "^5.1.0" + +range-parser@^1.2.1, range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + +raw-body@2.5.2: + version "2.5.2" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a" + integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA== + dependencies: + bytes "3.1.2" + http-errors "2.0.0" + iconv-lite "0.4.24" + unpipe "1.0.0" + +react-app-polyfill@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz#95221e0a9bd259e5ca6b177c7bb1cb6768f68fd7" + integrity sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w== + dependencies: + core-js "^3.19.2" + object-assign "^4.1.1" + promise "^8.1.0" + raf "^3.4.1" + regenerator-runtime "^0.13.9" + whatwg-fetch "^3.6.2" + +react-app-rewired@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/react-app-rewired/-/react-app-rewired-2.2.1.tgz#84901ee1e3f26add0377ebec0b41bcdfce9fc211" + integrity sha512-uFQWTErXeLDrMzOJHKp0h8P1z0LV9HzPGsJ6adOtGlA/B9WfT6Shh4j2tLTTGlXOfiVx6w6iWpp7SOC5pvk+gA== + dependencies: + semver "^5.6.0" + +react-art@^18.3.1: + version "18.3.1" + resolved "https://registry.yarnpkg.com/react-art/-/react-art-18.3.1.tgz#247af63c77c0804bde61bb3522e601fe2378d477" + integrity sha512-81fRQ2K0zprDg1tjFzZzt0HhVXeXuTEjzAywz426gM+XFWKeb+4u4dKYSXyJPM5XBbRuIJmlXDmLgf+qX4hYlA== + dependencies: + art "^0.10.1" + create-react-class "^15.6.2" + loose-envify "^1.1.0" + scheduler "^0.23.2" + +react-dev-utils@^12.0.1: + version "12.0.1" + resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-12.0.1.tgz#ba92edb4a1f379bd46ccd6bcd4e7bc398df33e73" + integrity sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ== + dependencies: + "@babel/code-frame" "^7.16.0" + address "^1.1.2" + browserslist "^4.18.1" + chalk "^4.1.2" + cross-spawn "^7.0.3" + detect-port-alt "^1.1.6" + escape-string-regexp "^4.0.0" + filesize "^8.0.6" + find-up "^5.0.0" + fork-ts-checker-webpack-plugin "^6.5.0" + global-modules "^2.0.0" + globby "^11.0.4" + gzip-size "^6.0.0" + immer "^9.0.7" + is-root "^2.1.0" + loader-utils "^3.2.0" + open "^8.4.0" + pkg-up "^3.1.0" + prompts "^2.4.2" + react-error-overlay "^6.0.11" + recursive-readdir "^2.2.2" + shell-quote "^1.7.3" + strip-ansi "^6.0.1" + text-table "^0.2.0" + +react-devtools-core@^5.0.0: + version "5.3.1" + resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-5.3.1.tgz#d57f5b8f74f16e622bd6a7bc270161e4ba162666" + integrity sha512-7FSb9meX0btdBQLwdFOwt6bGqvRPabmVMMslv8fgoSPqXyuGpgQe36kx8gR86XPw7aV1yVouTp6fyZ0EH+NfUw== + dependencies: + shell-quote "^1.6.1" + ws "^7" + +react-dom@^18.3.1: + version "18.3.1" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.3.1.tgz#c2265d79511b57d479b3dd3fdfa51536494c5cb4" + integrity sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw== + dependencies: + loose-envify "^1.1.0" + scheduler "^0.23.2" + +react-error-overlay@^6.0.11: + version "6.0.11" + resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.11.tgz#92835de5841c5cf08ba00ddd2d677b6d17ff9adb" + integrity sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg== + +react-freeze@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/react-freeze/-/react-freeze-1.0.4.tgz#cbbea2762b0368b05cbe407ddc9d518c57c6f3ad" + integrity sha512-r4F0Sec0BLxWicc7HEyo2x3/2icUTrRmDjaaRyzzn+7aDyFZliszMDOgLVwSnQnYENOlL1o569Ze2HZefk8clA== + +react-hook-form@^7.51.2: + version "7.52.1" + resolved "https://registry.yarnpkg.com/react-hook-form/-/react-hook-form-7.52.1.tgz#ec2c96437b977f8b89ae2d541a70736c66284852" + integrity sha512-uNKIhaoICJ5KQALYZ4TOaOLElyM+xipord+Ha3crEFhTntdLvWZqVY49Wqd/0GiVCA/f9NjemLeiNPjG7Hpurg== + +"react-is@^16.12.0 || ^17.0.0 || ^18.0.0", react-is@^18.0.0, react-is@^18.3.1: + version "18.3.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e" + integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg== + +react-is@^16.13.0, react-is@^16.13.1, react-is@^16.7.0: + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +react-is@^17.0.1: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" + integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== + +react-native-config@^1.5.1: + version "1.5.2" + resolved "https://registry.yarnpkg.com/react-native-config/-/react-native-config-1.5.2.tgz#035801ae35117ffff41a32d7c49def6721324d5d" + integrity sha512-jIx/21Ryr7+NXfULG1lQoct4KgmVae2KZ7/mt5fY2tm4s7N0jAxRm5Js8FX6adgkHuhV2fiizEBJDn/fWIFWiw== + +react-native-get-random-values@^1.10.0: + version "1.11.0" + resolved "https://registry.yarnpkg.com/react-native-get-random-values/-/react-native-get-random-values-1.11.0.tgz#1ca70d1271f4b08af92958803b89dccbda78728d" + integrity sha512-4BTbDbRmS7iPdhYLRcz3PGFIpFJBwNZg9g42iwa2P6FOv9vZj/xJc678RZXnLNZzd0qd7Q3CCF6Yd+CU2eoXKQ== + dependencies: + fast-base64-decode "^1.0.0" + +react-native-paper@^5.12.3: + version "5.12.3" + resolved "https://registry.yarnpkg.com/react-native-paper/-/react-native-paper-5.12.3.tgz#d583119722ebbfbb7fe40400181d63748cca3683" + integrity sha512-nH1e1pGPE/aOE5YR2GRX7CfMHFA9cAfrAfgCtwL4amJPDZCoVjc5yt2VDiUE1rT+JUfk0qdICMP3UggxvjMgug== + dependencies: + "@callstack/react-theme-provider" "^3.0.9" + color "^3.1.2" + use-latest-callback "^0.1.5" + +react-native-quick-base64@^2.0.5, react-native-quick-base64@^2.0.8: + version "2.1.2" + resolved "https://registry.yarnpkg.com/react-native-quick-base64/-/react-native-quick-base64-2.1.2.tgz#062b09b165c1530095fe99b94544c948318dbe99" + integrity sha512-xghaXpWdB0ji8OwYyo0fWezRroNxiNFCNFpGUIyE7+qc4gA/IGWnysIG5L0MbdoORv8FkTKUvfd6yCUN5R2VFA== + dependencies: + base64-js "^1.5.1" + +react-native-quick-crypto@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/react-native-quick-crypto/-/react-native-quick-crypto-0.6.1.tgz#7b89c67c4a5d3669c4491fe7884621c1c74d01bc" + integrity sha512-s6uFo7tcI3syo8/y5j+t6Rf+KVSuRKDp6tH04A0vjaHptJC6Iu7DVgkNYO7aqtfrYn8ZUgQ/Kqaq+m4i9TxgIQ== + dependencies: + "@craftzdog/react-native-buffer" "^6.0.5" + "@types/node" "^17.0.31" + crypto-browserify "^3.12.0" + events "^3.3.0" + react-native-quick-base64 "^2.0.5" + stream-browserify "^3.0.0" + string_decoder "^1.3.0" + +react-native-safe-area-context@^4.10.8: + version "4.10.8" + resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-4.10.8.tgz#038bd6a4853a38189c186d119302943c8d13f56f" + integrity sha512-Jx1lovhvIdYygg0UsMCBUJN0Wvj9GlA5bbcBLzjZf93uJpNHzaiHC4hR280+sNVK1+/pMHEyEkXVHDZE5JWn0w== + +react-native-screens@^3.29.0: + version "3.32.0" + resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-3.32.0.tgz#47c3d2efc9cd5ed18af41b34efc8b46df05b87b4" + integrity sha512-wybqZAHX7v8ipOXhh90CqGLkBHw5JYqKNRBX7R/b0c2WQisTOgu0M0yGwBMM6LyXRBT+4k3NTGHdDbpJVpq0yQ== + dependencies: + react-freeze "^1.0.0" + warn-once "^0.1.0" + +react-native-svg@^15.1.0: + version "15.4.0" + resolved "https://registry.yarnpkg.com/react-native-svg/-/react-native-svg-15.4.0.tgz#a4929deece1f438282e18d007b12af5e4f718fda" + integrity sha512-zkBEbme/Dba4yqreg/oI2P6/6LrLywWY7HhaSwpU7Pb5COpTd2fV6/ShsgZz8GRFFdidUPwWmx01FITUsjhkmw== + dependencies: + css-select "^5.1.0" + css-tree "^1.1.3" + warn-once "0.1.1" + +react-native-url-polyfill@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/react-native-url-polyfill/-/react-native-url-polyfill-2.0.0.tgz#db714520a2985cff1d50ab2e66279b9f91ffd589" + integrity sha512-My330Do7/DvKnEvwQc0WdcBnFPploYKp9CYlefDXzIdEaA+PAhDYllkvGeEroEzvc4Kzzj2O4yVdz8v6fjRvhA== + dependencies: + whatwg-url-without-unicode "8.0.0-3" + +react-native-vector-icons@^10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/react-native-vector-icons/-/react-native-vector-icons-10.1.0.tgz#c98a225213700177d23492e32d1dc920b9bae8aa" + integrity sha512-fdQjCHIdoXmRoTZ5gvN1FmT4sGLQ2wmQiNZHKJQUYnE2tkIwjGnxNch+6Nd4lHAACvMWO7LOzBNot2u/zlOmkw== + dependencies: + prop-types "^15.7.2" + yargs "^16.1.1" + +react-native-web@^0.19.12: + version "0.19.12" + resolved "https://registry.yarnpkg.com/react-native-web/-/react-native-web-0.19.12.tgz#30d1fd70bdff7886f43c0c2698629d830fade6bc" + integrity sha512-o2T0oztoVDQjztt4YksO9S1XRjoH/AqcSvifgWLrPJgGVbMWsfhILgl6lfUdEamVZzZSVV/2gqDVMAk/qq7mZw== + dependencies: + "@babel/runtime" "^7.18.6" + "@react-native/normalize-colors" "^0.74.1" + fbjs "^3.0.4" + inline-style-prefixer "^6.0.1" + memoize-one "^6.0.0" + nullthrows "^1.1.1" + postcss-value-parser "^4.2.0" + styleq "^0.1.3" + +react-native@^0.74.3: + version "0.74.3" + resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.74.3.tgz#eef32cd10afb1f4b26f75b79eefd6b220c63953c" + integrity sha512-UFutCC6WEw6HkxlcpQ2BemKqi0JkwrgDchYB5Svi8Sp4Xwt4HA6LGEjNQgZ+3KM44bjyFRpofQym0uh0jACGng== + dependencies: + "@jest/create-cache-key-function" "^29.6.3" + "@react-native-community/cli" "13.6.9" + "@react-native-community/cli-platform-android" "13.6.9" + "@react-native-community/cli-platform-ios" "13.6.9" + "@react-native/assets-registry" "0.74.85" + "@react-native/codegen" "0.74.85" + "@react-native/community-cli-plugin" "0.74.85" + "@react-native/gradle-plugin" "0.74.85" + "@react-native/js-polyfills" "0.74.85" + "@react-native/normalize-colors" "0.74.85" + "@react-native/virtualized-lists" "0.74.85" + abort-controller "^3.0.0" + anser "^1.4.9" + ansi-regex "^5.0.0" + base64-js "^1.5.1" + chalk "^4.0.0" + event-target-shim "^5.0.1" + flow-enums-runtime "^0.0.6" + invariant "^2.2.4" + jest-environment-node "^29.6.3" + jsc-android "^250231.0.0" + memoize-one "^5.0.0" + metro-runtime "^0.80.3" + metro-source-map "^0.80.3" + mkdirp "^0.5.1" + nullthrows "^1.1.1" + pretty-format "^26.5.2" + promise "^8.3.0" + react-devtools-core "^5.0.0" + react-refresh "^0.14.0" + react-shallow-renderer "^16.15.0" + regenerator-runtime "^0.13.2" + scheduler "0.24.0-canary-efb381bbf-20230505" + stacktrace-parser "^0.1.10" + whatwg-fetch "^3.0.0" + ws "^6.2.2" + yargs "^17.6.2" + +react-refresh@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.11.0.tgz#77198b944733f0f1f1a90e791de4541f9f074046" + integrity sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A== + +react-refresh@^0.14.0: + version "0.14.2" + resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.2.tgz#3833da01ce32da470f1f936b9d477da5c7028bf9" + integrity sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA== + +react-scripts@5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/react-scripts/-/react-scripts-5.0.1.tgz#6285dbd65a8ba6e49ca8d651ce30645a6d980003" + integrity sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ== + dependencies: + "@babel/core" "^7.16.0" + "@pmmmwh/react-refresh-webpack-plugin" "^0.5.3" + "@svgr/webpack" "^5.5.0" + babel-jest "^27.4.2" + babel-loader "^8.2.3" + babel-plugin-named-asset-import "^0.3.8" + babel-preset-react-app "^10.0.1" + bfj "^7.0.2" + browserslist "^4.18.1" + camelcase "^6.2.1" + case-sensitive-paths-webpack-plugin "^2.4.0" + css-loader "^6.5.1" + css-minimizer-webpack-plugin "^3.2.0" + dotenv "^10.0.0" + dotenv-expand "^5.1.0" + eslint "^8.3.0" + eslint-config-react-app "^7.0.1" + eslint-webpack-plugin "^3.1.1" + file-loader "^6.2.0" + fs-extra "^10.0.0" + html-webpack-plugin "^5.5.0" + identity-obj-proxy "^3.0.0" + jest "^27.4.3" + jest-resolve "^27.4.2" + jest-watch-typeahead "^1.0.0" + mini-css-extract-plugin "^2.4.5" + postcss "^8.4.4" + postcss-flexbugs-fixes "^5.0.2" + postcss-loader "^6.2.1" + postcss-normalize "^10.0.1" + postcss-preset-env "^7.0.1" + prompts "^2.4.2" + react-app-polyfill "^3.0.0" + react-dev-utils "^12.0.1" + react-refresh "^0.11.0" + resolve "^1.20.0" + resolve-url-loader "^4.0.0" + sass-loader "^12.3.0" + semver "^7.3.5" + source-map-loader "^3.0.0" + style-loader "^3.3.1" + tailwindcss "^3.0.2" + terser-webpack-plugin "^5.2.5" + webpack "^5.64.4" + webpack-dev-server "^4.6.0" + webpack-manifest-plugin "^4.0.2" + workbox-webpack-plugin "^6.4.1" + optionalDependencies: + fsevents "^2.3.2" + +react-shallow-renderer@^16.15.0: + version "16.15.0" + resolved "https://registry.yarnpkg.com/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz#48fb2cf9b23d23cde96708fe5273a7d3446f4457" + integrity sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA== + dependencies: + object-assign "^4.1.1" + react-is "^16.12.0 || ^17.0.0 || ^18.0.0" + +react-transition-group@^4.4.5: + version "4.4.5" + resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.5.tgz#e53d4e3f3344da8521489fbef8f2581d42becdd1" + integrity sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g== + dependencies: + "@babel/runtime" "^7.5.5" + dom-helpers "^5.0.1" + loose-envify "^1.4.0" + prop-types "^15.6.2" + +react@^18.3.1: + version "18.3.1" + resolved "https://registry.yarnpkg.com/react/-/react-18.3.1.tgz#49ab892009c53933625bd16b2533fc754cab2891" + integrity sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ== + dependencies: + loose-envify "^1.1.0" + +read-cache@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" + integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== + dependencies: + pify "^2.3.0" + +readable-stream@^2.0.1, readable-stream@^2.3.8, readable-stream@~2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readable-stream@^3.0.6, readable-stream@^3.4.0, readable-stream@^3.5.0, readable-stream@^3.6.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +readline@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/readline/-/readline-1.3.0.tgz#c580d77ef2cfc8752b132498060dc9793a7ac01c" + integrity sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg== + +readonly-date@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/readonly-date/-/readonly-date-1.0.0.tgz#5af785464d8c7d7c40b9d738cbde8c646f97dcd9" + integrity sha512-tMKIV7hlk0h4mO3JTmmVuIlJVXjKk3Sep9Bf5OH0O+758ruuVkUy2J9SttDLm91IEX/WHlXPSpxMGjPj4beMIQ== + +recast@^0.21.0: + version "0.21.5" + resolved "https://registry.yarnpkg.com/recast/-/recast-0.21.5.tgz#e8cd22bb51bcd6130e54f87955d33a2b2e57b495" + integrity sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg== + dependencies: + ast-types "0.15.2" + esprima "~4.0.0" + source-map "~0.6.1" + tslib "^2.0.1" + +rechoir@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" + integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw== + dependencies: + resolve "^1.1.6" + +recursive-readdir@^2.2.2: + version "2.2.3" + resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.3.tgz#e726f328c0d69153bcabd5c322d3195252379372" + integrity sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA== + dependencies: + minimatch "^3.0.5" + +redent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" + integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== + dependencies: + indent-string "^4.0.0" + strip-indent "^3.0.0" + +reflect.getprototypeof@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz#3ab04c32a8390b770712b7a8633972702d278859" + integrity sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.1" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + globalthis "^1.0.3" + which-builtin-type "^1.1.3" + +regenerate-unicode-properties@^10.1.0: + version "10.1.1" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz#6b0e05489d9076b04c436f318d9b067bba459480" + integrity sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q== + dependencies: + regenerate "^1.4.2" + +regenerate@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" + integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== + +regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.9: + version "0.13.11" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" + integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== + +regenerator-runtime@^0.14.0: + version "0.14.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" + integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== + +regenerator-transform@^0.15.2: + version "0.15.2" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4" + integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== + dependencies: + "@babel/runtime" "^7.8.4" + +regex-parser@^2.2.11: + version "2.3.0" + resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.3.0.tgz#4bb61461b1a19b8b913f3960364bb57887f920ee" + integrity sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg== + +regexp.prototype.flags@^1.5.1, regexp.prototype.flags@^1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz#138f644a3350f981a858c44f6bb1a61ff59be334" + integrity sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw== + dependencies: + call-bind "^1.0.6" + define-properties "^1.2.1" + es-errors "^1.3.0" + set-function-name "^2.0.1" + +regexpu-core@^5.3.1: + version "5.3.2" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" + integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== + dependencies: + "@babel/regjsgen" "^0.8.0" + regenerate "^1.4.2" + regenerate-unicode-properties "^10.1.0" + regjsparser "^0.9.1" + unicode-match-property-ecmascript "^2.0.0" + unicode-match-property-value-ecmascript "^2.1.0" + +regjsparser@^0.9.1: + version "0.9.1" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" + integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== + dependencies: + jsesc "~0.5.0" + +relateurl@^0.2.7: + version "0.2.7" + resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" + integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog== + +renderkid@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-3.0.0.tgz#5fd823e4d6951d37358ecc9a58b1f06836b6268a" + integrity sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg== + dependencies: + css-select "^4.1.3" + dom-converter "^0.2.0" + htmlparser2 "^6.1.0" + lodash "^4.17.21" + strip-ansi "^6.0.1" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +require-main-filename@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== + +requires-port@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== + +resolve-cwd@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" + integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== + dependencies: + resolve-from "^5.0.0" + +resolve-from@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" + integrity sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve-url-loader@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz#d50d4ddc746bb10468443167acf800dcd6c3ad57" + integrity sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA== + dependencies: + adjust-sourcemap-loader "^4.0.0" + convert-source-map "^1.7.0" + loader-utils "^2.0.0" + postcss "^7.0.35" + source-map "0.6.1" + +resolve.exports@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.1.tgz#05cfd5b3edf641571fd46fa608b610dda9ead999" + integrity sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ== + +resolve@^1.1.6, resolve@^1.1.7, resolve@^1.14.2, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.2, resolve@^1.22.4: + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== + dependencies: + is-core-module "^2.13.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +resolve@^2.0.0-next.5: + version "2.0.0-next.5" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.5.tgz#6b0ec3107e671e52b68cd068ef327173b90dc03c" + integrity sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA== + dependencies: + is-core-module "^2.13.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +restore-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + dependencies: + onetime "^5.1.0" + signal-exit "^3.0.2" + +retry@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" + integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@^2.6.3: + version "2.7.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== + dependencies: + glob "^7.1.3" + +rimraf@^3.0.0, rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +rimraf@~2.6.2: + version "2.6.3" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + +ripemd160-min@0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/ripemd160-min/-/ripemd160-min-0.0.6.tgz#a904b77658114474d02503e819dcc55853b67e62" + integrity sha512-+GcJgQivhs6S9qvLogusiTcS9kQUfgR75whKuy5jIhuiOfQuJ8fjqxV6EGD5duH1Y/FawFUMtMhyeq3Fbnib8A== + +ripemd160@^2.0.0, ripemd160@^2.0.1, ripemd160@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" + integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + +rlp@^2.2.3: + version "2.2.7" + resolved "https://registry.yarnpkg.com/rlp/-/rlp-2.2.7.tgz#33f31c4afac81124ac4b283e2bd4d9720b30beaf" + integrity sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ== + dependencies: + bn.js "^5.2.0" + +rollup-plugin-terser@^7.0.0: + version "7.0.2" + resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz#e8fbba4869981b2dc35ae7e8a502d5c6c04d324d" + integrity sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ== + dependencies: + "@babel/code-frame" "^7.10.4" + jest-worker "^26.2.1" + serialize-javascript "^4.0.0" + terser "^5.0.0" + +rollup@^2.43.1: + version "2.79.1" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.79.1.tgz#bedee8faef7c9f93a2647ac0108748f497f081c7" + integrity sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw== + optionalDependencies: + fsevents "~2.3.2" + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +safe-array-concat@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.2.tgz#81d77ee0c4e8b863635227c721278dd524c20edb" + integrity sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q== + dependencies: + call-bind "^1.0.7" + get-intrinsic "^1.2.4" + has-symbols "^1.0.3" + isarray "^2.0.5" + +safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@^5.2.1, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +safe-regex-test@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.3.tgz#a5b4c0f06e0ab50ea2c395c14d8371232924c377" + integrity sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-regex "^1.1.4" + +"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +sanitize.css@*: + version "13.0.0" + resolved "https://registry.yarnpkg.com/sanitize.css/-/sanitize.css-13.0.0.tgz#2675553974b27964c75562ade3bd85d79879f173" + integrity sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA== + +sass-loader@^12.3.0: + version "12.6.0" + resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-12.6.0.tgz#5148362c8e2cdd4b950f3c63ac5d16dbfed37bcb" + integrity sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA== + dependencies: + klona "^2.0.4" + neo-async "^2.6.2" + +sax@~1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== + +saxes@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" + integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== + dependencies: + xmlchars "^2.2.0" + +scheduler@0.24.0-canary-efb381bbf-20230505: + version "0.24.0-canary-efb381bbf-20230505" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.24.0-canary-efb381bbf-20230505.tgz#5dddc60e29f91cd7f8b983d7ce4a99c2202d178f" + integrity sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA== + dependencies: + loose-envify "^1.1.0" + +scheduler@^0.23.2: + version "0.23.2" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.2.tgz#414ba64a3b282892e944cf2108ecc078d115cdc3" + integrity sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ== + dependencies: + loose-envify "^1.1.0" + +schema-utils@2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.0.tgz#17151f76d8eae67fbbf77960c33c676ad9f4efc7" + integrity sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A== + dependencies: + "@types/json-schema" "^7.0.4" + ajv "^6.12.2" + ajv-keywords "^3.4.1" + +schema-utils@^2.6.5: + version "2.7.1" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7" + integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== + dependencies: + "@types/json-schema" "^7.0.5" + ajv "^6.12.4" + ajv-keywords "^3.5.2" + +schema-utils@^3.0.0, schema-utils@^3.1.1, schema-utils@^3.2.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe" + integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== + dependencies: + "@types/json-schema" "^7.0.8" + ajv "^6.12.5" + ajv-keywords "^3.5.2" + +schema-utils@^4.0.0, schema-utils@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.2.0.tgz#70d7c93e153a273a805801882ebd3bff20d89c8b" + integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw== + dependencies: + "@types/json-schema" "^7.0.9" + ajv "^8.9.0" + ajv-formats "^2.1.1" + ajv-keywords "^5.1.0" + +scrypt-js@3.0.1, scrypt-js@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/scrypt-js/-/scrypt-js-3.0.1.tgz#d314a57c2aef69d1ad98a138a21fe9eafa9ee312" + integrity sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA== + +secp256k1@^4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/secp256k1/-/secp256k1-4.0.3.tgz#c4559ecd1b8d3c1827ed2d1b94190d69ce267303" + integrity sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA== + dependencies: + elliptic "^6.5.4" + node-addon-api "^2.0.0" + node-gyp-build "^4.2.0" + +select-hose@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" + integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg== + +selfsigned@^2.1.1, selfsigned@^2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.4.1.tgz#560d90565442a3ed35b674034cec4e95dceb4ae0" + integrity sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q== + dependencies: + "@types/node-forge" "^1.3.0" + node-forge "^1" + +semver@^5.6.0: + version "5.7.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== + +semver@^6.0.0, semver@^6.3.0, semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + +semver@^7.3.2, semver@^7.3.5, semver@^7.3.7, semver@^7.5.2, semver@^7.5.3, semver@^7.5.4: + version "7.6.3" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" + integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== + +send@0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" + integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== + dependencies: + debug "2.6.9" + depd "2.0.0" + destroy "1.2.0" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "2.0.0" + mime "1.6.0" + ms "2.1.3" + on-finished "2.4.1" + range-parser "~1.2.1" + statuses "2.0.1" + +serialize-error@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-2.1.0.tgz#50b679d5635cdf84667bdc8e59af4e5b81d5f60a" + integrity sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw== + +serialize-javascript@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" + integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== + dependencies: + randombytes "^2.1.0" + +serialize-javascript@^6.0.0, serialize-javascript@^6.0.1: + version "6.0.2" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.2.tgz#defa1e055c83bf6d59ea805d8da862254eb6a6c2" + integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g== + dependencies: + randombytes "^2.1.0" + +serve-index@^1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" + integrity sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw== + dependencies: + accepts "~1.3.4" + batch "0.6.1" + debug "2.6.9" + escape-html "~1.0.3" + http-errors "~1.6.2" + mime-types "~2.1.17" + parseurl "~1.3.2" + +serve-static@1.15.0, serve-static@^1.13.1: + version "1.15.0" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" + integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.18.0" + +set-blocking@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== + +set-function-length@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" + integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + +set-function-name@^2.0.1, set-function-name@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985" + integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + functions-have-names "^1.2.3" + has-property-descriptors "^1.0.2" + +setimmediate@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== + +setprototypeof@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" + integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== + +setprototypeof@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== + +sha.js@^2.4.0, sha.js@^2.4.11, sha.js@^2.4.8: + version "2.4.11" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" + integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +sha3@^2.1.1, sha3@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/sha3/-/sha3-2.1.4.tgz#000fac0fe7c2feac1f48a25e7a31b52a6492cc8f" + integrity sha512-S8cNxbyb0UGUM2VhRD4Poe5N58gJnJsLJ5vC7FYWGUmGhcsj4++WaIOBFVDxlG0W3To6xBuiRh+i0Qp2oNCOtg== + dependencies: + buffer "6.0.3" + +shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + dependencies: + kind-of "^6.0.2" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +shell-quote@^1.6.1, shell-quote@^1.7.3, shell-quote@^1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" + integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== + +shelljs@^0.8.5: + version "0.8.5" + resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c" + integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== + dependencies: + glob "^7.0.0" + interpret "^1.0.0" + rechoir "^0.6.2" + +shx@^0.3.4: + version "0.3.4" + resolved "https://registry.yarnpkg.com/shx/-/shx-0.3.4.tgz#74289230b4b663979167f94e1935901406e40f02" + integrity sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g== + dependencies: + minimist "^1.2.3" + shelljs "^0.8.5" + +side-channel@^1.0.4, side-channel@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" + integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + object-inspect "^1.13.1" + +signal-exit@^3.0.2, signal-exit@^3.0.3: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +signal-exit@^4.0.1: + version "4.1.0" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" + integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== + +simple-swizzle@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" + integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg== + dependencies: + is-arrayish "^0.3.1" + +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + +slash@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" + integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +slash@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" + integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== + +slice-ansi@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" + integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== + dependencies: + ansi-styles "^3.2.0" + astral-regex "^1.0.0" + is-fullwidth-code-point "^2.0.0" + +sockjs@^0.3.24: + version "0.3.24" + resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.24.tgz#c9bc8995f33a111bea0395ec30aa3206bdb5ccce" + integrity sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ== + dependencies: + faye-websocket "^0.11.3" + uuid "^8.3.2" + websocket-driver "^0.7.4" + +source-list-map@^2.0.0, source-list-map@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" + integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== + +source-map-js@^1.0.1, source-map-js@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" + integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== + +source-map-loader@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/source-map-loader/-/source-map-loader-3.0.2.tgz#af23192f9b344daa729f6772933194cc5fa54fee" + integrity sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg== + dependencies: + abab "^2.0.5" + iconv-lite "^0.6.3" + source-map-js "^1.0.1" + +source-map-support@^0.5.16, source-map-support@^0.5.6, source-map-support@~0.5.20: + version "0.5.21" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +source-map@^0.5.6, source-map@^0.5.7: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== + +source-map@^0.7.3: + version "0.7.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" + integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== + +source-map@^0.8.0-beta.0: + version "0.8.0-beta.0" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.8.0-beta.0.tgz#d4c1bb42c3f7ee925f005927ba10709e0d1d1f11" + integrity sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA== + dependencies: + whatwg-url "^7.0.0" + +sourcemap-codec@^1.4.8: + version "1.4.8" + resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" + integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== + +spdy-transport@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31" + integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== + dependencies: + debug "^4.1.0" + detect-node "^2.0.4" + hpack.js "^2.1.6" + obuf "^1.1.2" + readable-stream "^3.0.6" + wbuf "^1.7.3" + +spdy@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b" + integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA== + dependencies: + debug "^4.1.0" + handle-thing "^2.0.0" + http-deceiver "^1.2.7" + select-hose "^2.0.0" + spdy-transport "^3.0.0" + +split-on-first@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/split-on-first/-/split-on-first-1.1.0.tgz#f610afeee3b12bce1d0c30425e76398b78249a5f" + integrity sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw== + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== + +stable@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" + integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== + +stack-utils@^2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" + integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== + dependencies: + escape-string-regexp "^2.0.0" + +stackframe@^1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.3.4.tgz#b881a004c8c149a5e8efef37d51b16e412943310" + integrity sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw== + +stacktrace-parser@^0.1.10: + version "0.1.10" + resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz#29fb0cae4e0d0b85155879402857a1639eb6051a" + integrity sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg== + dependencies: + type-fest "^0.7.1" + +static-eval@2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/static-eval/-/static-eval-2.0.2.tgz#2d1759306b1befa688938454c546b7871f806a42" + integrity sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg== + dependencies: + escodegen "^1.8.1" + +statuses@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" + integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== + +"statuses@>= 1.4.0 < 2", statuses@~1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== + +stop-iteration-iterator@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4" + integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ== + dependencies: + internal-slot "^1.0.4" + +stream-browserify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz#22b0a2850cdf6503e73085da1fc7b7d0c2122f2f" + integrity sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA== + dependencies: + inherits "~2.0.4" + readable-stream "^3.5.0" + +strict-uri-encode@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" + integrity sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ== + +string-length@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" + integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== + dependencies: + char-regex "^1.0.2" + strip-ansi "^6.0.0" + +string-length@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-5.0.1.tgz#3d647f497b6e8e8d41e422f7e0b23bc536c8381e" + integrity sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow== + dependencies: + char-regex "^2.0.0" + strip-ansi "^7.0.1" + +string-natural-compare@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/string-natural-compare/-/string-natural-compare-3.0.1.tgz#7a42d58474454963759e8e8b7ae63d71c1e7fdf4" + integrity sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw== + +"string-width-cjs@npm:string-width@^4.2.0": + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string-width@^5.0.1, string-width@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" + integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== + dependencies: + eastasianwidth "^0.2.0" + emoji-regex "^9.2.2" + strip-ansi "^7.0.1" + +string.prototype.includes@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/string.prototype.includes/-/string.prototype.includes-2.0.0.tgz#8986d57aee66d5460c144620a6d873778ad7289f" + integrity sha512-E34CkBgyeqNDcrbU76cDjL5JLcVrtSdYq0MEh/B10r17pRP4ciHLwTgnuLV8Ay6cgEMLkcBkFCKyFZ43YldYzg== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.5" + +string.prototype.matchall@^4.0.11, string.prototype.matchall@^4.0.6: + version "4.0.11" + resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz#1092a72c59268d2abaad76582dccc687c0297e0a" + integrity sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + has-symbols "^1.0.3" + internal-slot "^1.0.7" + regexp.prototype.flags "^1.5.2" + set-function-name "^2.0.2" + side-channel "^1.0.6" + +string.prototype.repeat@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz#e90872ee0308b29435aa26275f6e1b762daee01a" + integrity sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.5" + +string.prototype.trim@^1.2.9: + version "1.2.9" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz#b6fa326d72d2c78b6df02f7759c73f8f6274faa4" + integrity sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.0" + es-object-atoms "^1.0.0" + +string.prototype.trimend@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz#3651b8513719e8a9f48de7f2f77640b26652b229" + integrity sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + +string.prototype.trimstart@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz#7ee834dda8c7c17eff3118472bb35bfedaa34dde" + integrity sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + +string_decoder@^1.1.1, string_decoder@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +stringify-object@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" + integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== + dependencies: + get-own-enumerable-property-symbols "^3.0.0" + is-obj "^1.0.1" + is-regexp "^1.0.0" + +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-ansi@^5.0.0, strip-ansi@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-ansi@^7.0.1: + version "7.1.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" + integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== + dependencies: + ansi-regex "^6.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-bom@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" + integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== + +strip-comments@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-comments/-/strip-comments-2.0.1.tgz#4ad11c3fbcac177a67a40ac224ca339ca1c1ba9b" + integrity sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-hex-prefix@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-hex-prefix/-/strip-hex-prefix-1.0.0.tgz#0c5f155fef1151373377de9dbb588da05500e36f" + integrity sha512-q8d4ue7JGEiVcypji1bALTos+0pWtyGlivAWyPuTkHzuTCJqrK9sWxYQZUq6Nq3cuyv3bm734IhHvHtGGURU6A== + dependencies: + is-hex-prefixed "1.0.0" + +strip-indent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" + integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== + dependencies: + min-indent "^1.0.0" + +strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +strnum@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db" + integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA== + +style-loader@^3.3.1: + version "3.3.4" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.4.tgz#f30f786c36db03a45cbd55b6a70d930c479090e7" + integrity sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w== + +stylehacks@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.1.1.tgz#7934a34eb59d7152149fa69d6e9e56f2fc34bcc9" + integrity sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw== + dependencies: + browserslist "^4.21.4" + postcss-selector-parser "^6.0.4" + +styleq@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/styleq/-/styleq-0.1.3.tgz#8efb2892debd51ce7b31dc09c227ad920decab71" + integrity sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA== + +stylis@4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.2.0.tgz#79daee0208964c8fe695a42fcffcac633a211a51" + integrity sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw== + +sucrase@^3.32.0: + version "3.35.0" + resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.35.0.tgz#57f17a3d7e19b36d8995f06679d121be914ae263" + integrity sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA== + dependencies: + "@jridgewell/gen-mapping" "^0.3.2" + commander "^4.0.0" + glob "^10.3.10" + lines-and-columns "^1.1.6" + mz "^2.7.0" + pirates "^4.0.1" + ts-interface-checker "^0.1.9" + +sudo-prompt@^9.0.0: + version "9.2.1" + resolved "https://registry.yarnpkg.com/sudo-prompt/-/sudo-prompt-9.2.1.tgz#77efb84309c9ca489527a4e749f287e6bdd52afd" + integrity sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw== + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.0.0, supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-color@^8.0.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-hyperlinks@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz#3943544347c1ff90b15effb03fc14ae45ec10624" + integrity sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA== + dependencies: + has-flag "^4.0.0" + supports-color "^7.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +svg-parser@^2.0.2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5" + integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ== + +svgo@^1.2.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167" + integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw== + dependencies: + chalk "^2.4.1" + coa "^2.0.2" + css-select "^2.0.0" + css-select-base-adapter "^0.1.1" + css-tree "1.0.0-alpha.37" + csso "^4.0.2" + js-yaml "^3.13.1" + mkdirp "~0.5.1" + object.values "^1.1.0" + sax "~1.2.4" + stable "^0.1.8" + unquote "~1.1.1" + util.promisify "~1.0.0" + +svgo@^2.7.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24" + integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg== + dependencies: + "@trysound/sax" "0.2.0" + commander "^7.2.0" + css-select "^4.1.3" + css-tree "^1.1.3" + csso "^4.2.0" + picocolors "^1.0.0" + stable "^0.1.8" + +symbol-observable@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-2.0.3.tgz#5b521d3d07a43c351055fa43b8355b62d33fd16a" + integrity sha512-sQV7phh2WCYAn81oAkakC5qjq2Ml0g8ozqz03wOGnx9dDlG1de6yrF+0RAzSJD8fPUow3PTSMf2SAbOGxb93BA== + +symbol-tree@^3.2.4: + version "3.2.4" + resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" + integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== + +tailwindcss@^3.0.2: + version "3.4.6" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.6.tgz#41faae16607e0916da1eaa4a3b44053457ba70dd" + integrity sha512-1uRHzPB+Vzu57ocybfZ4jh5Q3SdlH7XW23J5sQoM9LhE9eIOlzxer/3XPSsycvih3rboRsvt0QCmzSrqyOYUIA== + dependencies: + "@alloc/quick-lru" "^5.2.0" + arg "^5.0.2" + chokidar "^3.5.3" + didyoumean "^1.2.2" + dlv "^1.1.3" + fast-glob "^3.3.0" + glob-parent "^6.0.2" + is-glob "^4.0.3" + jiti "^1.21.0" + lilconfig "^2.1.0" + micromatch "^4.0.5" + normalize-path "^3.0.0" + object-hash "^3.0.0" + picocolors "^1.0.0" + postcss "^8.4.23" + postcss-import "^15.1.0" + postcss-js "^4.0.1" + postcss-load-config "^4.0.1" + postcss-nested "^6.0.1" + postcss-selector-parser "^6.0.11" + resolve "^1.22.2" + sucrase "^3.32.0" + +tapable@^1.0.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" + integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== + +tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0, tapable@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" + integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== + +temp-dir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-2.0.0.tgz#bde92b05bdfeb1516e804c9c00ad45177f31321e" + integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg== + +temp@^0.8.4: + version "0.8.4" + resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.4.tgz#8c97a33a4770072e0a05f919396c7665a7dd59f2" + integrity sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg== + dependencies: + rimraf "~2.6.2" + +tempy@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tempy/-/tempy-0.6.0.tgz#65e2c35abc06f1124a97f387b08303442bde59f3" + integrity sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw== + dependencies: + is-stream "^2.0.0" + temp-dir "^2.0.0" + type-fest "^0.16.0" + unique-string "^2.0.0" + +terminal-link@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" + integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== + dependencies: + ansi-escapes "^4.2.1" + supports-hyperlinks "^2.0.0" + +terser-webpack-plugin@^5.2.5, terser-webpack-plugin@^5.3.10: + version "5.3.10" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz#904f4c9193c6fd2a03f693a2150c62a92f40d199" + integrity sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w== + dependencies: + "@jridgewell/trace-mapping" "^0.3.20" + jest-worker "^27.4.5" + schema-utils "^3.1.1" + serialize-javascript "^6.0.1" + terser "^5.26.0" + +terser@^5.0.0, terser@^5.10.0, terser@^5.15.0, terser@^5.26.0: + version "5.31.3" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.31.3.tgz#b24b7beb46062f4653f049eea4f0cd165d0f0c38" + integrity sha512-pAfYn3NIZLyZpa83ZKigvj6Rn9c/vd5KfYGX7cN1mnzqgDcxWvrU5ZtAfIKhEXz9nRecw4z3LXkjaq96/qZqAA== + dependencies: + "@jridgewell/source-map" "^0.3.3" + acorn "^8.8.2" + commander "^2.20.0" + source-map-support "~0.5.20" + +test-exclude@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" + integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== + dependencies: + "@istanbuljs/schema" "^0.1.2" + glob "^7.1.4" + minimatch "^3.0.4" + +text-encoding-polyfill@^0.6.7: + version "0.6.7" + resolved "https://registry.yarnpkg.com/text-encoding-polyfill/-/text-encoding-polyfill-0.6.7.tgz#4d27de0153e4c86eb2631ffd74c2f3f57969a9ec" + integrity sha512-/DZ1XJqhbqRkCop6s9ZFu8JrFRwmVuHg4quIRm+ziFkR3N3ec6ck6yBvJ1GYeEQZhLVwRW0rZE+C3SSJpy0RTg== + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +thenify-all@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== + dependencies: + thenify ">= 3.1.0 < 4" + +"thenify@>= 3.1.0 < 4": + version "3.3.1" + resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" + integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + dependencies: + any-promise "^1.0.0" + +throat@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b" + integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA== + +throat@^6.0.1: + version "6.0.2" + resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.2.tgz#51a3fbb5e11ae72e2cf74861ed5c8020f89f29fe" + integrity sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ== + +through2@^2.0.1: + version "2.0.5" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== + dependencies: + readable-stream "~2.3.6" + xtend "~4.0.1" + +thunky@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" + integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== + +tiny-secp256k1@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/tiny-secp256k1/-/tiny-secp256k1-1.1.6.tgz#7e224d2bee8ab8283f284e40e6b4acb74ffe047c" + integrity sha512-FmqJZGduTyvsr2cF3375fqGHUovSwDi/QytexX1Se4BPuPZpTE5Ftp5fg+EFSuEf3lhZqgCRjEG3ydUQ/aNiwA== + dependencies: + bindings "^1.3.0" + bn.js "^4.11.8" + create-hmac "^1.1.7" + elliptic "^6.4.0" + nan "^2.13.2" + +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +tmpl@1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" + integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +toidentifier@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" + integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== + +tough-cookie@^4.0.0: + version "4.1.4" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.4.tgz#945f1461b45b5a8c76821c33ea49c3ac192c1b36" + integrity sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag== + dependencies: + psl "^1.1.33" + punycode "^2.1.1" + universalify "^0.2.0" + url-parse "^1.5.3" + +tr46@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" + integrity sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA== + dependencies: + punycode "^2.1.0" + +tr46@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" + integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw== + dependencies: + punycode "^2.1.1" + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +tryer@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/tryer/-/tryer-1.0.1.tgz#f2c85406800b9b0f74c9f7465b81eaad241252f8" + integrity sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA== + +ts-interface-checker@^0.1.9: + version "0.1.13" + resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" + integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== + +tsconfig-paths@^3.15.0: + version "3.15.0" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz#5299ec605e55b1abb23ec939ef15edaf483070d4" + integrity sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.2" + minimist "^1.2.6" + strip-bom "^3.0.0" + +tslib@^1.8.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^2.0.1, tslib@^2.0.3: + version "2.6.3" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.3.tgz#0438f810ad7a9edcde7a241c3d80db693c8cbfe0" + integrity sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ== + +tsutils@^3.21.0: + version "3.21.0" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== + dependencies: + tslib "^1.8.1" + +tweetnacl-util@^0.15.1: + version "0.15.1" + resolved "https://registry.yarnpkg.com/tweetnacl-util/-/tweetnacl-util-0.15.1.tgz#b80fcdb5c97bcc508be18c44a4be50f022eea00b" + integrity sha512-RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw== + +tweetnacl@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-1.0.3.tgz#ac0af71680458d8a6378d0d0d050ab1407d35596" + integrity sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw== + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== + dependencies: + prelude-ls "~1.1.2" + +type-detect@4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== + +type-fest@^0.16.0: + version "0.16.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.16.0.tgz#3240b891a78b0deae910dbeb86553e552a148860" + integrity sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg== + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + +type-fest@^0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.7.1.tgz#8dda65feaf03ed78f0a3f9678f1869147f7c5c48" + integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg== + +type-is@~1.6.18: + version "1.6.18" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + +typed-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz#1867c5d83b20fcb5ccf32649e5e2fc7424474ff3" + integrity sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + is-typed-array "^1.1.13" + +typed-array-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz#d92972d3cff99a3fa2e765a28fcdc0f1d89dec67" + integrity sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw== + dependencies: + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" + +typed-array-byte-offset@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz#f9ec1acb9259f395093e4567eb3c28a580d02063" + integrity sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA== + dependencies: + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" + +typed-array-length@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.6.tgz#57155207c76e64a3457482dfdc1c9d1d3c4c73a3" + integrity sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g== + dependencies: + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" + possible-typed-array-names "^1.0.0" + +typedarray-to-buffer@^3.1.5: + version "3.1.5" + resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" + integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== + dependencies: + is-typedarray "^1.0.0" + +typeforce@^1.11.5: + version "1.18.0" + resolved "https://registry.yarnpkg.com/typeforce/-/typeforce-1.18.0.tgz#d7416a2c5845e085034d70fcc5b6cc4a90edbfdc" + integrity sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g== + +typescript@^4.4.2: + version "4.9.5" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" + integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== + +ua-parser-js@^1.0.35: + version "1.0.38" + resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.38.tgz#66bb0c4c0e322fe48edfe6d446df6042e62f25e2" + integrity sha512-Aq5ppTOfvrCMgAPneW1HfWj66Xi7XL+/mIy996R1/CLS/rcyJQm6QZdsKrUeivDFQ+Oc9Wyuwor8Ze8peEoUoQ== + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== + dependencies: + call-bind "^1.0.2" + has-bigints "^1.0.2" + has-symbols "^1.0.3" + which-boxed-primitive "^1.0.2" + +underscore@1.12.1: + version "1.12.1" + resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.12.1.tgz#7bb8cc9b3d397e201cf8553336d262544ead829e" + integrity sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw== + +undici-types@~5.26.4: + version "5.26.5" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" + integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== + +unicode-canonical-property-names-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" + integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== + +unicode-match-property-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" + integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== + dependencies: + unicode-canonical-property-names-ecmascript "^2.0.0" + unicode-property-aliases-ecmascript "^2.0.0" + +unicode-match-property-value-ecmascript@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" + integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== + +unicode-property-aliases-ecmascript@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" + integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== + +unique-string@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" + integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== + dependencies: + crypto-random-string "^2.0.0" + +universalify@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + +universalify@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" + integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== + +universalify@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" + integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== + +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== + +unquote@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" + integrity sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg== + +upath@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" + integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== + +update-browserslist-db@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz#7ca61c0d8650766090728046e416a8cde682859e" + integrity sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ== + dependencies: + escalade "^3.1.2" + picocolors "^1.0.1" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +url-parse@^1.5.3: + version "1.5.10" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" + integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== + dependencies: + querystringify "^2.1.1" + requires-port "^1.0.0" + +use-debounce@^10.0.0: + version "10.0.1" + resolved "https://registry.yarnpkg.com/use-debounce/-/use-debounce-10.0.1.tgz#adc42e7f7b08a237f5bbf0ea6cadee5813863cdc" + integrity sha512-0uUXjOfm44e6z4LZ/woZvkM8FwV1wiuoB6xnrrOmeAEjRDDzTLQNRFtYHvqUsJdrz1X37j0rVGIVp144GLHGKg== + +use-latest-callback@^0.1.5: + version "0.1.11" + resolved "https://registry.yarnpkg.com/use-latest-callback/-/use-latest-callback-0.1.11.tgz#e073fcbba792cc95ac661d96bc13b6041956cfe1" + integrity sha512-8nhb73STSD/z3GTHklvNjL8F9wMOo0bj0AFnulpIYuFTm6aQlT3ZcNbXF2YurKImIY8+kpSFSDHZZyQmurGrhw== + +use-latest-callback@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/use-latest-callback/-/use-latest-callback-0.2.1.tgz#4d4e6a9e4817b13142834850dcfa8d24ca4569cf" + integrity sha512-QWlq8Is8BGWBf883QOEQP5HWYX/kMI+JTbJ5rdtvJLmXTIh9XoHIO3PQcmQl8BU44VKxow1kbQUHa6mQSMALDQ== + +util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +util.promisify@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee" + integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.2" + has-symbols "^1.0.1" + object.getownpropertydescriptors "^2.1.0" + +util@^0.12.5: + version "0.12.5" + resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc" + integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + which-typed-array "^1.1.2" + +utila@~0.4: + version "0.4.0" + resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" + integrity sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA== + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== + +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + +v8-to-istanbul@^8.1.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz#77b752fd3975e31bbcef938f85e9bd1c7a8d60ed" + integrity sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.1" + convert-source-map "^1.6.0" + source-map "^0.7.3" + +vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== + +vlq@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/vlq/-/vlq-1.0.1.tgz#c003f6e7c0b4c1edd623fd6ee50bbc0d6a1de468" + integrity sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w== + +w3c-hr-time@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" + integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== + dependencies: + browser-process-hrtime "^1.0.0" + +w3c-xmlserializer@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a" + integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA== + dependencies: + xml-name-validator "^3.0.0" + +walker@^1.0.7: + version "1.0.8" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" + integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== + dependencies: + makeerror "1.0.12" + +warn-once@0.1.1, warn-once@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/warn-once/-/warn-once-0.1.1.tgz#952088f4fb56896e73fd4e6a3767272a3fccce43" + integrity sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q== + +watchpack@^2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.1.tgz#29308f2cac150fa8e4c92f90e0ec954a9fed7fff" + integrity sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg== + dependencies: + glob-to-regexp "^0.4.1" + graceful-fs "^4.1.2" + +wbuf@^1.1.0, wbuf@^1.7.3: + version "1.7.3" + resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df" + integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== + dependencies: + minimalistic-assert "^1.0.0" + +wcwidth@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== + dependencies: + defaults "^1.0.3" + +web-vitals@^2.1.0: + version "2.1.4" + resolved "https://registry.yarnpkg.com/web-vitals/-/web-vitals-2.1.4.tgz#76563175a475a5e835264d373704f9dde718290c" + integrity sha512-sVWcwhU5mX6crfI5Vd2dC4qchyTqxV8URinzt25XqVh+bHEPGH4C3NPrNionCP7Obx59wrYEbNlw4Z8sjALzZg== + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +webidl-conversions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" + integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== + +webidl-conversions@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" + integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== + +webidl-conversions@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" + integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== + +webpack-dev-middleware@^5.3.4: + version "5.3.4" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz#eb7b39281cbce10e104eb2b8bf2b63fce49a3517" + integrity sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q== + dependencies: + colorette "^2.0.10" + memfs "^3.4.3" + mime-types "^2.1.31" + range-parser "^1.2.1" + schema-utils "^4.0.0" + +webpack-dev-server@^4.6.0: + version "4.15.2" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.15.2.tgz#9e0c70a42a012560860adb186986da1248333173" + integrity sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g== + dependencies: + "@types/bonjour" "^3.5.9" + "@types/connect-history-api-fallback" "^1.3.5" + "@types/express" "^4.17.13" + "@types/serve-index" "^1.9.1" + "@types/serve-static" "^1.13.10" + "@types/sockjs" "^0.3.33" + "@types/ws" "^8.5.5" + ansi-html-community "^0.0.8" + bonjour-service "^1.0.11" + chokidar "^3.5.3" + colorette "^2.0.10" + compression "^1.7.4" + connect-history-api-fallback "^2.0.0" + default-gateway "^6.0.3" + express "^4.17.3" + graceful-fs "^4.2.6" + html-entities "^2.3.2" + http-proxy-middleware "^2.0.3" + ipaddr.js "^2.0.1" + launch-editor "^2.6.0" + open "^8.0.9" + p-retry "^4.5.0" + rimraf "^3.0.2" + schema-utils "^4.0.0" + selfsigned "^2.1.1" + serve-index "^1.9.1" + sockjs "^0.3.24" + spdy "^4.0.2" + webpack-dev-middleware "^5.3.4" + ws "^8.13.0" + +webpack-manifest-plugin@^4.0.2: + version "4.1.1" + resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz#10f8dbf4714ff93a215d5a45bcc416d80506f94f" + integrity sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow== + dependencies: + tapable "^2.0.0" + webpack-sources "^2.2.0" + +webpack-sources@^1.4.3: + version "1.4.3" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" + integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ== + dependencies: + source-list-map "^2.0.0" + source-map "~0.6.1" + +webpack-sources@^2.2.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-2.3.1.tgz#570de0af163949fe272233c2cefe1b56f74511fd" + integrity sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA== + dependencies: + source-list-map "^2.0.1" + source-map "^0.6.1" + +webpack-sources@^3.2.3: + version "3.2.3" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" + integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== + +webpack@^5.64.4: + version "5.93.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.93.0.tgz#2e89ec7035579bdfba9760d26c63ac5c3462a5e5" + integrity sha512-Y0m5oEY1LRuwly578VqluorkXbvXKh7U3rLoQCEO04M97ScRr44afGVkI0FQFsXzysk5OgFAxjZAb9rsGQVihA== + dependencies: + "@types/eslint-scope" "^3.7.3" + "@types/estree" "^1.0.5" + "@webassemblyjs/ast" "^1.12.1" + "@webassemblyjs/wasm-edit" "^1.12.1" + "@webassemblyjs/wasm-parser" "^1.12.1" + acorn "^8.7.1" + acorn-import-attributes "^1.9.5" + browserslist "^4.21.10" + chrome-trace-event "^1.0.2" + enhanced-resolve "^5.17.0" + es-module-lexer "^1.2.1" + eslint-scope "5.1.1" + events "^3.2.0" + glob-to-regexp "^0.4.1" + graceful-fs "^4.2.11" + json-parse-even-better-errors "^2.3.1" + loader-runner "^4.2.0" + mime-types "^2.1.27" + neo-async "^2.6.2" + schema-utils "^3.2.0" + tapable "^2.1.1" + terser-webpack-plugin "^5.3.10" + watchpack "^2.4.1" + webpack-sources "^3.2.3" + +websocket-driver@>=0.5.1, websocket-driver@^0.7.4: + version "0.7.4" + resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760" + integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== + dependencies: + http-parser-js ">=0.5.1" + safe-buffer ">=5.1.0" + websocket-extensions ">=0.1.1" + +websocket-extensions@>=0.1.1: + version "0.1.4" + resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" + integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== + +whatwg-encoding@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" + integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== + dependencies: + iconv-lite "0.4.24" + +whatwg-fetch@^3.0.0, whatwg-fetch@^3.6.2: + version "3.6.20" + resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz#580ce6d791facec91d37c72890995a0b48d31c70" + integrity sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg== + +whatwg-mimetype@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" + integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== + +whatwg-url-without-unicode@8.0.0-3: + version "8.0.0-3" + resolved "https://registry.yarnpkg.com/whatwg-url-without-unicode/-/whatwg-url-without-unicode-8.0.0-3.tgz#ab6df4bf6caaa6c85a59f6e82c026151d4bb376b" + integrity sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig== + dependencies: + buffer "^5.4.3" + punycode "^2.1.1" + webidl-conversions "^5.0.0" + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +whatwg-url@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" + integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" + +whatwg-url@^8.0.0, whatwg-url@^8.5.0: + version "8.7.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77" + integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg== + dependencies: + lodash "^4.7.0" + tr46 "^2.1.0" + webidl-conversions "^6.1.0" + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + dependencies: + is-bigint "^1.0.1" + is-boolean-object "^1.1.0" + is-number-object "^1.0.4" + is-string "^1.0.5" + is-symbol "^1.0.3" + +which-builtin-type@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.1.3.tgz#b1b8443707cc58b6e9bf98d32110ff0c2cbd029b" + integrity sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw== + dependencies: + function.prototype.name "^1.1.5" + has-tostringtag "^1.0.0" + is-async-function "^2.0.0" + is-date-object "^1.0.5" + is-finalizationregistry "^1.0.2" + is-generator-function "^1.0.10" + is-regex "^1.1.4" + is-weakref "^1.0.2" + isarray "^2.0.5" + which-boxed-primitive "^1.0.2" + which-collection "^1.0.1" + which-typed-array "^1.1.9" + +which-collection@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz#627ef76243920a107e7ce8e96191debe4b16c2a0" + integrity sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw== + dependencies: + is-map "^2.0.3" + is-set "^2.0.3" + is-weakmap "^2.0.2" + is-weakset "^2.0.3" + +which-module@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" + integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== + +which-typed-array@^1.1.13, which-typed-array@^1.1.14, which-typed-array@^1.1.15, which-typed-array@^1.1.2, which-typed-array@^1.1.9: + version "1.1.15" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.15.tgz#264859e9b11a649b388bfaaf4f767df1f779b38d" + integrity sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA== + dependencies: + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.2" + +which@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +wif@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/wif/-/wif-2.0.6.tgz#08d3f52056c66679299726fade0d432ae74b4704" + integrity sha512-HIanZn1zmduSF+BQhkE+YXIbEiH0xPr1012QbFEGB0xsKqJii0/SqJjyn8dFv6y36kOznMgMB+LGcbZTJ1xACQ== + dependencies: + bs58check "<3.0.0" + +word-wrap@^1.2.5, word-wrap@~1.2.3: + version "1.2.5" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" + integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== + +workbox-background-sync@6.6.1: + version "6.6.1" + resolved "https://registry.yarnpkg.com/workbox-background-sync/-/workbox-background-sync-6.6.1.tgz#08d603a33717ce663e718c30cc336f74909aff2f" + integrity sha512-trJd3ovpWCvzu4sW0E8rV3FUyIcC0W8G+AZ+VcqzzA890AsWZlUGOTSxIMmIHVusUw/FDq1HFWfy/kC/WTRqSg== + dependencies: + idb "^7.0.1" + workbox-core "6.6.1" + +workbox-broadcast-update@6.6.1: + version "6.6.1" + resolved "https://registry.yarnpkg.com/workbox-broadcast-update/-/workbox-broadcast-update-6.6.1.tgz#0fad9454cf8e4ace0c293e5617c64c75d8a8c61e" + integrity sha512-fBhffRdaANdeQ1V8s692R9l/gzvjjRtydBOvR6WCSB0BNE2BacA29Z4r9/RHd9KaXCPl6JTdI9q0bR25YKP8TQ== + dependencies: + workbox-core "6.6.1" + +workbox-build@6.6.1: + version "6.6.1" + resolved "https://registry.yarnpkg.com/workbox-build/-/workbox-build-6.6.1.tgz#6010e9ce550910156761448f2dbea8cfcf759cb0" + integrity sha512-INPgDx6aRycAugUixbKgiEQBWD0MPZqU5r0jyr24CehvNuLPSXp/wGOpdRJmts656lNiXwqV7dC2nzyrzWEDnw== + dependencies: + "@apideck/better-ajv-errors" "^0.3.1" + "@babel/core" "^7.11.1" + "@babel/preset-env" "^7.11.0" + "@babel/runtime" "^7.11.2" + "@rollup/plugin-babel" "^5.2.0" + "@rollup/plugin-node-resolve" "^11.2.1" + "@rollup/plugin-replace" "^2.4.1" + "@surma/rollup-plugin-off-main-thread" "^2.2.3" + ajv "^8.6.0" + common-tags "^1.8.0" + fast-json-stable-stringify "^2.1.0" + fs-extra "^9.0.1" + glob "^7.1.6" + lodash "^4.17.20" + pretty-bytes "^5.3.0" + rollup "^2.43.1" + rollup-plugin-terser "^7.0.0" + source-map "^0.8.0-beta.0" + stringify-object "^3.3.0" + strip-comments "^2.0.1" + tempy "^0.6.0" + upath "^1.2.0" + workbox-background-sync "6.6.1" + workbox-broadcast-update "6.6.1" + workbox-cacheable-response "6.6.1" + workbox-core "6.6.1" + workbox-expiration "6.6.1" + workbox-google-analytics "6.6.1" + workbox-navigation-preload "6.6.1" + workbox-precaching "6.6.1" + workbox-range-requests "6.6.1" + workbox-recipes "6.6.1" + workbox-routing "6.6.1" + workbox-strategies "6.6.1" + workbox-streams "6.6.1" + workbox-sw "6.6.1" + workbox-window "6.6.1" + +workbox-cacheable-response@6.6.1: + version "6.6.1" + resolved "https://registry.yarnpkg.com/workbox-cacheable-response/-/workbox-cacheable-response-6.6.1.tgz#284c2b86be3f4fd191970ace8c8e99797bcf58e9" + integrity sha512-85LY4veT2CnTCDxaVG7ft3NKaFbH6i4urZXgLiU4AiwvKqS2ChL6/eILiGRYXfZ6gAwDnh5RkuDbr/GMS4KSag== + dependencies: + workbox-core "6.6.1" + +workbox-core@6.6.1: + version "6.6.1" + resolved "https://registry.yarnpkg.com/workbox-core/-/workbox-core-6.6.1.tgz#7184776d4134c5ed2f086878c882728fc9084265" + integrity sha512-ZrGBXjjaJLqzVothoE12qTbVnOAjFrHDXpZe7coCb6q65qI/59rDLwuFMO4PcZ7jcbxY+0+NhUVztzR/CbjEFw== + +workbox-expiration@6.6.1: + version "6.6.1" + resolved "https://registry.yarnpkg.com/workbox-expiration/-/workbox-expiration-6.6.1.tgz#a841fa36676104426dbfb9da1ef6a630b4f93739" + integrity sha512-qFiNeeINndiOxaCrd2DeL1Xh1RFug3JonzjxUHc5WkvkD2u5abY3gZL1xSUNt3vZKsFFGGORItSjVTVnWAZO4A== + dependencies: + idb "^7.0.1" + workbox-core "6.6.1" + +workbox-google-analytics@6.6.1: + version "6.6.1" + resolved "https://registry.yarnpkg.com/workbox-google-analytics/-/workbox-google-analytics-6.6.1.tgz#a07a6655ab33d89d1b0b0a935ffa5dea88618c5d" + integrity sha512-1TjSvbFSLmkpqLcBsF7FuGqqeDsf+uAXO/pjiINQKg3b1GN0nBngnxLcXDYo1n/XxK4N7RaRrpRlkwjY/3ocuA== + dependencies: + workbox-background-sync "6.6.1" + workbox-core "6.6.1" + workbox-routing "6.6.1" + workbox-strategies "6.6.1" + +workbox-navigation-preload@6.6.1: + version "6.6.1" + resolved "https://registry.yarnpkg.com/workbox-navigation-preload/-/workbox-navigation-preload-6.6.1.tgz#61a34fe125558dd88cf09237f11bd966504ea059" + integrity sha512-DQCZowCecO+wRoIxJI2V6bXWK6/53ff+hEXLGlQL4Rp9ZaPDLrgV/32nxwWIP7QpWDkVEtllTAK5h6cnhxNxDA== + dependencies: + workbox-core "6.6.1" + +workbox-precaching@6.6.1: + version "6.6.1" + resolved "https://registry.yarnpkg.com/workbox-precaching/-/workbox-precaching-6.6.1.tgz#dedeeba10a2d163d990bf99f1c2066ac0d1a19e2" + integrity sha512-K4znSJ7IKxCnCYEdhNkMr7X1kNh8cz+mFgx9v5jFdz1MfI84pq8C2zG+oAoeE5kFrUf7YkT5x4uLWBNg0DVZ5A== + dependencies: + workbox-core "6.6.1" + workbox-routing "6.6.1" + workbox-strategies "6.6.1" + +workbox-range-requests@6.6.1: + version "6.6.1" + resolved "https://registry.yarnpkg.com/workbox-range-requests/-/workbox-range-requests-6.6.1.tgz#ddaf7e73af11d362fbb2f136a9063a4c7f507a39" + integrity sha512-4BDzk28govqzg2ZpX0IFkthdRmCKgAKreontYRC5YsAPB2jDtPNxqx3WtTXgHw1NZalXpcH/E4LqUa9+2xbv1g== + dependencies: + workbox-core "6.6.1" + +workbox-recipes@6.6.1: + version "6.6.1" + resolved "https://registry.yarnpkg.com/workbox-recipes/-/workbox-recipes-6.6.1.tgz#ea70d2b2b0b0bce8de0a9d94f274d4a688e69fae" + integrity sha512-/oy8vCSzromXokDA+X+VgpeZJvtuf8SkQ8KL0xmRivMgJZrjwM3c2tpKTJn6PZA6TsbxGs3Sc7KwMoZVamcV2g== + dependencies: + workbox-cacheable-response "6.6.1" + workbox-core "6.6.1" + workbox-expiration "6.6.1" + workbox-precaching "6.6.1" + workbox-routing "6.6.1" + workbox-strategies "6.6.1" + +workbox-routing@6.6.1: + version "6.6.1" + resolved "https://registry.yarnpkg.com/workbox-routing/-/workbox-routing-6.6.1.tgz#cba9a1c7e0d1ea11e24b6f8c518840efdc94f581" + integrity sha512-j4ohlQvfpVdoR8vDYxTY9rA9VvxTHogkIDwGdJ+rb2VRZQ5vt1CWwUUZBeD/WGFAni12jD1HlMXvJ8JS7aBWTg== + dependencies: + workbox-core "6.6.1" + +workbox-strategies@6.6.1: + version "6.6.1" + resolved "https://registry.yarnpkg.com/workbox-strategies/-/workbox-strategies-6.6.1.tgz#38d0f0fbdddba97bd92e0c6418d0b1a2ccd5b8bf" + integrity sha512-WQLXkRnsk4L81fVPkkgon1rZNxnpdO5LsO+ws7tYBC6QQQFJVI6v98klrJEjFtZwzw/mB/HT5yVp7CcX0O+mrw== + dependencies: + workbox-core "6.6.1" + +workbox-streams@6.6.1: + version "6.6.1" + resolved "https://registry.yarnpkg.com/workbox-streams/-/workbox-streams-6.6.1.tgz#b2f7ba7b315c27a6e3a96a476593f99c5d227d26" + integrity sha512-maKG65FUq9e4BLotSKWSTzeF0sgctQdYyTMq529piEN24Dlu9b6WhrAfRpHdCncRS89Zi2QVpW5V33NX8PgH3Q== + dependencies: + workbox-core "6.6.1" + workbox-routing "6.6.1" + +workbox-sw@6.6.1: + version "6.6.1" + resolved "https://registry.yarnpkg.com/workbox-sw/-/workbox-sw-6.6.1.tgz#d4c4ca3125088e8b9fd7a748ed537fa0247bd72c" + integrity sha512-R7whwjvU2abHH/lR6kQTTXLHDFU2izht9kJOvBRYK65FbwutT4VvnUAJIgHvfWZ/fokrOPhfoWYoPCMpSgUKHQ== + +workbox-webpack-plugin@^6.4.1: + version "6.6.1" + resolved "https://registry.yarnpkg.com/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.1.tgz#4f81cc1ad4e5d2cd7477a86ba83c84ee2d187531" + integrity sha512-zpZ+ExFj9NmiI66cFEApyjk7hGsfJ1YMOaLXGXBoZf0v7Iu6hL0ZBe+83mnDq3YYWAfA3fnyFejritjOHkFcrA== + dependencies: + fast-json-stable-stringify "^2.1.0" + pretty-bytes "^5.4.1" + upath "^1.2.0" + webpack-sources "^1.4.3" + workbox-build "6.6.1" + +workbox-window@6.6.1: + version "6.6.1" + resolved "https://registry.yarnpkg.com/workbox-window/-/workbox-window-6.6.1.tgz#f22a394cbac36240d0dadcbdebc35f711bb7b89e" + integrity sha512-wil4nwOY58nTdCvif/KEZjQ2NP8uk3gGeRNy2jPBbzypU4BT4D9L8xiwbmDBpZlSgJd2xsT9FvSNU0gsxV51JQ== + dependencies: + "@types/trusted-types" "^2.0.2" + workbox-core "6.6.1" + +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" + integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== + dependencies: + ansi-styles "^6.1.0" + string-width "^5.0.1" + strip-ansi "^7.0.1" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +write-file-atomic@^2.3.0: + version "2.4.3" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" + integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + signal-exit "^3.0.2" + +write-file-atomic@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" + integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== + dependencies: + imurmurhash "^0.1.4" + is-typedarray "^1.0.0" + signal-exit "^3.0.2" + typedarray-to-buffer "^3.1.5" + +ws@7.4.6: + version "7.4.6" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c" + integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A== + +ws@^6.2.2: + version "6.2.3" + resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.3.tgz#ccc96e4add5fd6fedbc491903075c85c5a11d9ee" + integrity sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA== + dependencies: + async-limiter "~1.0.0" + +ws@^7, ws@^7.4.6, ws@^7.5.1: + version "7.5.10" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.10.tgz#58b5c20dc281633f6c19113f39b349bd8bd558d9" + integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ== + +ws@^8.13.0: + version "8.18.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc" + integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw== + +xml-name-validator@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" + integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== + +xmlchars@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" + integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== + +xstream@^11.14.0: + version "11.14.0" + resolved "https://registry.yarnpkg.com/xstream/-/xstream-11.14.0.tgz#2c071d26b18310523b6877e86b4e54df068a9ae5" + integrity sha512-1bLb+kKKtKPbgTK6i/BaoAn03g47PpFstlbe1BA+y3pNS/LfvcaghS5BFf9+EE1J+KwSQsEpfJvFN5GqFtiNmw== + dependencies: + globalthis "^1.0.1" + symbol-observable "^2.0.3" + +xtend@~4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + +y18n@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" + integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + +yaml@^1.10.0, yaml@^1.10.2, yaml@^1.7.2: + version "1.10.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + +yaml@^2.2.1, yaml@^2.2.2: + version "2.5.0" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.5.0.tgz#c6165a721cf8000e91c36490a41d7be25176cf5d" + integrity sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw== + +yaml@^2.3.4: + version "2.4.5" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.4.5.tgz#60630b206dd6d84df97003d33fc1ddf6296cca5e" + integrity sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg== + +yargs-parser@^18.1.2: + version "18.1.3" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" + integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + +yargs-parser@^20.2.2: + version "20.2.9" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs-parser@^21.1.1: + version "21.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== + +yargs@^15.1.0: + version "15.4.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" + integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== + dependencies: + cliui "^6.0.0" + decamelize "^1.2.0" + find-up "^4.1.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^4.2.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^18.1.2" + +yargs@^16.1.1, yargs@^16.2.0: + version "16.2.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + +yargs@^17.6.2: + version "17.7.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" + integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== + dependencies: + cliui "^8.0.1" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.1.1" + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +yocto-queue@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.1.1.tgz#fef65ce3ac9f8a32ceac5a634f74e17e5b232110" + integrity sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g== + +zod@^3.22.4: + version "3.23.8" + resolved "https://registry.yarnpkg.com/zod/-/zod-3.23.8.tgz#e37b957b5d52079769fb8097099b592f0ef4067d" + integrity sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==