├── .gitignore ├── .parcelrc ├── .postcssrc ├── LICENSE.txt ├── PrivacyPolicy.md ├── README.md ├── assets ├── images │ ├── 128.png │ ├── 16.png │ ├── 32.png │ ├── 48.png │ ├── about-hover.svg │ ├── about.svg │ ├── analysis-hover.svg │ ├── analysis.svg │ ├── chain-logo │ │ ├── ARBISCAN.svg │ │ ├── AVASCAN.svg │ │ ├── BSC.svg │ │ ├── Fantom.svg │ │ ├── Optimism.svg │ │ ├── bscscan-logo-circle.svg │ │ ├── cronoscan.svg │ │ ├── ethereum.svg │ │ ├── etherscan-logo-circle.svg │ │ └── polygonscan.svg │ ├── flowchart-hover.svg │ └── flowchart.svg └── manifest.json ├── doc └── images │ └── screenshot.gif ├── package.json ├── src ├── ChainIcon.tsx ├── app.tsx ├── button.tsx ├── content.tsx ├── popup.css ├── popup.html ├── popup.tsx └── utils.ts ├── tailwind.config.js ├── tsconfig.json ├── typings ├── images.d.ts └── index.d.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /dist 13 | .cache 14 | .parcel-cache 15 | 16 | # misc 17 | .DS_Store 18 | .env.local 19 | .env.development.local 20 | .env.test.local 21 | .env.production.local 22 | 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | -------------------------------------------------------------------------------- /.parcelrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@parcel/config-default", 3 | "transformers": { 4 | "*.svg": [ 5 | "...", 6 | "@parcel/transformer-svg-react" 7 | ], 8 | "*.{ts,tsx}": [ 9 | "@parcel/transformer-typescript-tsc" 10 | ] 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /.postcssrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": { 3 | "tailwindcss": {} 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 EigenPhi.io 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /PrivacyPolicy.md: -------------------------------------------------------------------------------- 1 | ## Privacy Policy 2 | 3 | Effective date: September 28th, 2022 4 | 5 | EigenTx values your privacy. In this Privacy Policy, we describe what and how we collect, use and disclose information/data that we obtain about visitors/users to our EigenTx browser extension. 6 | 7 | **What Information do we Collect?** 8 | 9 | We will not collect, store, or use any user's data. 10 | 11 | We declare that your data is: 12 | 13 | - Not being sold/shared to third parties, outside of the [approved use cases](https://developer.chrome.com/docs/webstore/program_policies/#limited_use). 14 | 15 | - Not being used or transferred for purposes that are unrelated to the item's core functionality. 16 | 17 | - Not being used or transferred to determine creditworthiness or for lending purposes. 18 | 19 | **Disclosure** 20 | 21 | EigenTx is an open-sourced project. The entire code can be read and audited by anyone with any purpose at any time. 22 | 23 | **Third Party Analytics** 24 | 25 | We use automated analytics devices and applications, such as Google Analytics, to evaluate the usage of our services. We use these tools to help us improve our services, performance, and user experiences. These entities may use cookies and other tracking technologies to perform their services. We do not share your personal information with these third parties. 26 | 27 | **Changes To Our Privacy Policy** 28 | 29 | Any changes we make to our Privacy Policy in the future will be posted on this page. Please check back to see any updates or changes to our Privacy Policy. 30 | 31 | **Contact Us** 32 | 33 | If you have questions about the privacy aspects of our Site or Services or would like to make a complaint, please contact us at https://eigenphi.com 34 | or via git issue. 35 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # EigenTx extension - Add EigenTx transfer flow chart to your Etherscan transaction page 2 | 3 | ## Current verion 1.5 4 | Install from chrome Store: https://chrome.google.com/webstore/detail/eigentx/gmjkhhheaknfaekapfiedhohdilpmgci 5 | 6 | ## Version change log 7 | 8 | ### version 1.5 9 | 26/10/2022 10 | EigenTx extension version 1.5 released! 11 | - Add transaction description 12 | - Arbitrage 13 | - Sandwich 14 | - Liquidation 15 | - Fix bugs 16 | 17 | ### version 1.4 18 | 22/09/2022 19 | EigenTx extension version 1.4 released! 20 | - Add support of Chains 21 | - Ethereum (https://etherscan.io) 22 | - BSC (https://bscscan.com) 23 | - Avalanche (C chain, https://snowtrace.io) 24 | - Polygon (https://polygonscan.com) 25 | - Arbitrum (https://arbiscan.io) 26 | - Optimism (https://optimistic.etherscan.io) 27 | - Fantom (https://ftmscan.com) 28 | - Cronos (https://cronoscan.com) 29 | - Relayout user interface 30 | - Fix bugs 31 | 32 | ## Readme 33 | 34 | EigenTx is a public-facing on-chain transaction visualization tool on various blockchains. EigenTx aims to help you quickly understand the transfer flow details of any on-chain transactions. 35 | 36 | In version 1.5, the extension loads the description of the current transaction from the EigenPhi database. More information could help you identify and understand "arbitrage," "sandwich," and “liquidation" types of transactions. 37 | 38 | In version 1.4, the extension supports users to load detailed token flow graphs on Etherscan (and many blockchain explorers, check details below) transaction pages based on any selected transaction, which will give you more insights into what the transaction does and how the transaction is operated. 39 | 40 | By clicking "Load Transfer Flow Chart", a chart will be loaded automatically under "value section" of the transaction page, which visualizes the "tokens transferred" section. 41 | - Ellipse stands for address of blockchains; 42 | - Arrows between nodes stand for token transfers; 43 | - More legends, please visit https://tx.eigenphi.io/; 44 | - Each node and line can be clicked to view details; 45 | 46 | Also, if you want to check more information, you can be directed to the full analyze tool page by clicking "Open in EigenTx" to view more. 47 | 48 | We support explorers of blockchains, including : 49 | - Ethereum (https://etherscan.io) 50 | - BSC (https://bscscan.com) 51 | - Avalanche (C chain, https://snowtrace.io) 52 | - Polygon (https://polygonscan.com) 53 | - Arbitrum (https://arbiscan.io) 54 | - Optimism (https://optimistic.etherscan.io) 55 | - Fantom (https://ftmscan.com) 56 | - Cronos (https://cronoscan.com) 57 | 58 | EigenTx is an open-sourced project, view the source code in GitHub repository by clicking the "About EigenTx Extension" button.You can find our Privacy Policy Terms at https://github.com/eigenphi/EigenTx-extension/blob/main/PrivacyPolicy.md 59 | 60 | If you need any help, please contact us via twitter (https://twitter.com/eigenphi) . 61 | 62 | 63 | Screenshot: 64 | 65 | ![screenshot](doc/images/screenshot.gif) 66 | 67 | ## License info 68 | 69 | MIT (See LICENSE.txt file for details). 70 | -------------------------------------------------------------------------------- /assets/images/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenphi/EigenTx-extension/b06d008995e6de7846fb138351d12239e8dfd877/assets/images/128.png -------------------------------------------------------------------------------- /assets/images/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenphi/EigenTx-extension/b06d008995e6de7846fb138351d12239e8dfd877/assets/images/16.png -------------------------------------------------------------------------------- /assets/images/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenphi/EigenTx-extension/b06d008995e6de7846fb138351d12239e8dfd877/assets/images/32.png -------------------------------------------------------------------------------- /assets/images/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenphi/EigenTx-extension/b06d008995e6de7846fb138351d12239e8dfd877/assets/images/48.png -------------------------------------------------------------------------------- /assets/images/about-hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/images/about.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/images/analysis-hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/images/analysis.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/images/chain-logo/ARBISCAN.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | Arbitrum Logo 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /assets/images/chain-logo/AVASCAN.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 10 | 11 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /assets/images/chain-logo/BSC.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | BNB,_native_cryptocurrency_for_the_Binance_Smart_Chain 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /assets/images/chain-logo/Fantom.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | Fantom price today, FTM to USD live, marketcap and chart CoinMarketCa 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /assets/images/chain-logo/Optimism.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | Optimism Logo 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /assets/images/chain-logo/bscscan-logo-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/images/chain-logo/cronoscan.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | Cronos 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /assets/images/chain-logo/etherscan-logo-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/images/chain-logo/polygonscan.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/images/flowchart-hover.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/images/flowchart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "EigenTx", 3 | "description": "Transaction visualization tool for various chains, which generates token flow chart to give you more insights into the transaction", 4 | "version": "1.5.8", 5 | "manifest_version": 3, 6 | "permissions": ["tabs"], 7 | "content_scripts": [ 8 | { 9 | "matches": [ 10 | "https://etherscan.io/tx/*", 11 | "https://bscscan.com/tx/*", 12 | "https://www.bscscan.com/tx/*", 13 | "https://snowtrace.io/tx/*", 14 | "https://polygonscan.com/tx/*", 15 | "https://arbiscan.io/tx/*", 16 | "https://optimistic.etherscan.io/tx/*", 17 | "https://cronoscan.com/tx/*", 18 | "https://ftmscan.com/tx/*" 19 | ], 20 | "js": ["content.js"] 21 | } 22 | ], 23 | "host_permissions": [ 24 | "*://etherscan.io/*", 25 | "*://www.etherscan.io/*", 26 | "*://storage.googleapis.com/*", 27 | "*://us-west1-arbitragescan.cloudfunctions.net/*", 28 | "*://bscscan.com/*", 29 | "*://www.bscscan.com/*", 30 | "*://snowtrace.io/*", 31 | "*://polygonscan.com/*", 32 | "*://arbiscan.io/*", 33 | "*://optimistic.etherscan.io/*", 34 | "*://cronoscan.com/*", 35 | "*://ftmscan.com/*" 36 | ], 37 | "action": { 38 | "default_popup": "popup.html", 39 | "default_icon": "/images/32.png" 40 | }, 41 | "icons": { 42 | "16": "/images/16.png", 43 | "32": "/images/32.png", 44 | "48": "/images/48.png", 45 | "128": "/images/128.png" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /doc/images/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenphi/EigenTx-extension/b06d008995e6de7846fb138351d12239e8dfd877/doc/images/screenshot.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "EigenTx", 3 | "version": "1.5.8", 4 | "description": "Transaction visualization tool for various chains, which generates token flow chart to give you more insights into the transaction", 5 | "repository": "git@github.com:eigenphi/EigenTx-extension.git", 6 | "author": "EigenPhi", 7 | "license": "MIT", 8 | "scripts": { 9 | "watch": "cp -rf ./assets/* ./dist/ && parcel watch ./src/popup.html", 10 | "build": "rm -rf ./dist && mkdir ./dist && cp -rf ./assets/* ./dist/ && parcel build --no-optimize --no-source-maps ./src/popup.html ./src/content.tsx" 11 | }, 12 | "devDependencies": { 13 | "@parcel/transformer-svg-react": "^2.8.3", 14 | "@parcel/transformer-typescript-tsc": "^2.8.3", 15 | "@types/react": "^18.0.27", 16 | "@types/react-dom": "^18.0.10", 17 | "@types/chrome": "^0.0.210", 18 | "autoprefixer": "^10.4.13", 19 | "parcel": "^2.8.3", 20 | "postcss": "^8.4.21", 21 | "process": "^0.11.10", 22 | "tailwindcss": "^3.2.4", 23 | "typescript": "^4.9.4" 24 | }, 25 | "dependencies": { 26 | "react": "^18.2.0", 27 | "react-dom": "^18.2.0" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/ChainIcon.tsx: -------------------------------------------------------------------------------- 1 | export function ChainIcon({ 2 | icon, 3 | title, 4 | href, 5 | }: { 6 | icon: string; 7 | title?: string; 8 | href: string; 9 | }) { 10 | return ( 11 | 17 | 18 | 19 | ); 20 | } 21 | -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- 1 | import ReactDOM from "react-dom"; 2 | import React, { useEffect } from "react"; 3 | import { ChainIcon } from "./ChainIcon"; 4 | 5 | export function App() { 6 | useEffect(() => { 7 | chrome.tabs?.query?.({ active: true }, (tabs) => { 8 | const url = tabs[0].url; 9 | if (url) { 10 | const match = url.match(/tx\/(0x[0-9a-fA-F]+)/); 11 | if (match) { 12 | const txHash = match[1]; 13 | (document.getElementById("txHash") as HTMLInputElement).value = 14 | txHash; 15 | } 16 | } 17 | }); 18 | }, []); 19 | 20 | return ( 21 |
22 |
23 |
24 | 30 | 45 |
46 |
47 | 48 |
49 | 54 | 59 | 64 | 69 | 74 | 79 | 84 | 89 |
90 |
91 | 96 | Privacy Policy 97 | 98 | 103 | About EigenTx 104 | 105 |
106 |
107 | ); 108 | } 109 | -------------------------------------------------------------------------------- /src/button.tsx: -------------------------------------------------------------------------------- 1 | export function Button({ 2 | icon, 3 | iconhover, 4 | children, 5 | onClick, 6 | }: { 7 | icon?: string; 8 | iconhover?: string; 9 | children?: React.ReactNode; 10 | onClick?: React.MouseEventHandler; 11 | }) { 12 | return ( 13 | 17 | 18 | 22 | {children} 23 | 24 | ); 25 | } 26 | -------------------------------------------------------------------------------- /src/content.tsx: -------------------------------------------------------------------------------- 1 | import ReactDOM from "react-dom"; 2 | import React from "react"; 3 | // 监控页面中的ETH交易哈希 4 | const monitorTxHash = () => { 5 | // 此处假设交易哈希的正则表达式为/0x[a-fA-F0-9]{64}/ 6 | const txHashRegex = /0x[a-fA-F0-9]{64}/g; 7 | const txHashElements = document.getElementsByTagName("*"); 8 | 9 | // 遍历所有元素,查找包含交易哈希的文本节点 10 | for (const element of txHashElements) { 11 | for (const node of element.childNodes) { 12 | if (node.nodeType === Node.TEXT_NODE) { 13 | const text = node.textContent; 14 | const matches = text.match(txHashRegex); 15 | 16 | // 如果匹配到交易哈希,则为其创建链接 17 | if (matches) { 18 | matches.forEach((txHash) => { 19 | addLink(node as Text); 20 | }); 21 | } 22 | } 23 | } 24 | } 25 | }; 26 | 27 | // 在页面加载完成后开始监控交易哈希 28 | window.addEventListener("load", monitorTxHash); 29 | 30 | const createLink = (txHash: string): HTMLAnchorElement => { 31 | const stage = ( 32 |
33 |
34 |
35 |
36 | Transaction Description: 37 |
38 |
39 | 40 | 45 | Open In EigenPhi.io 46 | 47 |
48 |
49 |
50 | 51 | Open In EigenTx 52 | 53 |
54 | 55 |
56 | 64 |
65 | EigenTxChart Loading... 66 |
67 |
68 |
69 |
70 | ); 71 | 72 | const wrap = document.createElement("div"); 73 | ReactDOM.hydrate(stage, wrap); 74 | const link = document.createElement("a"); 75 | link.href = "javascript:void(0)"; 76 | link.textContent = " Load Transfer Flow Chart"; 77 | 78 | link.onclick = function () { 79 | function amount(val, digits = 6) { 80 | const value = typeof val === "string" ? parseFloat(val) : val; 81 | return value || value === 0 82 | ? value.toLocaleString("zh-CN", { 83 | minimumFractionDigits: digits ?? 2, 84 | maximumFractionDigits: digits ?? 2, 85 | }) 86 | : null; 87 | } 88 | var chain = "ethereum"; 89 | if (document.URL.includes("bscscan.com")) { 90 | chain = "bsc"; 91 | } 92 | 93 | if (!document.querySelector(".eigentx-stage")) { 94 | // console.log(2, txHash) 95 | 96 | const injectedDom = 97 | document.querySelectorAll("#ContentPlaceHolder1_maintable .card")[0] || 98 | document.querySelectorAll("#myTabContent .tab-pane")[0]; 99 | 100 | if (injectedDom) { 101 | const stage = document.createElement("div"); 102 | stage.innerHTML = wrap.innerHTML; 103 | stage.firstElementChild.className = "eigentx-stage"; 104 | injectedDom.appendChild(stage.firstElementChild); 105 | 106 | document.getElementById("eigentx-pic").onload = function () { 107 | document.getElementById("eigentx-loading").style.display = "none"; 108 | }; 109 | 110 | function addDesc(text, type) { 111 | const linkMap = { 112 | unknown: `https://eigenphi.io/mev/eigentx/${txHash}`, 113 | arbitrage: `https://eigenphi.io/mev/${chain}/tx/${txHash}`, 114 | sandwich: `https://eigenphi.io/mev/${chain}/tx/${txHash}`, 115 | liquidation: `https://eigenphi.io/mev/${chain}/liquidation/tx/${txHash}`, 116 | }; 117 | document.getElementById("eigentx-desc").innerHTML = text; 118 | [].slice 119 | .call(document.getElementsByClassName("eigentx-link")) 120 | .forEach((el) => { 121 | el.setAttribute("href", linkMap[type.toLowerCase()]); 122 | }); 123 | } 124 | 125 | fetch( 126 | `https://storage.googleapis.com/eigenphi-${chain}-tx/${txHash}` 127 | ).then((resp) => { 128 | resp 129 | .json() 130 | .then((json) => { 131 | if (json && json.version === "v1.0.0") { 132 | } else { 133 | if (json.summary) { 134 | const txType = json.summary.types[0]; 135 | if (txType === "Arbitrage") { 136 | addDesc( 137 | `Arbitrage Transaction (profit: ≈$${amount( 138 | json.summary.profit, 139 | 2 140 | )}; via ${json.summary.tokenCount} tokens and ${ 141 | json.summary.venueCount 142 | } venues) `, 143 | txType 144 | ); 145 | } else if (txType === "Liquidation") { 146 | Promise.all([ 147 | fetch(` 148 | https://us-west1-arbitragescan.cloudfunctions.net/dbview?path=/alpha/${chain}/labels/${json.summary.liquidationDetails[0].liquidatedAsset.tokenAddress} 149 | `), 150 | fetch(` 151 | https://us-west1-arbitragescan.cloudfunctions.net/dbview?path=/alpha/${chain}/labels/${json.summary.liquidationDetails[0].debtAsset.tokenAddress} 152 | `), 153 | ]).then( 154 | ([liquidatedTokenLabelResp, debtTokenLabelResp]) => { 155 | Promise.all([ 156 | liquidatedTokenLabelResp.json(), 157 | debtTokenLabelResp.json(), 158 | ]).then( 159 | ([liquidatedTokenLabelJson, debtTokenLabelJson]) => { 160 | addDesc( 161 | `Liquidation Transaction (≈$${amount( 162 | json.summary.liquidationDetails[0] 163 | .liquidatedAsset.tokenVolume, 164 | 2 165 | )} ${ 166 | liquidatedTokenLabelJson.token.symbol 167 | } Liquidated, and ≈$${amount( 168 | json.summary.liquidationDetails[0].debtAsset 169 | .tokenVolume, 170 | 2 171 | )} ${debtTokenLabelJson.token.symbol} repaid at ${ 172 | json.summary.liquidationDetails[0].protocol.name 173 | }${ 174 | json.summary.liquidationDetails[0].protocol 175 | .protocolVersion 176 | }; profit: ≈$${amount( 177 | json.summary.profit, 178 | 2 179 | )}) `, 180 | txType 181 | ); 182 | } 183 | ); 184 | } 185 | ); 186 | } else if (txType === "PartialSandwich") { 187 | const commonPool = json.tokenFlows.find( 188 | (item) => item.tags && item.tags.includes("CommonTrader") 189 | ); 190 | Promise.all([ 191 | fetch( 192 | `https://storage.googleapis.com/eigenphi-${chain}-tx/${json.resultId}` 193 | ), 194 | fetch( 195 | `https://us-west1-arbitragescan.cloudfunctions.net/dbview?path=/alpha/${chain}/labels/${commonPool.address}`, 196 | { 197 | method: "GET", 198 | mode: "cors", 199 | } 200 | ), 201 | ]).then(([sandwichVirtualTxResp, commonLpLabelResp]) => { 202 | Promise.all([ 203 | sandwichVirtualTxResp.json(), 204 | commonLpLabelResp.json(), 205 | ]).then(([sandwichVirtualTxJson, labelJson]) => { 206 | const lpName = 207 | (labelJson && labelJson.lp && labelJson.lp.name) || 208 | "unknown"; 209 | 210 | addDesc( 211 | `Partial of Sandwich MEV (role: Attacker; profit: ≈$${amount( 212 | sandwichVirtualTxJson.summary.profit, 213 | 2 214 | )}; common-pool: ${lpName}) `, 215 | "sandwich" 216 | ); 217 | }); 218 | }); 219 | } else { 220 | addDesc("Not included in EigenPhi database. ", "unknown"); 221 | } 222 | } else { 223 | addDesc("Not included in EigenPhi database. ", "unknown"); 224 | } 225 | } 226 | }) 227 | .catch(() => { 228 | addDesc("Not included in EigenPhi database. ", "unknown"); 229 | }); 230 | }); 231 | 232 | const eigenTxStyle = document.createElement("style"); 233 | 234 | eigenTxStyle.innerHTML = ` 235 | .eigentx-stage { 236 | text-align:right; 237 | } 238 | .eigentx-openineigentx-wrap { 239 | padding: 20px 10px; 240 | text-align: right; 241 | } 242 | .eigentx-chart-pic { 243 | width: 100%; 244 | } 245 | .eigentx-loading-prompt { 246 | text-align: center; 247 | } 248 | `; 249 | 250 | injectedDom.scrollIntoView({ 251 | behavior: "smooth", 252 | block: "center", 253 | }); 254 | document.head.appendChild(eigenTxStyle); 255 | } 256 | } else { 257 | document.querySelector(".eigentx-stage")?.scrollIntoView({ 258 | behavior: "smooth", 259 | block: "center", 260 | }); 261 | } 262 | }; 263 | 264 | link.style.marginLeft = "10px"; 265 | 266 | const img = document.createElement("img"); 267 | img.style.height = "18px"; 268 | img.src = 269 | "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjY0MjYxMjI2NjU0IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjM0NzkiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMzIiIGhlaWdodD0iMzIiPjxwYXRoIGQ9Ik04NTguNDk3MTQ3IDc1MC41ODc3MDlhNDUuNDMxOTkzIDQ1LjQzMTk5MyAwIDEgMSA0NS40MzE5OTMtNDUuNDMxOTkzIDQ2LjcxMTc2NyA0Ni43MTE3NjcgMCAwIDEtMTMuNDM3NjMyIDMxLjk5NDM2MSA0Ny45OTE1NDEgNDcuOTkxNTQxIDAgMCAxLTMxLjk5NDM2MSAxMy40Mzc2MzJ6TTQ5NS4wNDEyMDYgOTU0LjcxMTczMmE0NS40MzE5OTMgNDUuNDMxOTkzIDAgMSAxIDQ1LjQzMTk5My00NS40MzE5OTMgNDUuNDMxOTkzIDQ1LjQzMTk5MyAwIDAgMS00NS40MzE5OTMgNDUuNDMxOTkzeiBtLTM0MS4wNTk4ODgtMjA0LjEyNDAyM2E0NS40MzE5OTMgNDUuNDMxOTkzIDAgMCAxIDAtOTAuODYzOTg1IDQ0Ljc5MjEwNSA0NC43OTIxMDUgMCAwIDEgNDUuNDMxOTkzIDQ1LjQzMTk5MiA0Ni4wNzE4OCA0Ni4wNzE4OCAwIDAgMS0xMi43OTc3NDUgMzEuOTk0MzYxIDQ3Ljk5MTU0MSA0Ny45OTE1NDEgMCAwIDEtMzIuNjM0MjQ4IDEzLjQzNzYzMnogbTcwMy44NzU5NDItMTU5LjMzMTkxOEExMTMuODk5OTI1IDExMy44OTk5MjUgMCAwIDAgNzQ0LjU5NzIyMiA3MjcuNTUxNzY5bC0xNzIuMTI5NjYyIDk4LjU0MjYzMmExMTEuOTgwMjYzIDExMS45ODAyNjMgMCAwIDAtMTUyLjI5MzE1OSAwTDI2NC42ODE4MDcgNzMxLjM5MTA5MmExMjIuODU4MzQ2IDEyMi44NTgzNDYgMCAwIDAgMC0yNi4yMzUzNzYgMTE0LjUzOTgxMiAxMTQuNTM5ODEyIDAgMCAwLTg1Ljc0NDg4OC0xMTEuOTgwMjYzIDExMy44OTk5MjUgMTEzLjg5OTkyNSAwIDAgMC0xMjcuOTc3NDQzIDYzLjk4ODcyMiAxMTIuNjIwMTUxIDExMi42MjAxNTEgMCAwIDAgMzUuODMzNjg0IDEzOC4yMTU2MzlBMTEzLjg5OTkyNSAxMTMuODk5OTI1IDAgMCAwIDIzMi42ODc0NDYgNzg5LjYyMDgyOWwxNTIuMjkzMTU4IDkzLjQyMzUzNGE4OS41ODQyMTEgODkuNTg0MjExIDAgMCAwLTMuODM5MzIzIDI2LjIzNTM3NiAxMTMuODk5OTI1IDExMy44OTk5MjUgMCAwIDAgMTgzLjY0NzYzMiA5MC44NjM5ODYgMTEzLjI2MDAzOCAxMTMuMjYwMDM4IDAgMCAwIDQwLjk1Mjc4Mi0xMTMuMjYwMDM4bDE3NS4zMjkwOTgtOTguNTQyNjMyYTExMy4yNjAwMzggMTEzLjI2MDAzOCAwIDEgMCA3Ny40MjYzNTQtMTk3LjA4NTI2NHogbS03MDMuODc1OTQyLTMxOS45NDM2MWE0NS40MzE5OTMgNDUuNDMxOTkzIDAgMSAxLTQ1LjQzMTk5MyA0OC42MzE0MjkgNDUuNDMxOTkzIDQ1LjQzMTk5MyAwIDAgMSA0NS40MzE5OTMtNDYuNzExNzY3eiBtMzYzLjQ1NTk0MS0yMDIuMjA0MzYxYTQ1LjQzMTk5MyA0NS40MzE5OTMgMCAxIDEtNDUuNDMxOTkzIDQ1LjQzMTk5MiA0NS40MzE5OTMgNDUuNDMxOTkzIDAgMCAxIDQ1LjQzMTk5My00NS40MzE5OTJ6IG0zNDEuMDU5ODg4IDIwNC4xMjQwMjNhNDUuNDMxOTkzIDQ1LjQzMTk5MyAwIDEgMS00NS40MzE5OTMgNDUuNDMxOTkyIDQ1LjQzMTk5MyA0NS40MzE5OTMgMCAwIDEgNDUuNDMxOTkzLTQ1LjQzMTk5MnogbS03MDMuODc1OTQyIDE1OS4zMzE5MThhMTEzLjg5OTkyNSAxMTMuODk5OTI1IDAgMCAwIDExMC43MDA0ODktMTM2LjI5NTk3OGwxNzQuNjg5MjExLTk4LjU0MjYzMmExMTEuOTgwMjYzIDExMS45ODAyNjMgMCAwIDAgMTUyLjI5MzE1OSAwbDE1NS40OTI1OTQgOTMuNDIzNTM0QTExNy4wOTkzNjEgMTE3LjA5OTM2MSAwIDAgMCA3NDQuNTk3MjIyIDMxOS45NDM2MWExMTMuMjYwMDM4IDExMy4yNjAwMzggMCAwIDAgMjE2LjkyMTc2NyA0Ny45OTE1NDEgMTEzLjI2MDAzOCAxMTMuMjYwMDM4IDAgMCAwLTE3Ny44ODg2NDctMTMyLjQ1NjY1NEw2MjcuNDk3ODYxIDE0MC43NzUxODhhODkuNTg0MjExIDg5LjU4NDIxMSAwIDAgMCAzLjgzOTMyMy0yNi4yMzUzNzYgMTEzLjI2MDAzOCAxMTMuMjYwMDM4IDAgMSAwLTIyNC42MDA0MTQgMjIuMzk2MDUzTDIzMi42ODc0NDYgMjM1LjQ3ODQ5N2ExMTMuMjYwMDM4IDExMy4yNjAwMzggMCAxIDAtNzguNzA2MTI4IDE5Ny4wODUyNjR6IG03OTUuMzc5ODE0IDQ1LjQzMTk5Mkg4Ni4xNTMyNzNhMzMuOTE0MDIzIDMzLjkxNDAyMyAwIDAgMCAwIDY3LjgyODA0Nkg5NDkuMzYxMTMyYTMzLjkxNDAyMyAzMy45MTQwMjMgMCAxIDAgMC02Ny44MjgwNDZ6IiBwLWlkPSIzNDgwIiBmaWxsPSIjN2U4Mjk5Ij48L3BhdGg+PC9zdmc+"; 270 | 271 | link.insertBefore(img, link.firstChild); 272 | 273 | return link; 274 | }; 275 | 276 | const addLink = (txHashNode: Text) => { 277 | const txHash = txHashNode.textContent!; 278 | const link = createLink(txHash); 279 | if (txHashNode.parentElement.parentElement.id === "referralLink-1") { 280 | txHashNode.parentElement.parentElement.nextElementSibling.after(link); 281 | } else { 282 | txHashNode.after(link); 283 | } 284 | }; 285 | -------------------------------------------------------------------------------- /src/popup.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | -------------------------------------------------------------------------------- /src/popup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | My First Parcel App 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/popup.tsx: -------------------------------------------------------------------------------- 1 | import { createRoot } from "react-dom/client"; 2 | import { App } from "./App"; 3 | 4 | const container = document.body; 5 | const root = createRoot(container); 6 | root.render(); 7 | -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- 1 | export function parseTx(url: string) { 2 | const supportUrls = [ 3 | "https://www.etherscan.io/tx/", 4 | "https://etherscan.io/tx/", 5 | "https://www.bscscan.com/tx/", 6 | "https://bscscan.com/tx/", 7 | "https://snowtrace.io/tx/", 8 | "https://polygonscan.com/tx/", 9 | "https://arbiscan.io/tx/", 10 | "https://optimistic.etherscan.io/tx/", 11 | "https://ftmscan.com/tx/", 12 | "https://cronoscan.com/tx/", 13 | ]; 14 | 15 | if (supportUrls.find((item) => url.startsWith(item))) { 16 | return url.match(/(0x\w+)/)[0]; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: ["./src/**/*.{html,js,ts,jsx,tsx}"], 4 | theme: { 5 | extend: {}, 6 | }, 7 | plugins: [], 8 | }; 9 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "esnext", 4 | "module": "esnext", 5 | "experimentalDecorators": true, 6 | "jsx": "react-jsx", 7 | "esModuleInterop": true, 8 | "sourceMap": true, 9 | "baseUrl": "./src", 10 | "moduleResolution": "node" 11 | }, 12 | "include": ["src/*", "assets/*", "./typings"], 13 | "exclude": ["node_modules", "**/*.spec.ts"] 14 | } 15 | -------------------------------------------------------------------------------- /typings/images.d.ts: -------------------------------------------------------------------------------- 1 | declare module "*.svg"; 2 | -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- 1 | import "./images"; 2 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ampproject/remapping@^2.1.0": 6 | version "2.2.0" 7 | resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" 8 | integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== 9 | dependencies: 10 | "@jridgewell/gen-mapping" "^0.1.0" 11 | "@jridgewell/trace-mapping" "^0.3.9" 12 | 13 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.18.6": 14 | version "7.18.6" 15 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" 16 | integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== 17 | dependencies: 18 | "@babel/highlight" "^7.18.6" 19 | 20 | "@babel/compat-data@^7.20.5": 21 | version "7.20.14" 22 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.14.tgz#4106fc8b755f3e3ee0a0a7c27dde5de1d2b2baf8" 23 | integrity sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw== 24 | 25 | "@babel/core@^7.19.6": 26 | version "7.20.12" 27 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.12.tgz#7930db57443c6714ad216953d1356dac0eb8496d" 28 | integrity sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg== 29 | dependencies: 30 | "@ampproject/remapping" "^2.1.0" 31 | "@babel/code-frame" "^7.18.6" 32 | "@babel/generator" "^7.20.7" 33 | "@babel/helper-compilation-targets" "^7.20.7" 34 | "@babel/helper-module-transforms" "^7.20.11" 35 | "@babel/helpers" "^7.20.7" 36 | "@babel/parser" "^7.20.7" 37 | "@babel/template" "^7.20.7" 38 | "@babel/traverse" "^7.20.12" 39 | "@babel/types" "^7.20.7" 40 | convert-source-map "^1.7.0" 41 | debug "^4.1.0" 42 | gensync "^1.0.0-beta.2" 43 | json5 "^2.2.2" 44 | semver "^6.3.0" 45 | 46 | "@babel/generator@^7.20.7": 47 | version "7.20.14" 48 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.14.tgz#9fa772c9f86a46c6ac9b321039400712b96f64ce" 49 | integrity sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg== 50 | dependencies: 51 | "@babel/types" "^7.20.7" 52 | "@jridgewell/gen-mapping" "^0.3.2" 53 | jsesc "^2.5.1" 54 | 55 | "@babel/helper-compilation-targets@^7.20.7": 56 | version "7.20.7" 57 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz#a6cd33e93629f5eb473b021aac05df62c4cd09bb" 58 | integrity sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ== 59 | dependencies: 60 | "@babel/compat-data" "^7.20.5" 61 | "@babel/helper-validator-option" "^7.18.6" 62 | browserslist "^4.21.3" 63 | lru-cache "^5.1.1" 64 | semver "^6.3.0" 65 | 66 | "@babel/helper-environment-visitor@^7.18.9": 67 | version "7.18.9" 68 | resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be" 69 | integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== 70 | 71 | "@babel/helper-function-name@^7.19.0": 72 | version "7.19.0" 73 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c" 74 | integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w== 75 | dependencies: 76 | "@babel/template" "^7.18.10" 77 | "@babel/types" "^7.19.0" 78 | 79 | "@babel/helper-hoist-variables@^7.18.6": 80 | version "7.18.6" 81 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" 82 | integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== 83 | dependencies: 84 | "@babel/types" "^7.18.6" 85 | 86 | "@babel/helper-module-imports@^7.18.6": 87 | version "7.18.6" 88 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e" 89 | integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== 90 | dependencies: 91 | "@babel/types" "^7.18.6" 92 | 93 | "@babel/helper-module-transforms@^7.20.11": 94 | version "7.20.11" 95 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz#df4c7af713c557938c50ea3ad0117a7944b2f1b0" 96 | integrity sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg== 97 | dependencies: 98 | "@babel/helper-environment-visitor" "^7.18.9" 99 | "@babel/helper-module-imports" "^7.18.6" 100 | "@babel/helper-simple-access" "^7.20.2" 101 | "@babel/helper-split-export-declaration" "^7.18.6" 102 | "@babel/helper-validator-identifier" "^7.19.1" 103 | "@babel/template" "^7.20.7" 104 | "@babel/traverse" "^7.20.10" 105 | "@babel/types" "^7.20.7" 106 | 107 | "@babel/helper-simple-access@^7.20.2": 108 | version "7.20.2" 109 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9" 110 | integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA== 111 | dependencies: 112 | "@babel/types" "^7.20.2" 113 | 114 | "@babel/helper-split-export-declaration@^7.18.6": 115 | version "7.18.6" 116 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" 117 | integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== 118 | dependencies: 119 | "@babel/types" "^7.18.6" 120 | 121 | "@babel/helper-string-parser@^7.19.4": 122 | version "7.19.4" 123 | resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63" 124 | integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== 125 | 126 | "@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": 127 | version "7.19.1" 128 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" 129 | integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== 130 | 131 | "@babel/helper-validator-option@^7.18.6": 132 | version "7.18.6" 133 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8" 134 | integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== 135 | 136 | "@babel/helpers@^7.20.7": 137 | version "7.20.13" 138 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.13.tgz#e3cb731fb70dc5337134cadc24cbbad31cc87ad2" 139 | integrity sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg== 140 | dependencies: 141 | "@babel/template" "^7.20.7" 142 | "@babel/traverse" "^7.20.13" 143 | "@babel/types" "^7.20.7" 144 | 145 | "@babel/highlight@^7.18.6": 146 | version "7.18.6" 147 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" 148 | integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== 149 | dependencies: 150 | "@babel/helper-validator-identifier" "^7.18.6" 151 | chalk "^2.0.0" 152 | js-tokens "^4.0.0" 153 | 154 | "@babel/parser@^7.20.13", "@babel/parser@^7.20.7": 155 | version "7.20.13" 156 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.13.tgz#ddf1eb5a813588d2fb1692b70c6fce75b945c088" 157 | integrity sha512-gFDLKMfpiXCsjt4za2JA9oTMn70CeseCehb11kRZgvd7+F67Hih3OHOK24cRrWECJ/ljfPGac6ygXAs/C8kIvw== 158 | 159 | "@babel/template@^7.18.10", "@babel/template@^7.20.7": 160 | version "7.20.7" 161 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" 162 | integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== 163 | dependencies: 164 | "@babel/code-frame" "^7.18.6" 165 | "@babel/parser" "^7.20.7" 166 | "@babel/types" "^7.20.7" 167 | 168 | "@babel/traverse@^7.20.10", "@babel/traverse@^7.20.12", "@babel/traverse@^7.20.13": 169 | version "7.20.13" 170 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.13.tgz#817c1ba13d11accca89478bd5481b2d168d07473" 171 | integrity sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ== 172 | dependencies: 173 | "@babel/code-frame" "^7.18.6" 174 | "@babel/generator" "^7.20.7" 175 | "@babel/helper-environment-visitor" "^7.18.9" 176 | "@babel/helper-function-name" "^7.19.0" 177 | "@babel/helper-hoist-variables" "^7.18.6" 178 | "@babel/helper-split-export-declaration" "^7.18.6" 179 | "@babel/parser" "^7.20.13" 180 | "@babel/types" "^7.20.7" 181 | debug "^4.1.0" 182 | globals "^11.1.0" 183 | 184 | "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.7": 185 | version "7.20.7" 186 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.7.tgz#54ec75e252318423fc07fb644dc6a58a64c09b7f" 187 | integrity sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg== 188 | dependencies: 189 | "@babel/helper-string-parser" "^7.19.4" 190 | "@babel/helper-validator-identifier" "^7.19.1" 191 | to-fast-properties "^2.0.0" 192 | 193 | "@jridgewell/gen-mapping@^0.1.0": 194 | version "0.1.1" 195 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" 196 | integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== 197 | dependencies: 198 | "@jridgewell/set-array" "^1.0.0" 199 | "@jridgewell/sourcemap-codec" "^1.4.10" 200 | 201 | "@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": 202 | version "0.3.2" 203 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" 204 | integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== 205 | dependencies: 206 | "@jridgewell/set-array" "^1.0.1" 207 | "@jridgewell/sourcemap-codec" "^1.4.10" 208 | "@jridgewell/trace-mapping" "^0.3.9" 209 | 210 | "@jridgewell/resolve-uri@3.1.0": 211 | version "3.1.0" 212 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" 213 | integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== 214 | 215 | "@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1": 216 | version "1.1.2" 217 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" 218 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== 219 | 220 | "@jridgewell/source-map@^0.3.2": 221 | version "0.3.2" 222 | resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.2.tgz#f45351aaed4527a298512ec72f81040c998580fb" 223 | integrity sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw== 224 | dependencies: 225 | "@jridgewell/gen-mapping" "^0.3.0" 226 | "@jridgewell/trace-mapping" "^0.3.9" 227 | 228 | "@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10": 229 | version "1.4.14" 230 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" 231 | integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== 232 | 233 | "@jridgewell/trace-mapping@^0.3.9": 234 | version "0.3.17" 235 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985" 236 | integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g== 237 | dependencies: 238 | "@jridgewell/resolve-uri" "3.1.0" 239 | "@jridgewell/sourcemap-codec" "1.4.14" 240 | 241 | "@lezer/common@^0.15.0", "@lezer/common@^0.15.7": 242 | version "0.15.12" 243 | resolved "https://registry.yarnpkg.com/@lezer/common/-/common-0.15.12.tgz#2f21aec551dd5fd7d24eb069f90f54d5bc6ee5e9" 244 | integrity sha512-edfwCxNLnzq5pBA/yaIhwJ3U3Kz8VAUOTRg0hhxaizaI1N+qxV7EXDv/kLCkLeq2RzSFvxexlaj5Mzfn2kY0Ig== 245 | 246 | "@lezer/lr@^0.15.4": 247 | version "0.15.8" 248 | resolved "https://registry.yarnpkg.com/@lezer/lr/-/lr-0.15.8.tgz#1564a911e62b0a0f75ca63794a6aa8c5dc63db21" 249 | integrity sha512-bM6oE6VQZ6hIFxDNKk8bKPa14hqFrV07J/vHGOeiAbJReIaQXmkVb6xQu4MR+JBTLa5arGRyAAjJe1qaQt3Uvg== 250 | dependencies: 251 | "@lezer/common" "^0.15.0" 252 | 253 | "@lmdb/lmdb-darwin-arm64@2.5.2": 254 | version "2.5.2" 255 | resolved "https://registry.yarnpkg.com/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-2.5.2.tgz#bc66fa43286b5c082e8fee0eacc17995806b6fbe" 256 | integrity sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A== 257 | 258 | "@lmdb/lmdb-darwin-x64@2.5.2": 259 | version "2.5.2" 260 | resolved "https://registry.yarnpkg.com/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-2.5.2.tgz#89d8390041bce6bab24a82a20392be22faf54ffc" 261 | integrity sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA== 262 | 263 | "@lmdb/lmdb-linux-arm64@2.5.2": 264 | version "2.5.2" 265 | resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-2.5.2.tgz#14fe4c96c2bb1285f93797f45915fa35ee047268" 266 | integrity sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ== 267 | 268 | "@lmdb/lmdb-linux-arm@2.5.2": 269 | version "2.5.2" 270 | resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-2.5.2.tgz#05bde4573ab10cf21827339fe687148f2590cfa1" 271 | integrity sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw== 272 | 273 | "@lmdb/lmdb-linux-x64@2.5.2": 274 | version "2.5.2" 275 | resolved "https://registry.yarnpkg.com/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-2.5.2.tgz#d2f85afd857d2c33d2caa5b057944574edafcfee" 276 | integrity sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q== 277 | 278 | "@lmdb/lmdb-win32-x64@2.5.2": 279 | version "2.5.2" 280 | resolved "https://registry.yarnpkg.com/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-2.5.2.tgz#28f643fbc0bec30b07fbe95b137879b6b4d1c9c5" 281 | integrity sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA== 282 | 283 | "@mischnic/json-sourcemap@^0.1.0": 284 | version "0.1.0" 285 | resolved "https://registry.yarnpkg.com/@mischnic/json-sourcemap/-/json-sourcemap-0.1.0.tgz#38af657be4108140a548638267d02a2ea3336507" 286 | integrity sha512-dQb3QnfNqmQNYA4nFSN/uLaByIic58gOXq4Y4XqLOWmOrw73KmJPt/HLyG0wvn1bnR6mBKs/Uwvkh+Hns1T0XA== 287 | dependencies: 288 | "@lezer/common" "^0.15.7" 289 | "@lezer/lr" "^0.15.4" 290 | json5 "^2.2.1" 291 | 292 | "@msgpackr-extract/msgpackr-extract-darwin-arm64@2.2.0": 293 | version "2.2.0" 294 | resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-2.2.0.tgz#901c5937e1441572ea23e631fe6deca68482fe76" 295 | integrity sha512-Z9LFPzfoJi4mflGWV+rv7o7ZbMU5oAU9VmzCgL240KnqDW65Y2HFCT3MW06/ITJSnbVLacmcEJA8phywK7JinQ== 296 | 297 | "@msgpackr-extract/msgpackr-extract-darwin-x64@2.2.0": 298 | version "2.2.0" 299 | resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-2.2.0.tgz#fb877fe6bae3c4d3cea29786737840e2ae689066" 300 | integrity sha512-vq0tT8sjZsy4JdSqmadWVw6f66UXqUCabLmUVHZwUFzMgtgoIIQjT4VVRHKvlof3P/dMCkbMJ5hB1oJ9OWHaaw== 301 | 302 | "@msgpackr-extract/msgpackr-extract-linux-arm64@2.2.0": 303 | version "2.2.0" 304 | resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-2.2.0.tgz#986179c38b10ac41fbdaf7d036c825cbc72855d9" 305 | integrity sha512-hlxxLdRmPyq16QCutUtP8Tm6RDWcyaLsRssaHROatgnkOxdleMTgetf9JsdncL8vLh7FVy/RN9i3XR5dnb9cRA== 306 | 307 | "@msgpackr-extract/msgpackr-extract-linux-arm@2.2.0": 308 | version "2.2.0" 309 | resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-2.2.0.tgz#15f2c6fe9e0adc06c21af7e95f484ff4880d79ce" 310 | integrity sha512-SaJ3Qq4lX9Syd2xEo9u3qPxi/OB+5JO/ngJKK97XDpa1C587H9EWYO6KD8995DAjSinWvdHKRrCOXVUC5fvGOg== 311 | 312 | "@msgpackr-extract/msgpackr-extract-linux-x64@2.2.0": 313 | version "2.2.0" 314 | resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-2.2.0.tgz#30cae5c9a202f3e1fa1deb3191b18ffcb2f239a2" 315 | integrity sha512-94y5PJrSOqUNcFKmOl7z319FelCLAE0rz/jPCWS+UtdMZvpa4jrQd+cJPQCLp2Fes1yAW/YUQj/Di6YVT3c3Iw== 316 | 317 | "@msgpackr-extract/msgpackr-extract-win32-x64@2.2.0": 318 | version "2.2.0" 319 | resolved "https://registry.yarnpkg.com/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-2.2.0.tgz#016d855b6bc459fd908095811f6826e45dd4ba64" 320 | integrity sha512-XrC0JzsqQSvOyM3t04FMLO6z5gCuhPE6k4FXuLK5xf52ZbdvcFe1yBmo7meCew9B8G2f0T9iu9t3kfTYRYROgA== 321 | 322 | "@nodelib/fs.scandir@2.1.5": 323 | version "2.1.5" 324 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 325 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 326 | dependencies: 327 | "@nodelib/fs.stat" "2.0.5" 328 | run-parallel "^1.1.9" 329 | 330 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 331 | version "2.0.5" 332 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 333 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 334 | 335 | "@nodelib/fs.walk@^1.2.3": 336 | version "1.2.8" 337 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 338 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 339 | dependencies: 340 | "@nodelib/fs.scandir" "2.1.5" 341 | fastq "^1.6.0" 342 | 343 | "@parcel/bundler-default@2.8.3": 344 | version "2.8.3" 345 | resolved "https://registry.yarnpkg.com/@parcel/bundler-default/-/bundler-default-2.8.3.tgz#d64739dbc2dbd59d6629861bf77a8083aced5229" 346 | integrity sha512-yJvRsNWWu5fVydsWk3O2L4yIy3UZiKWO2cPDukGOIWMgp/Vbpp+2Ct5IygVRtE22bnseW/E/oe0PV3d2IkEJGg== 347 | dependencies: 348 | "@parcel/diagnostic" "2.8.3" 349 | "@parcel/graph" "2.8.3" 350 | "@parcel/hash" "2.8.3" 351 | "@parcel/plugin" "2.8.3" 352 | "@parcel/utils" "2.8.3" 353 | nullthrows "^1.1.1" 354 | 355 | "@parcel/cache@2.8.3": 356 | version "2.8.3" 357 | resolved "https://registry.yarnpkg.com/@parcel/cache/-/cache-2.8.3.tgz#169e130cf59913c0ed9fadce1a450e68f710e16f" 358 | integrity sha512-k7xv5vSQrJLdXuglo+Hv3yF4BCSs1tQ/8Vbd6CHTkOhf7LcGg6CPtLw053R/KdMpd/4GPn0QrAsOLdATm1ELtQ== 359 | dependencies: 360 | "@parcel/fs" "2.8.3" 361 | "@parcel/logger" "2.8.3" 362 | "@parcel/utils" "2.8.3" 363 | lmdb "2.5.2" 364 | 365 | "@parcel/codeframe@2.8.3": 366 | version "2.8.3" 367 | resolved "https://registry.yarnpkg.com/@parcel/codeframe/-/codeframe-2.8.3.tgz#84fb529ef70def7f5bc64f6c59b18d24826f5fcc" 368 | integrity sha512-FE7sY53D6n/+2Pgg6M9iuEC6F5fvmyBkRE4d9VdnOoxhTXtkEqpqYgX7RJ12FAQwNlxKq4suBJQMgQHMF2Kjeg== 369 | dependencies: 370 | chalk "^4.1.0" 371 | 372 | "@parcel/compressor-raw@2.8.3": 373 | version "2.8.3" 374 | resolved "https://registry.yarnpkg.com/@parcel/compressor-raw/-/compressor-raw-2.8.3.tgz#301753df8c6de967553149639e8a4179b88f0c95" 375 | integrity sha512-bVDsqleBUxRdKMakWSlWC9ZjOcqDKE60BE+Gh3JSN6WJrycJ02P5wxjTVF4CStNP/G7X17U+nkENxSlMG77ySg== 376 | dependencies: 377 | "@parcel/plugin" "2.8.3" 378 | 379 | "@parcel/config-default@2.8.3": 380 | version "2.8.3" 381 | resolved "https://registry.yarnpkg.com/@parcel/config-default/-/config-default-2.8.3.tgz#9a43486e7c702e96c68052c37b79098d7240e35b" 382 | integrity sha512-o/A/mbrO6X/BfGS65Sib8d6SSG45NYrNooNBkH/o7zbOBSRQxwyTlysleK1/3Wa35YpvFyLOwgfakqCtbGy4fw== 383 | dependencies: 384 | "@parcel/bundler-default" "2.8.3" 385 | "@parcel/compressor-raw" "2.8.3" 386 | "@parcel/namer-default" "2.8.3" 387 | "@parcel/optimizer-css" "2.8.3" 388 | "@parcel/optimizer-htmlnano" "2.8.3" 389 | "@parcel/optimizer-image" "2.8.3" 390 | "@parcel/optimizer-svgo" "2.8.3" 391 | "@parcel/optimizer-terser" "2.8.3" 392 | "@parcel/packager-css" "2.8.3" 393 | "@parcel/packager-html" "2.8.3" 394 | "@parcel/packager-js" "2.8.3" 395 | "@parcel/packager-raw" "2.8.3" 396 | "@parcel/packager-svg" "2.8.3" 397 | "@parcel/reporter-dev-server" "2.8.3" 398 | "@parcel/resolver-default" "2.8.3" 399 | "@parcel/runtime-browser-hmr" "2.8.3" 400 | "@parcel/runtime-js" "2.8.3" 401 | "@parcel/runtime-react-refresh" "2.8.3" 402 | "@parcel/runtime-service-worker" "2.8.3" 403 | "@parcel/transformer-babel" "2.8.3" 404 | "@parcel/transformer-css" "2.8.3" 405 | "@parcel/transformer-html" "2.8.3" 406 | "@parcel/transformer-image" "2.8.3" 407 | "@parcel/transformer-js" "2.8.3" 408 | "@parcel/transformer-json" "2.8.3" 409 | "@parcel/transformer-postcss" "2.8.3" 410 | "@parcel/transformer-posthtml" "2.8.3" 411 | "@parcel/transformer-raw" "2.8.3" 412 | "@parcel/transformer-react-refresh-wrap" "2.8.3" 413 | "@parcel/transformer-svg" "2.8.3" 414 | 415 | "@parcel/core@2.8.3": 416 | version "2.8.3" 417 | resolved "https://registry.yarnpkg.com/@parcel/core/-/core-2.8.3.tgz#22a69f36095d53736ab10bf42697d9aa5f4e382b" 418 | integrity sha512-Euf/un4ZAiClnlUXqPB9phQlKbveU+2CotZv7m7i+qkgvFn5nAGnrV4h1OzQU42j9dpgOxWi7AttUDMrvkbhCQ== 419 | dependencies: 420 | "@mischnic/json-sourcemap" "^0.1.0" 421 | "@parcel/cache" "2.8.3" 422 | "@parcel/diagnostic" "2.8.3" 423 | "@parcel/events" "2.8.3" 424 | "@parcel/fs" "2.8.3" 425 | "@parcel/graph" "2.8.3" 426 | "@parcel/hash" "2.8.3" 427 | "@parcel/logger" "2.8.3" 428 | "@parcel/package-manager" "2.8.3" 429 | "@parcel/plugin" "2.8.3" 430 | "@parcel/source-map" "^2.1.1" 431 | "@parcel/types" "2.8.3" 432 | "@parcel/utils" "2.8.3" 433 | "@parcel/workers" "2.8.3" 434 | abortcontroller-polyfill "^1.1.9" 435 | base-x "^3.0.8" 436 | browserslist "^4.6.6" 437 | clone "^2.1.1" 438 | dotenv "^7.0.0" 439 | dotenv-expand "^5.1.0" 440 | json5 "^2.2.0" 441 | msgpackr "^1.5.4" 442 | nullthrows "^1.1.1" 443 | semver "^5.7.1" 444 | 445 | "@parcel/diagnostic@2.8.3": 446 | version "2.8.3" 447 | resolved "https://registry.yarnpkg.com/@parcel/diagnostic/-/diagnostic-2.8.3.tgz#d560276d5d2804b48beafa1feaf3fc6b2ac5e39d" 448 | integrity sha512-u7wSzuMhLGWZjVNYJZq/SOViS3uFG0xwIcqXw12w54Uozd6BH8JlhVtVyAsq9kqnn7YFkw6pXHqAo5Tzh4FqsQ== 449 | dependencies: 450 | "@mischnic/json-sourcemap" "^0.1.0" 451 | nullthrows "^1.1.1" 452 | 453 | "@parcel/events@2.8.3": 454 | version "2.8.3" 455 | resolved "https://registry.yarnpkg.com/@parcel/events/-/events-2.8.3.tgz#205f8d874e6ecc2cbdb941bf8d54bae669e571af" 456 | integrity sha512-hoIS4tAxWp8FJk3628bsgKxEvR7bq2scCVYHSqZ4fTi/s0+VymEATrRCUqf+12e5H47uw1/ZjoqrGtBI02pz4w== 457 | 458 | "@parcel/fs-search@2.8.3": 459 | version "2.8.3" 460 | resolved "https://registry.yarnpkg.com/@parcel/fs-search/-/fs-search-2.8.3.tgz#1c7d812c110b808758f44c56e61dfffdb09e9451" 461 | integrity sha512-DJBT2N8knfN7Na6PP2mett3spQLTqxFrvl0gv+TJRp61T8Ljc4VuUTb0hqBj+belaASIp3Q+e8+SgaFQu7wLiQ== 462 | dependencies: 463 | detect-libc "^1.0.3" 464 | 465 | "@parcel/fs@2.8.3": 466 | version "2.8.3" 467 | resolved "https://registry.yarnpkg.com/@parcel/fs/-/fs-2.8.3.tgz#80536afe877fc8a2bd26be5576b9ba27bb4c5754" 468 | integrity sha512-y+i+oXbT7lP0e0pJZi/YSm1vg0LDsbycFuHZIL80pNwdEppUAtibfJZCp606B7HOjMAlNZOBo48e3hPG3d8jgQ== 469 | dependencies: 470 | "@parcel/fs-search" "2.8.3" 471 | "@parcel/types" "2.8.3" 472 | "@parcel/utils" "2.8.3" 473 | "@parcel/watcher" "^2.0.7" 474 | "@parcel/workers" "2.8.3" 475 | 476 | "@parcel/graph@2.8.3": 477 | version "2.8.3" 478 | resolved "https://registry.yarnpkg.com/@parcel/graph/-/graph-2.8.3.tgz#00ffe8ec032e74fee57199e54529f1da7322571d" 479 | integrity sha512-26GL8fYZPdsRhSXCZ0ZWliloK6DHlMJPWh6Z+3VVZ5mnDSbYg/rRKWmrkhnr99ZWmL9rJsv4G74ZwvDEXTMPBg== 480 | dependencies: 481 | nullthrows "^1.1.1" 482 | 483 | "@parcel/hash@2.8.3": 484 | version "2.8.3" 485 | resolved "https://registry.yarnpkg.com/@parcel/hash/-/hash-2.8.3.tgz#bc2499a27395169616cad2a99e19e69b9098f6e9" 486 | integrity sha512-FVItqzjWmnyP4ZsVgX+G00+6U2IzOvqDtdwQIWisCcVoXJFCqZJDy6oa2qDDFz96xCCCynjRjPdQx2jYBCpfYw== 487 | dependencies: 488 | detect-libc "^1.0.3" 489 | xxhash-wasm "^0.4.2" 490 | 491 | "@parcel/logger@2.8.3": 492 | version "2.8.3" 493 | resolved "https://registry.yarnpkg.com/@parcel/logger/-/logger-2.8.3.tgz#e14e4debafb3ca9e87c07c06780f9afc38b2712c" 494 | integrity sha512-Kpxd3O/Vs7nYJIzkdmB6Bvp3l/85ydIxaZaPfGSGTYOfaffSOTkhcW9l6WemsxUrlts4za6CaEWcc4DOvaMOPA== 495 | dependencies: 496 | "@parcel/diagnostic" "2.8.3" 497 | "@parcel/events" "2.8.3" 498 | 499 | "@parcel/markdown-ansi@2.8.3": 500 | version "2.8.3" 501 | resolved "https://registry.yarnpkg.com/@parcel/markdown-ansi/-/markdown-ansi-2.8.3.tgz#1337d421bb1133ad178f386a8e1b746631bba4a1" 502 | integrity sha512-4v+pjyoh9f5zuU/gJlNvNFGEAb6J90sOBwpKJYJhdWXLZMNFCVzSigxrYO+vCsi8G4rl6/B2c0LcwIMjGPHmFQ== 503 | dependencies: 504 | chalk "^4.1.0" 505 | 506 | "@parcel/namer-default@2.8.3": 507 | version "2.8.3" 508 | resolved "https://registry.yarnpkg.com/@parcel/namer-default/-/namer-default-2.8.3.tgz#5304bee74beb4b9c1880781bdbe35be0656372f4" 509 | integrity sha512-tJ7JehZviS5QwnxbARd8Uh63rkikZdZs1QOyivUhEvhN+DddSAVEdQLHGPzkl3YRk0tjFhbqo+Jci7TpezuAMw== 510 | dependencies: 511 | "@parcel/diagnostic" "2.8.3" 512 | "@parcel/plugin" "2.8.3" 513 | nullthrows "^1.1.1" 514 | 515 | "@parcel/node-resolver-core@2.8.3": 516 | version "2.8.3" 517 | resolved "https://registry.yarnpkg.com/@parcel/node-resolver-core/-/node-resolver-core-2.8.3.tgz#581df074a27646400b3fed9da95297b616a7db8f" 518 | integrity sha512-12YryWcA5Iw2WNoEVr/t2HDjYR1iEzbjEcxfh1vaVDdZ020PiGw67g5hyIE/tsnG7SRJ0xdRx1fQ2hDgED+0Ww== 519 | dependencies: 520 | "@parcel/diagnostic" "2.8.3" 521 | "@parcel/utils" "2.8.3" 522 | nullthrows "^1.1.1" 523 | semver "^5.7.1" 524 | 525 | "@parcel/optimizer-css@2.8.3": 526 | version "2.8.3" 527 | resolved "https://registry.yarnpkg.com/@parcel/optimizer-css/-/optimizer-css-2.8.3.tgz#420a333f4b78f7ff15e69217dfed34421b1143ee" 528 | integrity sha512-JotGAWo8JhuXsQDK0UkzeQB0UR5hDAKvAviXrjqB4KM9wZNLhLleeEAW4Hk8R9smCeQFP6Xg/N/NkLDpqMwT3g== 529 | dependencies: 530 | "@parcel/diagnostic" "2.8.3" 531 | "@parcel/plugin" "2.8.3" 532 | "@parcel/source-map" "^2.1.1" 533 | "@parcel/utils" "2.8.3" 534 | browserslist "^4.6.6" 535 | lightningcss "^1.16.1" 536 | nullthrows "^1.1.1" 537 | 538 | "@parcel/optimizer-htmlnano@2.8.3": 539 | version "2.8.3" 540 | resolved "https://registry.yarnpkg.com/@parcel/optimizer-htmlnano/-/optimizer-htmlnano-2.8.3.tgz#a71ab6f0f24160ef9f573266064438eff65e96d0" 541 | integrity sha512-L8/fHbEy8Id2a2E0fwR5eKGlv9VYDjrH9PwdJE9Za9v1O/vEsfl/0T/79/x129l5O0yB6EFQkFa20MiK3b+vOg== 542 | dependencies: 543 | "@parcel/plugin" "2.8.3" 544 | htmlnano "^2.0.0" 545 | nullthrows "^1.1.1" 546 | posthtml "^0.16.5" 547 | svgo "^2.4.0" 548 | 549 | "@parcel/optimizer-image@2.8.3": 550 | version "2.8.3" 551 | resolved "https://registry.yarnpkg.com/@parcel/optimizer-image/-/optimizer-image-2.8.3.tgz#ea49b4245b4f7d60b38c7585c6311fb21d341baa" 552 | integrity sha512-SD71sSH27SkCDNUNx9A3jizqB/WIJr3dsfp+JZGZC42tpD/Siim6Rqy9M4To/BpMMQIIiEXa5ofwS+DgTEiEHQ== 553 | dependencies: 554 | "@parcel/diagnostic" "2.8.3" 555 | "@parcel/plugin" "2.8.3" 556 | "@parcel/utils" "2.8.3" 557 | "@parcel/workers" "2.8.3" 558 | detect-libc "^1.0.3" 559 | 560 | "@parcel/optimizer-svgo@2.8.3": 561 | version "2.8.3" 562 | resolved "https://registry.yarnpkg.com/@parcel/optimizer-svgo/-/optimizer-svgo-2.8.3.tgz#04da4efec6b623679539a84961bff6998034ba8a" 563 | integrity sha512-9KQed99NZnQw3/W4qBYVQ7212rzA9EqrQG019TIWJzkA9tjGBMIm2c/nXpK1tc3hQ3e7KkXkFCQ3C+ibVUnHNA== 564 | dependencies: 565 | "@parcel/diagnostic" "2.8.3" 566 | "@parcel/plugin" "2.8.3" 567 | "@parcel/utils" "2.8.3" 568 | svgo "^2.4.0" 569 | 570 | "@parcel/optimizer-terser@2.8.3": 571 | version "2.8.3" 572 | resolved "https://registry.yarnpkg.com/@parcel/optimizer-terser/-/optimizer-terser-2.8.3.tgz#3a06d98d09386a1a0ae1be85376a8739bfba9618" 573 | integrity sha512-9EeQlN6zIeUWwzrzu6Q2pQSaYsYGah8MtiQ/hog9KEPlYTP60hBv/+utDyYEHSQhL7y5ym08tPX5GzBvwAD/dA== 574 | dependencies: 575 | "@parcel/diagnostic" "2.8.3" 576 | "@parcel/plugin" "2.8.3" 577 | "@parcel/source-map" "^2.1.1" 578 | "@parcel/utils" "2.8.3" 579 | nullthrows "^1.1.1" 580 | terser "^5.2.0" 581 | 582 | "@parcel/package-manager@2.8.3": 583 | version "2.8.3" 584 | resolved "https://registry.yarnpkg.com/@parcel/package-manager/-/package-manager-2.8.3.tgz#ddd0d62feae3cf0fb6cc0537791b3a16296ad458" 585 | integrity sha512-tIpY5pD2lH53p9hpi++GsODy6V3khSTX4pLEGuMpeSYbHthnOViobqIlFLsjni+QA1pfc8NNNIQwSNdGjYflVA== 586 | dependencies: 587 | "@parcel/diagnostic" "2.8.3" 588 | "@parcel/fs" "2.8.3" 589 | "@parcel/logger" "2.8.3" 590 | "@parcel/types" "2.8.3" 591 | "@parcel/utils" "2.8.3" 592 | "@parcel/workers" "2.8.3" 593 | semver "^5.7.1" 594 | 595 | "@parcel/packager-css@2.8.3": 596 | version "2.8.3" 597 | resolved "https://registry.yarnpkg.com/@parcel/packager-css/-/packager-css-2.8.3.tgz#0eff34268cb4f5dfb53c1bbca85f5567aeb1835a" 598 | integrity sha512-WyvkMmsurlHG8d8oUVm7S+D+cC/T3qGeqogb7sTI52gB6uiywU7lRCizLNqGFyFGIxcVTVHWnSHqItBcLN76lA== 599 | dependencies: 600 | "@parcel/plugin" "2.8.3" 601 | "@parcel/source-map" "^2.1.1" 602 | "@parcel/utils" "2.8.3" 603 | nullthrows "^1.1.1" 604 | 605 | "@parcel/packager-html@2.8.3": 606 | version "2.8.3" 607 | resolved "https://registry.yarnpkg.com/@parcel/packager-html/-/packager-html-2.8.3.tgz#f9263b891aa4dd46c6e2fa2b07025a482132fff1" 608 | integrity sha512-OhPu1Hx1RRKJodpiu86ZqL8el2Aa4uhBHF6RAL1Pcrh2EhRRlPf70Sk0tC22zUpYL7es+iNKZ/n0Rl+OWSHWEw== 609 | dependencies: 610 | "@parcel/plugin" "2.8.3" 611 | "@parcel/types" "2.8.3" 612 | "@parcel/utils" "2.8.3" 613 | nullthrows "^1.1.1" 614 | posthtml "^0.16.5" 615 | 616 | "@parcel/packager-js@2.8.3": 617 | version "2.8.3" 618 | resolved "https://registry.yarnpkg.com/@parcel/packager-js/-/packager-js-2.8.3.tgz#3ed11565915d73d12192b6901c75a6b820e4a83a" 619 | integrity sha512-0pGKC3Ax5vFuxuZCRB+nBucRfFRz4ioie19BbDxYnvBxrd4M3FIu45njf6zbBYsI9eXqaDnL1b3DcZJfYqtIzw== 620 | dependencies: 621 | "@parcel/diagnostic" "2.8.3" 622 | "@parcel/hash" "2.8.3" 623 | "@parcel/plugin" "2.8.3" 624 | "@parcel/source-map" "^2.1.1" 625 | "@parcel/utils" "2.8.3" 626 | globals "^13.2.0" 627 | nullthrows "^1.1.1" 628 | 629 | "@parcel/packager-raw@2.8.3": 630 | version "2.8.3" 631 | resolved "https://registry.yarnpkg.com/@parcel/packager-raw/-/packager-raw-2.8.3.tgz#bdec826df991e186cb58691cc45d12ad5c06676e" 632 | integrity sha512-BA6enNQo1RCnco9MhkxGrjOk59O71IZ9DPKu3lCtqqYEVd823tXff2clDKHK25i6cChmeHu6oB1Rb73hlPqhUA== 633 | dependencies: 634 | "@parcel/plugin" "2.8.3" 635 | 636 | "@parcel/packager-svg@2.8.3": 637 | version "2.8.3" 638 | resolved "https://registry.yarnpkg.com/@parcel/packager-svg/-/packager-svg-2.8.3.tgz#7233315296001c531cb55ca96b5f2ef672343630" 639 | integrity sha512-mvIoHpmv5yzl36OjrklTDFShLUfPFTwrmp1eIwiszGdEBuQaX7JVI3Oo2jbVQgcN4W7J6SENzGQ3Q5hPTW3pMw== 640 | dependencies: 641 | "@parcel/plugin" "2.8.3" 642 | "@parcel/types" "2.8.3" 643 | "@parcel/utils" "2.8.3" 644 | posthtml "^0.16.4" 645 | 646 | "@parcel/plugin@2.8.3": 647 | version "2.8.3" 648 | resolved "https://registry.yarnpkg.com/@parcel/plugin/-/plugin-2.8.3.tgz#7bb30a5775eaa6473c27f002a0a3ee7308d6d669" 649 | integrity sha512-jZ6mnsS4D9X9GaNnvrixDQwlUQJCohDX2hGyM0U0bY2NWU8Km97SjtoCpWjq+XBCx/gpC4g58+fk9VQeZq2vlw== 650 | dependencies: 651 | "@parcel/types" "2.8.3" 652 | 653 | "@parcel/reporter-cli@2.8.3": 654 | version "2.8.3" 655 | resolved "https://registry.yarnpkg.com/@parcel/reporter-cli/-/reporter-cli-2.8.3.tgz#12a4743b51b8fe6837f53c20e01bbf1f7336e8e4" 656 | integrity sha512-3sJkS6tFFzgIOz3u3IpD/RsmRxvOKKiQHOTkiiqRt1l44mMDGKS7zANRnJYsQzdCsgwc9SOP30XFgJwtoVlMbw== 657 | dependencies: 658 | "@parcel/plugin" "2.8.3" 659 | "@parcel/types" "2.8.3" 660 | "@parcel/utils" "2.8.3" 661 | chalk "^4.1.0" 662 | term-size "^2.2.1" 663 | 664 | "@parcel/reporter-dev-server@2.8.3": 665 | version "2.8.3" 666 | resolved "https://registry.yarnpkg.com/@parcel/reporter-dev-server/-/reporter-dev-server-2.8.3.tgz#a0daa5cc015642684cea561f4e0e7116bbffdc1c" 667 | integrity sha512-Y8C8hzgzTd13IoWTj+COYXEyCkXfmVJs3//GDBsH22pbtSFMuzAZd+8J9qsCo0EWpiDow7V9f1LischvEh3FbQ== 668 | dependencies: 669 | "@parcel/plugin" "2.8.3" 670 | "@parcel/utils" "2.8.3" 671 | 672 | "@parcel/resolver-default@2.8.3": 673 | version "2.8.3" 674 | resolved "https://registry.yarnpkg.com/@parcel/resolver-default/-/resolver-default-2.8.3.tgz#5ae41e537ae4a793c1abb47f094482b9e2ac3535" 675 | integrity sha512-k0B5M/PJ+3rFbNj4xZSBr6d6HVIe6DH/P3dClLcgBYSXAvElNDfXgtIimbjCyItFkW9/BfcgOVKEEIZOeySH/A== 676 | dependencies: 677 | "@parcel/node-resolver-core" "2.8.3" 678 | "@parcel/plugin" "2.8.3" 679 | 680 | "@parcel/runtime-browser-hmr@2.8.3": 681 | version "2.8.3" 682 | resolved "https://registry.yarnpkg.com/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.8.3.tgz#1fa74e1fbd1030b0a920c58afa3a9eb7dc4bcd1e" 683 | integrity sha512-2O1PYi2j/Q0lTyGNV3JdBYwg4rKo6TEVFlYGdd5wCYU9ZIN9RRuoCnWWH2qCPj3pjIVtBeppYxzfVjPEHINWVg== 684 | dependencies: 685 | "@parcel/plugin" "2.8.3" 686 | "@parcel/utils" "2.8.3" 687 | 688 | "@parcel/runtime-js@2.8.3": 689 | version "2.8.3" 690 | resolved "https://registry.yarnpkg.com/@parcel/runtime-js/-/runtime-js-2.8.3.tgz#0baa4c8fbf77eabce05d01ccc186614968ffc0cd" 691 | integrity sha512-IRja0vNKwvMtPgIqkBQh0QtRn0XcxNC8HU1jrgWGRckzu10qJWO+5ULgtOeR4pv9krffmMPqywGXw6l/gvJKYQ== 692 | dependencies: 693 | "@parcel/plugin" "2.8.3" 694 | "@parcel/utils" "2.8.3" 695 | nullthrows "^1.1.1" 696 | 697 | "@parcel/runtime-react-refresh@2.8.3": 698 | version "2.8.3" 699 | resolved "https://registry.yarnpkg.com/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.8.3.tgz#381a942fb81e8f5ac6c7e0ee1b91dbf34763c3f8" 700 | integrity sha512-2v/qFKp00MfG0234OdOgQNAo6TLENpFYZMbVbAsPMY9ITiqG73MrEsrGXVoGbYiGTMB/Toer/lSWlJxtacOCuA== 701 | dependencies: 702 | "@parcel/plugin" "2.8.3" 703 | "@parcel/utils" "2.8.3" 704 | react-error-overlay "6.0.9" 705 | react-refresh "^0.9.0" 706 | 707 | "@parcel/runtime-service-worker@2.8.3": 708 | version "2.8.3" 709 | resolved "https://registry.yarnpkg.com/@parcel/runtime-service-worker/-/runtime-service-worker-2.8.3.tgz#54d92da9ff1dfbd27db0e84164a22fa59e99b348" 710 | integrity sha512-/Skkw+EeRiwzOJso5fQtK8c9b452uWLNhQH1ISTodbmlcyB4YalAiSsyHCtMYD0c3/t5Sx4ZS7vxBAtQd0RvOw== 711 | dependencies: 712 | "@parcel/plugin" "2.8.3" 713 | "@parcel/utils" "2.8.3" 714 | nullthrows "^1.1.1" 715 | 716 | "@parcel/source-map@^2.1.1": 717 | version "2.1.1" 718 | resolved "https://registry.yarnpkg.com/@parcel/source-map/-/source-map-2.1.1.tgz#fb193b82dba6dd62cc7a76b326f57bb35000a782" 719 | integrity sha512-Ejx1P/mj+kMjQb8/y5XxDUn4reGdr+WyKYloBljpppUy8gs42T+BNoEOuRYqDVdgPc6NxduzIDoJS9pOFfV5Ew== 720 | dependencies: 721 | detect-libc "^1.0.3" 722 | 723 | "@parcel/transformer-babel@2.8.3": 724 | version "2.8.3" 725 | resolved "https://registry.yarnpkg.com/@parcel/transformer-babel/-/transformer-babel-2.8.3.tgz#286bc6cb9afe4c0259f0b28e0f2f47322a24b130" 726 | integrity sha512-L6lExfpvvC7T/g3pxf3CIJRouQl+sgrSzuWQ0fD4PemUDHvHchSP4SNUVnd6gOytF3Y1KpnEZIunQGi5xVqQCQ== 727 | dependencies: 728 | "@parcel/diagnostic" "2.8.3" 729 | "@parcel/plugin" "2.8.3" 730 | "@parcel/source-map" "^2.1.1" 731 | "@parcel/utils" "2.8.3" 732 | browserslist "^4.6.6" 733 | json5 "^2.2.0" 734 | nullthrows "^1.1.1" 735 | semver "^5.7.0" 736 | 737 | "@parcel/transformer-css@2.8.3": 738 | version "2.8.3" 739 | resolved "https://registry.yarnpkg.com/@parcel/transformer-css/-/transformer-css-2.8.3.tgz#d6c44100204e73841ad8e0f90472172ea8b9120c" 740 | integrity sha512-xTqFwlSXtnaYen9ivAgz+xPW7yRl/u4QxtnDyDpz5dr8gSeOpQYRcjkd4RsYzKsWzZcGtB5EofEk8ayUbWKEUg== 741 | dependencies: 742 | "@parcel/diagnostic" "2.8.3" 743 | "@parcel/plugin" "2.8.3" 744 | "@parcel/source-map" "^2.1.1" 745 | "@parcel/utils" "2.8.3" 746 | browserslist "^4.6.6" 747 | lightningcss "^1.16.1" 748 | nullthrows "^1.1.1" 749 | 750 | "@parcel/transformer-html@2.8.3": 751 | version "2.8.3" 752 | resolved "https://registry.yarnpkg.com/@parcel/transformer-html/-/transformer-html-2.8.3.tgz#5c68b28ee6b8c7a13b8aee87f7957ad3227bd83f" 753 | integrity sha512-kIZO3qsMYTbSnSpl9cnZog+SwL517ffWH54JeB410OSAYF1ouf4n5v9qBnALZbuCCmPwJRGs4jUtE452hxwN4g== 754 | dependencies: 755 | "@parcel/diagnostic" "2.8.3" 756 | "@parcel/hash" "2.8.3" 757 | "@parcel/plugin" "2.8.3" 758 | nullthrows "^1.1.1" 759 | posthtml "^0.16.5" 760 | posthtml-parser "^0.10.1" 761 | posthtml-render "^3.0.0" 762 | semver "^5.7.1" 763 | srcset "4" 764 | 765 | "@parcel/transformer-image@2.8.3": 766 | version "2.8.3" 767 | resolved "https://registry.yarnpkg.com/@parcel/transformer-image/-/transformer-image-2.8.3.tgz#73805b2bfc3c8919d7737544e5f8be39e3f303fe" 768 | integrity sha512-cO4uptcCGTi5H6bvTrAWEFUsTNhA4kCo8BSvRSCHA2sf/4C5tGQPHt3JhdO0GQLPwZRCh/R41EkJs5HZ8A8DAg== 769 | dependencies: 770 | "@parcel/plugin" "2.8.3" 771 | "@parcel/utils" "2.8.3" 772 | "@parcel/workers" "2.8.3" 773 | nullthrows "^1.1.1" 774 | 775 | "@parcel/transformer-js@2.8.3": 776 | version "2.8.3" 777 | resolved "https://registry.yarnpkg.com/@parcel/transformer-js/-/transformer-js-2.8.3.tgz#fe400df428394d1e7fe5afb6dea5c7c858e44f03" 778 | integrity sha512-9Qd6bib+sWRcpovvzvxwy/PdFrLUXGfmSW9XcVVG8pvgXsZPFaNjnNT8stzGQj1pQiougCoxMY4aTM5p1lGHEQ== 779 | dependencies: 780 | "@parcel/diagnostic" "2.8.3" 781 | "@parcel/plugin" "2.8.3" 782 | "@parcel/source-map" "^2.1.1" 783 | "@parcel/utils" "2.8.3" 784 | "@parcel/workers" "2.8.3" 785 | "@swc/helpers" "^0.4.12" 786 | browserslist "^4.6.6" 787 | detect-libc "^1.0.3" 788 | nullthrows "^1.1.1" 789 | regenerator-runtime "^0.13.7" 790 | semver "^5.7.1" 791 | 792 | "@parcel/transformer-json@2.8.3": 793 | version "2.8.3" 794 | resolved "https://registry.yarnpkg.com/@parcel/transformer-json/-/transformer-json-2.8.3.tgz#25deb3a5138cc70a83269fc5d39d564609354d36" 795 | integrity sha512-B7LmVq5Q7bZO4ERb6NHtRuUKWGysEeaj9H4zelnyBv+wLgpo4f5FCxSE1/rTNmP9u1qHvQ3scGdK6EdSSokGPg== 796 | dependencies: 797 | "@parcel/plugin" "2.8.3" 798 | json5 "^2.2.0" 799 | 800 | "@parcel/transformer-postcss@2.8.3": 801 | version "2.8.3" 802 | resolved "https://registry.yarnpkg.com/@parcel/transformer-postcss/-/transformer-postcss-2.8.3.tgz#df4fdc1c90893823445f2a8eb8e2bdd0349ccc58" 803 | integrity sha512-e8luB/poIlz6jBsD1Izms+6ElbyzuoFVa4lFVLZnTAChI3UxPdt9p/uTsIO46HyBps/Bk8ocvt3J4YF84jzmvg== 804 | dependencies: 805 | "@parcel/diagnostic" "2.8.3" 806 | "@parcel/hash" "2.8.3" 807 | "@parcel/plugin" "2.8.3" 808 | "@parcel/utils" "2.8.3" 809 | clone "^2.1.1" 810 | nullthrows "^1.1.1" 811 | postcss-value-parser "^4.2.0" 812 | semver "^5.7.1" 813 | 814 | "@parcel/transformer-posthtml@2.8.3": 815 | version "2.8.3" 816 | resolved "https://registry.yarnpkg.com/@parcel/transformer-posthtml/-/transformer-posthtml-2.8.3.tgz#7c3912a5a631cb26485f6464e0d6eeabb6f1e718" 817 | integrity sha512-pkzf9Smyeaw4uaRLsT41RGrPLT5Aip8ZPcntawAfIo+KivBQUV0erY1IvHYjyfFzq1ld/Fo2Ith9He6mxpPifA== 818 | dependencies: 819 | "@parcel/plugin" "2.8.3" 820 | "@parcel/utils" "2.8.3" 821 | nullthrows "^1.1.1" 822 | posthtml "^0.16.5" 823 | posthtml-parser "^0.10.1" 824 | posthtml-render "^3.0.0" 825 | semver "^5.7.1" 826 | 827 | "@parcel/transformer-raw@2.8.3": 828 | version "2.8.3" 829 | resolved "https://registry.yarnpkg.com/@parcel/transformer-raw/-/transformer-raw-2.8.3.tgz#3a22213fe18a5f83fd78889cb49f06e059cfead7" 830 | integrity sha512-G+5cXnd2/1O3nV/pgRxVKZY/HcGSseuhAe71gQdSQftb8uJEURyUHoQ9Eh0JUD3MgWh9V+nIKoyFEZdf9T0sUQ== 831 | dependencies: 832 | "@parcel/plugin" "2.8.3" 833 | 834 | "@parcel/transformer-react-refresh-wrap@2.8.3": 835 | version "2.8.3" 836 | resolved "https://registry.yarnpkg.com/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.8.3.tgz#8b0392638405dd470a886002229f7889d5464822" 837 | integrity sha512-q8AAoEvBnCf/nPvgOwFwKZfEl/thwq7c2duxXkhl+tTLDRN2vGmyz4355IxCkavSX+pLWSQ5MexklSEeMkgthg== 838 | dependencies: 839 | "@parcel/plugin" "2.8.3" 840 | "@parcel/utils" "2.8.3" 841 | react-refresh "^0.9.0" 842 | 843 | "@parcel/transformer-svg-react@^2.8.3": 844 | version "2.8.3" 845 | resolved "https://registry.yarnpkg.com/@parcel/transformer-svg-react/-/transformer-svg-react-2.8.3.tgz#120d2907142d26ddc94abeef668955f2ad0ae5d8" 846 | integrity sha512-TbiaHJ74zpzHovaHe7LCeGpNh/8GV8ZRKmCj83+y9fjjoBKo8IaYtKp48mszY9ltma0xBqhmFarddF19kQxb+g== 847 | dependencies: 848 | "@parcel/plugin" "2.8.3" 849 | "@svgr/core" "^6.2.0" 850 | "@svgr/plugin-jsx" "^6.2.0" 851 | "@svgr/plugin-svgo" "^6.2.0" 852 | 853 | "@parcel/transformer-svg@2.8.3": 854 | version "2.8.3" 855 | resolved "https://registry.yarnpkg.com/@parcel/transformer-svg/-/transformer-svg-2.8.3.tgz#4df959cba4ebf45d7aaddd540f752e6e84df38b2" 856 | integrity sha512-3Zr/gBzxi1ZH1fftH/+KsZU7w5GqkmxlB0ZM8ovS5E/Pl1lq1t0xvGJue9m2VuQqP8Mxfpl5qLFmsKlhaZdMIQ== 857 | dependencies: 858 | "@parcel/diagnostic" "2.8.3" 859 | "@parcel/hash" "2.8.3" 860 | "@parcel/plugin" "2.8.3" 861 | nullthrows "^1.1.1" 862 | posthtml "^0.16.5" 863 | posthtml-parser "^0.10.1" 864 | posthtml-render "^3.0.0" 865 | semver "^5.7.1" 866 | 867 | "@parcel/transformer-typescript-tsc@^2.8.3": 868 | version "2.8.3" 869 | resolved "https://registry.yarnpkg.com/@parcel/transformer-typescript-tsc/-/transformer-typescript-tsc-2.8.3.tgz#9a50a6abda0ee08f3d803896a168bdd2f33b071a" 870 | integrity sha512-hig99OrUJhXuGLN+Nxisvfkj3cggH6GM1nDcS3KWEGoD+UkxLaXkd32Od/mvJ4nUN/ThbAPqwIljmgkgPlYzbw== 871 | dependencies: 872 | "@parcel/plugin" "2.8.3" 873 | "@parcel/source-map" "^2.1.1" 874 | "@parcel/ts-utils" "2.8.3" 875 | 876 | "@parcel/ts-utils@2.8.3": 877 | version "2.8.3" 878 | resolved "https://registry.yarnpkg.com/@parcel/ts-utils/-/ts-utils-2.8.3.tgz#f3590ca033c061779dc35ff3d14af2860ed106ac" 879 | integrity sha512-4HMt9B9LF2pDFvSKGImho48tlCvCUl7ly1ZMXvQdmEq2i0yoS81tDsmxX3yly/RVUVeUCGAj1JRuuy1lw5zw1A== 880 | dependencies: 881 | nullthrows "^1.1.1" 882 | 883 | "@parcel/types@2.8.3": 884 | version "2.8.3" 885 | resolved "https://registry.yarnpkg.com/@parcel/types/-/types-2.8.3.tgz#3306bc5391b6913bd619914894b8cd84a24b30fa" 886 | integrity sha512-FECA1FB7+0UpITKU0D6TgGBpGxYpVSMNEENZbSJxFSajNy3wrko+zwBKQmFOLOiPcEtnGikxNs+jkFWbPlUAtw== 887 | dependencies: 888 | "@parcel/cache" "2.8.3" 889 | "@parcel/diagnostic" "2.8.3" 890 | "@parcel/fs" "2.8.3" 891 | "@parcel/package-manager" "2.8.3" 892 | "@parcel/source-map" "^2.1.1" 893 | "@parcel/workers" "2.8.3" 894 | utility-types "^3.10.0" 895 | 896 | "@parcel/utils@2.8.3": 897 | version "2.8.3" 898 | resolved "https://registry.yarnpkg.com/@parcel/utils/-/utils-2.8.3.tgz#0d56c9e8e22c119590a5e044a0e01031965da40e" 899 | integrity sha512-IhVrmNiJ+LOKHcCivG5dnuLGjhPYxQ/IzbnF2DKNQXWBTsYlHkJZpmz7THoeLtLliGmSOZ3ZCsbR8/tJJKmxjA== 900 | dependencies: 901 | "@parcel/codeframe" "2.8.3" 902 | "@parcel/diagnostic" "2.8.3" 903 | "@parcel/hash" "2.8.3" 904 | "@parcel/logger" "2.8.3" 905 | "@parcel/markdown-ansi" "2.8.3" 906 | "@parcel/source-map" "^2.1.1" 907 | chalk "^4.1.0" 908 | 909 | "@parcel/watcher@^2.0.7": 910 | version "2.1.0" 911 | resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.1.0.tgz#5f32969362db4893922c526a842d8af7a8538545" 912 | integrity sha512-8s8yYjd19pDSsBpbkOHnT6Z2+UJSuLQx61pCFM0s5wSRvKCEMDjd/cHY3/GI1szHIWbpXpsJdg3V6ISGGx9xDw== 913 | dependencies: 914 | is-glob "^4.0.3" 915 | micromatch "^4.0.5" 916 | node-addon-api "^3.2.1" 917 | node-gyp-build "^4.3.0" 918 | 919 | "@parcel/workers@2.8.3": 920 | version "2.8.3" 921 | resolved "https://registry.yarnpkg.com/@parcel/workers/-/workers-2.8.3.tgz#255450ccf4db234082407e4ddda5fd575f08c235" 922 | integrity sha512-+AxBnKgjqVpUHBcHLWIHcjYgKIvHIpZjN33mG5LG9XXvrZiqdWvouEzqEXlVLq5VzzVbKIQQcmsvRy138YErkg== 923 | dependencies: 924 | "@parcel/diagnostic" "2.8.3" 925 | "@parcel/logger" "2.8.3" 926 | "@parcel/types" "2.8.3" 927 | "@parcel/utils" "2.8.3" 928 | chrome-trace-event "^1.0.2" 929 | nullthrows "^1.1.1" 930 | 931 | "@svgr/babel-plugin-add-jsx-attribute@^6.5.1": 932 | version "6.5.1" 933 | resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.5.1.tgz#74a5d648bd0347bda99d82409d87b8ca80b9a1ba" 934 | integrity sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ== 935 | 936 | "@svgr/babel-plugin-remove-jsx-attribute@*": 937 | version "6.5.0" 938 | resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-6.5.0.tgz#652bfd4ed0a0699843585cda96faeb09d6e1306e" 939 | integrity sha512-8zYdkym7qNyfXpWvu4yq46k41pyNM9SOstoWhKlm+IfdCE1DdnRKeMUPsWIEO/DEkaWxJ8T9esNdG3QwQ93jBA== 940 | 941 | "@svgr/babel-plugin-remove-jsx-empty-expression@*": 942 | version "6.5.0" 943 | resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-6.5.0.tgz#4b78994ab7d39032c729903fc2dd5c0fa4565cb8" 944 | integrity sha512-NFdxMq3xA42Kb1UbzCVxplUc0iqSyM9X8kopImvFnB+uSDdzIHOdbs1op8ofAvVRtbg4oZiyRl3fTYeKcOe9Iw== 945 | 946 | "@svgr/babel-plugin-replace-jsx-attribute-value@^6.5.1": 947 | version "6.5.1" 948 | resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.5.1.tgz#fb9d22ea26d2bc5e0a44b763d4c46d5d3f596c60" 949 | integrity sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg== 950 | 951 | "@svgr/babel-plugin-svg-dynamic-title@^6.5.1": 952 | version "6.5.1" 953 | resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.5.1.tgz#01b2024a2b53ffaa5efceaa0bf3e1d5a4c520ce4" 954 | integrity sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw== 955 | 956 | "@svgr/babel-plugin-svg-em-dimensions@^6.5.1": 957 | version "6.5.1" 958 | resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.5.1.tgz#dd3fa9f5b24eb4f93bcf121c3d40ff5facecb217" 959 | integrity sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA== 960 | 961 | "@svgr/babel-plugin-transform-react-native-svg@^6.5.1": 962 | version "6.5.1" 963 | resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.5.1.tgz#1d8e945a03df65b601551097d8f5e34351d3d305" 964 | integrity sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg== 965 | 966 | "@svgr/babel-plugin-transform-svg-component@^6.5.1": 967 | version "6.5.1" 968 | resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.5.1.tgz#48620b9e590e25ff95a80f811544218d27f8a250" 969 | integrity sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ== 970 | 971 | "@svgr/babel-preset@^6.5.1": 972 | version "6.5.1" 973 | resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-6.5.1.tgz#b90de7979c8843c5c580c7e2ec71f024b49eb828" 974 | integrity sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw== 975 | dependencies: 976 | "@svgr/babel-plugin-add-jsx-attribute" "^6.5.1" 977 | "@svgr/babel-plugin-remove-jsx-attribute" "*" 978 | "@svgr/babel-plugin-remove-jsx-empty-expression" "*" 979 | "@svgr/babel-plugin-replace-jsx-attribute-value" "^6.5.1" 980 | "@svgr/babel-plugin-svg-dynamic-title" "^6.5.1" 981 | "@svgr/babel-plugin-svg-em-dimensions" "^6.5.1" 982 | "@svgr/babel-plugin-transform-react-native-svg" "^6.5.1" 983 | "@svgr/babel-plugin-transform-svg-component" "^6.5.1" 984 | 985 | "@svgr/core@^6.2.0": 986 | version "6.5.1" 987 | resolved "https://registry.yarnpkg.com/@svgr/core/-/core-6.5.1.tgz#d3e8aa9dbe3fbd747f9ee4282c1c77a27410488a" 988 | integrity sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw== 989 | dependencies: 990 | "@babel/core" "^7.19.6" 991 | "@svgr/babel-preset" "^6.5.1" 992 | "@svgr/plugin-jsx" "^6.5.1" 993 | camelcase "^6.2.0" 994 | cosmiconfig "^7.0.1" 995 | 996 | "@svgr/hast-util-to-babel-ast@^6.5.1": 997 | version "6.5.1" 998 | resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.5.1.tgz#81800bd09b5bcdb968bf6ee7c863d2288fdb80d2" 999 | integrity sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw== 1000 | dependencies: 1001 | "@babel/types" "^7.20.0" 1002 | entities "^4.4.0" 1003 | 1004 | "@svgr/plugin-jsx@^6.2.0", "@svgr/plugin-jsx@^6.5.1": 1005 | version "6.5.1" 1006 | resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-6.5.1.tgz#0e30d1878e771ca753c94e69581c7971542a7072" 1007 | integrity sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw== 1008 | dependencies: 1009 | "@babel/core" "^7.19.6" 1010 | "@svgr/babel-preset" "^6.5.1" 1011 | "@svgr/hast-util-to-babel-ast" "^6.5.1" 1012 | svg-parser "^2.0.4" 1013 | 1014 | "@svgr/plugin-svgo@^6.2.0": 1015 | version "6.5.1" 1016 | resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-6.5.1.tgz#0f91910e988fc0b842f88e0960c2862e022abe84" 1017 | integrity sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ== 1018 | dependencies: 1019 | cosmiconfig "^7.0.1" 1020 | deepmerge "^4.2.2" 1021 | svgo "^2.8.0" 1022 | 1023 | "@swc/helpers@^0.4.12": 1024 | version "0.4.14" 1025 | resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.4.14.tgz#1352ac6d95e3617ccb7c1498ff019654f1e12a74" 1026 | integrity sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw== 1027 | dependencies: 1028 | tslib "^2.4.0" 1029 | 1030 | "@trysound/sax@0.2.0": 1031 | version "0.2.0" 1032 | resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad" 1033 | integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== 1034 | 1035 | "@types/chrome@^0.0.210": 1036 | version "0.0.210" 1037 | resolved "https://registry.yarnpkg.com/@types/chrome/-/chrome-0.0.210.tgz#6bc137e111cf42857af5012d47c036adc079616e" 1038 | integrity sha512-VSjQu1k6a/rAfuqR1Gi/oxHZj4+t6+LG+GobNI3ZWI6DQ+fmphNSF6TrLHG6BYK2bXc9Gb4c1uXFKRRVLaGl5Q== 1039 | dependencies: 1040 | "@types/filesystem" "*" 1041 | "@types/har-format" "*" 1042 | 1043 | "@types/filesystem@*": 1044 | version "0.0.32" 1045 | resolved "https://registry.yarnpkg.com/@types/filesystem/-/filesystem-0.0.32.tgz#307df7cc084a2293c3c1a31151b178063e0a8edf" 1046 | integrity sha512-Yuf4jR5YYMR2DVgwuCiP11s0xuVRyPKmz8vo6HBY3CGdeMj8af93CFZX+T82+VD1+UqHOxTq31lO7MI7lepBtQ== 1047 | dependencies: 1048 | "@types/filewriter" "*" 1049 | 1050 | "@types/filewriter@*": 1051 | version "0.0.29" 1052 | resolved "https://registry.yarnpkg.com/@types/filewriter/-/filewriter-0.0.29.tgz#a48795ecadf957f6c0d10e0c34af86c098fa5bee" 1053 | integrity sha512-BsPXH/irW0ht0Ji6iw/jJaK8Lj3FJemon2gvEqHKpCdDCeemHa+rI3WBGq5z7cDMZgoLjY40oninGxqk+8NzNQ== 1054 | 1055 | "@types/har-format@*": 1056 | version "1.2.10" 1057 | resolved "https://registry.yarnpkg.com/@types/har-format/-/har-format-1.2.10.tgz#7b4e1e0ada4d17684ac3b05d601a4871cfab11fc" 1058 | integrity sha512-o0J30wqycjF5miWDKYKKzzOU1ZTLuA42HZ4HE7/zqTOc/jTLdQ5NhYWvsRQo45Nfi1KHoRdNhteSI4BAxTF1Pg== 1059 | 1060 | "@types/parse-json@^4.0.0": 1061 | version "4.0.0" 1062 | resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" 1063 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== 1064 | 1065 | "@types/prop-types@*": 1066 | version "15.7.5" 1067 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" 1068 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== 1069 | 1070 | "@types/react-dom@^18.0.10": 1071 | version "18.0.10" 1072 | resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.0.10.tgz#3b66dec56aa0f16a6cc26da9e9ca96c35c0b4352" 1073 | integrity sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg== 1074 | dependencies: 1075 | "@types/react" "*" 1076 | 1077 | "@types/react@*", "@types/react@^18.0.27": 1078 | version "18.0.27" 1079 | resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.27.tgz#d9425abe187a00f8a5ec182b010d4fd9da703b71" 1080 | integrity sha512-3vtRKHgVxu3Jp9t718R9BuzoD4NcQ8YJ5XRzsSKxNDiDonD2MXIT1TmSkenxuCycZJoQT5d2vE8LwWJxBC1gmA== 1081 | dependencies: 1082 | "@types/prop-types" "*" 1083 | "@types/scheduler" "*" 1084 | csstype "^3.0.2" 1085 | 1086 | "@types/scheduler@*": 1087 | version "0.16.2" 1088 | resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" 1089 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== 1090 | 1091 | abortcontroller-polyfill@^1.1.9: 1092 | version "1.7.5" 1093 | resolved "https://registry.yarnpkg.com/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.5.tgz#6738495f4e901fbb57b6c0611d0c75f76c485bed" 1094 | integrity sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ== 1095 | 1096 | acorn-node@^1.8.2: 1097 | version "1.8.2" 1098 | resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" 1099 | integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== 1100 | dependencies: 1101 | acorn "^7.0.0" 1102 | acorn-walk "^7.0.0" 1103 | xtend "^4.0.2" 1104 | 1105 | acorn-walk@^7.0.0: 1106 | version "7.2.0" 1107 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 1108 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 1109 | 1110 | acorn@^7.0.0: 1111 | version "7.4.1" 1112 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 1113 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 1114 | 1115 | acorn@^8.5.0: 1116 | version "8.8.2" 1117 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" 1118 | integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== 1119 | 1120 | ansi-styles@^3.2.1: 1121 | version "3.2.1" 1122 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 1123 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 1124 | dependencies: 1125 | color-convert "^1.9.0" 1126 | 1127 | ansi-styles@^4.1.0: 1128 | version "4.3.0" 1129 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 1130 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 1131 | dependencies: 1132 | color-convert "^2.0.1" 1133 | 1134 | anymatch@~3.1.2: 1135 | version "3.1.3" 1136 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" 1137 | integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== 1138 | dependencies: 1139 | normalize-path "^3.0.0" 1140 | picomatch "^2.0.4" 1141 | 1142 | arg@^5.0.2: 1143 | version "5.0.2" 1144 | resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" 1145 | integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== 1146 | 1147 | autoprefixer@^10.4.13: 1148 | version "10.4.13" 1149 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.13.tgz#b5136b59930209a321e9fa3dca2e7c4d223e83a8" 1150 | integrity sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg== 1151 | dependencies: 1152 | browserslist "^4.21.4" 1153 | caniuse-lite "^1.0.30001426" 1154 | fraction.js "^4.2.0" 1155 | normalize-range "^0.1.2" 1156 | picocolors "^1.0.0" 1157 | postcss-value-parser "^4.2.0" 1158 | 1159 | base-x@^3.0.8: 1160 | version "3.0.9" 1161 | resolved "https://registry.yarnpkg.com/base-x/-/base-x-3.0.9.tgz#6349aaabb58526332de9f60995e548a53fe21320" 1162 | integrity sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ== 1163 | dependencies: 1164 | safe-buffer "^5.0.1" 1165 | 1166 | binary-extensions@^2.0.0: 1167 | version "2.2.0" 1168 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 1169 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 1170 | 1171 | boolbase@^1.0.0: 1172 | version "1.0.0" 1173 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 1174 | integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== 1175 | 1176 | braces@^3.0.2, braces@~3.0.2: 1177 | version "3.0.2" 1178 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 1179 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 1180 | dependencies: 1181 | fill-range "^7.0.1" 1182 | 1183 | browserslist@^4.21.3, browserslist@^4.21.4, browserslist@^4.6.6: 1184 | version "4.21.4" 1185 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987" 1186 | integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw== 1187 | dependencies: 1188 | caniuse-lite "^1.0.30001400" 1189 | electron-to-chromium "^1.4.251" 1190 | node-releases "^2.0.6" 1191 | update-browserslist-db "^1.0.9" 1192 | 1193 | buffer-from@^1.0.0: 1194 | version "1.1.2" 1195 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" 1196 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 1197 | 1198 | callsites@^3.0.0: 1199 | version "3.1.0" 1200 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 1201 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 1202 | 1203 | camelcase-css@^2.0.1: 1204 | version "2.0.1" 1205 | resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" 1206 | integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== 1207 | 1208 | camelcase@^6.2.0: 1209 | version "6.3.0" 1210 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" 1211 | integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== 1212 | 1213 | caniuse-lite@^1.0.30001400, caniuse-lite@^1.0.30001426: 1214 | version "1.0.30001449" 1215 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001449.tgz#a8d11f6a814c75c9ce9d851dc53eb1d1dfbcd657" 1216 | integrity sha512-CPB+UL9XMT/Av+pJxCKGhdx+yg1hzplvFJQlJ2n68PyQGMz9L/E2zCyLdOL8uasbouTUgnPl+y0tccI/se+BEw== 1217 | 1218 | chalk@^2.0.0: 1219 | version "2.4.2" 1220 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 1221 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 1222 | dependencies: 1223 | ansi-styles "^3.2.1" 1224 | escape-string-regexp "^1.0.5" 1225 | supports-color "^5.3.0" 1226 | 1227 | chalk@^4.1.0: 1228 | version "4.1.2" 1229 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 1230 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 1231 | dependencies: 1232 | ansi-styles "^4.1.0" 1233 | supports-color "^7.1.0" 1234 | 1235 | chokidar@^3.5.3: 1236 | version "3.5.3" 1237 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" 1238 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== 1239 | dependencies: 1240 | anymatch "~3.1.2" 1241 | braces "~3.0.2" 1242 | glob-parent "~5.1.2" 1243 | is-binary-path "~2.1.0" 1244 | is-glob "~4.0.1" 1245 | normalize-path "~3.0.0" 1246 | readdirp "~3.6.0" 1247 | optionalDependencies: 1248 | fsevents "~2.3.2" 1249 | 1250 | chrome-trace-event@^1.0.2: 1251 | version "1.0.3" 1252 | resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" 1253 | integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== 1254 | 1255 | clone@^2.1.1: 1256 | version "2.1.2" 1257 | resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" 1258 | integrity sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w== 1259 | 1260 | color-convert@^1.9.0: 1261 | version "1.9.3" 1262 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1263 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 1264 | dependencies: 1265 | color-name "1.1.3" 1266 | 1267 | color-convert@^2.0.1: 1268 | version "2.0.1" 1269 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 1270 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 1271 | dependencies: 1272 | color-name "~1.1.4" 1273 | 1274 | color-name@1.1.3: 1275 | version "1.1.3" 1276 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1277 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 1278 | 1279 | color-name@^1.1.4, color-name@~1.1.4: 1280 | version "1.1.4" 1281 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 1282 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 1283 | 1284 | commander@^2.20.0: 1285 | version "2.20.3" 1286 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 1287 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 1288 | 1289 | commander@^7.0.0, commander@^7.2.0: 1290 | version "7.2.0" 1291 | resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" 1292 | integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== 1293 | 1294 | convert-source-map@^1.7.0: 1295 | version "1.9.0" 1296 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" 1297 | integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== 1298 | 1299 | cosmiconfig@^7.0.1: 1300 | version "7.1.0" 1301 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" 1302 | integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== 1303 | dependencies: 1304 | "@types/parse-json" "^4.0.0" 1305 | import-fresh "^3.2.1" 1306 | parse-json "^5.0.0" 1307 | path-type "^4.0.0" 1308 | yaml "^1.10.0" 1309 | 1310 | css-select@^4.1.3: 1311 | version "4.3.0" 1312 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" 1313 | integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== 1314 | dependencies: 1315 | boolbase "^1.0.0" 1316 | css-what "^6.0.1" 1317 | domhandler "^4.3.1" 1318 | domutils "^2.8.0" 1319 | nth-check "^2.0.1" 1320 | 1321 | css-tree@^1.1.2, css-tree@^1.1.3: 1322 | version "1.1.3" 1323 | resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" 1324 | integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== 1325 | dependencies: 1326 | mdn-data "2.0.14" 1327 | source-map "^0.6.1" 1328 | 1329 | css-what@^6.0.1: 1330 | version "6.1.0" 1331 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" 1332 | integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== 1333 | 1334 | cssesc@^3.0.0: 1335 | version "3.0.0" 1336 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" 1337 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 1338 | 1339 | csso@^4.2.0: 1340 | version "4.2.0" 1341 | resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" 1342 | integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== 1343 | dependencies: 1344 | css-tree "^1.1.2" 1345 | 1346 | csstype@^3.0.2: 1347 | version "3.1.1" 1348 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.1.tgz#841b532c45c758ee546a11d5bd7b7b473c8c30b9" 1349 | integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw== 1350 | 1351 | debug@^4.1.0: 1352 | version "4.3.4" 1353 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 1354 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 1355 | dependencies: 1356 | ms "2.1.2" 1357 | 1358 | deepmerge@^4.2.2: 1359 | version "4.2.2" 1360 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 1361 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 1362 | 1363 | defined@^1.0.0: 1364 | version "1.0.1" 1365 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.1.tgz#c0b9db27bfaffd95d6f61399419b893df0f91ebf" 1366 | integrity sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q== 1367 | 1368 | detect-libc@^1.0.3: 1369 | version "1.0.3" 1370 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1371 | integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg== 1372 | 1373 | detective@^5.2.1: 1374 | version "5.2.1" 1375 | resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.1.tgz#6af01eeda11015acb0e73f933242b70f24f91034" 1376 | integrity sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw== 1377 | dependencies: 1378 | acorn-node "^1.8.2" 1379 | defined "^1.0.0" 1380 | minimist "^1.2.6" 1381 | 1382 | didyoumean@^1.2.2: 1383 | version "1.2.2" 1384 | resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" 1385 | integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== 1386 | 1387 | dlv@^1.1.3: 1388 | version "1.1.3" 1389 | resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" 1390 | integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== 1391 | 1392 | dom-serializer@^1.0.1: 1393 | version "1.4.1" 1394 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" 1395 | integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== 1396 | dependencies: 1397 | domelementtype "^2.0.1" 1398 | domhandler "^4.2.0" 1399 | entities "^2.0.0" 1400 | 1401 | domelementtype@^2.0.1, domelementtype@^2.2.0: 1402 | version "2.3.0" 1403 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" 1404 | integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== 1405 | 1406 | domhandler@^4.2.0, domhandler@^4.2.2, domhandler@^4.3.1: 1407 | version "4.3.1" 1408 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" 1409 | integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== 1410 | dependencies: 1411 | domelementtype "^2.2.0" 1412 | 1413 | domutils@^2.8.0: 1414 | version "2.8.0" 1415 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" 1416 | integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== 1417 | dependencies: 1418 | dom-serializer "^1.0.1" 1419 | domelementtype "^2.2.0" 1420 | domhandler "^4.2.0" 1421 | 1422 | dotenv-expand@^5.1.0: 1423 | version "5.1.0" 1424 | resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0" 1425 | integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA== 1426 | 1427 | dotenv@^7.0.0: 1428 | version "7.0.0" 1429 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-7.0.0.tgz#a2be3cd52736673206e8a85fb5210eea29628e7c" 1430 | integrity sha512-M3NhsLbV1i6HuGzBUH8vXrtxOk+tWmzWKDMbAVSUp3Zsjm7ywFeuwrUXhmhQyRK1q5B5GGy7hcXPbj3bnfZg2g== 1431 | 1432 | electron-to-chromium@^1.4.251: 1433 | version "1.4.284" 1434 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592" 1435 | integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA== 1436 | 1437 | entities@^2.0.0: 1438 | version "2.2.0" 1439 | resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" 1440 | integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== 1441 | 1442 | entities@^3.0.1: 1443 | version "3.0.1" 1444 | resolved "https://registry.yarnpkg.com/entities/-/entities-3.0.1.tgz#2b887ca62585e96db3903482d336c1006c3001d4" 1445 | integrity sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q== 1446 | 1447 | entities@^4.4.0: 1448 | version "4.4.0" 1449 | resolved "https://registry.yarnpkg.com/entities/-/entities-4.4.0.tgz#97bdaba170339446495e653cfd2db78962900174" 1450 | integrity sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA== 1451 | 1452 | error-ex@^1.3.1: 1453 | version "1.3.2" 1454 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1455 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1456 | dependencies: 1457 | is-arrayish "^0.2.1" 1458 | 1459 | escalade@^3.1.1: 1460 | version "3.1.1" 1461 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 1462 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1463 | 1464 | escape-string-regexp@^1.0.5: 1465 | version "1.0.5" 1466 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1467 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== 1468 | 1469 | fast-glob@^3.2.12: 1470 | version "3.2.12" 1471 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" 1472 | integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== 1473 | dependencies: 1474 | "@nodelib/fs.stat" "^2.0.2" 1475 | "@nodelib/fs.walk" "^1.2.3" 1476 | glob-parent "^5.1.2" 1477 | merge2 "^1.3.0" 1478 | micromatch "^4.0.4" 1479 | 1480 | fastq@^1.6.0: 1481 | version "1.15.0" 1482 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" 1483 | integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== 1484 | dependencies: 1485 | reusify "^1.0.4" 1486 | 1487 | fill-range@^7.0.1: 1488 | version "7.0.1" 1489 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1490 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1491 | dependencies: 1492 | to-regex-range "^5.0.1" 1493 | 1494 | fraction.js@^4.2.0: 1495 | version "4.2.0" 1496 | resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950" 1497 | integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== 1498 | 1499 | fsevents@~2.3.2: 1500 | version "2.3.2" 1501 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 1502 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1503 | 1504 | function-bind@^1.1.1: 1505 | version "1.1.1" 1506 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1507 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1508 | 1509 | gensync@^1.0.0-beta.2: 1510 | version "1.0.0-beta.2" 1511 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1512 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1513 | 1514 | get-port@^4.2.0: 1515 | version "4.2.0" 1516 | resolved "https://registry.yarnpkg.com/get-port/-/get-port-4.2.0.tgz#e37368b1e863b7629c43c5a323625f95cf24b119" 1517 | integrity sha512-/b3jarXkH8KJoOMQc3uVGHASwGLPq3gSFJ7tgJm2diza+bydJPTGOibin2steecKeOylE8oY2JERlVWkAJO6yw== 1518 | 1519 | glob-parent@^5.1.2, glob-parent@~5.1.2: 1520 | version "5.1.2" 1521 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 1522 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1523 | dependencies: 1524 | is-glob "^4.0.1" 1525 | 1526 | glob-parent@^6.0.2: 1527 | version "6.0.2" 1528 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 1529 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1530 | dependencies: 1531 | is-glob "^4.0.3" 1532 | 1533 | globals@^11.1.0: 1534 | version "11.12.0" 1535 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1536 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1537 | 1538 | globals@^13.2.0: 1539 | version "13.20.0" 1540 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" 1541 | integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== 1542 | dependencies: 1543 | type-fest "^0.20.2" 1544 | 1545 | has-flag@^3.0.0: 1546 | version "3.0.0" 1547 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1548 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== 1549 | 1550 | has-flag@^4.0.0: 1551 | version "4.0.0" 1552 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1553 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1554 | 1555 | has@^1.0.3: 1556 | version "1.0.3" 1557 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1558 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1559 | dependencies: 1560 | function-bind "^1.1.1" 1561 | 1562 | htmlnano@^2.0.0: 1563 | version "2.0.3" 1564 | resolved "https://registry.yarnpkg.com/htmlnano/-/htmlnano-2.0.3.tgz#50ee639ed63357d4a6c01309f52a35892e4edc2e" 1565 | integrity sha512-S4PGGj9RbdgW8LhbILNK7W9JhmYP8zmDY7KDV/8eCiJBQJlbmltp5I0gv8c5ntLljfdxxfmJ+UJVSqyH4mb41A== 1566 | dependencies: 1567 | cosmiconfig "^7.0.1" 1568 | posthtml "^0.16.5" 1569 | timsort "^0.3.0" 1570 | 1571 | htmlparser2@^7.1.1: 1572 | version "7.2.0" 1573 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-7.2.0.tgz#8817cdea38bbc324392a90b1990908e81a65f5a5" 1574 | integrity sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog== 1575 | dependencies: 1576 | domelementtype "^2.0.1" 1577 | domhandler "^4.2.2" 1578 | domutils "^2.8.0" 1579 | entities "^3.0.1" 1580 | 1581 | import-fresh@^3.2.1: 1582 | version "3.3.0" 1583 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 1584 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1585 | dependencies: 1586 | parent-module "^1.0.0" 1587 | resolve-from "^4.0.0" 1588 | 1589 | is-arrayish@^0.2.1: 1590 | version "0.2.1" 1591 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1592 | integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== 1593 | 1594 | is-binary-path@~2.1.0: 1595 | version "2.1.0" 1596 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 1597 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 1598 | dependencies: 1599 | binary-extensions "^2.0.0" 1600 | 1601 | is-core-module@^2.9.0: 1602 | version "2.11.0" 1603 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" 1604 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== 1605 | dependencies: 1606 | has "^1.0.3" 1607 | 1608 | is-extglob@^2.1.1: 1609 | version "2.1.1" 1610 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1611 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1612 | 1613 | is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: 1614 | version "4.0.3" 1615 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1616 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1617 | dependencies: 1618 | is-extglob "^2.1.1" 1619 | 1620 | is-json@^2.0.1: 1621 | version "2.0.1" 1622 | resolved "https://registry.yarnpkg.com/is-json/-/is-json-2.0.1.tgz#6be166d144828a131d686891b983df62c39491ff" 1623 | integrity sha512-6BEnpVn1rcf3ngfmViLM6vjUjGErbdrL4rwlv+u1NO1XO8kqT4YGL8+19Q+Z/bas8tY90BTWMk2+fW1g6hQjbA== 1624 | 1625 | is-number@^7.0.0: 1626 | version "7.0.0" 1627 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1628 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1629 | 1630 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1631 | version "4.0.0" 1632 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1633 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1634 | 1635 | jsesc@^2.5.1: 1636 | version "2.5.2" 1637 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1638 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1639 | 1640 | json-parse-even-better-errors@^2.3.0: 1641 | version "2.3.1" 1642 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 1643 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 1644 | 1645 | json5@^2.2.0, json5@^2.2.1, json5@^2.2.2: 1646 | version "2.2.3" 1647 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" 1648 | integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== 1649 | 1650 | lightningcss-darwin-arm64@1.18.0: 1651 | version "1.18.0" 1652 | resolved "https://registry.yarnpkg.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.18.0.tgz#bcd7d494d99c69947abd71136a42e80dfa80c682" 1653 | integrity sha512-OqjydwtiNPgdH1ByIjA1YzqvDG/OMR6L3LPN6wRl1729LB0y4Mik7L06kmZaTb+pvUHr+NmDd2KCwnlrQ4zO3w== 1654 | 1655 | lightningcss-darwin-x64@1.18.0: 1656 | version "1.18.0" 1657 | resolved "https://registry.yarnpkg.com/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.18.0.tgz#952abea2405fe2bb8dd0bb57a9d5590f8d1d6414" 1658 | integrity sha512-mNiuPHj89/JHZmJMp+5H8EZSt6EL5DZRWJ31O6k3DrLLnRIQjXuXdDdN8kP7LoIkeWI5xvyD60CsReJm+YWYAw== 1659 | 1660 | lightningcss-linux-arm-gnueabihf@1.18.0: 1661 | version "1.18.0" 1662 | resolved "https://registry.yarnpkg.com/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.18.0.tgz#23ca85e05dc4def9b4975aef307554ef292b56cd" 1663 | integrity sha512-S+25JjI6601HiAVoTDXW6SqH+E94a+FHA7WQqseyNHunOgVWKcAkNEc2LJvVxgwTq6z41sDIb9/M3Z9wa9lk4A== 1664 | 1665 | lightningcss-linux-arm64-gnu@1.18.0: 1666 | version "1.18.0" 1667 | resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.18.0.tgz#6c8e0a6e2c8b44cf180f3a0f0740402e8f656155" 1668 | integrity sha512-JSqh4+21dCgBecIQUet35dtE4PhhSEMyqe3y0ZNQrAJQ5kyUPSQHiw81WXnPJcOSTTpG0TyMLiC8K//+BsFGQA== 1669 | 1670 | lightningcss-linux-arm64-musl@1.18.0: 1671 | version "1.18.0" 1672 | resolved "https://registry.yarnpkg.com/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.18.0.tgz#88393c101cf236ea0cdc97fddd66b82db964d835" 1673 | integrity sha512-2FWHa8iUhShnZnqhn2wfIcK5adJat9hAAaX7etNsoXJymlliDIOFuBQEsba2KBAZSM4QqfQtvRdR7m8i0I7ybQ== 1674 | 1675 | lightningcss-linux-x64-gnu@1.18.0: 1676 | version "1.18.0" 1677 | resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.18.0.tgz#ad068d24836568337bfe545650565e13f813c8ee" 1678 | integrity sha512-plCPGQJtDZHcLVKVRLnQVF2XRsIC32WvuJhQ7fJ7F6BV98b/VZX0OlX05qUaOESD9dCDHjYSfxsgcvOKgCWh7A== 1679 | 1680 | lightningcss-linux-x64-musl@1.18.0: 1681 | version "1.18.0" 1682 | resolved "https://registry.yarnpkg.com/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.18.0.tgz#4d84de26b8185aa42450e0f4c83bbfb5a36ae750" 1683 | integrity sha512-na+BGtVU6fpZvOHKhnlA0XHeibkT3/46nj6vLluG3kzdJYoBKU6dIl7DSOk++8jv4ybZyFJ0aOFMMSc8g2h58A== 1684 | 1685 | lightningcss-win32-x64-msvc@1.18.0: 1686 | version "1.18.0" 1687 | resolved "https://registry.yarnpkg.com/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.18.0.tgz#f83952d16b83dfce65f4615f87c867769220d117" 1688 | integrity sha512-5qeAH4RMNy2yMNEl7e5TI6upt/7xD2ZpHWH4RkT8iJ7/6POS5mjHbXWUO9Q1hhDhqkdzGa76uAdMzEouIeCyNw== 1689 | 1690 | lightningcss@^1.16.1: 1691 | version "1.18.0" 1692 | resolved "https://registry.yarnpkg.com/lightningcss/-/lightningcss-1.18.0.tgz#ca3327a1a7571a83bbb9733ed4e4cded775bdadf" 1693 | integrity sha512-uk10tNxi5fhZqU93vtYiQgx/8a9f0Kvtj5AXIm+VlOXY+t/DWDmCZWJEkZJmmALgvbS6aAW8or+Kq85eJ6TDTw== 1694 | dependencies: 1695 | detect-libc "^1.0.3" 1696 | optionalDependencies: 1697 | lightningcss-darwin-arm64 "1.18.0" 1698 | lightningcss-darwin-x64 "1.18.0" 1699 | lightningcss-linux-arm-gnueabihf "1.18.0" 1700 | lightningcss-linux-arm64-gnu "1.18.0" 1701 | lightningcss-linux-arm64-musl "1.18.0" 1702 | lightningcss-linux-x64-gnu "1.18.0" 1703 | lightningcss-linux-x64-musl "1.18.0" 1704 | lightningcss-win32-x64-msvc "1.18.0" 1705 | 1706 | lilconfig@^2.0.5, lilconfig@^2.0.6: 1707 | version "2.0.6" 1708 | resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.6.tgz#32a384558bd58af3d4c6e077dd1ad1d397bc69d4" 1709 | integrity sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg== 1710 | 1711 | lines-and-columns@^1.1.6: 1712 | version "1.2.4" 1713 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" 1714 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 1715 | 1716 | lmdb@2.5.2: 1717 | version "2.5.2" 1718 | resolved "https://registry.yarnpkg.com/lmdb/-/lmdb-2.5.2.tgz#37e28a9fb43405f4dc48c44cec0e13a14c4a6ff1" 1719 | integrity sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA== 1720 | dependencies: 1721 | msgpackr "^1.5.4" 1722 | node-addon-api "^4.3.0" 1723 | node-gyp-build-optional-packages "5.0.3" 1724 | ordered-binary "^1.2.4" 1725 | weak-lru-cache "^1.2.2" 1726 | optionalDependencies: 1727 | "@lmdb/lmdb-darwin-arm64" "2.5.2" 1728 | "@lmdb/lmdb-darwin-x64" "2.5.2" 1729 | "@lmdb/lmdb-linux-arm" "2.5.2" 1730 | "@lmdb/lmdb-linux-arm64" "2.5.2" 1731 | "@lmdb/lmdb-linux-x64" "2.5.2" 1732 | "@lmdb/lmdb-win32-x64" "2.5.2" 1733 | 1734 | loose-envify@^1.1.0: 1735 | version "1.4.0" 1736 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1737 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1738 | dependencies: 1739 | js-tokens "^3.0.0 || ^4.0.0" 1740 | 1741 | lru-cache@^5.1.1: 1742 | version "5.1.1" 1743 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" 1744 | integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== 1745 | dependencies: 1746 | yallist "^3.0.2" 1747 | 1748 | mdn-data@2.0.14: 1749 | version "2.0.14" 1750 | resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" 1751 | integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== 1752 | 1753 | merge2@^1.3.0: 1754 | version "1.4.1" 1755 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1756 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1757 | 1758 | micromatch@^4.0.4, micromatch@^4.0.5: 1759 | version "4.0.5" 1760 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 1761 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 1762 | dependencies: 1763 | braces "^3.0.2" 1764 | picomatch "^2.3.1" 1765 | 1766 | minimist@^1.2.6: 1767 | version "1.2.7" 1768 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" 1769 | integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== 1770 | 1771 | ms@2.1.2: 1772 | version "2.1.2" 1773 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1774 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1775 | 1776 | msgpackr-extract@^2.2.0: 1777 | version "2.2.0" 1778 | resolved "https://registry.yarnpkg.com/msgpackr-extract/-/msgpackr-extract-2.2.0.tgz#4bb749b58d9764cfdc0d91c7977a007b08e8f262" 1779 | integrity sha512-0YcvWSv7ZOGl9Od6Y5iJ3XnPww8O7WLcpYMDwX+PAA/uXLDtyw94PJv9GLQV/nnp3cWlDhMoyKZIQLrx33sWog== 1780 | dependencies: 1781 | node-gyp-build-optional-packages "5.0.3" 1782 | optionalDependencies: 1783 | "@msgpackr-extract/msgpackr-extract-darwin-arm64" "2.2.0" 1784 | "@msgpackr-extract/msgpackr-extract-darwin-x64" "2.2.0" 1785 | "@msgpackr-extract/msgpackr-extract-linux-arm" "2.2.0" 1786 | "@msgpackr-extract/msgpackr-extract-linux-arm64" "2.2.0" 1787 | "@msgpackr-extract/msgpackr-extract-linux-x64" "2.2.0" 1788 | "@msgpackr-extract/msgpackr-extract-win32-x64" "2.2.0" 1789 | 1790 | msgpackr@^1.5.4: 1791 | version "1.8.2" 1792 | resolved "https://registry.yarnpkg.com/msgpackr/-/msgpackr-1.8.2.tgz#e40615cc384f5b92322e0a9da1ae98c45ccc51c4" 1793 | integrity sha512-eLuPeok0DMwsGN23AvuVg32mYpx55tsQnxI87d8V1yZsdT8U5jrWhmCa1INO/joGAFQFfo/eTlM/BxVwLKbBOQ== 1794 | optionalDependencies: 1795 | msgpackr-extract "^2.2.0" 1796 | 1797 | nanoid@^3.3.4: 1798 | version "3.3.4" 1799 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" 1800 | integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== 1801 | 1802 | node-addon-api@^3.2.1: 1803 | version "3.2.1" 1804 | resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.2.1.tgz#81325e0a2117789c0128dab65e7e38f07ceba161" 1805 | integrity sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A== 1806 | 1807 | node-addon-api@^4.3.0: 1808 | version "4.3.0" 1809 | resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-4.3.0.tgz#52a1a0b475193e0928e98e0426a0d1254782b77f" 1810 | integrity sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ== 1811 | 1812 | node-gyp-build-optional-packages@5.0.3: 1813 | version "5.0.3" 1814 | resolved "https://registry.yarnpkg.com/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.3.tgz#92a89d400352c44ad3975010368072b41ad66c17" 1815 | integrity sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA== 1816 | 1817 | node-gyp-build@^4.3.0: 1818 | version "4.6.0" 1819 | resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.6.0.tgz#0c52e4cbf54bbd28b709820ef7b6a3c2d6209055" 1820 | integrity sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ== 1821 | 1822 | node-releases@^2.0.6: 1823 | version "2.0.8" 1824 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.8.tgz#0f349cdc8fcfa39a92ac0be9bc48b7706292b9ae" 1825 | integrity sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A== 1826 | 1827 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1828 | version "3.0.0" 1829 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1830 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1831 | 1832 | normalize-range@^0.1.2: 1833 | version "0.1.2" 1834 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 1835 | integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== 1836 | 1837 | nth-check@^2.0.1: 1838 | version "2.1.1" 1839 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" 1840 | integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== 1841 | dependencies: 1842 | boolbase "^1.0.0" 1843 | 1844 | nullthrows@^1.1.1: 1845 | version "1.1.1" 1846 | resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1" 1847 | integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw== 1848 | 1849 | object-hash@^3.0.0: 1850 | version "3.0.0" 1851 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" 1852 | integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== 1853 | 1854 | ordered-binary@^1.2.4: 1855 | version "1.4.0" 1856 | resolved "https://registry.yarnpkg.com/ordered-binary/-/ordered-binary-1.4.0.tgz#6bb53d44925f3b8afc33d1eed0fa15693b211389" 1857 | integrity sha512-EHQ/jk4/a9hLupIKxTfUsQRej1Yd/0QLQs3vGvIqg5ZtCYSzNhkzHoZc7Zf4e4kUlDaC3Uw8Q/1opOLNN2OKRQ== 1858 | 1859 | parcel@^2.8.3: 1860 | version "2.8.3" 1861 | resolved "https://registry.yarnpkg.com/parcel/-/parcel-2.8.3.tgz#1ff71d7317274fd367379bc7310a52c6b75d30c2" 1862 | integrity sha512-5rMBpbNE72g6jZvkdR5gS2nyhwIXaJy8i65osOqs/+5b7zgf3eMKgjSsDrv6bhz3gzifsba6MBJiZdBckl+vnA== 1863 | dependencies: 1864 | "@parcel/config-default" "2.8.3" 1865 | "@parcel/core" "2.8.3" 1866 | "@parcel/diagnostic" "2.8.3" 1867 | "@parcel/events" "2.8.3" 1868 | "@parcel/fs" "2.8.3" 1869 | "@parcel/logger" "2.8.3" 1870 | "@parcel/package-manager" "2.8.3" 1871 | "@parcel/reporter-cli" "2.8.3" 1872 | "@parcel/reporter-dev-server" "2.8.3" 1873 | "@parcel/utils" "2.8.3" 1874 | chalk "^4.1.0" 1875 | commander "^7.0.0" 1876 | get-port "^4.2.0" 1877 | v8-compile-cache "^2.0.0" 1878 | 1879 | parent-module@^1.0.0: 1880 | version "1.0.1" 1881 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1882 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1883 | dependencies: 1884 | callsites "^3.0.0" 1885 | 1886 | parse-json@^5.0.0: 1887 | version "5.2.0" 1888 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" 1889 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 1890 | dependencies: 1891 | "@babel/code-frame" "^7.0.0" 1892 | error-ex "^1.3.1" 1893 | json-parse-even-better-errors "^2.3.0" 1894 | lines-and-columns "^1.1.6" 1895 | 1896 | path-parse@^1.0.7: 1897 | version "1.0.7" 1898 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1899 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1900 | 1901 | path-type@^4.0.0: 1902 | version "4.0.0" 1903 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1904 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1905 | 1906 | picocolors@^1.0.0: 1907 | version "1.0.0" 1908 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1909 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1910 | 1911 | picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: 1912 | version "2.3.1" 1913 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1914 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1915 | 1916 | pify@^2.3.0: 1917 | version "2.3.0" 1918 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1919 | integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== 1920 | 1921 | postcss-import@^14.1.0: 1922 | version "14.1.0" 1923 | resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-14.1.0.tgz#a7333ffe32f0b8795303ee9e40215dac922781f0" 1924 | integrity sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw== 1925 | dependencies: 1926 | postcss-value-parser "^4.0.0" 1927 | read-cache "^1.0.0" 1928 | resolve "^1.1.7" 1929 | 1930 | postcss-js@^4.0.0: 1931 | version "4.0.0" 1932 | resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.0.tgz#31db79889531b80dc7bc9b0ad283e418dce0ac00" 1933 | integrity sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ== 1934 | dependencies: 1935 | camelcase-css "^2.0.1" 1936 | 1937 | postcss-load-config@^3.1.4: 1938 | version "3.1.4" 1939 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz#1ab2571faf84bb078877e1d07905eabe9ebda855" 1940 | integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg== 1941 | dependencies: 1942 | lilconfig "^2.0.5" 1943 | yaml "^1.10.2" 1944 | 1945 | postcss-nested@6.0.0: 1946 | version "6.0.0" 1947 | resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.0.tgz#1572f1984736578f360cffc7eb7dca69e30d1735" 1948 | integrity sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w== 1949 | dependencies: 1950 | postcss-selector-parser "^6.0.10" 1951 | 1952 | postcss-selector-parser@^6.0.10: 1953 | version "6.0.11" 1954 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz#2e41dc39b7ad74046e1615185185cd0b17d0c8dc" 1955 | integrity sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g== 1956 | dependencies: 1957 | cssesc "^3.0.0" 1958 | util-deprecate "^1.0.2" 1959 | 1960 | postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: 1961 | version "4.2.0" 1962 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" 1963 | integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== 1964 | 1965 | postcss@^8.4.18, postcss@^8.4.21: 1966 | version "8.4.21" 1967 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.21.tgz#c639b719a57efc3187b13a1d765675485f4134f4" 1968 | integrity sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg== 1969 | dependencies: 1970 | nanoid "^3.3.4" 1971 | picocolors "^1.0.0" 1972 | source-map-js "^1.0.2" 1973 | 1974 | posthtml-parser@^0.10.1: 1975 | version "0.10.2" 1976 | resolved "https://registry.yarnpkg.com/posthtml-parser/-/posthtml-parser-0.10.2.tgz#df364d7b179f2a6bf0466b56be7b98fd4e97c573" 1977 | integrity sha512-PId6zZ/2lyJi9LiKfe+i2xv57oEjJgWbsHGGANwos5AvdQp98i6AtamAl8gzSVFGfQ43Glb5D614cvZf012VKg== 1978 | dependencies: 1979 | htmlparser2 "^7.1.1" 1980 | 1981 | posthtml-parser@^0.11.0: 1982 | version "0.11.0" 1983 | resolved "https://registry.yarnpkg.com/posthtml-parser/-/posthtml-parser-0.11.0.tgz#25d1c7bf811ea83559bc4c21c189a29747a24b7a" 1984 | integrity sha512-QecJtfLekJbWVo/dMAA+OSwY79wpRmbqS5TeXvXSX+f0c6pW4/SE6inzZ2qkU7oAMCPqIDkZDvd/bQsSFUnKyw== 1985 | dependencies: 1986 | htmlparser2 "^7.1.1" 1987 | 1988 | posthtml-render@^3.0.0: 1989 | version "3.0.0" 1990 | resolved "https://registry.yarnpkg.com/posthtml-render/-/posthtml-render-3.0.0.tgz#97be44931496f495b4f07b99e903cc70ad6a3205" 1991 | integrity sha512-z+16RoxK3fUPgwaIgH9NGnK1HKY9XIDpydky5eQGgAFVXTCSezalv9U2jQuNV+Z9qV1fDWNzldcw4eK0SSbqKA== 1992 | dependencies: 1993 | is-json "^2.0.1" 1994 | 1995 | posthtml@^0.16.4, posthtml@^0.16.5: 1996 | version "0.16.6" 1997 | resolved "https://registry.yarnpkg.com/posthtml/-/posthtml-0.16.6.tgz#e2fc407f67a64d2fa3567afe770409ffdadafe59" 1998 | integrity sha512-JcEmHlyLK/o0uGAlj65vgg+7LIms0xKXe60lcDOTU7oVX/3LuEuLwrQpW3VJ7de5TaFKiW4kWkaIpJL42FEgxQ== 1999 | dependencies: 2000 | posthtml-parser "^0.11.0" 2001 | posthtml-render "^3.0.0" 2002 | 2003 | process@^0.11.10: 2004 | version "0.11.10" 2005 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 2006 | integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== 2007 | 2008 | queue-microtask@^1.2.2: 2009 | version "1.2.3" 2010 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 2011 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 2012 | 2013 | quick-lru@^5.1.1: 2014 | version "5.1.1" 2015 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" 2016 | integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== 2017 | 2018 | react-dom@^18.2.0: 2019 | version "18.2.0" 2020 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" 2021 | integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== 2022 | dependencies: 2023 | loose-envify "^1.1.0" 2024 | scheduler "^0.23.0" 2025 | 2026 | react-error-overlay@6.0.9: 2027 | version "6.0.9" 2028 | resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.9.tgz#3c743010c9359608c375ecd6bc76f35d93995b0a" 2029 | integrity sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew== 2030 | 2031 | react-refresh@^0.9.0: 2032 | version "0.9.0" 2033 | resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.9.0.tgz#71863337adc3e5c2f8a6bfddd12ae3bfe32aafbf" 2034 | integrity sha512-Gvzk7OZpiqKSkxsQvO/mbTN1poglhmAV7gR/DdIrRrSMXraRQQlfikRJOr3Nb9GTMPC5kof948Zy6jJZIFtDvQ== 2035 | 2036 | react@^18.2.0: 2037 | version "18.2.0" 2038 | resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" 2039 | integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== 2040 | dependencies: 2041 | loose-envify "^1.1.0" 2042 | 2043 | read-cache@^1.0.0: 2044 | version "1.0.0" 2045 | resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" 2046 | integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== 2047 | dependencies: 2048 | pify "^2.3.0" 2049 | 2050 | readdirp@~3.6.0: 2051 | version "3.6.0" 2052 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" 2053 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 2054 | dependencies: 2055 | picomatch "^2.2.1" 2056 | 2057 | regenerator-runtime@^0.13.7: 2058 | version "0.13.11" 2059 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" 2060 | integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== 2061 | 2062 | resolve-from@^4.0.0: 2063 | version "4.0.0" 2064 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 2065 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 2066 | 2067 | resolve@^1.1.7, resolve@^1.22.1: 2068 | version "1.22.1" 2069 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" 2070 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 2071 | dependencies: 2072 | is-core-module "^2.9.0" 2073 | path-parse "^1.0.7" 2074 | supports-preserve-symlinks-flag "^1.0.0" 2075 | 2076 | reusify@^1.0.4: 2077 | version "1.0.4" 2078 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 2079 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 2080 | 2081 | run-parallel@^1.1.9: 2082 | version "1.2.0" 2083 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 2084 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 2085 | dependencies: 2086 | queue-microtask "^1.2.2" 2087 | 2088 | safe-buffer@^5.0.1: 2089 | version "5.2.1" 2090 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 2091 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 2092 | 2093 | scheduler@^0.23.0: 2094 | version "0.23.0" 2095 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" 2096 | integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== 2097 | dependencies: 2098 | loose-envify "^1.1.0" 2099 | 2100 | semver@^5.7.0, semver@^5.7.1: 2101 | version "5.7.1" 2102 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 2103 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 2104 | 2105 | semver@^6.3.0: 2106 | version "6.3.0" 2107 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2108 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 2109 | 2110 | source-map-js@^1.0.2: 2111 | version "1.0.2" 2112 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" 2113 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 2114 | 2115 | source-map-support@~0.5.20: 2116 | version "0.5.21" 2117 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" 2118 | integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== 2119 | dependencies: 2120 | buffer-from "^1.0.0" 2121 | source-map "^0.6.0" 2122 | 2123 | source-map@^0.6.0, source-map@^0.6.1: 2124 | version "0.6.1" 2125 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2126 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2127 | 2128 | srcset@4: 2129 | version "4.0.0" 2130 | resolved "https://registry.yarnpkg.com/srcset/-/srcset-4.0.0.tgz#336816b665b14cd013ba545b6fe62357f86e65f4" 2131 | integrity sha512-wvLeHgcVHKO8Sc/H/5lkGreJQVeYMm9rlmt8PuR1xE31rIuXhuzznUUqAt8MqLhB3MqJdFzlNAfpcWnxiFUcPw== 2132 | 2133 | stable@^0.1.8: 2134 | version "0.1.8" 2135 | resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" 2136 | integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== 2137 | 2138 | supports-color@^5.3.0: 2139 | version "5.5.0" 2140 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2141 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2142 | dependencies: 2143 | has-flag "^3.0.0" 2144 | 2145 | supports-color@^7.1.0: 2146 | version "7.2.0" 2147 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2148 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2149 | dependencies: 2150 | has-flag "^4.0.0" 2151 | 2152 | supports-preserve-symlinks-flag@^1.0.0: 2153 | version "1.0.0" 2154 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 2155 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 2156 | 2157 | svg-parser@^2.0.4: 2158 | version "2.0.4" 2159 | resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5" 2160 | integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ== 2161 | 2162 | svgo@^2.4.0, svgo@^2.8.0: 2163 | version "2.8.0" 2164 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24" 2165 | integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg== 2166 | dependencies: 2167 | "@trysound/sax" "0.2.0" 2168 | commander "^7.2.0" 2169 | css-select "^4.1.3" 2170 | css-tree "^1.1.3" 2171 | csso "^4.2.0" 2172 | picocolors "^1.0.0" 2173 | stable "^0.1.8" 2174 | 2175 | tailwindcss@^3.2.4: 2176 | version "3.2.4" 2177 | resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.2.4.tgz#afe3477e7a19f3ceafb48e4b083e292ce0dc0250" 2178 | integrity sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ== 2179 | dependencies: 2180 | arg "^5.0.2" 2181 | chokidar "^3.5.3" 2182 | color-name "^1.1.4" 2183 | detective "^5.2.1" 2184 | didyoumean "^1.2.2" 2185 | dlv "^1.1.3" 2186 | fast-glob "^3.2.12" 2187 | glob-parent "^6.0.2" 2188 | is-glob "^4.0.3" 2189 | lilconfig "^2.0.6" 2190 | micromatch "^4.0.5" 2191 | normalize-path "^3.0.0" 2192 | object-hash "^3.0.0" 2193 | picocolors "^1.0.0" 2194 | postcss "^8.4.18" 2195 | postcss-import "^14.1.0" 2196 | postcss-js "^4.0.0" 2197 | postcss-load-config "^3.1.4" 2198 | postcss-nested "6.0.0" 2199 | postcss-selector-parser "^6.0.10" 2200 | postcss-value-parser "^4.2.0" 2201 | quick-lru "^5.1.1" 2202 | resolve "^1.22.1" 2203 | 2204 | term-size@^2.2.1: 2205 | version "2.2.1" 2206 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54" 2207 | integrity sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg== 2208 | 2209 | terser@^5.2.0: 2210 | version "5.16.1" 2211 | resolved "https://registry.yarnpkg.com/terser/-/terser-5.16.1.tgz#5af3bc3d0f24241c7fb2024199d5c461a1075880" 2212 | integrity sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw== 2213 | dependencies: 2214 | "@jridgewell/source-map" "^0.3.2" 2215 | acorn "^8.5.0" 2216 | commander "^2.20.0" 2217 | source-map-support "~0.5.20" 2218 | 2219 | timsort@^0.3.0: 2220 | version "0.3.0" 2221 | resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" 2222 | integrity sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A== 2223 | 2224 | to-fast-properties@^2.0.0: 2225 | version "2.0.0" 2226 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2227 | integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== 2228 | 2229 | to-regex-range@^5.0.1: 2230 | version "5.0.1" 2231 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2232 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2233 | dependencies: 2234 | is-number "^7.0.0" 2235 | 2236 | tslib@^2.4.0: 2237 | version "2.5.0" 2238 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" 2239 | integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== 2240 | 2241 | type-fest@^0.20.2: 2242 | version "0.20.2" 2243 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 2244 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 2245 | 2246 | typescript@^4.9.4: 2247 | version "4.9.4" 2248 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78" 2249 | integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg== 2250 | 2251 | update-browserslist-db@^1.0.9: 2252 | version "1.0.10" 2253 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3" 2254 | integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== 2255 | dependencies: 2256 | escalade "^3.1.1" 2257 | picocolors "^1.0.0" 2258 | 2259 | util-deprecate@^1.0.2: 2260 | version "1.0.2" 2261 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2262 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== 2263 | 2264 | utility-types@^3.10.0: 2265 | version "3.10.0" 2266 | resolved "https://registry.yarnpkg.com/utility-types/-/utility-types-3.10.0.tgz#ea4148f9a741015f05ed74fd615e1d20e6bed82b" 2267 | integrity sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg== 2268 | 2269 | v8-compile-cache@^2.0.0: 2270 | version "2.3.0" 2271 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" 2272 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== 2273 | 2274 | weak-lru-cache@^1.2.2: 2275 | version "1.2.2" 2276 | resolved "https://registry.yarnpkg.com/weak-lru-cache/-/weak-lru-cache-1.2.2.tgz#fdbb6741f36bae9540d12f480ce8254060dccd19" 2277 | integrity sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw== 2278 | 2279 | xtend@^4.0.2: 2280 | version "4.0.2" 2281 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 2282 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 2283 | 2284 | xxhash-wasm@^0.4.2: 2285 | version "0.4.2" 2286 | resolved "https://registry.yarnpkg.com/xxhash-wasm/-/xxhash-wasm-0.4.2.tgz#752398c131a4dd407b5132ba62ad372029be6f79" 2287 | integrity sha512-/eyHVRJQCirEkSZ1agRSCwriMhwlyUcFkXD5TPVSLP+IPzjsqMVzZwdoczLp1SoQU0R3dxz1RpIK+4YNQbCVOA== 2288 | 2289 | yallist@^3.0.2: 2290 | version "3.1.1" 2291 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" 2292 | integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== 2293 | 2294 | yaml@^1.10.0, yaml@^1.10.2: 2295 | version "1.10.2" 2296 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" 2297 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== 2298 | --------------------------------------------------------------------------------