From 79e0df43ef1db7e6dab16eeeaeedff22cc5c48b4 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Thu, 7 Nov 2024 17:35:01 +0100 Subject: [PATCH 01/95] update app.json --- app.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/app.json b/app.json index 6793d41..d88054a 100644 --- a/app.json +++ b/app.json @@ -14,7 +14,7 @@ }, "ios": { "supportsTablet": true, - "bundleIdentifier": "com.liquid.supermigrate", + "bundleIdentifier": "xyz.useliquid.liquid", "buildNumber": "1", "infoPlist": { "NSFaceIDUsageDescription": "This app uses Face ID to sign in with Passkeys." @@ -25,7 +25,8 @@ "associatedDomains": [ "webcredentials:api.useliquid.xyz?mode=developer", "webcredentials:api.useliquid.xyz", - "webcredentials:development.useliquid.xyz" + "webcredentials:development.useliquid.xyz", + "webcredentials:xyz.useliquid.liquid" ] }, "android": { @@ -33,7 +34,7 @@ "foregroundImage": "./assets/images/liquid-adaptive-icon.png", "backgroundColor": "#ffffff" }, - "package": "com.liquid.supermigrate" + "package": "xyz.useliquid.liquid" }, "web": { "bundler": "metro", @@ -70,4 +71,4 @@ }, "owner": "supermigrate" } -} \ No newline at end of file +} From cfb531dc0d93fe1e99d76015209205f01a39e210 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Thu, 7 Nov 2024 17:47:27 +0100 Subject: [PATCH 02/95] update crypto screen --- screens/deposit/crypto/index.tsx | 15 ++++++++------- utils/helpers.ts | 8 ++++++++ 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/screens/deposit/crypto/index.tsx b/screens/deposit/crypto/index.tsx index df15b5f..c5b6991 100644 --- a/screens/deposit/crypto/index.tsx +++ b/screens/deposit/crypto/index.tsx @@ -4,30 +4,31 @@ import QRCode from 'react-native-qrcode-svg'; import useTruncateText from '@/hooks/useTruncateText'; import useCopy from '@/hooks/useCopy'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { adjustFontSizeForIOS, truncate } from '@/utils/helpers'; import { CaretDownIcon, CoinsIcon, CopyIcon } from '@/assets/icons'; import PaymentMethodSelection from '../method-selection'; import sharedStyles from '../styles'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; const CryptoDeposit = () => { - const [address, setAddress] = useState('0x4b3a9d4f3e5f2e3c4e6f3a9d4f3e5f2e3c4e6f3a'); + const { smartAccountState } = useSystemFunctions(); const [showBottomSheet, setShowBottomSheet] = useState(false); const { handleCopy, hasCopied } = useCopy(); - const { truncatedText: truncatedAddress } = useTruncateText(address, 7, 4); + const address = truncate(smartAccountState?.address || ''); const tokensImage = require('../../../assets/images/tokens.png'); return ( <> - + - {truncatedAddress} + {address} - handleCopy(address)}> + handleCopy(smartAccountState?.address || '')}> {hasCopied ? 'Copied' : 'Copy'} @@ -41,7 +42,7 @@ const CryptoDeposit = () => { - For now you can only receive USDC on Base + Send USDC, ETH or any ERC20 token on Base diff --git a/utils/helpers.ts b/utils/helpers.ts index 38c6439..b4af4fe 100644 --- a/utils/helpers.ts +++ b/utils/helpers.ts @@ -82,6 +82,13 @@ const emailIsValid = (email: string): boolean => { return emailRegex.test(email); }; +const truncate = (text: string, startChars = 5, endChars = 5) => { + if (text.length <= startChars + endChars) { + return text; + } + return `${text.substring(0, startChars)}...${text.substring(text.length - endChars)}`; +}; + export { formatNumberWithSuffix, truncateDecimal, @@ -95,4 +102,5 @@ export { adjustFontSizeForIOS, formatAmount, emailIsValid, + truncate, }; From 00ce64a7d0ed6828da0051646812b6581ba11e38 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Fri, 8 Nov 2024 14:06:47 +0100 Subject: [PATCH 03/95] update env variables --- init/api.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init/api.ts b/init/api.ts index 0321f39..8d6da22 100644 --- a/init/api.ts +++ b/init/api.ts @@ -13,8 +13,8 @@ class LiquidAPI { private apiKey: string; constructor() { - const apiUrl = process.env.EXPO_PUBLIC_API_URL; - const apiKey = process.env.EXPO_PUBLIC_API_KEY; + const apiUrl = process.env.EXPO_PUBLIC_X_API_URL; + const apiKey = process.env.EXPO_PUBLIC_X_API_KEY; if (!apiUrl || !apiKey) { throw new Error('EXPO_PUBLIC_API_URL or EXPO_PUBLIC_API_KEY is not set'); From a3afafda0bef644f399ee8e20f61482059a6c803 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Fri, 8 Nov 2024 14:08:34 +0100 Subject: [PATCH 04/95] chore: update types --- components/verify-email/index.tsx | 1 - hooks/types.ts | 11 ----------- 2 files changed, 12 deletions(-) diff --git a/components/verify-email/index.tsx b/components/verify-email/index.tsx index 58de107..c95a141 100644 --- a/components/verify-email/index.tsx +++ b/components/verify-email/index.tsx @@ -25,7 +25,6 @@ const VerifyEmail = ({ email, isSignup }: { email: string; isSignup?: boolean }) return router.push('/setup'); } login(email); - // smart account stuff }, onSendCodeSuccess: () => { setResendDisabled(true); diff --git a/hooks/types.ts b/hooks/types.ts index e348a87..d8b18a1 100644 --- a/hooks/types.ts +++ b/hooks/types.ts @@ -127,17 +127,6 @@ export type FormattedPosition = { // logo_url: string; // }; -export type EnhancedFormattedPool = Omit & { - token0: Token; - token1: Token; - TVL: string; - volume0: string; - volume1: string; - cumulativeVolumeUSD: string; -}; - -type EnhancedFormattedPoolType = 'token0' | 'token1' | 'TVL' | 'volume0' | 'volume1' | 'cumulativeVolumeUSD'; - export type VolumeReturn = { volume0: string; volume1: string; cumulativeVolumeUSD: string }; export interface AddLiquidityParams { From f8ca2b9c5c13f5a22c90dd296b219f11a5c42ff4 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Fri, 8 Nov 2024 14:42:28 +0100 Subject: [PATCH 05/95] chore: refactor registration process --- init/types.ts | 2 +- providers/AuthProvider.tsx | 4 ++-- store/smartAccount/actions.ts | 11 +++++++++-- store/smartAccount/create.ts | 2 +- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/init/types.ts b/init/types.ts index 3d5c5ef..090c9a6 100644 --- a/init/types.ts +++ b/init/types.ts @@ -38,7 +38,7 @@ export type SmartAccount = ToCoinbaseSmartAccountReturnType; */ export type SmartAccountPersistedInfo = { publicKey: string; - registrationResponse: PasskeyRegistrationResult; + credentialID: string; }; export type VerifyRegistration = { diff --git a/providers/AuthProvider.tsx b/providers/AuthProvider.tsx index 48f111f..c26dc7c 100644 --- a/providers/AuthProvider.tsx +++ b/providers/AuthProvider.tsx @@ -36,11 +36,11 @@ export function AuthProvider({ children }: PropsWithChildren) { async function loadSession() { try { - const { publicKey, registrationResponse } = await getPersistedSmartAccountInfo(); + const { publicKey, credentialID } = await getPersistedSmartAccountInfo(); const webAuthnAccount = toWebAuthnAccount({ credential: { - id: registrationResponse.credentialId, + id: credentialID, publicKey: getPublicKeyHex(publicKey), }, getFn, diff --git a/store/smartAccount/actions.ts b/store/smartAccount/actions.ts index ffb72b4..9a172fa 100644 --- a/store/smartAccount/actions.ts +++ b/store/smartAccount/actions.ts @@ -39,11 +39,11 @@ export function useSmartAccountActions() { }; const getSmartAccount = async () => { - const { publicKey, registrationResponse } = await getPersistedSmartAccountInfo(); + const { publicKey, credentialID } = await getPersistedSmartAccountInfo(); const webAuthnAccount = toWebAuthnAccount({ credential: { - id: registrationResponse.credentialId, + id: credentialID, publicKey: getPublicKeyHex(publicKey), }, getFn, @@ -79,6 +79,13 @@ export function useSmartAccountActions() { client: publicClient, owners: [webAuthnAccount], }); + const smartAccountInfo = { + publicKey: getPublicKeyHex(passkey.response.signature), + credentialID: passkey.id, + }; + + await persistSmartAccountInfo(smartAccountInfo); + setSession(smartAccount); dispatch(setAddress(smartAccount.address)); return router.replace('/(tabs)/home'); diff --git a/store/smartAccount/create.ts b/store/smartAccount/create.ts index 3cc10c2..4a76f43 100644 --- a/store/smartAccount/create.ts +++ b/store/smartAccount/create.ts @@ -78,7 +78,7 @@ export async function createSmartAccount(registrationOptions: PublicKeyCredentia address, smartAccountInfo: { publicKey, - registrationResponse, + credentialID: smartAccountInfo.id, }, }; } catch (error: any) { From 8bde24eedaa5e2fc1831a66fcbc83e9d576782e0 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Fri, 8 Nov 2024 14:49:29 +0100 Subject: [PATCH 06/95] chore: add native eth to token return list --- hooks/useToken.ts | 35 ++++++++++++++++------------------- 1 file changed, 16 insertions(+), 19 deletions(-) diff --git a/hooks/useToken.ts b/hooks/useToken.ts index 408f9dc..bc7069c 100644 --- a/hooks/useToken.ts +++ b/hooks/useToken.ts @@ -1,6 +1,6 @@ import { useCallback, useEffect, useState } from 'react'; import { Address, formatUnits, PublicClient } from 'viem'; -import { CONNECTORS_BASE, LP_SUGAR_ADDRESS, OFFCHAIN_ORACLE_ADDRESS } from '@/constants/addresses'; +import { CONNECTORS_BASE, LP_SUGAR_ADDRESS, OFFCHAIN_ORACLE_ADDRESS, WETH_ADDRESS } from '@/constants/addresses'; import { useLpSugarContract, useOffchainOracleContract } from './useContract'; import { LPSugarToken, LPSugarTokenResponse, Token } from './types'; import useSystemFunctions from './useSystemFunctions'; @@ -28,25 +28,11 @@ export function useToken(publicClient: PublicClient) { const tokenAddresses = batch.map((token: LPSugarToken) => token.token_address); const tokenDecimals = batch.map((token: LPSugarToken) => token.decimals); const prices = await oracle.getRateToUSD(tokenAddresses, tokenDecimals, true); - const tokenEthContracts = tokenAddresses.map((tokenAddress) => ({ - address: OFFCHAIN_ORACLE_ADDRESS, - abi: OffchainOracleABI.OffchainOracle.abi, - functionName: 'getRateToEth', - args: [tokenAddress, true] as const, - })); - const ethPrices: any = await publicClient.multicall({ - contracts: tokenEthContracts, - }); - - const tokensWithPrice = batch.map((token: LPSugarToken, index: number) => { - // let ethPrice: any = 0; - // if (ethPrices[index]) { - // ethPrice = ethPrices[index].result as bigint; - // const formatEthPrice = formatUnits(ethPrice, 18); - // console.log(token.symbol, ' => ', formatEthPrice); - // } + const ethBalance = await publicClient.getBalance({ address: account }); + const wethPrice = await oracle.getRateToUSD([WETH_ADDRESS], [18], true); + const tokensWithPrice = batch.map((token: LPSugarToken, index: number) => { return { address: token.token_address, symbol: token.symbol, @@ -58,7 +44,18 @@ export function useToken(publicClient: PublicClient) { }; }); - allTokens = [...allTokens, ...tokensWithPrice]; + // Add ETH to the tokens list + const ethToken: Token = { + address: '0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE', // Common convention for native ETH + symbol: 'ETH', + decimals: 18, + balance: formatUnits(ethBalance, 18), + isListed: true, + usdPrice: wethPrice[0], + logoUrl: `https://assets.smold.app/api/token/8453/${WETH_ADDRESS}/logo-32.png`, // Using WETH logo for ETH + }; + + allTokens = [ethToken, ...allTokens, ...tokensWithPrice]; offset += BATCH_SIZE; } From 2b4307645ea72573b59fe1d32c1200e0ac76e8d4 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Fri, 8 Nov 2024 21:38:37 +0100 Subject: [PATCH 07/95] chore: pass public key returned from backend --- init/api.ts | 13 +++++++++++++ store/smartAccount/actions.ts | 15 ++++++++------- 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/init/api.ts b/init/api.ts index 8d6da22..28751c7 100644 --- a/init/api.ts +++ b/init/api.ts @@ -7,6 +7,7 @@ import { VerifyRegistration, AuthCredentialOptions, } from './types'; +import { AuthenticationResponseJSON } from 'react-native-passkeys/build/ReactNativePasskeys.types'; class LiquidAPI { private apiBaseUrl: string; @@ -63,6 +64,18 @@ class LiquidAPI { }); } + async verifyAuthentication( + data: AuthenticationResponseJSON + ): Promise<{ verified: boolean; userName: string; publicKey: string; userAddress: string }> { + return this.fetchWithErrorHandling(`${this.apiBaseUrl}/authentication/verify`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify(data), + }); + } + async updateUserAddress(username: string, userAddress: Address): Promise<{ success: boolean }> { return this.fetchWithErrorHandling(`${this.apiBaseUrl}/user/update`, { method: 'PUT', diff --git a/store/smartAccount/actions.ts b/store/smartAccount/actions.ts index 9a172fa..7238ac3 100644 --- a/store/smartAccount/actions.ts +++ b/store/smartAccount/actions.ts @@ -62,15 +62,16 @@ export function useSmartAccountActions() { try { const authOptions = await api.getAuthenticationOptions(userName); - const passkey = await Passkeys.get({ challenge: authOptions.data.challenge, rpId: authOptions.data.rpId }); - if (!passkey) { + const passkeyResult = await Passkeys.get({ challenge: authOptions.data.challenge, rpId: authOptions.data.rpId }); + if (!passkeyResult) { throw new Error('No passkey found'); } + const verification = await api.verifyAuthentication(passkeyResult); + const webAuthnAccount = toWebAuthnAccount({ credential: { - id: passkey.id, - // should be the publickey tied to the credential ID - publicKey: getPublicKeyHex(passkey.response.signature), + id: passkeyResult.id, + publicKey: getPublicKeyHex(verification.publicKey), }, getFn, rpId, @@ -80,8 +81,8 @@ export function useSmartAccountActions() { owners: [webAuthnAccount], }); const smartAccountInfo = { - publicKey: getPublicKeyHex(passkey.response.signature), - credentialID: passkey.id, + publicKey: getPublicKeyHex(passkeyResult.response.signature), + credentialID: passkeyResult.id, }; await persistSmartAccountInfo(smartAccountInfo); From 5c50d3ff6854e77b4a6b38cd84b47af3d8d88bb3 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Fri, 8 Nov 2024 22:24:15 +0100 Subject: [PATCH 08/95] implement search - design search screen - implement search store --- app/(tabs)/_layout.tsx | 21 +--- assets/icons/chart-square-icon.tsx | 30 +++++ assets/icons/dollar-coin-sm-icon.tsx | 21 ++++ assets/icons/favorite-chart-icon.tsx | 21 ++++ assets/icons/index.ts | 6 + components/index.ts | 2 + components/search-ui/dummy.ts | 57 ++++++++++ components/search-ui/explore-card.tsx | 73 ++++++++++++ components/search-ui/index.tsx | 102 +++++++++++++++++ components/search-ui/recent-card.tsx | 73 ++++++++++++ components/search-ui/sections.tsx | 113 +++++++++++++++++++ components/search-ui/types.ts | 24 ++++ components/search/index.tsx | 153 +++++++++++++------------- screens/home/index.tsx | 138 +++++++++++++++++------ store/app/actions.ts | 9 +- store/app/index.ts | 10 +- 16 files changed, 717 insertions(+), 136 deletions(-) create mode 100644 assets/icons/chart-square-icon.tsx create mode 100644 assets/icons/dollar-coin-sm-icon.tsx create mode 100644 assets/icons/favorite-chart-icon.tsx create mode 100644 components/search-ui/dummy.ts create mode 100644 components/search-ui/explore-card.tsx create mode 100644 components/search-ui/index.tsx create mode 100644 components/search-ui/recent-card.tsx create mode 100644 components/search-ui/sections.tsx create mode 100644 components/search-ui/types.ts diff --git a/app/(tabs)/_layout.tsx b/app/(tabs)/_layout.tsx index 61bc8ae..831137c 100644 --- a/app/(tabs)/_layout.tsx +++ b/app/(tabs)/_layout.tsx @@ -4,21 +4,15 @@ import { StatusBar } from 'expo-status-bar'; import { TabBarIcon } from '@/components/navigation/TabBarIcon'; import { Colors } from '@/constants/Colors'; -import { LQDNavigation, LQDSearch } from '@/components'; -import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { LQDNavigation } from '@/components'; export default function TabLayout() { const colorScheme = useColorScheme(); - const { appState } = useSystemFunctions(); return ( <> - {!appState.hideSearch && ( - - - - )} + } @@ -48,15 +42,8 @@ export default function TabLayout() { } const styles = StyleSheet.create({ - shortcut: { - flexDirection: 'row', - justifyContent: 'space-between', - alignItems: 'center', - gap: 12, - paddingHorizontal: 21, - paddingBottom: 10, - paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 54, - zIndex: 10, + container: { + paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 48, backgroundColor: '#fff', }, }); diff --git a/assets/icons/chart-square-icon.tsx b/assets/icons/chart-square-icon.tsx new file mode 100644 index 0000000..97a30b2 --- /dev/null +++ b/assets/icons/chart-square-icon.tsx @@ -0,0 +1,30 @@ +import Svg, { Path } from 'react-native-svg'; + +const ChartSquareIcon = ({ fill = '#fff', height = 16, width = 16 }: IconProps) => ( + + + + + +); +export default ChartSquareIcon; diff --git a/assets/icons/dollar-coin-sm-icon.tsx b/assets/icons/dollar-coin-sm-icon.tsx new file mode 100644 index 0000000..68a08d2 --- /dev/null +++ b/assets/icons/dollar-coin-sm-icon.tsx @@ -0,0 +1,21 @@ +import Svg, { Path } from 'react-native-svg'; + +const DollarCoinSMIcon = ({ fill = '#fff', height = 16, width = 16 }: IconProps) => ( + + + + +); +export default DollarCoinSMIcon; diff --git a/assets/icons/favorite-chart-icon.tsx b/assets/icons/favorite-chart-icon.tsx new file mode 100644 index 0000000..97d6467 --- /dev/null +++ b/assets/icons/favorite-chart-icon.tsx @@ -0,0 +1,21 @@ +import Svg, { Path } from 'react-native-svg'; + +const FavoriteChartIcon = ({ fill = '#fff', height = 16, width = 16 }: IconProps) => ( + + + + +); +export default FavoriteChartIcon; diff --git a/assets/icons/index.ts b/assets/icons/index.ts index 92b5abe..7376eca 100644 --- a/assets/icons/index.ts +++ b/assets/icons/index.ts @@ -41,6 +41,9 @@ import SwapHorizontalIcon from './swap-horizontal-icon'; import TrendUpIcon from './trend-up-icon'; import WalletIcon from './wallet-icon'; import WalletMoneyIcon from './wallet-money-icon'; +import DollarCoinSMIcon from './dollar-coin-sm-icon'; +import FavoriteChartIcon from './favorite-chart-icon'; +import ChartSquareIcon from './chart-square-icon'; export { SwatchIcon, @@ -86,4 +89,7 @@ export { TrendUpIcon, WalletIcon, WalletMoneyIcon, + DollarCoinSMIcon, + FavoriteChartIcon, + ChartSquareIcon, }; diff --git a/components/index.ts b/components/index.ts index 3ffb96c..6a6b41b 100644 --- a/components/index.ts +++ b/components/index.ts @@ -13,6 +13,7 @@ import LQDLoadingStep from './loading-step'; import EnterEmail from './enter-email'; import VerifyEmail from './verify-email'; import LQDKeyboardWrapper from './keyboard-wrapper'; +import SearchUI from './search-ui'; export { LQDButton, @@ -29,4 +30,5 @@ export { EnterEmail, VerifyEmail, LQDKeyboardWrapper, + SearchUI, }; diff --git a/components/search-ui/dummy.ts b/components/search-ui/dummy.ts new file mode 100644 index 0000000..3871c68 --- /dev/null +++ b/components/search-ui/dummy.ts @@ -0,0 +1,57 @@ +const recents: Array = [ + { + id: '1', + primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', + secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', + primaryTitle: 'USDC', + secondaryTitle: 'ETH', + }, + { + id: '2', + primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', + secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', + primaryTitle: 'DAI', + secondaryTitle: 'WBTC', + }, + { + id: '3', + primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', + secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', + primaryTitle: 'USDT', + secondaryTitle: 'BNB', + }, + { + id: '4', + primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', + secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', + primaryTitle: 'Tether', + secondaryTitle: 'LINK', + }, + { + id: '5', + primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', + secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', + primaryTitle: 'BUSD', + secondaryTitle: 'MATIC', + }, +]; + +const explore: Array = [ + { + id: '1', + title: 'Stable pairs', + variant: 'primary', + }, + { + id: '2', + title: 'High APRs', + variant: 'secondary', + }, + { + id: '3', + title: 'Volatile pairs', + variant: 'tertiary', + }, +]; + +export { recents, explore }; diff --git a/components/search-ui/explore-card.tsx b/components/search-ui/explore-card.tsx new file mode 100644 index 0000000..50d5b08 --- /dev/null +++ b/components/search-ui/explore-card.tsx @@ -0,0 +1,73 @@ +import { View, StyleSheet, Text, Image, TouchableOpacity } from 'react-native'; + +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import useAppActions from '@/store/app/actions'; +import { ChartSquareIcon, DollarCoinSMIcon, FavoriteChartIcon } from '@/assets/icons'; + +const config = { + primary: { + iconContainerColor: '#5A36BF', + icon: , + }, + secondary: { + iconContainerColor: '#375DFB', + icon: , + }, + tertiary: { + iconContainerColor: '#1F87AD', + icon: , + }, +}; + +const ExploreCard = ({ id, title, variant }: IExploreCard) => { + const { router, pathname } = useSystemFunctions(); + const { searchIsFocused } = useAppActions(); + const onPress = () => { + searchIsFocused(false); + // router.push(`/(tabs)/home/${id}`); + }; + + return ( + + {config[variant].icon} + + {title} + + ); +}; + +export default ExploreCard; + +const styles = StyleSheet.create({ + container: { + flexDirection: 'row', + alignSelf: 'stretch', + alignItems: 'center', + justifyContent: 'center', + gap: 8, + paddingHorizontal: 16, + paddingVertical: 12, + borderRadius: 10, + borderWidth: 1, + borderColor: '#EAEEF4', + backgroundColor: '#fff', + }, + + iconContainer: { + padding: 4.8, + alignItems: 'center', + justifyContent: 'center', + width: 24, + height: 24, + borderRadius: 7.2, + }, + + text: { + color: '#1E293B', + fontSize: adjustFontSizeForIOS(14, 2), + lineHeight: 18.48, + fontWeight: '500', + fontFamily: 'AeonikMedium', + }, +}); diff --git a/components/search-ui/index.tsx b/components/search-ui/index.tsx new file mode 100644 index 0000000..c673c1c --- /dev/null +++ b/components/search-ui/index.tsx @@ -0,0 +1,102 @@ +import { useState } from 'react'; +import { View, StyleSheet, ScrollView } from 'react-native'; + +import SearchSection from './sections'; +import { recents, explore } from './dummy'; +import RecentCard from './recent-card'; +import ExploreCard from './explore-card'; +import { LQDPoolPairPaper, LQDSearch } from '@/components'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; + +const SearchUI = () => { + const { router, poolsState } = useSystemFunctions(); + + const [showRecents, setShowRecents] = useState(true); + const [query, setQuery] = useState(''); + + const pools = poolsState.trendingPools.data.slice(0, 10); + + const sections: Array> = [ + { + title: 'Recents', + children: ( + + {recents.map((recent) => ( + + ))} + + ), + onClear: () => setShowRecents(false), + }, + + { + title: 'Explore', + children: ( + + {explore.map((explore) => ( + + ))} + + ), + }, + + { + title: 'Trending', + children: ( + + {pools.map((pool, index) => ( + + ))} + + ), + }, + ]; + + const searchResultSection = [ + { + title: 'Results', + children: ( + + {pools.map((pool, index) => ( + + ))} + + ), + }, + ]; + + const sectionsToShow = query ? searchResultSection : showRecents ? sections : sections.slice(1); + + return ( + <> + + + + {sectionsToShow.map((section, index) => ( + + ))} + + + ); +}; + +export default SearchUI; + +const styles = StyleSheet.create({ + container: { + backgroundColor: '#fff', + flex: 1, + paddingHorizontal: 16, + }, + + content: { + paddingTop: 34, + paddingBottom: 68, + gap: 40, + }, + + mapContainer: { + gap: 24, + alignItems: 'stretch', + }, +}); diff --git a/components/search-ui/recent-card.tsx b/components/search-ui/recent-card.tsx new file mode 100644 index 0000000..1aaf096 --- /dev/null +++ b/components/search-ui/recent-card.tsx @@ -0,0 +1,73 @@ +import { View, StyleSheet, Text, Image, TouchableOpacity } from 'react-native'; + +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import useAppActions from '@/store/app/actions'; + +const RecentCard = ({ id, primaryIconURL, primaryTitle, secondaryIconURL, secondaryTitle }: IRecentCard) => { + const { router, pathname } = useSystemFunctions(); + const { searchIsFocused } = useAppActions(); + const onPress = () => { + searchIsFocused(false); + router.push(`/(tabs)/home/${id}`); + }; + + return ( + + + {[primaryIconURL, secondaryIconURL].map((iconURL, index) => ( + + + + ))} + + + + {primaryTitle} / {secondaryTitle} + + + ); +}; + +export default RecentCard; + +const styles = StyleSheet.create({ + container: { + flexDirection: 'row', + alignSelf: 'stretch', + alignItems: 'center', + justifyContent: 'center', + gap: 8 + 6, + paddingHorizontal: 8, + paddingVertical: 12, + borderRadius: 10, + borderWidth: 1, + borderColor: '#EAEEF4', + backgroundColor: '#fff', + }, + + iconContainer: { + flexDirection: 'row', + alignItems: 'center', + justifyContent: 'center', + }, + + icon: { + width: 24, + height: 24, + alignItems: 'center', + justifyContent: 'center', + borderRadius: 9999, + borderWidth: 1, + borderColor: '#EAEEF4', + marginRight: -6, + }, + + text: { + color: '#1E293B', + fontSize: adjustFontSizeForIOS(14, 2), + lineHeight: 18.48, + fontWeight: '500', + fontFamily: 'AeonikMedium', + }, +}); diff --git a/components/search-ui/sections.tsx b/components/search-ui/sections.tsx new file mode 100644 index 0000000..a7af317 --- /dev/null +++ b/components/search-ui/sections.tsx @@ -0,0 +1,113 @@ +import { StyleSheet, Text, Touchable, TouchableOpacity, View } from 'react-native'; + +import { CloseIcon } from '@/assets/icons'; + +const queries: Array<{ value: SectionQuery; label: string }> = [ + { value: 'vol', label: 'Volume' }, + { value: 'fees', label: 'Fees' }, + { value: 'tvl', label: 'TVL' }, +]; + +const SearchSection = ({ children, title, onClear, query, setQuery }: ISearchSection) => ( + + + {title} + {onClear && ( + + Clear + + + + + )} + + {query && setQuery && ( + + {queries.map((item) => ( + setQuery(item.value)} + disabled={query === item.value} + > + {item.label} + + ))} + + )} + + + {children} + +); + +export default SearchSection; + +const styles = StyleSheet.create({ + section: { + alignSelf: 'stretch', + gap: 20, + }, + + title: { + color: '#0F172A', + fontSize: 20, + lineHeight: 23.2, + fontWeight: '500', + fontFamily: 'AeonikMedium', + }, + + header: { + flexDirection: 'row', + justifyContent: 'space-between', + alignItems: 'center', + }, + + clear: { + flexDirection: 'row', + alignItems: 'center', + gap: 4, + }, + + clearText: { + color: '#1E293B', + fontSize: 13, + lineHeight: 16.12, + fontWeight: '400', + fontFamily: 'AeonikRegular', + }, + + queryContainer: { + flexDirection: 'row', + gap: 12, + alignItems: 'center', + }, + + query: { + paddingHorizontal: 8, + paddingVertical: 4, + justifyContent: 'center', + alignItems: 'center', + }, + + queryText: { + color: '#94A3B8', + fontSize: 14, + lineHeight: 18.48, + fontWeight: '400', + fontFamily: 'AeonikRegular', + }, + + activeQueryText: { + color: '#1E293B', + fontWeight: '500', + fontFamily: 'AeonikMedium', + }, + + activeQuery: { + borderRadius: 3, + borderWidth: 1, + borderColor: '#F1F5F9', + backgroundColor: '#F8FAFC', + }, +}); diff --git a/components/search-ui/types.ts b/components/search-ui/types.ts new file mode 100644 index 0000000..a939164 --- /dev/null +++ b/components/search-ui/types.ts @@ -0,0 +1,24 @@ +type SectionQuery = 'vol' | 'fees' | 'tvl'; + +interface ISearchSection { + title: string; + children: React.ReactElement; + onClear?: () => void; + query?: SectionQuery; + setQuery?: (query: SectionQuery) => void; + index: number; +} + +interface IRecentCard { + id: string; + primaryIconURL: string; + secondaryIconURL: string; + primaryTitle: string; + secondaryTitle: string; +} + +interface IExploreCard { + variant: 'primary' | 'secondary' | 'tertiary'; + title: string; + id: string; +} diff --git a/components/search/index.tsx b/components/search/index.tsx index d21e6f4..6aa0e1b 100644 --- a/components/search/index.tsx +++ b/components/search/index.tsx @@ -1,66 +1,68 @@ -import { useState, useEffect } from 'react'; -import { StyleSheet, View, FlatList, Text } from 'react-native'; +import { useEffect } from 'react'; +import { StyleSheet, View, TouchableOpacity } from 'react-native'; import { useForm } from 'react-hook-form'; -import debounce from 'lodash/debounce'; -import Animated, { useSharedValue, withTiming, useAnimatedStyle } from 'react-native-reanimated'; +import Animated from 'react-native-reanimated'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { CloseIcon } from '@/assets/icons'; +import useAppActions from '@/store/app/actions'; import LQDInput from '../input'; +import { useDebouncedEffect } from '@/hooks/useDebouncedEffect'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; -const LQDSearch = () => { +const LQDSearch = ({ setQuery }: { setQuery?: (val: string) => void }) => { const { control, watch } = useForm(); - const [results, setResults] = useState([]); - const [query, setQuery] = useState(''); - const searchBoxHeight = useSharedValue(0); + const { searchIsFocused: focusSearch, showSearch } = useAppActions(); + + const focusInput = () => { + focusSearch(true); + }; + + const blurInput = () => { + focusSearch(false); + }; - const debouncedSearch = debounce((text: string) => { - if (text.length >= 2) { - setResults([`Result for "${text}"`, `Another result for "${text}"`]); - searchBoxHeight.value = withTiming(200, { duration: 300 }); - } else { - setResults([]); - searchBoxHeight.value = withTiming(0, { duration: 300 }); - } - }, 300); + const closeSearch = () => { + setQuery && setQuery(''); + blurInput(); + showSearch(false); + }; + + const searchValue = watch('search'); useEffect(() => { - const subscription = watch((value) => { - const searchText = value.search || ''; - setQuery(searchText); - debouncedSearch(searchText); - }); - return () => subscription.unsubscribe(); - }, [watch]); + return () => { + blurInput(); + }; + }, []); - const animatedStyle = useAnimatedStyle(() => ({ - height: searchBoxHeight.value, - opacity: searchBoxHeight.value > 0 ? withTiming(1) : withTiming(0), - })); + useDebouncedEffect( + function setSearchValue() { + setQuery && setQuery(searchValue); + }, + [searchValue], + 300 + ); return ( - + + + - - {results.length > 0 ? ( - index.toString()} - renderItem={({ item }) => {item}} - /> - ) : ( - No results found - )} + + ); @@ -70,38 +72,35 @@ export default LQDSearch; const styles = StyleSheet.create({ container: { - flex: 1, zIndex: 1, + flexDirection: 'row', + alignItems: 'center', + gap: 10, }, - resultBox: { - position: 'absolute', - zIndex: 10, - top: '100%', - left: 0, - marginTop: 10, - width: '100%', - overflow: 'hidden', - backgroundColor: '#fff', - borderRadius: 10, - borderWidth: 1, + inputContainer: { + paddingHorizontal: 16, + paddingVertical: 10, + flexDirection: 'row', + justifyContent: 'center', + alignItems: 'center', + gap: 8, + borderRadius: 13, borderColor: '#EAEEF4', + borderWidth: 1, shadowColor: 'rgba(15, 23, 42, 0.04)', - shadowOffset: { width: 0, height: 2 }, - shadowOpacity: 1, - shadowRadius: 6, - elevation: 4, - }, - resultText: { - padding: 10, - fontSize: adjustFontSizeForIOS(16, 2), - borderBottomWidth: 1, - borderBottomColor: '#eee', + shadowOffset: { width: 0, height: 1 }, + shadowOpacity: 0.3, + shadowRadius: 3, + elevation: 1, + backgroundColor: '#fff', }, - noResultText: { - padding: 10, - fontSize: adjustFontSizeForIOS(16, 2), - textAlign: 'center', - color: '#999', + + inputPlaceholderText: { + flex: 1, + fontSize: adjustFontSizeForIOS(14, 2), + lineHeight: 18.48, + color: '#94A3B8', + fontFamily: 'AeonikRegular', }, }); diff --git a/screens/home/index.tsx b/screens/home/index.tsx index 6a72bc8..bc7f578 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -1,20 +1,21 @@ import { useEffect } from 'react'; -import { StyleSheet, View, Text, FlatList, ScrollView, TouchableOpacity, Alert } from 'react-native'; +import { StyleSheet, View, Text, FlatList, ScrollView, TouchableOpacity, Alert, Platform, StatusBar as RNStatusBar } from 'react-native'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { adjustFontSizeForIOS, formatAmountWithWholeAndDecimal } from '@/utils/helpers'; -import { LQDButton, LQDPoolPairCard, LQDPoolPairPaper } from '@/components'; -import { CaretRightIcon, DirectUpIcon, DollarSquareIcon, TrendUpIcon } from '@/assets/icons'; +import { LQDButton, LQDPoolPairCard, LQDPoolPairPaper, LQDSearch, SearchUI } from '@/components'; +import { CaretRightIcon, DirectUpIcon, DollarSquareIcon, SearchIcon, TrendUpIcon } from '@/assets/icons'; import { useAccountActions } from '@/store/account/actions'; import Section from './section'; -import { clearPersistedSmartAccountInfo } from '@/store/smartAccount/persist'; import { useAuth } from '@/providers'; import { useSmartAccountActions } from '@/store/smartAccount/actions'; +import useAppActions from '@/store/app/actions'; const Home = () => { - const { router, poolsState, smartAccountState, accountState, dispatch } = useSystemFunctions(); + const { router, poolsState, smartAccountState, accountState, appState } = useSystemFunctions(); const { getTokens, getPositions } = useAccountActions(); const { logout } = useSmartAccountActions(); + const { searchIsFocused: focusSearch, showSearch } = useAppActions(); const { trendingPools, hotPools, topGainers } = poolsState; @@ -26,6 +27,11 @@ const Home = () => { const top7Gainers = topGainers.data.slice(0, 7); + const focusInput = () => { + focusSearch(true); + showSearch(true); + }; + const sections = [ { title: 'Top gainers', @@ -118,38 +124,60 @@ const Home = () => { [smartAccountState.address] ); - return ( - - - - Total Balance - - router.push('/(tabs)/holdings')} style={styles.balanceValueContainer}> - - ${whole}.{decimal} - + if (appState.showSearch) { + return ( + + + + ); + } - + return ( + <> + + + + + + + Search... + - - router.push('/deposit/debit')} - variant="tertiaryOutline" - icon="money" - iconColor="#334155" - style={{ alignSelf: 'stretch' }} - /> - - - - {sections.map((section, index) => ( -
- ))} - + + + + Total Balance + + router.push('/(tabs)/holdings')} style={styles.balanceValueContainer}> + + ${whole}.{decimal} + + + + + + + router.push('/deposit/debit')} + variant="tertiaryOutline" + icon="money" + iconColor="#334155" + style={{ alignSelf: 'stretch' }} + /> + + + + + + {sections.map((section, index) => ( +
+ ))} + + ); }; @@ -220,4 +248,50 @@ const styles = StyleSheet.create({ gap: 24, alignItems: 'stretch', }, + + searchWrapper: { + flex: 1, + paddingHorizontal: 16, + backgroundColor: '#fff', + paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, + paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, + }, + + searchInnerWrapper: { + paddingHorizontal: 16, + backgroundColor: '#fff', + paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, + paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, + }, + + inputWrapper: { + paddingHorizontal: 16, + paddingVertical: 10, + backgroundColor: '#fff', + }, + + inputContainer: { + paddingHorizontal: 16, + paddingVertical: 10, + flexDirection: 'row', + alignItems: 'center', + gap: 8, + borderRadius: 13, + borderColor: '#EAEEF4', + borderWidth: 1, + shadowColor: 'rgba(15, 23, 42, 0.04)', + shadowOffset: { width: 0, height: 1 }, + shadowOpacity: 0.3, + shadowRadius: 3, + elevation: 1, + backgroundColor: '#fff', + width: '100%', + }, + + inputPlaceholderText: { + fontSize: adjustFontSizeForIOS(14, 2), + lineHeight: 18.48, + color: '#94A3B8', + fontFamily: 'AeonikRegular', + }, }); diff --git a/store/app/actions.ts b/store/app/actions.ts index 9fc69f2..fabe855 100644 --- a/store/app/actions.ts +++ b/store/app/actions.ts @@ -1,12 +1,11 @@ import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { CallbackProps } from '..'; -import { setHideSearch, setSearchIsFocused } from '.'; +import { setShowSearch, setSearchIsFocused } from '.'; const useAppActions = () => { const { dispatch } = useSystemFunctions(); - const hideSearch = (hide: boolean) => { - dispatch(setHideSearch(hide)); + const showSearch = (hide: boolean) => { + dispatch(setShowSearch(hide)); }; const searchIsFocused = (focused: boolean) => { @@ -14,7 +13,7 @@ const useAppActions = () => { }; return { - hideSearch, + showSearch, searchIsFocused, }; }; diff --git a/store/app/index.ts b/store/app/index.ts index e5932c2..3fccb6f 100644 --- a/store/app/index.ts +++ b/store/app/index.ts @@ -2,12 +2,12 @@ import { createSlice } from '@reduxjs/toolkit'; import type { PayloadAction } from '@reduxjs/toolkit'; export interface AppState { - hideSearch: boolean; + showSearch: boolean; searchIsFocused: boolean; } const initialState: AppState = { - hideSearch: false, + showSearch: false, searchIsFocused: false, }; @@ -15,8 +15,8 @@ export const appReducer = createSlice({ name: 'app', initialState, reducers: { - setHideSearch: (state, action: PayloadAction) => { - state.hideSearch = action.payload; + setShowSearch: (state, action: PayloadAction) => { + state.showSearch = action.payload; }, setSearchIsFocused: (state, action: PayloadAction) => { @@ -25,6 +25,6 @@ export const appReducer = createSlice({ }, }); -export const { setHideSearch, setSearchIsFocused } = appReducer.actions; +export const { setShowSearch, setSearchIsFocused } = appReducer.actions; export default appReducer.reducer; From fb71bb17465bc25487fa8a3aeac5292e844fab71 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Fri, 8 Nov 2024 22:26:07 +0100 Subject: [PATCH 09/95] Add support for Native ETH balance (#60) * chore: update types * chore: refactor registration process * chore: add native eth to token return list * chore: pass public key returned from backend --- components/verify-email/index.tsx | 1 - hooks/types.ts | 11 ---------- hooks/useToken.ts | 35 ++++++++++++++----------------- init/api.ts | 13 ++++++++++++ init/types.ts | 2 +- providers/AuthProvider.tsx | 4 ++-- store/smartAccount/actions.ts | 22 ++++++++++++------- store/smartAccount/create.ts | 2 +- 8 files changed, 48 insertions(+), 42 deletions(-) diff --git a/components/verify-email/index.tsx b/components/verify-email/index.tsx index 58de107..c95a141 100644 --- a/components/verify-email/index.tsx +++ b/components/verify-email/index.tsx @@ -25,7 +25,6 @@ const VerifyEmail = ({ email, isSignup }: { email: string; isSignup?: boolean }) return router.push('/setup'); } login(email); - // smart account stuff }, onSendCodeSuccess: () => { setResendDisabled(true); diff --git a/hooks/types.ts b/hooks/types.ts index e348a87..d8b18a1 100644 --- a/hooks/types.ts +++ b/hooks/types.ts @@ -127,17 +127,6 @@ export type FormattedPosition = { // logo_url: string; // }; -export type EnhancedFormattedPool = Omit & { - token0: Token; - token1: Token; - TVL: string; - volume0: string; - volume1: string; - cumulativeVolumeUSD: string; -}; - -type EnhancedFormattedPoolType = 'token0' | 'token1' | 'TVL' | 'volume0' | 'volume1' | 'cumulativeVolumeUSD'; - export type VolumeReturn = { volume0: string; volume1: string; cumulativeVolumeUSD: string }; export interface AddLiquidityParams { diff --git a/hooks/useToken.ts b/hooks/useToken.ts index 408f9dc..bc7069c 100644 --- a/hooks/useToken.ts +++ b/hooks/useToken.ts @@ -1,6 +1,6 @@ import { useCallback, useEffect, useState } from 'react'; import { Address, formatUnits, PublicClient } from 'viem'; -import { CONNECTORS_BASE, LP_SUGAR_ADDRESS, OFFCHAIN_ORACLE_ADDRESS } from '@/constants/addresses'; +import { CONNECTORS_BASE, LP_SUGAR_ADDRESS, OFFCHAIN_ORACLE_ADDRESS, WETH_ADDRESS } from '@/constants/addresses'; import { useLpSugarContract, useOffchainOracleContract } from './useContract'; import { LPSugarToken, LPSugarTokenResponse, Token } from './types'; import useSystemFunctions from './useSystemFunctions'; @@ -28,25 +28,11 @@ export function useToken(publicClient: PublicClient) { const tokenAddresses = batch.map((token: LPSugarToken) => token.token_address); const tokenDecimals = batch.map((token: LPSugarToken) => token.decimals); const prices = await oracle.getRateToUSD(tokenAddresses, tokenDecimals, true); - const tokenEthContracts = tokenAddresses.map((tokenAddress) => ({ - address: OFFCHAIN_ORACLE_ADDRESS, - abi: OffchainOracleABI.OffchainOracle.abi, - functionName: 'getRateToEth', - args: [tokenAddress, true] as const, - })); - const ethPrices: any = await publicClient.multicall({ - contracts: tokenEthContracts, - }); - - const tokensWithPrice = batch.map((token: LPSugarToken, index: number) => { - // let ethPrice: any = 0; - // if (ethPrices[index]) { - // ethPrice = ethPrices[index].result as bigint; - // const formatEthPrice = formatUnits(ethPrice, 18); - // console.log(token.symbol, ' => ', formatEthPrice); - // } + const ethBalance = await publicClient.getBalance({ address: account }); + const wethPrice = await oracle.getRateToUSD([WETH_ADDRESS], [18], true); + const tokensWithPrice = batch.map((token: LPSugarToken, index: number) => { return { address: token.token_address, symbol: token.symbol, @@ -58,7 +44,18 @@ export function useToken(publicClient: PublicClient) { }; }); - allTokens = [...allTokens, ...tokensWithPrice]; + // Add ETH to the tokens list + const ethToken: Token = { + address: '0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE', // Common convention for native ETH + symbol: 'ETH', + decimals: 18, + balance: formatUnits(ethBalance, 18), + isListed: true, + usdPrice: wethPrice[0], + logoUrl: `https://assets.smold.app/api/token/8453/${WETH_ADDRESS}/logo-32.png`, // Using WETH logo for ETH + }; + + allTokens = [ethToken, ...allTokens, ...tokensWithPrice]; offset += BATCH_SIZE; } diff --git a/init/api.ts b/init/api.ts index 8d6da22..28751c7 100644 --- a/init/api.ts +++ b/init/api.ts @@ -7,6 +7,7 @@ import { VerifyRegistration, AuthCredentialOptions, } from './types'; +import { AuthenticationResponseJSON } from 'react-native-passkeys/build/ReactNativePasskeys.types'; class LiquidAPI { private apiBaseUrl: string; @@ -63,6 +64,18 @@ class LiquidAPI { }); } + async verifyAuthentication( + data: AuthenticationResponseJSON + ): Promise<{ verified: boolean; userName: string; publicKey: string; userAddress: string }> { + return this.fetchWithErrorHandling(`${this.apiBaseUrl}/authentication/verify`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify(data), + }); + } + async updateUserAddress(username: string, userAddress: Address): Promise<{ success: boolean }> { return this.fetchWithErrorHandling(`${this.apiBaseUrl}/user/update`, { method: 'PUT', diff --git a/init/types.ts b/init/types.ts index 3d5c5ef..090c9a6 100644 --- a/init/types.ts +++ b/init/types.ts @@ -38,7 +38,7 @@ export type SmartAccount = ToCoinbaseSmartAccountReturnType; */ export type SmartAccountPersistedInfo = { publicKey: string; - registrationResponse: PasskeyRegistrationResult; + credentialID: string; }; export type VerifyRegistration = { diff --git a/providers/AuthProvider.tsx b/providers/AuthProvider.tsx index 48f111f..c26dc7c 100644 --- a/providers/AuthProvider.tsx +++ b/providers/AuthProvider.tsx @@ -36,11 +36,11 @@ export function AuthProvider({ children }: PropsWithChildren) { async function loadSession() { try { - const { publicKey, registrationResponse } = await getPersistedSmartAccountInfo(); + const { publicKey, credentialID } = await getPersistedSmartAccountInfo(); const webAuthnAccount = toWebAuthnAccount({ credential: { - id: registrationResponse.credentialId, + id: credentialID, publicKey: getPublicKeyHex(publicKey), }, getFn, diff --git a/store/smartAccount/actions.ts b/store/smartAccount/actions.ts index ffb72b4..7238ac3 100644 --- a/store/smartAccount/actions.ts +++ b/store/smartAccount/actions.ts @@ -39,11 +39,11 @@ export function useSmartAccountActions() { }; const getSmartAccount = async () => { - const { publicKey, registrationResponse } = await getPersistedSmartAccountInfo(); + const { publicKey, credentialID } = await getPersistedSmartAccountInfo(); const webAuthnAccount = toWebAuthnAccount({ credential: { - id: registrationResponse.credentialId, + id: credentialID, publicKey: getPublicKeyHex(publicKey), }, getFn, @@ -62,15 +62,16 @@ export function useSmartAccountActions() { try { const authOptions = await api.getAuthenticationOptions(userName); - const passkey = await Passkeys.get({ challenge: authOptions.data.challenge, rpId: authOptions.data.rpId }); - if (!passkey) { + const passkeyResult = await Passkeys.get({ challenge: authOptions.data.challenge, rpId: authOptions.data.rpId }); + if (!passkeyResult) { throw new Error('No passkey found'); } + const verification = await api.verifyAuthentication(passkeyResult); + const webAuthnAccount = toWebAuthnAccount({ credential: { - id: passkey.id, - // should be the publickey tied to the credential ID - publicKey: getPublicKeyHex(passkey.response.signature), + id: passkeyResult.id, + publicKey: getPublicKeyHex(verification.publicKey), }, getFn, rpId, @@ -79,6 +80,13 @@ export function useSmartAccountActions() { client: publicClient, owners: [webAuthnAccount], }); + const smartAccountInfo = { + publicKey: getPublicKeyHex(passkeyResult.response.signature), + credentialID: passkeyResult.id, + }; + + await persistSmartAccountInfo(smartAccountInfo); + setSession(smartAccount); dispatch(setAddress(smartAccount.address)); return router.replace('/(tabs)/home'); diff --git a/store/smartAccount/create.ts b/store/smartAccount/create.ts index 3cc10c2..4a76f43 100644 --- a/store/smartAccount/create.ts +++ b/store/smartAccount/create.ts @@ -78,7 +78,7 @@ export async function createSmartAccount(registrationOptions: PublicKeyCredentia address, smartAccountInfo: { publicKey, - registrationResponse, + credentialID: smartAccountInfo.id, }, }; } catch (error: any) { From 8727a34402ca0afc49df8f26ee26048f12e21d55 Mon Sep 17 00:00:00 2001 From: Renan Mav Date: Sat, 9 Nov 2024 19:03:01 -0300 Subject: [PATCH 10/95] fix: passkey integration --- app.json | 7 +------ constants/env.ts | 11 +++++++++-- init/api.ts | 18 +++--------------- 3 files changed, 13 insertions(+), 23 deletions(-) diff --git a/app.json b/app.json index d88054a..646b79b 100644 --- a/app.json +++ b/app.json @@ -22,12 +22,7 @@ "config": { "usesNonExemptEncryption": false }, - "associatedDomains": [ - "webcredentials:api.useliquid.xyz?mode=developer", - "webcredentials:api.useliquid.xyz", - "webcredentials:development.useliquid.xyz", - "webcredentials:xyz.useliquid.liquid" - ] + "associatedDomains": ["webcredentials:api.useliquid.xyz", "webcredentials:development.useliquid.xyz"] }, "android": { "adaptiveIcon": { diff --git a/constants/env.ts b/constants/env.ts index 2fc75d3..dcd72d6 100644 --- a/constants/env.ts +++ b/constants/env.ts @@ -9,8 +9,15 @@ export const rpId = 'api.useliquid.xyz'; export const smartAccountInfoKey = 'SMART_ACCOUNT_INFO'; export const privyAppId = process.env.EXPO_PUBLIC_PRIVY_APP_ID as string; -export const privyClientId = process.env.EXPO_PUBLIC_PRIVY_CLIENT_ID; +export const privyClientId = process.env.EXPO_PUBLIC_PRIVY_CLIENT_ID as string; if (!privyAppId || !privyClientId) { - throw new Error('Privy App ID and Client ID are required'); + throw new Error('EXPO_PUBLIC_PRIVY_APP_ID and EXPO_PUBLIC_PRIVY_CLIENT_ID are required'); +} + +export const apiUrl = process.env.EXPO_PUBLIC_API_URL as string; +export const apiKey = process.env.EXPO_PUBLIC_API_KEY as string; + +if (!apiUrl || !apiKey) { + throw new Error('EXPO_PUBLIC_API_URL and EXPO_PUBLIC_API_KEY are required'); } diff --git a/init/api.ts b/init/api.ts index 28751c7..d02f92f 100644 --- a/init/api.ts +++ b/init/api.ts @@ -1,26 +1,14 @@ import { PoolResponse } from '@/store/pools/types'; -import { - CreatePassKeyCredentialOptions, - Address, - PasskeyRegistrationResult, - PoolType, - VerifyRegistration, - AuthCredentialOptions, -} from './types'; +import { CreatePassKeyCredentialOptions, Address, PoolType, VerifyRegistration, AuthCredentialOptions } from './types'; import { AuthenticationResponseJSON } from 'react-native-passkeys/build/ReactNativePasskeys.types'; +import { apiKey, apiUrl } from '@/constants/env'; + class LiquidAPI { private apiBaseUrl: string; private apiKey: string; constructor() { - const apiUrl = process.env.EXPO_PUBLIC_X_API_URL; - const apiKey = process.env.EXPO_PUBLIC_X_API_KEY; - - if (!apiUrl || !apiKey) { - throw new Error('EXPO_PUBLIC_API_URL or EXPO_PUBLIC_API_KEY is not set'); - } - this.apiBaseUrl = apiUrl; this.apiKey = apiKey; } From 8a1975fc678f169cd7d22b38d4234fbeec3d6b98 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Sun, 10 Nov 2024 14:49:35 +0100 Subject: [PATCH 11/95] integrate new pools data --- app/(tabs)/home/[poolId]/_layout.tsx | 8 ------- app/_layout.tsx | 8 ------- components/pool-pair-card/index.tsx | 2 +- components/pool-pair-paper/index.tsx | 7 +++--- components/search-ui/index.tsx | 14 +++++++---- init/api.ts | 10 ++++++++ screens/home/index.tsx | 7 ++++++ screens/pool-detail/index.tsx | 6 ++--- store/pools/actions.ts | 18 +++++++++++++- store/pools/index.ts | 29 +++++++++++++++++++++-- store/pools/types.ts | 35 ++++++---------------------- 11 files changed, 86 insertions(+), 58 deletions(-) diff --git a/app/(tabs)/home/[poolId]/_layout.tsx b/app/(tabs)/home/[poolId]/_layout.tsx index 4a452f6..602d3ce 100644 --- a/app/(tabs)/home/[poolId]/_layout.tsx +++ b/app/(tabs)/home/[poolId]/_layout.tsx @@ -1,15 +1,12 @@ -import { useEffect } from 'react'; import { StyleSheet, View } from 'react-native'; import { Stack } from 'expo-router'; import { LQDButton, LQDStackHeader } from '@/components'; import { ILQDButton } from '@/components/button/types'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -import useAppActions from '@/store/app/actions'; const PoolDetailLayout = () => { const { router } = useSystemFunctions(); - const { hideSearch } = useAppActions(); const actions: Array = [ { @@ -24,11 +21,6 @@ const PoolDetailLayout = () => { }, ]; - useEffect(() => { - hideSearch(true); - - return () => hideSearch(false); - }, []); return ( <> diff --git a/components/pool-pair-card/index.tsx b/components/pool-pair-card/index.tsx index a68b0cd..55ee8b8 100644 --- a/components/pool-pair-card/index.tsx +++ b/components/pool-pair-card/index.tsx @@ -26,7 +26,7 @@ const LQDPoolPairCard = ({ pool, navigationVariant = 'primary' }: PoolPairCard) const primaryIconURL = pool.token0.logoUrl; const secondaryIconURL = pool.token1.logoUrl; const symbol = pool.symbol.split('-')[1].replace('/', ' / '); - const increased = pool.gauge.isAlive; + const increased = pool.isStable; const change = 2.3; return ( diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index bd3382d..981644a 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -5,6 +5,7 @@ import { adjustFontSizeForIOS, formatAmount, formatNumberWithSuffix } from '@/ut import useSystemFunctions from '@/hooks/useSystemFunctions'; import { setSelectedPool } from '@/store/pools'; import { PoolPairPaper } from './types'; +import { formatEther } from 'viem'; const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary' }: PoolPairPaper) => { const { router, dispatch } = useSystemFunctions(); @@ -22,9 +23,9 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary' }: PoolPairPaper const primaryIconURL = pool.token0.logoUrl; const secondaryIconURL = pool.token1.logoUrl; const symbol = pool.symbol.split('-')[1].replace('/', ' / '); - const apr = formatAmount(pool.emissions.rate, 2); - const fees = pool.fees.poolFee; - const volume = formatAmount(pool.volume.usd, 0); + const apr = formatAmount(pool.apr, 2); + const fees = ''; + const volume = formatAmount(formatEther(BigInt(pool.totalVolumeUSD)), 0); const isStable = pool.isStable; return ( diff --git a/components/search-ui/index.tsx b/components/search-ui/index.tsx index c673c1c..808788e 100644 --- a/components/search-ui/index.tsx +++ b/components/search-ui/index.tsx @@ -5,14 +5,16 @@ import SearchSection from './sections'; import { recents, explore } from './dummy'; import RecentCard from './recent-card'; import ExploreCard from './explore-card'; -import { LQDPoolPairPaper, LQDSearch } from '@/components'; +import LQDSearch from '../search'; +import LQDPoolPairPaper from '../pool-pair-paper'; import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { usePoolActions } from '@/store/pools/actions'; const SearchUI = () => { const { router, poolsState } = useSystemFunctions(); + const { searchPools } = usePoolActions(); const [showRecents, setShowRecents] = useState(true); - const [query, setQuery] = useState(''); const pools = poolsState.trendingPools.data.slice(0, 10); @@ -65,11 +67,15 @@ const SearchUI = () => { }, ]; - const sectionsToShow = query ? searchResultSection : showRecents ? sections : sections.slice(1); + const sectionsToShow = false ? searchResultSection : showRecents ? sections : sections.slice(1); + + const handleQuery = (value: string) => { + searchPools(value); + }; return ( <> - + {sectionsToShow.map((section, index) => ( diff --git a/init/api.ts b/init/api.ts index 28751c7..916d8f1 100644 --- a/init/api.ts +++ b/init/api.ts @@ -28,6 +28,7 @@ class LiquidAPI { private async fetchWithErrorHandling(url: string, options: RequestInit) { console.log('fetchWithErrorHandling', url); const response = await fetch(url, options); + if (!response.ok || response.status !== 200) { const errorData = await response.text(); const errorMessage = `HTTP error - status: ${response.status} - ${errorData}`; @@ -95,6 +96,15 @@ class LiquidAPI { }, }); } + + async searchPools(query: string): Promise { + return this.fetchWithErrorHandling(`${this.apiBaseUrl}/pools/search?address=${query}`, { + method: 'GET', + headers: { + 'Content-Type': 'application/json', + }, + }); + } } export default new LiquidAPI(); diff --git a/screens/home/index.tsx b/screens/home/index.tsx index bc7f578..1b0b255 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -10,10 +10,13 @@ import Section from './section'; import { useAuth } from '@/providers'; import { useSmartAccountActions } from '@/store/smartAccount/actions'; import useAppActions from '@/store/app/actions'; +import { usePoolActions } from '@/store/pools/actions'; +import { useOnMount } from '@/hooks/useOnMount'; const Home = () => { const { router, poolsState, smartAccountState, accountState, appState } = useSystemFunctions(); const { getTokens, getPositions } = useAccountActions(); + const { getPools } = usePoolActions(); const { logout } = useSmartAccountActions(); const { searchIsFocused: focusSearch, showSearch } = useAppActions(); @@ -124,6 +127,10 @@ const Home = () => { [smartAccountState.address] ); + useOnMount(function loadData() { + getPools(); + }); + if (appState.showSearch) { return ( diff --git a/screens/pool-detail/index.tsx b/screens/pool-detail/index.tsx index 7deba63..fdda7f6 100644 --- a/screens/pool-detail/index.tsx +++ b/screens/pool-detail/index.tsx @@ -6,7 +6,7 @@ import Balance from './balance'; import PoolLiquidity from './pool-liquidity'; import PoolStats from './stats'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { Address } from 'viem'; +import { Address, formatEther } from 'viem'; const PoolDetail = ({ poolId }: PoolID) => { const { poolsState, accountState } = useSystemFunctions(); @@ -34,14 +34,14 @@ const PoolDetail = ({ poolId }: PoolID) => { secondaryBalance: getTokenBalance(pool?.token1.address), secondaryUSDValue: getTokenUSDValue(pool?.token1.address), condition: pool?.isStable ? 'stable' : 'volatile', - fee: pool?.fees.poolFee || 0, + fee: 0, aero: 10, stakedAero: 300, availableAero: 4_090, primaryTitle: title ? title[0] : '', secondaryTitle: title ? title[1] : '', symbol: pool?.symbol.split('-')[1].replace('/', ' / ') || '', - volume: Number(pool?.volume.usd || 0), + volume: Number(formatEther(BigInt(pool?.totalVolumeUSD || 0))), tvl: Number(pool?.tvl || 0), }; diff --git a/store/pools/actions.ts b/store/pools/actions.ts index f28ae1f..dd09608 100644 --- a/store/pools/actions.ts +++ b/store/pools/actions.ts @@ -1,5 +1,5 @@ import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { setHotPools, setLoadingPools, setRefreshing, setTopGainers, setTrendingPools } from '.'; +import { setHotPools, setLoadingPools, setRefreshing, setSearchedPools, setSearchingPools, setTopGainers, setTrendingPools } from '.'; import api from '@/init/api'; import { PoolType } from '@/init/types'; @@ -119,10 +119,26 @@ export function usePoolActions() { } }; + const searchPools = async (query: string) => { + try { + dispatch(setSearchingPools(true)); + + const pools = await api.searchPools(query); + + dispatch(setSearchedPools(pools)); + } catch (error: any) { + // + } finally { + dispatch(setSearchingPools(false)); + dispatch(setRefreshing(false)); + } + }; + return { getPools, getPaginatedHotPools, getPaginatedTrendingPools, getPaginatedTopGainers, + searchPools, }; } diff --git a/store/pools/index.ts b/store/pools/index.ts index 1d301bd..e28db4d 100644 --- a/store/pools/index.ts +++ b/store/pools/index.ts @@ -8,9 +8,11 @@ export interface PoolsState { trendingPools: PoolResponse; hotPools: PoolResponse; topGainers: PoolResponse; + searchedPools: PoolResponse; selectedPool: Pool | undefined; loadingPools: boolean; refreshingPools: boolean; + searchingPools: boolean; } const initialState: PoolsState = { @@ -18,9 +20,11 @@ const initialState: PoolsState = { trendingPools: defaultPoolResponse, hotPools: defaultPoolResponse, topGainers: defaultPoolResponse, + searchedPools: defaultPoolResponse, selectedPool: undefined, loadingPools: false, refreshingPools: false, + searchingPools: false, }; export const poolReducer = createSlice({ @@ -35,6 +39,10 @@ export const poolReducer = createSlice({ state.loadingPools = action.payload; }, + setSearchingPools: (state, action: PayloadAction) => { + state.searchingPools = action.payload; + }, + setpools: (state, action: PayloadAction) => { if (action.payload) { state.pools = { ...action.payload }; @@ -70,10 +78,27 @@ export const poolReducer = createSlice({ state.trendingPools = defaultPoolResponse; } }, + + setSearchedPools: (state, action: PayloadAction) => { + if (action.payload) { + state.searchedPools = { ...action.payload }; + } else { + state.searchedPools = defaultPoolResponse; + } + }, }, }); -export const { setLoadingPools, setpools, setTrendingPools, setHotPools, setTopGainers, setRefreshing, setSelectedPool } = - poolReducer.actions; +export const { + setLoadingPools, + setpools, + setTrendingPools, + setHotPools, + setTopGainers, + setRefreshing, + setSelectedPool, + setSearchingPools, + setSearchedPools, +} = poolReducer.actions; export default poolReducer.reducer; diff --git a/store/pools/types.ts b/store/pools/types.ts index d4418cf..3b16543 100644 --- a/store/pools/types.ts +++ b/store/pools/types.ts @@ -23,45 +23,24 @@ export const defaultPoolResponse = { export type Pool = { address: Address; decimals: number; - emissions: { - rate: string; - tokenAddress: Address; - }; - factory: Address; - fees: { - address: Address; - poolFee: number; - token0: string; - token1: string; - unstakedFee: number; - }; - gauge: { - address: Address; - isAlive: boolean; - liquidity: string; - }; - isStable: boolean; symbol: string; + apr: string; + tvl: string; + totalVolumeUSD: string; + isStable: boolean; + factory: Address; token0: { address: Address; logoUrl: string; price: string; reserve: string; - staked: string; + volume: string; }; token1: { address: Address; logoUrl: string; price: string; reserve: string; - staked: string; - }; - totalLiquidity: string; - tvl: string; - type: string; - volume: { - token0: string; - token1: string; - usd: string; + volume: string; }; }; From 8be89bc177d8fbdd6d3a0c943897919fcad1360d Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Sun, 10 Nov 2024 20:32:41 +0100 Subject: [PATCH 12/95] update seach EP --- init/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/api.ts b/init/api.ts index 916d8f1..4eb3ed2 100644 --- a/init/api.ts +++ b/init/api.ts @@ -98,7 +98,7 @@ class LiquidAPI { } async searchPools(query: string): Promise { - return this.fetchWithErrorHandling(`${this.apiBaseUrl}/pools/search?address=${query}`, { + return this.fetchWithErrorHandling(`${this.apiBaseUrl}/pools/search?symbol=${query}`, { method: 'GET', headers: { 'Content-Type': 'application/json', From de3c9d09b859cfceee64945b2140a599422cfe82 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Sun, 10 Nov 2024 23:01:29 +0100 Subject: [PATCH 13/95] chore: update verification call payload --- components/pool-pair-paper/index.tsx | 2 +- init/api.ts | 3 ++- store/smartAccount/actions.ts | 17 ++++++++++++++++- store/smartAccount/create.ts | 1 + 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index bd3382d..1b997ff 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -22,7 +22,7 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary' }: PoolPairPaper const primaryIconURL = pool.token0.logoUrl; const secondaryIconURL = pool.token1.logoUrl; const symbol = pool.symbol.split('-')[1].replace('/', ' / '); - const apr = formatAmount(pool.emissions.rate, 2); + const apr = 10; const fees = pool.fees.poolFee; const volume = formatAmount(pool.volume.usd, 0); const isStable = pool.isStable; diff --git a/init/api.ts b/init/api.ts index 28751c7..cb26e28 100644 --- a/init/api.ts +++ b/init/api.ts @@ -65,6 +65,7 @@ class LiquidAPI { } async verifyAuthentication( + username: string, data: AuthenticationResponseJSON ): Promise<{ verified: boolean; userName: string; publicKey: string; userAddress: string }> { return this.fetchWithErrorHandling(`${this.apiBaseUrl}/authentication/verify`, { @@ -72,7 +73,7 @@ class LiquidAPI { headers: { 'Content-Type': 'application/json', }, - body: JSON.stringify(data), + body: JSON.stringify({ username, authenticationResponse: data }), }); } diff --git a/store/smartAccount/actions.ts b/store/smartAccount/actions.ts index 7238ac3..2258506 100644 --- a/store/smartAccount/actions.ts +++ b/store/smartAccount/actions.ts @@ -15,6 +15,7 @@ import { RegistrationOptionsNotAvailableError } from './errors'; import { setLpBalance, setPositions, setTokenBalance, setTokens } from '../account'; import api from '@/init/api'; import { useAuth } from '@/providers'; +import { AuthenticationResponseJSON } from 'react-native-passkeys/build/ReactNativePasskeys.types'; export function useSmartAccountActions() { const { dispatch, router, smartAccountState } = useSystemFunctions(); @@ -66,7 +67,21 @@ export function useSmartAccountActions() { if (!passkeyResult) { throw new Error('No passkey found'); } - const verification = await api.verifyAuthentication(passkeyResult); + + const authenticationResponse: any = { + id: passkeyResult.id, + rawId: passkeyResult.rawId, + response: { + authenticatorData: passkeyResult.response.authenticatorData, + clientDataJSON: passkeyResult.response.clientDataJSON, + signature: passkeyResult.response.signature, + userHandle: passkeyResult.response.userHandle, + }, + type: 'public-key', + authenticatorAttachment: 'platform', + }; + + const verification = await api.verifyAuthentication(userName, authenticationResponse); const webAuthnAccount = toWebAuthnAccount({ credential: { diff --git a/store/smartAccount/create.ts b/store/smartAccount/create.ts index 4a76f43..2dd132b 100644 --- a/store/smartAccount/create.ts +++ b/store/smartAccount/create.ts @@ -27,6 +27,7 @@ export async function createSmartAccount(registrationOptions: PublicKeyCredentia if (!credential) { throw new FailedToCreatePasskeyCredentialError(); } + console.log(credential, 'credential'); const credentialId = credential.id; const { attestationObject, clientDataJSON, publicKey } = credential.response; From 8f74301dc4914fa97d5c03cb41198959aa754953 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Mon, 11 Nov 2024 01:03:31 +0100 Subject: [PATCH 14/95] chore: refactor pool liquidity --- components/pool-pair-paper/index.tsx | 5 +- components/pool-pair-paper/types.ts | 1 + screens/home/index.tsx | 8 ++- screens/pool-detail/balance.tsx | 15 ++--- screens/pool-detail/index.tsx | 21 +++---- screens/pool-detail/pool-liquidity.tsx | 76 +++++++++++++------------- screens/pool-detail/stats.tsx | 2 +- screens/pool-detail/types.ts | 19 +++---- 8 files changed, 70 insertions(+), 77 deletions(-) diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index 981644a..496e1a8 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -7,7 +7,7 @@ import { setSelectedPool } from '@/store/pools'; import { PoolPairPaper } from './types'; import { formatEther } from 'viem'; -const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary' }: PoolPairPaper) => { +const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', isHot }: PoolPairPaper) => { const { router, dispatch } = useSystemFunctions(); const paths = { @@ -25,7 +25,8 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary' }: PoolPairPaper const symbol = pool.symbol.split('-')[1].replace('/', ' / '); const apr = formatAmount(pool.apr, 2); const fees = ''; - const volume = formatAmount(formatEther(BigInt(pool.totalVolumeUSD)), 0); + const volume = formatAmount(formatEther(BigInt(Number(pool.totalVolumeUSD))), 0); + const tvl = pool.tvl; const isStable = pool.isStable; return ( diff --git a/components/pool-pair-paper/types.ts b/components/pool-pair-paper/types.ts index 8430a2f..9ab6ed7 100644 --- a/components/pool-pair-paper/types.ts +++ b/components/pool-pair-paper/types.ts @@ -3,4 +3,5 @@ import { Pool } from '@/store/pools/types'; export interface PoolPairPaper { pool: Pool; navigationVariant?: 'primary' | 'secondary'; + isHot?: boolean; } diff --git a/screens/home/index.tsx b/screens/home/index.tsx index 1b0b255..5f646da 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -22,11 +22,13 @@ const Home = () => { const { trendingPools, hotPools, topGainers } = poolsState; - const { whole, decimal } = formatAmountWithWholeAndDecimal(accountState.tokenBalance.toFixed(2)); + console.log(hotPools.data, 'hot pools'); - const top10TrendingPools = trendingPools.data.slice(0, 10); + const { whole, decimal } = formatAmountWithWholeAndDecimal(accountState.tokenBalance.toFixed(2)); - const top10HotPools = hotPools.data.slice(0, 10); + const top10TrendingPools = trendingPools?.data.slice(0, 10); + const hotPoolsArray = Object.values(hotPools.data); + const top10HotPools = hotPoolsArray.slice(0, 10) ?? []; const top7Gainers = topGainers.data.slice(0, 7); diff --git a/screens/pool-detail/balance.tsx b/screens/pool-detail/balance.tsx index 19c7894..0e069e6 100644 --- a/screens/pool-detail/balance.tsx +++ b/screens/pool-detail/balance.tsx @@ -2,15 +2,15 @@ import { View, StyleSheet, Text, Image } from 'react-native'; import { adjustFontSizeForIOS } from '@/utils/helpers'; -const Balance = ({ primaryBalance, primaryIconURL, primaryTitle, secondaryBalance, secondaryIconURL, secondaryTitle, aero }: IPool) => { +const Balance = ({ tokenABalance, tokenAIconURL, tokenATitle, tokenBBalance, tokenBIconURL, tokenBTitle }: any) => { const values = [ { - iconURL: primaryIconURL, - title: `${primaryBalance.toLocaleString()} ${primaryTitle}`, + iconURL: tokenAIconURL, + title: `${tokenABalance.toLocaleString()} ${tokenATitle}`, }, { - iconURL: secondaryIconURL, - title: `${secondaryBalance.toLocaleString()} ${secondaryTitle}`, + iconURL: tokenBIconURL, + title: `${tokenBBalance.toLocaleString()} ${tokenBTitle}`, }, ]; @@ -31,11 +31,6 @@ const Balance = ({ primaryBalance, primaryIconURL, primaryTitle, secondaryBalanc ), }, - - { - title: 'Quantity', - children: {aero.toLocaleString()} AERO-LP, - }, ]; return ( diff --git a/screens/pool-detail/index.tsx b/screens/pool-detail/index.tsx index fdda7f6..389dc12 100644 --- a/screens/pool-detail/index.tsx +++ b/screens/pool-detail/index.tsx @@ -27,21 +27,18 @@ const PoolDetail = ({ poolId }: PoolID) => { }; const POOL: PoolDetails = { - primaryIconURL: pool?.token0.logoUrl || '', - primaryBalance: getTokenBalance(pool?.token0.address), - primaryUSDValue: getTokenUSDValue(pool?.token0.address), - secondaryIconURL: pool?.token1.logoUrl || '', - secondaryBalance: getTokenBalance(pool?.token1.address), - secondaryUSDValue: getTokenUSDValue(pool?.token1.address), + tokenAIconURL: pool?.token0.logoUrl || '', + tokenABalance: getTokenBalance(pool?.token0.address), + tokenAUSDValue: getTokenUSDValue(pool?.token0.address), + tokenBIconURL: pool?.token1.logoUrl || '', + tokenBBalance: getTokenBalance(pool?.token1.address), + tokenBUSDValue: getTokenUSDValue(pool?.token1.address), condition: pool?.isStable ? 'stable' : 'volatile', fee: 0, - aero: 10, - stakedAero: 300, - availableAero: 4_090, - primaryTitle: title ? title[0] : '', - secondaryTitle: title ? title[1] : '', + tokenATitle: title ? title[0] : '', + tokenBTitle: title ? title[1] : '', symbol: pool?.symbol.split('-')[1].replace('/', ' / ') || '', - volume: Number(formatEther(BigInt(pool?.totalVolumeUSD || 0))), + volume: Number(pool?.totalVolumeUSD || 0), tvl: Number(pool?.tvl || 0), }; diff --git a/screens/pool-detail/pool-liquidity.tsx b/screens/pool-detail/pool-liquidity.tsx index 8c9099a..50bb7db 100644 --- a/screens/pool-detail/pool-liquidity.tsx +++ b/screens/pool-detail/pool-liquidity.tsx @@ -6,61 +6,61 @@ import ImageColors from 'react-native-image-colors'; import { adjustFontSizeForIOS } from '@/utils/helpers'; const PoolLiquidity = ({ - primaryIconURL, - primaryBalance, - primaryTitle, - primaryUSDValue, - secondaryBalance, - secondaryIconURL, - secondaryTitle, - secondaryUSDValue, + tokenAIconURL, + tokenABalance, + tokenATitle, + tokenAUSDValue, + tokenBBalance, + tokenBIconURL, + tokenBTitle, + tokenBUSDValue, }: PoolDetails) => { - const [primaryColor, setPrimaryColor] = useState('#375DFB'); - const [secondaryColor, setSecondaryColor] = useState('#F2AE40'); - const [primaryProgress, setPrimaryProgress] = useState(0.5); + const [tokenAColor, settokenAColor] = useState('#375DFB'); + const [tokenBColor, settokenBColor] = useState('#F2AE40'); + const [tokenAProgress, settokenAProgress] = useState(0.5); const values = [ { - iconURL: primaryIconURL, - primaryText: `${primaryBalance.toLocaleString()}`, - title: primaryTitle, - secondaryText: `${primaryUSDValue.toLocaleString()}`, + iconURL: tokenAIconURL, + tokenBalance: `${tokenABalance.toLocaleString()}`, + title: tokenATitle, + tokenUSDValue: `${tokenAUSDValue.toLocaleString()}`, }, { - iconURL: secondaryIconURL, - primaryText: `${secondaryBalance.toLocaleString()}`, - title: secondaryTitle, - secondaryText: `${secondaryUSDValue.toLocaleString()}`, + iconURL: tokenBIconURL, + tokenBalance: `${tokenBBalance.toLocaleString()}`, + title: tokenBTitle, + tokenUSDValue: `${tokenBUSDValue.toLocaleString()}`, }, ]; const progressStyle = useAnimatedStyle(() => { return { - width: withTiming(`${primaryProgress * 100}%`, { duration: 500 }), + width: withTiming(`${tokenAProgress * 100}%`, { duration: 500 }), }; }); useEffect(() => { const extractColors = async () => { - const primaryColors = await ImageColors.getColors(primaryIconURL, { + const tokenAColors = await ImageColors.getColors(tokenAIconURL, { fallback: '#375DFB', }); - const secondaryColors = await ImageColors.getColors(secondaryIconURL, { + const tokenBColors = await ImageColors.getColors(tokenBIconURL, { fallback: '#F2AE40', }); - if (primaryColors.platform === 'android') setPrimaryColor(primaryColors.vibrant || '#375DFB'); - if (primaryColors.platform === 'ios') setPrimaryColor(primaryColors.background || '#375DFB'); + if (tokenAColors.platform === 'android') settokenAColor(tokenAColors.vibrant || '#375DFB'); + if (tokenAColors.platform === 'ios') settokenAColor(tokenAColors.background || '#375DFB'); - if (secondaryColors.platform === 'android') setSecondaryColor(secondaryColors.vibrant || '#F2AE40'); - if (secondaryColors.platform === 'ios') setSecondaryColor(secondaryColors.background || '#F2AE40'); + if (tokenBColors.platform === 'android') settokenBColor(tokenBColors.vibrant || '#F2AE40'); + if (tokenBColors.platform === 'ios') settokenBColor(tokenBColors.background || '#F2AE40'); }; extractColors(); - const totalBalance = primaryBalance + secondaryBalance; - setPrimaryProgress(primaryBalance / totalBalance); - }, [primaryIconURL, secondaryIconURL, primaryBalance, secondaryBalance]); + const totalBalance = tokenABalance + tokenBBalance; + settokenAProgress(tokenABalance / totalBalance); + }, [tokenAIconURL, tokenBIconURL, tokenABalance, tokenBBalance]); return ( @@ -68,25 +68,25 @@ const PoolLiquidity = ({ - {values.map(({ iconURL, primaryText, secondaryText, title }, index) => ( + {values.map(({ iconURL, tokenBalance, tokenUSDValue, title }, index) => ( - - {primaryText} - {title} + + {tokenBalance} + {title} - {`($${secondaryText})`} + {`($${tokenUSDValue})`} ))} - - + + @@ -143,7 +143,7 @@ const styles = StyleSheet.create({ gap: 8, }, - primaryText: { + tokenAText: { color: '#0A0D14', fontSize: adjustFontSizeForIOS(16, 2), lineHeight: 19.84, @@ -156,7 +156,7 @@ const styles = StyleSheet.create({ color: '#868C98', }, - secondaryText: { + tokenBText: { color: '#525866', fontSize: adjustFontSizeForIOS(14, 2), lineHeight: 18.48, diff --git a/screens/pool-detail/stats.tsx b/screens/pool-detail/stats.tsx index 27bd984..366faa8 100644 --- a/screens/pool-detail/stats.tsx +++ b/screens/pool-detail/stats.tsx @@ -36,7 +36,7 @@ const PoolStats = ({ volume, fee, tvl }: Stat) => { {icon} - {title} (24hrs) + {title} {value} diff --git a/screens/pool-detail/types.ts b/screens/pool-detail/types.ts index 7b9a6a9..63dc3cf 100644 --- a/screens/pool-detail/types.ts +++ b/screens/pool-detail/types.ts @@ -3,19 +3,16 @@ interface PoolID { } interface PoolDetails { - primaryIconURL: string; - secondaryIconURL: string; - primaryTitle: string; - secondaryTitle: string; - primaryBalance: number; - secondaryBalance: number; - primaryUSDValue: number; - secondaryUSDValue: number; + tokenAIconURL: string; + tokenBIconURL: string; + tokenATitle: string; + tokenBTitle: string; + tokenABalance: number; + tokenBBalance: number; + tokenAUSDValue: number; + tokenBUSDValue: number; condition: 'stable' | 'volatile'; fee: number; - aero: number; - stakedAero: number; - availableAero: number; symbol: string; volume: number; tvl: number; From 6978d04b9dba0223064792aa45475f323f990cab Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Mon, 11 Nov 2024 02:41:01 +0100 Subject: [PATCH 15/95] chore: remove earn and fees on empty data --- components/pool-pair-paper/index.tsx | 2 +- screens/holdings/dummy.ts | 12 ------------ screens/holdings/types.ts | 2 +- 3 files changed, 2 insertions(+), 14 deletions(-) diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index 496e1a8..c8ed0ac 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -25,7 +25,7 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', isHot }: PoolPa const symbol = pool.symbol.split('-')[1].replace('/', ' / '); const apr = formatAmount(pool.apr, 2); const fees = ''; - const volume = formatAmount(formatEther(BigInt(Number(pool.totalVolumeUSD))), 0); + const volume = Number(pool.totalVolumeUSD); const tvl = pool.tvl; const isStable = pool.isStable; diff --git a/screens/holdings/dummy.ts b/screens/holdings/dummy.ts index 7c14c27..e28b6da 100644 --- a/screens/holdings/dummy.ts +++ b/screens/holdings/dummy.ts @@ -12,18 +12,6 @@ const emptyData: IEmptyData = { subtitle: 'Deposit Liquidity into a pool and your balances will show up here', actionIcon: 'right-caret', }, - - tertiary: { - icon: 'coins', - title: 'No AERO rewards yet', - subtitle: 'Stake your LP tokens to start earning AERO emissions', - }, - - quaternary: { - icon: 'dollar', - title: 'No Fees earned yet', - subtitle: 'Stake your LP tokens to start earning Fees', - }, }; export { emptyData }; diff --git a/screens/holdings/types.ts b/screens/holdings/types.ts index 390e1ef..9536c69 100644 --- a/screens/holdings/types.ts +++ b/screens/holdings/types.ts @@ -10,7 +10,7 @@ interface IEmpty { isLast?: boolean; } -type Variants = 'primary' | 'secondary' | 'tertiary' | 'quaternary'; +type Variants = 'primary' | 'secondary'; interface IItem { variant: Variants; From 697ef9af38931da283fbf64cfd0b0356491e2c9a Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Mon, 11 Nov 2024 02:58:53 +0100 Subject: [PATCH 16/95] chore: update holdings --- screens/holdings/index.tsx | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/screens/holdings/index.tsx b/screens/holdings/index.tsx index 28679e3..e1b64ab 100644 --- a/screens/holdings/index.tsx +++ b/screens/holdings/index.tsx @@ -66,22 +66,6 @@ const Holdings = () => { }, isEmpty: positions?.length === 0, }, - { - variant: 'tertiary', - details: [{ title: 'Unclaimed in:', value: `${13} pools` }], - subtitle: `${(3104).toLocaleString()} AERO`, - title: `$${(5_643.44).toLocaleString()}`, - empty: emptyData.tertiary, - isEmpty: true, - }, - { - variant: 'quaternary', - details: [{ title: 'Your Pools', value: `${13} pools` }], - subtitle: `$${(12_506).toLocaleString()}`, - title: `$${(12_506).toLocaleString()}`, - empty: emptyData.quaternary, - isEmpty: true, - }, ]; const nonEmptyItems = items.filter((item) => !item.isEmpty); From bc74739369d27bdcd5b2e68470a804caaf59ff4c Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Mon, 11 Nov 2024 11:17:05 +0100 Subject: [PATCH 17/95] Implement contract interaction (#59) * chore: sign transaction using current wallet session * add hooks for token approval * chore: modify add liquidity hook function to include token approvals * chore: refactor liquidity hooks * chore: refactor add liquidity hook to support swap batch calls * chore: document liquidity hooks --- hooks/liquidity.md | 243 ++++++++++++++++++++++++++++++++++ hooks/types.ts | 51 ++++--- hooks/useLiquid.ts | 169 ++++++++++++++++++++--- store/smartAccount/actions.ts | 8 +- utils/calls.ts | 24 +++- utils/encoders.ts | 19 ++- 6 files changed, 462 insertions(+), 52 deletions(-) create mode 100644 hooks/liquidity.md diff --git a/hooks/liquidity.md b/hooks/liquidity.md new file mode 100644 index 0000000..d8cf45f --- /dev/null +++ b/hooks/liquidity.md @@ -0,0 +1,243 @@ +# Aerodrome Liquidity Hooks Documentation + +## Overview +The `useLiquidity` hook provides methods for interacting with Aerodrome liquidity pools, including adding/removing liquidity, swapping tokens, and staking LP tokens. + +## Installation & Setup +```typescript +import { useLiquidity } from '@/hooks/useLiquidity'; +import { usePublicClient } from 'wagmi'; + +function YourComponent() { + const publicClient = usePublicClient(); + const { addLiquidity, removeLiquidity, swap, stake } = useLiquidity( + publicClient, + account // your wallet address + ); +} +``` + +## Core Methods + +### 1. Adding Liquidity +Add liquidity to an Aerodrome pool with optional pre-swap functionality. + +```typescript +// Basic liquidity addition +const addLiquidityExample = async () => { + await addLiquidity({ + tokenA: { + address: '0x...', // token A address + decimals: 18 + }, + tokenB: { + address: '0x...', // token B address + decimals: 18 + }, + stable: true, // true for stable pools, false for volatile + amountAIn: '1.0', // amount of token A to add + amountBIn: '1.0', // amount of token B to add + to: account, // recipient address + }); +}; + +// Adding liquidity with a pre-swap +const addLiquidityWithSwapExample = async () => { + await addLiquidity({ + // Regular liquidity parameters + tokenA: { + address: '0x...', + decimals: 18 + }, + tokenB: { + address: '0x...', + decimals: 18 + }, + stable: true, + amountAIn: '1.0', + amountBIn: '1.0', + to: account, + + // Pre-swap configuration + preSwap: { + enabled: true, + params: { + tokenA: { + address: '0x...', // token to swap from + decimals: 6 + }, + tokenB: { + address: '0x...', // token to swap to + decimals: 18 + }, + amountIn: '1000', // amount to swap + minReturnAmount: '0.95', // minimum expected return + stable: true, + to: account + } + } + }); +}; +``` + +### 2. Removing Liquidity +Remove liquidity from an Aerodrome pool. + +```typescript +const removeLiquidityExample = async () => { + await removeLiquidity({ + tokenA: { + address: '0x...', + decimals: 18 + }, + tokenB: { + address: '0x...', + decimals: 18 + }, + stable: true, + liquidity: '1.0', // amount of LP tokens to remove + amountAMin: '0.95', // minimum amount of token A to receive + amountBMin: '0.95', // minimum amount of token B to receive + to: account + }); +}; +``` + +### 3. Swapping Tokens +Execute a token swap on Aerodrome. + +```typescript +const swapExample = async () => { + await swap({ + tokenA: { + address: '0x...', + decimals: 18 + }, + tokenB: { + address: '0x...', + decimals: 18 + }, + stable: true, + amountIn: '1.0', + minReturnAmount: '0.95', + to: account + }); +}; +``` + +### 4. Staking LP Tokens +Stake LP tokens in an Aerodrome gauge. + +```typescript +const stakeExample = async () => { + await stake({ + gauge: { + address: '0x...', // gauge address + decimals: 18 + }, + amount: '1.0' // amount of LP tokens to stake + }); +}; +``` + +## Transaction Configuration +All methods accept an optional transaction configuration object: + +```typescript +const txConfig = { + waitForReceipt: true, // whether to wait for transaction confirmation +}; + +// Example usage +await addLiquidity(params, txConfig); +``` + +## Type Definitions + +### Token Interface +```typescript +interface Token { + address: Address; + decimals: number; +} +``` + +### Add Liquidity Parameters +```typescript +interface AddLiquidityParams { + tokenA: Token; + tokenB: Token; + stable: boolean; + amountAIn: string; + amountBIn: string; + to: Address; +} + +interface AddLiquidityWithSwapParams extends AddLiquidityParams { + preSwap?: { + enabled: boolean; + params: { + tokenA: Token; + tokenB: Token; + amountIn: string; + minReturnAmount: string; + stable: boolean; + to: Address; + }; + }; +} +``` + +### Remove Liquidity Parameters +```typescript +interface RemoveLiquidityParams { + tokenA: Token; + tokenB: Token; + stable: boolean; + liquidity: string; + amountAMin: string; + amountBMin: string; + to: Address; +} +``` + +### Swap Parameters +```typescript +interface SwapExactTokensParams { + tokenA: Token; + tokenB: Token; + stable: boolean; + amountIn: string; + minReturnAmount: string; + to: Address; +} +``` + +### Stake Parameters +```typescript +interface StakeParams { + gauge: { + address: Address; + decimals: number; + }; + amount: string; +} +``` + +## Error Handling +```typescript +try { + await addLiquidity(params); +} catch (error) { + if (error instanceof Error) { + console.error('Transaction failed:', error.message); + } +} +``` + +## Notes +- All amount inputs are in human-readable format (e.g., "1.0" for 1 token) +- Decimals are handled automatically based on token configuration +- Transactions are automatically batched for efficiency +- Approvals are handled automatically +- Default deadline is set to 1 hour from execution \ No newline at end of file diff --git a/hooks/types.ts b/hooks/types.ts index d8b18a1..af5c702 100644 --- a/hooks/types.ts +++ b/hooks/types.ts @@ -130,48 +130,57 @@ export type FormattedPosition = { export type VolumeReturn = { volume0: string; volume1: string; cumulativeVolumeUSD: string }; export interface AddLiquidityParams { - tokenA: Address; - tokenB: Address; + tokenA: Token; + tokenB: Token; stable: boolean; - amountAIn: bigint; - amountBIn: bigint; - amountAMin: bigint; - amountBMin: bigint; - balanceTokenRatio: boolean; + amountAIn: string; + amountBIn: string; to: Address; deadline: bigint; } export interface RemoveLiquidityParams { - tokenA: Address; - tokenB: Address; + tokenA: Token; + tokenB: Token; stable: boolean; - liquidity: bigint; - amountAMin: bigint; - amountBMin: bigint; + liquidity: string; + amountAMin: string; + amountBMin: string; to: Address; deadline: bigint; } export interface SwapExactTokensParams { - amountIn: bigint; - minReturnAmount: bigint; - routes: IRouter.RouteStruct[]; + amountIn: string; + minReturnAmount: string; + tokenA: Token; + tokenB: Token; to: Address; deadline: bigint; + stable: boolean; } export interface StakeParams { - gaugeAddress: Address; - amount: bigint; + gauge: Token; + amount: string; +} + +export interface PreSwapConfig { + enabled: boolean; + params: SwapExactTokensParams; +} + +// Extend AddLiquidity params to include optional swap +export interface AddLiquidityWithSwapParams extends AddLiquidityParams { + preSwap?: PreSwapConfig; } export interface AddLiquidityQuoteParams { - tokenA: Address; - tokenB: Address; + tokenA: Token; + tokenB: Token; stable: boolean; - amountA: bigint; - amountB: bigint; + amountA: string; + amountB: string; balanceTokenRatio?: boolean; decimalsA: number; decimalsB: number; diff --git a/hooks/useLiquid.ts b/hooks/useLiquid.ts index 2c0209e..7b40fc5 100644 --- a/hooks/useLiquid.ts +++ b/hooks/useLiquid.ts @@ -1,9 +1,19 @@ import { useCallback } from 'react'; -import { Address, Hex, PublicClient, WaitForTransactionReceiptParameters } from 'viem'; +import { Address, parseUnits, erc20Abi, Hex, PublicClient, WaitForTransactionReceiptParameters } from 'viem'; import { makeCalls } from '@/utils/calls'; -import { encodePluginExecute, encodeAddLiquidity, encodeRemoveLiquidity, encodeSwap, encodeStake } from '@/utils/encoders'; -import { AERODROME_CONNECTOR, CONNECTOR_PLUGIN } from '@/constants/addresses'; -import { AddLiquidityParams, RemoveLiquidityParams, StakeParams, SwapExactTokensParams, TransactionConfig } from './types'; +import { encodePluginExecute, encodeAddLiquidity, encodeRemoveLiquidity, encodeSwap, encodeStake, encodeApprove } from '@/utils/encoders'; +import { AERODROME_CONNECTOR, AERODROME_FACTORY_ADDRESS, CONNECTOR_PLUGIN } from '@/constants/addresses'; +import { + AddLiquidityParams, + AddLiquidityWithSwapParams, + IRouter, + RemoveLiquidityParams, + StakeParams, + SwapExactTokensParams, + TransactionConfig, +} from './types'; +import { Call } from '@/utils/types'; +import { AerodromeConnectorABI } from '@/constants/abis'; async function handleTransaction(client: PublicClient, { hash, waitForReceipt = true }: TransactionConfig) { if (!waitForReceipt) return { hash }; @@ -20,25 +30,113 @@ async function handleTransaction(client: PublicClient, { hash, waitForReceipt = export function useLiquidity(publicClient: PublicClient, account: Address) { const createPluginCall = useCallback( - (connectorData: Hex) => { + (connectorData: Hex, index: number) => { const pluginCalldata = encodePluginExecute(AERODROME_CONNECTOR, connectorData); return { + index, target: CONNECTOR_PLUGIN, - value: 0n, data: pluginCalldata, - index: 0, + value: 0n, }; }, [AERODROME_CONNECTOR, CONNECTOR_PLUGIN] ); const addLiquidity = useCallback( - async (params: AddLiquidityParams, txConfig?: Partial) => { - const connectorData = encodeAddLiquidity(params); - const call = createPluginCall(connectorData); + async (params: AddLiquidityWithSwapParams, txConfig?: Partial) => { + const calls: Call[] = []; + let currentIndex = 0; + + // Handle pre-swap if configured + if (params.preSwap?.enabled) { + // Approve token for swap + const swapApproveAmount = parseUnits(params.preSwap.params.amountIn, params.preSwap.params.tokenA.decimals); + + const approveSwapTokenData = encodeApprove({ + amount: swapApproveAmount, + spender: AERODROME_CONNECTOR, + }); + + calls.push({ + index: currentIndex++, + target: params.preSwap.params.tokenA.address, + data: approveSwapTokenData, + value: 0n, + }); + + // Create swap routes + const routes: IRouter.RouteStruct[] = [ + { + from: params.preSwap.params.tokenA.address, + to: params.preSwap.params.tokenB.address, + stable: params.preSwap.params.stable, + factory: AERODROME_FACTORY_ADDRESS, + }, + ]; + + // Add swap call + const swapData = encodeSwap({ + amountIn: swapApproveAmount, + minReturnAmount: parseUnits(params.preSwap.params.minReturnAmount, params.preSwap.params.tokenB.decimals), + routes, + to: params.preSwap.params.to, + deadline: BigInt(Math.floor(Date.now() / 1000) + 3600), + }); + + calls.push(createPluginCall(swapData, currentIndex++)); + } + + // Get quotes for liquidity deposit + const quotes = await quoteDepositLiquidity( + params.tokenA.address, + params.tokenB.address, + params.stable, + parseUnits(params.amountAIn, params.tokenA.decimals), + parseUnits(params.amountBIn, params.tokenB.decimals) + ); + + // Add approvals for liquidity tokens + const approveTokenAData = encodeApprove({ + amount: parseUnits(params.amountAIn, params.tokenA.decimals), + spender: AERODROME_CONNECTOR, + }); + + const approveTokenBData = encodeApprove({ + amount: parseUnits(params.amountBIn, params.tokenB.decimals), + spender: AERODROME_CONNECTOR, + }); + + calls.push( + { + index: currentIndex++, + target: params.tokenA.address, + data: approveTokenAData, + value: 0n, + }, + { + index: currentIndex++, + target: params.tokenB.address, + data: approveTokenBData, + value: 0n, + } + ); + + // Add liquidity call + const refactoredParams = { + ...params, + amountAIn: parseUnits(params.amountAIn, params.tokenA.decimals), + amountBIn: parseUnits(params.amountBIn, params.tokenB.decimals), + amountAMin: parseUnits(quotes.amountAOut, params.tokenA.decimals), + amountBMin: parseUnits(quotes.amountBOut, params.tokenB.decimals), + balanceTokenRatio: false, + deadline: BigInt(Math.floor(Date.now() / 1000) + 3600), + }; + + const addLiquidityData = encodeAddLiquidity(refactoredParams); + calls.push(createPluginCall(addLiquidityData, currentIndex)); const { opHash } = await makeCalls({ - calls: [call], + calls, account, }); @@ -52,8 +150,15 @@ export function useLiquidity(publicClient: PublicClient, account: Address) { const removeLiquidity = useCallback( async (params: RemoveLiquidityParams, txConfig?: Partial) => { - const connectorData = encodeRemoveLiquidity(params); - const call = createPluginCall(connectorData); + const refactoredParams = { + ...params, + liquidity: BigInt(params.liquidity), + amountAMin: parseUnits(params.amountAMin.toString(), params.tokenA.decimals), + amountBMin: parseUnits(params.amountBMin.toString(), params.tokenB.decimals), + deadline: BigInt(Math.floor(Date.now() / 1000) + 3600), + }; + const connectorData = encodeRemoveLiquidity(refactoredParams); + const call = createPluginCall(connectorData, 0); const { opHash } = await makeCalls({ calls: [call], @@ -70,8 +175,23 @@ export function useLiquidity(publicClient: PublicClient, account: Address) { const swap = useCallback( async (params: SwapExactTokensParams, txConfig?: Partial) => { - const connectorData = encodeSwap(params); - const call = createPluginCall(connectorData); + const routes: IRouter.RouteStruct[] = [ + { + from: params.tokenA.address, + to: params.tokenB.address, + stable: params.stable, + factory: AERODROME_FACTORY_ADDRESS, + }, + ]; + + const connectorData = encodeSwap({ + amountIn: parseUnits(params.amountIn.toString(), params.tokenA.decimals), + minReturnAmount: parseUnits(params.minReturnAmount.toString(), params.tokenB.decimals), + routes, + to: params.to, + deadline: BigInt(Math.floor(Date.now() / 1000) + 3600), + }); + const call = createPluginCall(connectorData, 0); const { opHash } = await makeCalls({ calls: [call], @@ -88,8 +208,11 @@ export function useLiquidity(publicClient: PublicClient, account: Address) { const stake = useCallback( async (params: StakeParams, txConfig?: Partial) => { - const connectorData = encodeStake(params); - const call = createPluginCall(connectorData); + const connectorData = encodeStake({ + gaugeAddress: params.gauge.address, + amount: parseUnits(params.amount.toString(), params.gauge.decimals), + }); + const call = createPluginCall(connectorData, 0); const { opHash } = await makeCalls({ calls: [call], @@ -104,6 +227,18 @@ export function useLiquidity(publicClient: PublicClient, account: Address) { [publicClient, createPluginCall] ); + const quoteDepositLiquidity = async (tokenA: string, tokenB: Address, stable: boolean, amountA: bigint, amountB: bigint) => { + const balanceTokenRatio = stable; + const result: any = await publicClient.readContract({ + address: AERODROME_CONNECTOR, + abi: AerodromeConnectorABI.abi, + functionName: 'quoteDepositLiquidity', + args: [tokenA, tokenB, stable, amountA, amountB, balanceTokenRatio], + }); + + return result; + }; + return { addLiquidity, removeLiquidity, diff --git a/store/smartAccount/actions.ts b/store/smartAccount/actions.ts index 7238ac3..d8cc529 100644 --- a/store/smartAccount/actions.ts +++ b/store/smartAccount/actions.ts @@ -15,10 +15,11 @@ import { RegistrationOptionsNotAvailableError } from './errors'; import { setLpBalance, setPositions, setTokenBalance, setTokens } from '../account'; import api from '@/init/api'; import { useAuth } from '@/providers'; +import { Hex } from 'viem'; export function useSmartAccountActions() { const { dispatch, router, smartAccountState } = useSystemFunctions(); - const { setSession } = useAuth(); + const { setSession, session } = useAuth(); const updateRegistrationOptions = (options: CreatePassKeyCredentialOptions) => { dispatch(setRegistrationOptions(options.data)); @@ -95,6 +96,10 @@ export function useSmartAccountActions() { } }; + const signTransaction = async (hash: Hex) => { + const signature = await session?.sign({ hash }); + return signature; + }; const logout = async () => { try { dispatch(setAddress(null)); @@ -116,5 +121,6 @@ export function useSmartAccountActions() { getSmartAccount, logout, login, + signTransaction, }; } diff --git a/utils/calls.ts b/utils/calls.ts index a8354dc..fe1e4cb 100644 --- a/utils/calls.ts +++ b/utils/calls.ts @@ -1,12 +1,15 @@ -import { Address, Hex } from 'viem'; +import { Address, encodeFunctionData, Hex } from 'viem'; import { buildUserOp, getPaymasterData, getUserOpHash } from './wallet'; import { Call } from './types'; import { entryPoint06Address } from 'viem/_types/account-abstraction'; import { paymasterClient, bundlerClient } from '@/init/viem'; -import { useAuth } from '@/providers'; +import { useSmartAccountActions } from '@/store/smartAccount/actions'; +import { smartAccountAbi } from 'viem/_types/constants/abis'; +import { SmartWalletABI } from '@/constants/abis'; // Main function to execute calls export async function makeCalls({ calls, account }: { calls: Call[]; account: Address }) { + const { signTransaction } = useSmartAccountActions(); // Build the user operation const op = await buildUserOp(account, bundlerClient, { calls, @@ -39,12 +42,9 @@ export async function makeCalls({ calls, account }: { calls: Call[]; account: Ad chainId: 8543n, }); - // TODO: get smart wallet from reducer and sign the hash + const signature = await signTransaction(hash); - const signature = - '0xc66a718123aa330c0d00439ed337bc6721c20298be9fb50bb0e8723b6340a7dc65bc37d891cb278953722d0a93f6daf784dde4e1396e8f57acc64c8d1ea9a602'; - - op.signature = signature; + op.signature = signature!; // Send the user operation const opHash = await bundlerClient.sendUserOperation({ @@ -57,3 +57,13 @@ export async function makeCalls({ calls, account }: { calls: Call[]; account: Ad userOpHash: hash, }; } + +export function buildUserOperationCalldata({ calls }: { calls: Call[] }): Hex { + // sort ascending order, 0 first + const _calls = calls.sort((a, b) => a.index - b.index); + return encodeFunctionData({ + abi: SmartWalletABI, + functionName: 'executeBatch', + args: [_calls], + }); +} diff --git a/utils/encoders.ts b/utils/encoders.ts index 7d31fea..597cbec 100644 --- a/utils/encoders.ts +++ b/utils/encoders.ts @@ -1,6 +1,6 @@ -import { Address, Hex, encodeFunctionData } from 'viem'; +import { Address, Hex, encodeFunctionData, erc20Abi } from 'viem'; import { AerodromeConnectorABI, ConnectorPluginABI } from '@/constants/abis'; -import { IRouter } from '@/hooks/types'; +import { IRouter, Token } from '@/hooks/types'; export function encodePluginExecute(connector: Address, data: Hex) { return encodeFunctionData({ @@ -22,8 +22,8 @@ export function encodeAddLiquidity({ to, deadline, }: { - tokenA: Address; - tokenB: Address; + tokenA: Token; + tokenB: Token; stable: boolean; amountAIn: bigint; amountBIn: bigint; @@ -50,8 +50,8 @@ export function encodeRemoveLiquidity({ to, deadline, }: { - tokenA: Address; - tokenB: Address; + tokenA: Token; + tokenB: Token; stable: boolean; liquidity: bigint; amountAMin: bigint; @@ -93,3 +93,10 @@ export function encodeStake({ gaugeAddress, amount }: { gaugeAddress: Address; a args: [gaugeAddress, amount], }); } +export function encodeApprove({ amount, spender }: { amount: bigint; spender: Address }) { + return encodeFunctionData({ + abi: erc20Abi, + functionName: 'approve', + args: [spender, amount], + }); +} From 304d88df3f9293df6346e113b77586ffb251368f Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Mon, 11 Nov 2024 14:18:11 +0100 Subject: [PATCH 18/95] update data naming --- init/api.ts | 9 ++++ screens/home/index.tsx | 2 - screens/liquidity-actions/add/index.tsx | 64 ++++++++++++------------- store/account/actions.ts | 6 ++- 4 files changed, 45 insertions(+), 36 deletions(-) diff --git a/init/api.ts b/init/api.ts index da1fb65..06ac18f 100644 --- a/init/api.ts +++ b/init/api.ts @@ -94,6 +94,15 @@ class LiquidAPI { }, }); } + + async getTokens(query: string): Promise { + return this.fetchWithErrorHandling(`${this.apiBaseUrl}/tokens/${query || ''}`, { + method: 'GET', + headers: { + 'Content-Type': 'application/json', + }, + }); + } } export default new LiquidAPI(); diff --git a/screens/home/index.tsx b/screens/home/index.tsx index 5f646da..aec3029 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -22,8 +22,6 @@ const Home = () => { const { trendingPools, hotPools, topGainers } = poolsState; - console.log(hotPools.data, 'hot pools'); - const { whole, decimal } = formatAmountWithWholeAndDecimal(accountState.tokenBalance.toFixed(2)); const top10TrendingPools = trendingPools?.data.slice(0, 10); diff --git a/screens/liquidity-actions/add/index.tsx b/screens/liquidity-actions/add/index.tsx index 980bfd4..f65029c 100644 --- a/screens/liquidity-actions/add/index.tsx +++ b/screens/liquidity-actions/add/index.tsx @@ -15,11 +15,11 @@ import { CircleAddIcon } from '@/assets/icons'; const AddLiquidity = () => { const [method, setMethod] = useState('liquid'); - const [primary, setPrimary] = useState({ + const [tokenA, setTokenA] = useState({ asset: assets[0], value: '0', }); - const [secondary, setSecondary] = useState({ + const [tokenB, setTokenB] = useState({ asset: assets[1], value: '0', }); @@ -29,17 +29,17 @@ const AddLiquidity = () => { const errors: ErrorsArray = { primary: { - title: `Swap ${primary.asset?.symbol} to ${secondary.asset?.symbol}?`, + title: `Swap ${tokenA.asset?.symbol} to ${tokenB.asset?.symbol}?`, description: ( You don’t have enough cbBTC. We’d balance the pool by swapping half of the{' '} - {primary?.asset?.symbol} value to{' '} - {secondary?.asset?.symbol}. + {tokenA?.asset?.symbol} value to{' '} + {tokenB?.asset?.symbol}. ), swap: { - from: `(${1500}) ${primary?.asset?.symbol}`, - for: `(${0.1}) ${secondary?.asset?.symbol}`, + from: `(${1500}) ${tokenA?.asset?.symbol}`, + for: `(${0.1}) ${tokenB?.asset?.symbol}`, }, }, @@ -52,8 +52,8 @@ const AddLiquidity = () => { const infos: Array = [ { icon: 'primary', - title: `1 ${primary.asset?.symbol} to ${secondary.asset?.symbol}`, - value: `${0.805} ${secondary.asset?.symbol}`, + title: `1 ${tokenA.asset?.symbol} to ${tokenB.asset?.symbol}`, + value: `${0.805} ${tokenB.asset?.symbol}`, }, { icon: 'secondary', @@ -63,7 +63,7 @@ const AddLiquidity = () => { { icon: 'secondary', title: "You'll get:", - value: `${6000} ${primary.asset?.symbol}`, + value: `${6000} ${tokenA.asset?.symbol}`, }, { icon: 'tertiary', @@ -72,21 +72,21 @@ const AddLiquidity = () => { }, ]; - const disableButton = !parseFloat(removeCommasFromNumber(primary.value)) || !parseFloat(removeCommasFromNumber(secondary.value)); + const disableButton = !parseFloat(removeCommasFromNumber(tokenA.value)) || !parseFloat(removeCommasFromNumber(secondary.value)); const loadingViewStyle = useAnimatedStyle(() => ({ opacity: withTiming(loading ? 1 : 0, { duration: 500 }), })); - const handleTokenChange = (id: string, token: 'primary' | 'secondary') => { + const handleTokenChange = (id: string, token: 'tokenA' | 'tokenB') => { const asset = assets.find((asset) => asset.id === id); if (asset) { - if (token === 'primary') setPrimary({ ...primary, asset }); - if (token === 'secondary') setSecondary({ ...secondary, asset }); + if (token === 'tokenA') setTokenA({ ...tokenA, asset }); + if (token === 'tokenB') setTokenB({ ...tokenB, asset }); } }; - const handleValueChange = (value: string, token: 'primary' | 'secondary') => { + const handleValueChange = (value: string, token: 'tokenA' | 'tokenB') => { const sanitizedValue = removeCommasFromNumber(value); const numberValue = parseFloat(sanitizedValue); let newValue = numberValue.toLocaleString(undefined, { @@ -95,26 +95,26 @@ const AddLiquidity = () => { if (isNaN(numberValue)) newValue = ''; - if (token === 'primary') { - return setPrimary({ ...primary, value: newValue }); - } else { - return setSecondary({ ...secondary, value: newValue }); + if (token === 'tokenA') { + return setTokenA({ ...tokenA, value: newValue }); } + + return setTokenB({ ...tokenB, value: newValue }); }; const onSubmit = () => { setLoading(true); - console.log('Submitting liquidity request', { primary, secondary }); + console.log('Submitting liquidity request', { tokenA, tokenB }); }; useEffect(() => { - const primaryIsInvalid = parseFloat(removeCommasFromNumber(primary.value)) > primary.asset?.balance!; - const secondaryIsInvalid = parseFloat(removeCommasFromNumber(secondary.value)) > secondary.asset?.balance!; + const primaryIsInvalid = parseFloat(removeCommasFromNumber(tokenA.value)) > tokenA.asset?.balance!; + const secondaryIsInvalid = parseFloat(removeCommasFromNumber(tokenB.value)) > tokenB.asset?.balance!; if (primaryIsInvalid && secondaryIsInvalid) return setError('secondary'); if (secondaryIsInvalid) return setError('primary'); - }, [primary.value, secondary.value, primary.asset?.balance, secondary.asset?.balance]); + }, [tokenA.value, tokenB.value, tokenA.asset?.balance, tokenB.asset?.balance]); return ( <> @@ -130,10 +130,10 @@ const AddLiquidity = () => { handleTokenChange(id, 'primary')} - value={primary.value} - onChange={(value) => handleValueChange(value, 'primary')} + tokenId={tokenA?.asset?.id} + setTokenId={(id) => handleTokenChange(id, 'tokenA')} + value={tokenA.value} + onChange={(value) => handleValueChange(value, 'tokenA')} /> @@ -141,10 +141,10 @@ const AddLiquidity = () => { handleTokenChange(id, 'secondary')} - value={secondary.value} - onChange={(value) => handleValueChange(value, 'secondary')} + tokenId={tokenB?.asset?.id} + setTokenId={(id) => handleTokenChange(id, 'tokenB')} + value={tokenB.value} + onChange={(value) => handleValueChange(value, 'tokenB')} /> @@ -161,7 +161,7 @@ const AddLiquidity = () => { {loading && ( - + )} diff --git a/store/account/actions.ts b/store/account/actions.ts index 6cbd506..87c1526 100644 --- a/store/account/actions.ts +++ b/store/account/actions.ts @@ -5,6 +5,7 @@ import { publicClient } from '@/init/viem'; import { setLoading, setLpBalance, setPositions, setRefreshing, setTokenBalance, setTokens } from '.'; import { Position, Token } from '@/hooks/types'; import { usePool } from '@/hooks/usePool'; +import api from '@/init/api'; export function useAccountActions() { const { dispatch } = useSystemFunctions(); @@ -20,9 +21,10 @@ export function useAccountActions() { } dispatch(setLoading(true)); - const tokens = await fetchTokens(15, 0); + const tokens = await api.getTokens(''); + // const tokens = await fetchTokens(15, 0); - return _setValidTokens(tokens); + // return _setValidTokens(tokens); } catch (error: any) { // } finally { From a70dc6d4068d775f01e6fe93baa71d8b78ee01c0 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Mon, 11 Nov 2024 14:21:01 +0100 Subject: [PATCH 19/95] revert top10pools --- components/pool-pair-paper/index.tsx | 3 +-- components/pool-pair-paper/types.ts | 1 - screens/home/index.tsx | 8 +++----- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index c8ed0ac..5524920 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -5,9 +5,8 @@ import { adjustFontSizeForIOS, formatAmount, formatNumberWithSuffix } from '@/ut import useSystemFunctions from '@/hooks/useSystemFunctions'; import { setSelectedPool } from '@/store/pools'; import { PoolPairPaper } from './types'; -import { formatEther } from 'viem'; -const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', isHot }: PoolPairPaper) => { +const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary' }: PoolPairPaper) => { const { router, dispatch } = useSystemFunctions(); const paths = { diff --git a/components/pool-pair-paper/types.ts b/components/pool-pair-paper/types.ts index 9ab6ed7..8430a2f 100644 --- a/components/pool-pair-paper/types.ts +++ b/components/pool-pair-paper/types.ts @@ -3,5 +3,4 @@ import { Pool } from '@/store/pools/types'; export interface PoolPairPaper { pool: Pool; navigationVariant?: 'primary' | 'secondary'; - isHot?: boolean; } diff --git a/screens/home/index.tsx b/screens/home/index.tsx index aec3029..75b846b 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -24,11 +24,9 @@ const Home = () => { const { whole, decimal } = formatAmountWithWholeAndDecimal(accountState.tokenBalance.toFixed(2)); - const top10TrendingPools = trendingPools?.data.slice(0, 10); - const hotPoolsArray = Object.values(hotPools.data); - const top10HotPools = hotPoolsArray.slice(0, 10) ?? []; - - const top7Gainers = topGainers.data.slice(0, 7); + const top10TrendingPools = trendingPools?.data?.slice(0, 10); + const top10HotPools = hotPools?.data?.slice(0, 10) ?? []; + const top7Gainers = topGainers?.data?.slice(0, 7); const focusInput = () => { focusSearch(true); From a603a823f8c0c7b5f42def50c1dcde9cf835cb7c Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Mon, 11 Nov 2024 14:53:48 +0100 Subject: [PATCH 20/95] chore: update pool details --- components/pool-pair-card/index.tsx | 2 +- hooks/useToken.ts | 4 ++-- store/smartAccount/actions.ts | 1 - 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/components/pool-pair-card/index.tsx b/components/pool-pair-card/index.tsx index 55ee8b8..6967a1d 100644 --- a/components/pool-pair-card/index.tsx +++ b/components/pool-pair-card/index.tsx @@ -84,7 +84,7 @@ const styles = StyleSheet.create({ height: 24, alignItems: 'center', justifyContent: 'center', - borderRadius: 9999, + borderRadius: 12, borderWidth: 1, borderColor: '#EAEEF4', marginRight: -6, diff --git a/hooks/useToken.ts b/hooks/useToken.ts index 7486e89..8e3f144 100644 --- a/hooks/useToken.ts +++ b/hooks/useToken.ts @@ -40,7 +40,7 @@ export function useToken(publicClient: PublicClient) { balance: formatUnits(token.account_balance, token.decimals), isListed: token.listed, usdPrice: prices[index], - logoUrl: `https://assets.smold.app/api/token/8453/${token.token_address}/logo-64.png`, + logoUrl: `https://assets.smold.app/api/token/8453/${token.token_address}/logo-128.png`, }; }); @@ -52,7 +52,7 @@ export function useToken(publicClient: PublicClient) { balance: formatUnits(ethBalance, 18), isListed: true, usdPrice: wethPrice[0], - logoUrl: `https://assets.smold.app/api/token/8453/${WETH_ADDRESS}/logo-32.png`, // Using WETH logo for ETH + logoUrl: `https://assets.smold.app/api/token/8453/${WETH_ADDRESS}/logo-128.png`, // Using WETH logo for ETH }; allTokens = [ethToken, ...allTokens, ...tokensWithPrice]; diff --git a/store/smartAccount/actions.ts b/store/smartAccount/actions.ts index 5510cc3..cc4757a 100644 --- a/store/smartAccount/actions.ts +++ b/store/smartAccount/actions.ts @@ -15,7 +15,6 @@ import { RegistrationOptionsNotAvailableError } from './errors'; import { setLpBalance, setPositions, setTokenBalance, setTokens } from '../account'; import api from '@/init/api'; import { useAuth } from '@/providers'; -import { AuthenticationResponseJSON } from 'react-native-passkeys/build/ReactNativePasskeys.types'; import { Hex } from 'viem'; export function useSmartAccountActions() { From 5b0c05fdc8cc6aaff6140c2012ec016fd60880d7 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Mon, 11 Nov 2024 16:11:06 +0100 Subject: [PATCH 21/95] clean up integration --- init/api.ts | 5 ++-- screens/holdings/assets/index.tsx | 3 ++- screens/holdings/card.tsx | 41 ++++++++++++++--------------- screens/holdings/index.tsx | 5 ++-- screens/pool-detail/index.tsx | 4 +-- store/account/actions.ts | 42 ++++++++++++++++++++---------- store/account/index.ts | 14 +++++----- store/account/types.ts | 43 +++++++++++++++++++++++++++++++ store/index.ts | 2 +- store/pools/actions.ts | 6 ++--- store/pools/types.ts | 6 ++--- 11 files changed, 115 insertions(+), 56 deletions(-) create mode 100644 store/account/types.ts diff --git a/init/api.ts b/init/api.ts index 06ac18f..20ca95f 100644 --- a/init/api.ts +++ b/init/api.ts @@ -3,6 +3,7 @@ import { CreatePassKeyCredentialOptions, Address, PoolType, VerifyRegistration, import { AuthenticationResponseJSON } from 'react-native-passkeys/build/ReactNativePasskeys.types'; import { apiKey, apiUrl } from '@/constants/env'; +import { TokenResponse } from '@/store/account/types'; class LiquidAPI { private apiBaseUrl: string; @@ -95,8 +96,8 @@ class LiquidAPI { }); } - async getTokens(query: string): Promise { - return this.fetchWithErrorHandling(`${this.apiBaseUrl}/tokens/${query || ''}`, { + async getTokens(query?: string): Promise { + return this.fetchWithErrorHandling(`${this.apiBaseUrl}/tokens${query || ''}`, { method: 'GET', headers: { 'Content-Type': 'application/json', diff --git a/screens/holdings/assets/index.tsx b/screens/holdings/assets/index.tsx index a4afb7b..930e82d 100644 --- a/screens/holdings/assets/index.tsx +++ b/screens/holdings/assets/index.tsx @@ -31,7 +31,8 @@ const Assets = () => { }, ]; - const assets: IAssetPaper[] = tokens.map((token) => ({ + const tokensUserHas = tokens.data?.filter?.((token) => token.isListed && Number(token.balance) > 0); + const assets: IAssetPaper[] = tokensUserHas?.map?.((token) => ({ iconUrl: token.logoUrl, name: token.symbol, value: Number(token.balance), diff --git a/screens/holdings/card.tsx b/screens/holdings/card.tsx index 010d525..eacd0c9 100644 --- a/screens/holdings/card.tsx +++ b/screens/holdings/card.tsx @@ -27,26 +27,26 @@ const Card = ({ details, subtitle, title, variant }: IItem) => { label: 'LP balance', action: () => router.navigate('/(tabs)/holdings/pools'), }, - tertiary: { - primaryColor: '#EEEBFF', - secondaryColor: '#2B1664', - label: 'Aero rewards', - action: () => - router.navigate({ - pathname: '/(tabs)/holdings/rewards', - params: { type: 'aero' }, - }), - }, - quaternary: { - primaryColor: '#EBFAFF', - secondaryColor: '#164564', - label: 'Fees earned', - action: () => - router.navigate({ - pathname: '/(tabs)/holdings/rewards', - params: { type: 'fees' }, - }), - }, + // tertiary: { + // primaryColor: '#EEEBFF', + // secondaryColor: '#2B1664', + // label: 'Aero rewards', + // action: () => + // router.navigate({ + // pathname: '/(tabs)/holdings/rewards', + // params: { type: 'aero' }, + // }), + // }, + // quaternary: { + // primaryColor: '#EBFAFF', + // secondaryColor: '#164564', + // label: 'Fees earned', + // action: () => + // router.navigate({ + // pathname: '/(tabs)/holdings/rewards', + // params: { type: 'fees' }, + // }), + // }, }; return ( @@ -194,7 +194,6 @@ const styles = StyleSheet.create({ titleAndSubtitle: { flexDirection: 'row', - justifyContent: 'center', alignItems: 'center', gap: 8, }, diff --git a/screens/holdings/index.tsx b/screens/holdings/index.tsx index e1b64ab..6238620 100644 --- a/screens/holdings/index.tsx +++ b/screens/holdings/index.tsx @@ -33,11 +33,12 @@ const Holdings = () => { ]; const visibleActions = actions.filter((action) => !action.hide); + const tokensUserHas = tokens.data?.filter?.((token) => token.isListed && Number(token.balance) > 0); const items: Array = [ { variant: 'primary', - details: [{ title: 'Assets', value: `${tokens?.length} assets` }], + details: [{ title: 'Assets', value: `${tokensUserHas?.length} assets` }], subtitle: '', title: `$${tokenBalance.toLocaleString()}`, empty: { @@ -47,7 +48,7 @@ const Holdings = () => { onPress: () => console.log('Deposit'), }, }, - isEmpty: tokens?.length === 0, + isEmpty: tokensUserHas?.length === 0, }, { variant: 'secondary', diff --git a/screens/pool-detail/index.tsx b/screens/pool-detail/index.tsx index 389dc12..db28967 100644 --- a/screens/pool-detail/index.tsx +++ b/screens/pool-detail/index.tsx @@ -16,12 +16,12 @@ const PoolDetail = ({ poolId }: PoolID) => { const title = symbol?.split('/'); const getTokenBalance = (address?: Address) => { - const balance = accountState.tokens.find((token) => token.address === address)?.balance || 0; + const balance = accountState.tokens?.data?.find((token) => token.address === address)?.balance || 0; return Number(balance); }; const getTokenUSDValue = (address?: Address) => { - const token = accountState.tokens.find((token) => token.address === address); + const token = accountState.tokens?.data?.find((token) => token.address === address); const balance = Number(token?.balance || 0) * Number(token?.usdPrice || 0); return balance; }; diff --git a/store/account/actions.ts b/store/account/actions.ts index 87c1526..5d0a15d 100644 --- a/store/account/actions.ts +++ b/store/account/actions.ts @@ -6,9 +6,10 @@ import { setLoading, setLpBalance, setPositions, setRefreshing, setTokenBalance, import { Position, Token } from '@/hooks/types'; import { usePool } from '@/hooks/usePool'; import api from '@/init/api'; +import { TokenItem, TokenResponse } from './types'; export function useAccountActions() { - const { dispatch } = useSystemFunctions(); + const { dispatch, accountState } = useSystemFunctions(); const { fetchTokens } = useToken(publicClient as PublicClient); const { fetchPositions } = usePool(publicClient as PublicClient); @@ -16,15 +17,36 @@ export function useAccountActions() { try { if (refresh) { dispatch(setRefreshing(true)); - const tokens = await fetchTokens(15, 0); - return _setValidTokens(tokens); + const tokens = await api.getTokens(); + + return dispatch(setTokens(tokens)); } + const { tokens: currentTokens } = accountState; + dispatch(setLoading(true)); - const tokens = await api.getTokens(''); - // const tokens = await fetchTokens(15, 0); - // return _setValidTokens(tokens); + let tokens: TokenResponse; + + if (currentTokens === undefined || currentTokens.pagination.page === 0) { + tokens = await api.getTokens(''); + } else { + if (!currentTokens.pagination.hasMore) return; + + const nextPage = currentTokens?.pagination.page + 1; + + const query = `?page=${nextPage}`; + + tokens = await api.getTokens(query); + + const newData = { ...currentTokens.data, ...tokens.data }; + tokens.data = newData; + } + + const totalBalance = tokens.data.reduce((acc, token) => acc + parseFloat(token.balance) * parseFloat(token.usdPrice), 0); + + dispatch(setTokens(tokens)); + dispatch(setTokenBalance(totalBalance)); } catch (error: any) { // } finally { @@ -53,14 +75,6 @@ export function useAccountActions() { } }; - const _setValidTokens = async (tokens: Token[]) => { - const validTokens = await tokens.filter((token) => token.isListed && token.balance !== '0'); - const totalBalance = validTokens.reduce((acc, token) => acc + parseFloat(token.balance) * parseFloat(token.usdPrice), 0); - - dispatch(setTokens(validTokens)); - dispatch(setTokenBalance(totalBalance)); - }; - const _setValidPositions = async (positions: Position[]) => { const validPositions = await positions.filter((po) => po.balance !== '0'); const lpBalance = validPositions.reduce((acc, po) => acc + parseFloat(po.balance), 0); diff --git a/store/account/index.ts b/store/account/index.ts index 7579119..eda2f55 100644 --- a/store/account/index.ts +++ b/store/account/index.ts @@ -1,9 +1,10 @@ -import { Position, Token } from '@/hooks/types'; +import { Position } from '@/hooks/types'; import { createSlice } from '@reduxjs/toolkit'; import type { PayloadAction } from '@reduxjs/toolkit'; +import { defaultToken, TokenResponse } from './types'; export interface AccountState { - tokens: Token[]; + tokens: TokenResponse; positions: Position[]; lpBalance: number; tokenBalance: number; @@ -12,7 +13,7 @@ export interface AccountState { } const initialState: AccountState = { - tokens: [], + tokens: defaultToken, positions: [], lpBalance: 0, tokenBalance: 0, @@ -40,11 +41,12 @@ export const accountReducer = createSlice({ } }, - setTokens: (state, action: PayloadAction) => { + setTokens: (state, action: PayloadAction) => { + console.log('bjjhjhdjhjhdjhjdhjhdjhjdhkdhkjhdkjhkjdhkjhdkjhkjdhkjgdhkjghdjkhkjdhkjhdkjhdkjhdjkhdkjhjdh'); if (action.payload) { - state.tokens = [...action.payload]; + state.tokens = { ...action.payload }; } else { - state.tokens = []; + state.tokens = defaultToken; } }, diff --git a/store/account/types.ts b/store/account/types.ts new file mode 100644 index 0000000..003bbf2 --- /dev/null +++ b/store/account/types.ts @@ -0,0 +1,43 @@ +import { Address } from 'viem'; + +export type TokenResponse = { + data: TokenItem[]; + pagination: { + limit: number; + page: number; + hasMore: boolean; + }; +}; + +export type TokenItem = { + address: Address; + symbol: string; + decimals: number; + balance: string; + isListed: boolean; + usdPrice: string; + logoUrl: string; + lastUpdated: string; + createdAt: string; +}; + +export const defaultToken: TokenResponse = { + data: [ + { + address: '0x', + symbol: '', + decimals: 0, + balance: '0', + isListed: false, + usdPrice: '0', + logoUrl: '', + lastUpdated: '', + createdAt: '', + }, + ], + pagination: { + limit: 10, + page: 0, + hasMore: true, + }, +}; diff --git a/store/index.ts b/store/index.ts index acae75d..2043e43 100644 --- a/store/index.ts +++ b/store/index.ts @@ -25,7 +25,7 @@ const rootReducer = combineReducers({ const persistConfig = { key: 'root', storage: AsyncStorage, - whitelist: ['user', 'pools', 'smartAccount', 'account'], + whitelist: ['user', 'pools', 'smartAccount'], }; const persistedReducer = persistReducer(persistConfig, rootReducer); diff --git a/store/pools/actions.ts b/store/pools/actions.ts index dd09608..e41aa60 100644 --- a/store/pools/actions.ts +++ b/store/pools/actions.ts @@ -37,7 +37,7 @@ export function usePoolActions() { return dispatch(setHotPools(pools)); } - if (hotPools.pagination.page == hotPools.pagination.totalPages) return; + if (!hotPools.pagination.hasMore) return; dispatch(setLoadingPools(true)); @@ -67,7 +67,7 @@ export function usePoolActions() { return dispatch(setTrendingPools(pools)); } - if (trendingPools.pagination.page == trendingPools.pagination.totalPages) return; + if (!trendingPools.pagination.hasMore) return; dispatch(setLoadingPools(true)); @@ -97,7 +97,7 @@ export function usePoolActions() { return dispatch(setTopGainers(pools)); } - if (topGainers.pagination.page == topGainers.pagination.totalPages) return; + if (!topGainers.pagination.hasMore) return; dispatch(setLoadingPools(true)); diff --git a/store/pools/types.ts b/store/pools/types.ts index 3b16543..cec0d3b 100644 --- a/store/pools/types.ts +++ b/store/pools/types.ts @@ -5,8 +5,7 @@ export type PoolResponse = { pagination: { limit: number; page: number; - total: number; - totalPages: number; + hasMore: boolean; }; }; @@ -15,8 +14,7 @@ export const defaultPoolResponse = { pagination: { limit: 10, page: 0, - total: 0, - totalPages: 1, + hasMore: true, }, }; From efa9c69e18dc2c999626729701731cb0be1d77f8 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Mon, 11 Nov 2024 17:30:24 +0100 Subject: [PATCH 22/95] integrate tokens in liquidity --- components/asset-selection/index.tsx | 38 ++--- components/asset-selection/types.ts | 17 +-- .../add/coin-selector-input.tsx | 36 ++--- screens/liquidity-actions/add/index.tsx | 133 ++++++++++-------- screens/liquidity-actions/add/styles.ts | 3 +- screens/liquidity-actions/add/types.ts | 18 ++- screens/liquidity-management/index.tsx | 12 +- screens/liquidity-management/types.ts | 8 +- store/account/index.ts | 1 - 9 files changed, 147 insertions(+), 119 deletions(-) diff --git a/components/asset-selection/index.tsx b/components/asset-selection/index.tsx index 2d55e22..524a105 100644 --- a/components/asset-selection/index.tsx +++ b/components/asset-selection/index.tsx @@ -6,24 +6,30 @@ import { CheckIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import LQDBottomSheet from '../bottom-sheet'; import LQDInput from '../input'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { AssetSelection } from './types'; +import { TokenItem } from '@/store/account/types'; + +const LQDAssetSelection = ({ close, setAsset, show, title, selectedAsset }: AssetSelection) => { + const { accountState } = useSystemFunctions(); + const { tokens } = accountState; -const LQDAssetSelection = ({ assets, close, setAsset, show, title, asset }: IAssetSelection) => { const { control, watch } = useForm(); const searchValue = watch('search', ''); const searchedAssets = useMemo(() => { - if (!searchValue) return assets; - return assets.filter( - (asset) => - asset.name.toLowerCase().includes(searchValue.toLowerCase()) || asset.symbol.toLowerCase().includes(searchValue.toLowerCase()) + if (!searchValue) return tokens.data; + + return tokens.data.filter( + (asset) => asset.symbol.toLowerCase().includes(searchValue.toLowerCase()) || asset.address.includes(searchValue.toLowerCase()) ); }, [searchValue]); - const action = (active: boolean, asset: IAsset) => { - if (!active) { - setAsset(asset); - close(); - } + const action = (active: boolean, asset: TokenItem) => { + if (active) return; + + setAsset(asset); + close(); }; return ( @@ -42,20 +48,20 @@ const LQDAssetSelection = ({ assets, close, setAsset, show, title, asset }: IAss /> - {searchedAssets.map((asset_, index) => { - const active = asset?.id === asset_?.id; + {searchedAssets.map((_asset, index) => { + const active = selectedAsset?.address === _asset?.address; return ( - action(active, asset_)} disabled={active}> + action(active, _asset)} disabled={active}> - + - {asset_?.name} + {_asset?.symbol} - {asset_.balance.toLocaleString()} {asset_?.symbol} + {_asset.balance.toLocaleString()} {_asset?.symbol} diff --git a/components/asset-selection/types.ts b/components/asset-selection/types.ts index 332cbd6..f63e9cf 100644 --- a/components/asset-selection/types.ts +++ b/components/asset-selection/types.ts @@ -1,16 +1,9 @@ -interface IAssetSelection { +import { TokenItem } from '@/store/account/types'; + +export interface AssetSelection { title: string; show: boolean; close: () => void; - setAsset: (asset: IAsset) => void; - asset?: IAsset; - assets: Array; -} - -interface IAsset { - id: string; - name: string; - symbol: string; - balance: number; - iconUrl: string; + setAsset: (asset: TokenItem) => void; + selectedAsset?: TokenItem; } diff --git a/screens/liquidity-actions/add/coin-selector-input.tsx b/screens/liquidity-actions/add/coin-selector-input.tsx index 907c4da..b72bc54 100644 --- a/screens/liquidity-actions/add/coin-selector-input.tsx +++ b/screens/liquidity-actions/add/coin-selector-input.tsx @@ -1,21 +1,25 @@ import { useState } from 'react'; import { View, Text, Image, TextInput, TouchableOpacity } from 'react-native'; -import { assets as tokens } from '@/screens/withdraw/dummy'; import { removeCommasFromNumber } from '@/utils/helpers'; import { LQDAssetSelection } from '@/components'; import { CaretDownIcon } from '@/assets/icons'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { TokenItem } from '@/store/account/types'; import { coinSelectorInputStyles as styles } from './styles'; -const CoinSelectorInput = ({ onChange, setTokenId, value, disabled, tokenId }: ICoinSelectorInput) => { - const [token, setToken] = useState(tokens.find((t) => t.id === tokenId) || tokens[0]); +const CoinSelectorInput = ({ onChange, selectedToken, value, disabled, address }: ICoinSelectorInput) => { + const { accountState } = useSystemFunctions(); + const { tokens } = accountState; + + const [token, setToken] = useState(tokens?.data.find((t) => t.address === address) || tokens?.data[0]); const [showBottomSheet, setShowBottomSheet] = useState(false); - const invalidAmount = parseFloat(removeCommasFromNumber(value)) > token?.balance!; + const invalidAmount = parseFloat(removeCommasFromNumber(value)) > Number(token?.balance || 0); - const setAsset = (asset: IAsset) => { + const setAsset = (asset: TokenItem) => { setToken(asset); - setTokenId(asset.id); + selectedToken(asset.address); }; return ( @@ -27,12 +31,13 @@ const CoinSelectorInput = ({ onChange, setTokenId, value, disabled, tokenId }: I style={[styles.input, invalidAmount && styles.invalidText]} onChangeText={onChange} pointerEvents={disabled ? 'none' : 'auto'} + placeholder="0.0" /> setShowBottomSheet(true)}> - + {token?.symbol} @@ -49,16 +54,15 @@ const CoinSelectorInput = ({ onChange, setTokenId, value, disabled, tokenId }: I - - setShowBottomSheet(false)} - setAsset={setAsset} - show={showBottomSheet} - title="Select token" - asset={token} - /> + + setShowBottomSheet(false)} + setAsset={setAsset} + show={showBottomSheet} + title="Select token" + selectedAsset={token} + /> ); }; diff --git a/screens/liquidity-actions/add/index.tsx b/screens/liquidity-actions/add/index.tsx index f65029c..70aea57 100644 --- a/screens/liquidity-actions/add/index.tsx +++ b/screens/liquidity-actions/add/index.tsx @@ -12,16 +12,20 @@ import Info from './info'; import { styles } from './styles'; import Loading from './loading'; import { CircleAddIcon } from '@/assets/icons'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { defaultToken, TokenItem } from '@/store/account/types'; const AddLiquidity = () => { + const { accountState } = useSystemFunctions(); + const { tokens } = accountState; const [method, setMethod] = useState('liquid'); const [tokenA, setTokenA] = useState({ - asset: assets[0], - value: '0', + asset: defaultToken.data[0], + value: '', }); const [tokenB, setTokenB] = useState({ - asset: assets[1], - value: '0', + asset: defaultToken.data[1], + value: '', }); const [error, setError] = useState(undefined); const [showInfo, setShowInfo] = useState(true); @@ -72,18 +76,19 @@ const AddLiquidity = () => { }, ]; - const disableButton = !parseFloat(removeCommasFromNumber(tokenA.value)) || !parseFloat(removeCommasFromNumber(secondary.value)); + const disableButton = !parseFloat(removeCommasFromNumber(tokenA.value)) || !parseFloat(removeCommasFromNumber(tokenB.value)); const loadingViewStyle = useAnimatedStyle(() => ({ opacity: withTiming(loading ? 1 : 0, { duration: 500 }), })); - const handleTokenChange = (id: string, token: 'tokenA' | 'tokenB') => { - const asset = assets.find((asset) => asset.id === id); - if (asset) { - if (token === 'tokenA') setTokenA({ ...tokenA, asset }); - if (token === 'tokenB') setTokenB({ ...tokenB, asset }); - } + const handleTokenChange = (address: string, token: 'tokenA' | 'tokenB') => { + const asset = tokens?.data?.find((asset) => asset.address === address); + + if (!asset) return; + + if (token === 'tokenA') setTokenA({ ...tokenA, asset: { ...tokenA.asset, ...asset } }); + if (token === 'tokenB') setTokenB({ ...tokenB, asset: { ...tokenB.asset, ...asset } }); }; const handleValueChange = (value: string, token: 'tokenA' | 'tokenB') => { @@ -107,64 +112,74 @@ const AddLiquidity = () => { console.log('Submitting liquidity request', { tokenA, tokenB }); }; + useEffect( + function initializeTokenData() { + if (!tokens.data) return; + + const data = tokens.data; + + setTokenA({ ...tokenA, asset: { ...tokenA.asset, ...data[0] } }); + setTokenB({ ...tokenB, asset: { ...tokenB.asset, ...data[1] } }); + }, + [tokens] + ); + useEffect(() => { - const primaryIsInvalid = parseFloat(removeCommasFromNumber(tokenA.value)) > tokenA.asset?.balance!; - const secondaryIsInvalid = parseFloat(removeCommasFromNumber(tokenB.value)) > tokenB.asset?.balance!; + const primaryIsInvalid = parseFloat(removeCommasFromNumber(tokenA.value)) > Number(tokenA.asset?.balance)!; + const secondaryIsInvalid = parseFloat(removeCommasFromNumber(tokenB.value)) > Number(tokenB.asset?.balance)!; if (primaryIsInvalid && secondaryIsInvalid) return setError('secondary'); if (secondaryIsInvalid) return setError('primary'); }, [tokenA.value, tokenB.value, tokenA.asset?.balance, tokenB.asset?.balance]); + if (loading) { + return ( + + + + ); + } + return ( - <> - {!loading && ( - - - - Add Liquidity - Deposit liquidity to Earn trading fees - - - - - - handleTokenChange(id, 'tokenA')} - value={tokenA.value} - onChange={(value) => handleValueChange(value, 'tokenA')} - /> - - - - - - handleTokenChange(id, 'tokenB')} - value={tokenB.value} - onChange={(value) => handleValueChange(value, 'tokenB')} - /> - - - {error && } - - {showInfo && } + + + + Add Liquidity + Deposit liquidity to Earn trading fees + + + + + + handleTokenChange(address, 'tokenA')} + value={tokenA.value} + onChange={(value) => handleValueChange(value, 'tokenA')} + /> + + + - - - - - )} - - {loading && ( - - - - )} - + handleTokenChange(address, 'tokenB')} + value={tokenB.value} + onChange={(value) => handleValueChange(value, 'tokenB')} + /> + + + {/* {error && } */} + + {showInfo && } + + + + + + ); }; diff --git a/screens/liquidity-actions/add/styles.ts b/screens/liquidity-actions/add/styles.ts index 34f78f1..28479ab 100644 --- a/screens/liquidity-actions/add/styles.ts +++ b/screens/liquidity-actions/add/styles.ts @@ -59,7 +59,6 @@ const styles = StyleSheet.create({ bottomContainer: { paddingHorizontal: 8, paddingVertical: 12, - alignItems: 'stretch', }, errorText: { @@ -91,7 +90,7 @@ const coinSelectorInputStyles = StyleSheet.create({ lineHeight: 26.88, letterSpacing: -0.6, fontWeight: '500', - maxWidth: '35%', + maxWidth: '40%', fontFamily: 'AeonikMedium', }, diff --git a/screens/liquidity-actions/add/types.ts b/screens/liquidity-actions/add/types.ts index 55fcca8..f927164 100644 --- a/screens/liquidity-actions/add/types.ts +++ b/screens/liquidity-actions/add/types.ts @@ -12,15 +12,15 @@ type Methods = { }; interface ICoinSelectorInput { - tokenId?: string; - setTokenId: (tokenId: string) => void; + address?: string; + selectedToken: (address: string) => void; value: string; onChange: (value: string) => void; disabled?: boolean; } type TokenValue = { - asset?: IAsset; + asset?: TokenItem; value: string; }; @@ -54,3 +54,15 @@ interface ILoading { primaryTitle: string; secondaryTitle: string; } + +type TokenItem = { + address: `0x${string}`; + symbol: string; + decimals: number; + balance: string; + isListed: boolean; + usdPrice: string; + logoUrl: string; + lastUpdated: string; + createdAt: string; +}; diff --git a/screens/liquidity-management/index.tsx b/screens/liquidity-management/index.tsx index f6e0c60..12bb215 100644 --- a/screens/liquidity-management/index.tsx +++ b/screens/liquidity-management/index.tsx @@ -76,10 +76,10 @@ const LiquidityManagement = ({ id, type }: ILiquidityManagement) => { useEffect(() => { setPairDetails({ - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - primaryTitle: 'USDC', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - secondaryTitle: 'ETH', + tokenAIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', + tokenATitle: 'USDC', + tokenBIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', + tokenBTitle: 'ETH', condition: 'stable', }); }, [id]); @@ -119,7 +119,7 @@ const LiquidityManagement = ({ id, type }: ILiquidityManagement) => { - {[pairDetails?.primaryIconURL, pairDetails?.secondaryIconURL]?.map((iconURL, index) => ( + {[pairDetails?.tokenAIconURL, pairDetails?.tokenBIconURL]?.map((iconURL, index) => ( @@ -127,7 +127,7 @@ const LiquidityManagement = ({ id, type }: ILiquidityManagement) => { - {pairDetails?.condition.charAt(0)}AMM - {pairDetails?.primaryTitle} / {pairDetails?.secondaryTitle} + {pairDetails?.condition.charAt(0)}AMM - {pairDetails?.tokenATitle} / {pairDetails?.tokenBTitle} diff --git a/screens/liquidity-management/types.ts b/screens/liquidity-management/types.ts index 7474b5f..6bc0185 100644 --- a/screens/liquidity-management/types.ts +++ b/screens/liquidity-management/types.ts @@ -5,8 +5,8 @@ interface ILiquidityManagement { interface IPairDetails { condition: 'stable' | 'volatile'; - primaryIconURL: string; - secondaryIconURL: string; - primaryTitle: string; - secondaryTitle: string; + tokenAIconURL: string; + tokenBIconURL: string; + tokenATitle: string; + tokenBTitle: string; } diff --git a/store/account/index.ts b/store/account/index.ts index eda2f55..f66bfc5 100644 --- a/store/account/index.ts +++ b/store/account/index.ts @@ -42,7 +42,6 @@ export const accountReducer = createSlice({ }, setTokens: (state, action: PayloadAction) => { - console.log('bjjhjhdjhjhdjhjdhjhdjhjdhkdhkjhdkjhkjdhkjhdkjhkjdhkjgdhkjghdjkhkjdhkjhdkjhdkjhdjkhdkjhjdh'); if (action.payload) { state.tokens = { ...action.payload }; } else { From 446cc8c38cd0e688fd7bf80280732aa4e244828c Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Mon, 11 Nov 2024 20:19:36 +0100 Subject: [PATCH 23/95] handle pool pair --- components/pool-pair-card/index.tsx | 8 +++++++- components/pool-pair-paper/index.tsx | 8 +++++++- screens/holdings/index.tsx | 2 +- .../add/coin-selector-input.tsx | 14 +++++++++++-- screens/pool-detail/header.tsx | 12 ++++++++--- store/account/actions.ts | 6 ++---- store/account/index.ts | 20 ++++++++++++++++--- store/smartAccount/actions.ts | 4 ++-- 8 files changed, 57 insertions(+), 17 deletions(-) diff --git a/components/pool-pair-card/index.tsx b/components/pool-pair-card/index.tsx index 55ee8b8..66d9895 100644 --- a/components/pool-pair-card/index.tsx +++ b/components/pool-pair-card/index.tsx @@ -35,7 +35,7 @@ const LQDPoolPairCard = ({ pool, navigationVariant = 'primary' }: PoolPairCard) {[primaryIconURL, secondaryIconURL].map((iconURL, index) => ( - + ))} @@ -113,4 +113,10 @@ const styles = StyleSheet.create({ fontWeight: '500', fontFamily: 'AeonikMedium', }, + + image: { + width: 24, + height: 24, + borderRadius: 24, + }, }); diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index 5524920..1a9bb7a 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -34,7 +34,7 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary' }: PoolPairPaper {[primaryIconURL, secondaryIconURL].map((iconURL, index) => ( - + ))} @@ -175,4 +175,10 @@ const styles = StyleSheet.create({ textTransform: 'uppercase', fontFamily: 'AeonikRegular', }, + + image: { + width: 24, + height: 24, + borderRadius: 24, + }, }); diff --git a/screens/holdings/index.tsx b/screens/holdings/index.tsx index 6238620..98f6ccf 100644 --- a/screens/holdings/index.tsx +++ b/screens/holdings/index.tsx @@ -38,7 +38,7 @@ const Holdings = () => { const items: Array = [ { variant: 'primary', - details: [{ title: 'Assets', value: `${tokensUserHas?.length} assets` }], + details: [{ title: 'Assets', value: `${tokensUserHas?.length || 0} assets` }], subtitle: '', title: `$${tokenBalance.toLocaleString()}`, empty: { diff --git a/screens/liquidity-actions/add/coin-selector-input.tsx b/screens/liquidity-actions/add/coin-selector-input.tsx index b72bc54..3fddcc8 100644 --- a/screens/liquidity-actions/add/coin-selector-input.tsx +++ b/screens/liquidity-actions/add/coin-selector-input.tsx @@ -1,4 +1,4 @@ -import { useState } from 'react'; +import { useEffect, useState } from 'react'; import { View, Text, Image, TextInput, TouchableOpacity } from 'react-native'; import { removeCommasFromNumber } from '@/utils/helpers'; @@ -12,7 +12,7 @@ const CoinSelectorInput = ({ onChange, selectedToken, value, disabled, address } const { accountState } = useSystemFunctions(); const { tokens } = accountState; - const [token, setToken] = useState(tokens?.data.find((t) => t.address === address) || tokens?.data[0]); + const [token, setToken] = useState(); const [showBottomSheet, setShowBottomSheet] = useState(false); const invalidAmount = parseFloat(removeCommasFromNumber(value)) > Number(token?.balance || 0); @@ -22,6 +22,16 @@ const CoinSelectorInput = ({ onChange, selectedToken, value, disabled, address } selectedToken(asset.address); }; + useEffect( + function initToken() { + if (!tokens?.data) return; + + const initialToken = tokens?.data.find((t) => t.address === address) || tokens?.data[0]; + setToken(initialToken); + }, + [tokens] + ); + return ( <> diff --git a/screens/pool-detail/header.tsx b/screens/pool-detail/header.tsx index 0253fbf..0065ce0 100644 --- a/screens/pool-detail/header.tsx +++ b/screens/pool-detail/header.tsx @@ -3,7 +3,7 @@ import { View, Text, StyleSheet, Image, TouchableOpacity } from 'react-native'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import { BoxSearchIcon, SendIcon } from '@/assets/icons'; -const Header = ({ condition, fee, primaryIconURL, symbol, secondaryIconURL }: PoolDetails) => { +const Header = ({ condition, fee, tokenAIconURL, symbol, tokenBIconURL }: PoolDetails) => { const flagColors = { stable: '#B47818', volatile: '#AF1D38', @@ -24,9 +24,9 @@ const Header = ({ condition, fee, primaryIconURL, symbol, secondaryIconURL }: Po - {[primaryIconURL, secondaryIconURL].map((iconURL, index) => ( + {[tokenAIconURL, tokenBIconURL].map((iconURL, index) => ( - + ))} @@ -156,4 +156,10 @@ const styles = StyleSheet.create({ justifyContent: 'center', alignItems: 'center', }, + + image: { + width: 34.9, + height: 34.9, + borderRadius: 34, + }, }); diff --git a/store/account/actions.ts b/store/account/actions.ts index 5d0a15d..5ce1159 100644 --- a/store/account/actions.ts +++ b/store/account/actions.ts @@ -1,16 +1,14 @@ import { PublicClient } from 'viem'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { useToken } from '@/hooks/useToken'; import { publicClient } from '@/init/viem'; import { setLoading, setLpBalance, setPositions, setRefreshing, setTokenBalance, setTokens } from '.'; -import { Position, Token } from '@/hooks/types'; +import { Position } from '@/hooks/types'; import { usePool } from '@/hooks/usePool'; import api from '@/init/api'; -import { TokenItem, TokenResponse } from './types'; +import { TokenResponse } from './types'; export function useAccountActions() { const { dispatch, accountState } = useSystemFunctions(); - const { fetchTokens } = useToken(publicClient as PublicClient); const { fetchPositions } = usePool(publicClient as PublicClient); const getTokens = async (refresh?: boolean) => { diff --git a/store/account/index.ts b/store/account/index.ts index f66bfc5..f0f9724 100644 --- a/store/account/index.ts +++ b/store/account/index.ts @@ -1,7 +1,7 @@ import { Position } from '@/hooks/types'; import { createSlice } from '@reduxjs/toolkit'; import type { PayloadAction } from '@reduxjs/toolkit'; -import { defaultToken, TokenResponse } from './types'; +import { TokenResponse } from './types'; export interface AccountState { tokens: TokenResponse; @@ -13,7 +13,14 @@ export interface AccountState { } const initialState: AccountState = { - tokens: defaultToken, + tokens: { + data: [], + pagination: { + hasMore: true, + page: 0, + limit: 0, + }, + }, positions: [], lpBalance: 0, tokenBalance: 0, @@ -45,7 +52,14 @@ export const accountReducer = createSlice({ if (action.payload) { state.tokens = { ...action.payload }; } else { - state.tokens = defaultToken; + state.tokens = { + data: [], + pagination: { + hasMore: true, + page: 0, + limit: 0, + }, + }; } }, diff --git a/store/smartAccount/actions.ts b/store/smartAccount/actions.ts index cc4757a..19e7674 100644 --- a/store/smartAccount/actions.ts +++ b/store/smartAccount/actions.ts @@ -117,9 +117,9 @@ export function useSmartAccountActions() { const logout = async () => { try { dispatch(setAddress(null)); - dispatch(setTokens([])); + dispatch(setTokens(undefined)); dispatch(setTokenBalance(0)); - dispatch(setPositions([])); + dispatch(setPositions(undefined)); dispatch(setLpBalance(0)); await clearPersistedSmartAccountInfo(); From 6c6996ed2870fbc3ad9d9554a819306b4044c1e2 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Mon, 11 Nov 2024 23:53:58 +0100 Subject: [PATCH 24/95] updates --- init/api.ts | 7 ++----- init/types.ts | 9 +++++++++ screens/home/index.tsx | 10 +++++++--- store/pools/actions.ts | 2 ++ store/smartAccount/actions.ts | 8 +++++++- store/smartAccount/create.ts | 3 +++ utils/base64.ts | 3 +++ 7 files changed, 33 insertions(+), 9 deletions(-) diff --git a/init/api.ts b/init/api.ts index 20ca95f..ac391bb 100644 --- a/init/api.ts +++ b/init/api.ts @@ -1,5 +1,5 @@ import { PoolResponse } from '@/store/pools/types'; -import { CreatePassKeyCredentialOptions, Address, PoolType, VerifyRegistration, AuthCredentialOptions } from './types'; +import { CreatePassKeyCredentialOptions, Address, PoolType, VerifyRegistration, AuthCredentialOptions, VerificationResult } from './types'; import { AuthenticationResponseJSON } from 'react-native-passkeys/build/ReactNativePasskeys.types'; import { apiKey, apiUrl } from '@/constants/env'; @@ -54,10 +54,7 @@ class LiquidAPI { }); } - async verifyAuthentication( - username: string, - data: AuthenticationResponseJSON - ): Promise<{ verified: boolean; userName: string; publicKey: string; userAddress: string }> { + async verifyAuthentication(username: string, data: AuthenticationResponseJSON): Promise { return this.fetchWithErrorHandling(`${this.apiBaseUrl}/authentication/verify`, { method: 'POST', headers: { diff --git a/init/types.ts b/init/types.ts index 090c9a6..7e8827f 100644 --- a/init/types.ts +++ b/init/types.ts @@ -52,3 +52,12 @@ export type VerifyRegistration = { type: string; authenticatorAttachment: string; }; + +export type VerificationResult = { + data: { + publicKey: string; + userAddress: string; + username: string; + verified: boolean; + }; +}; diff --git a/screens/home/index.tsx b/screens/home/index.tsx index 75b846b..53e7e8d 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -24,9 +24,13 @@ const Home = () => { const { whole, decimal } = formatAmountWithWholeAndDecimal(accountState.tokenBalance.toFixed(2)); - const top10TrendingPools = trendingPools?.data?.slice(0, 10); - const top10HotPools = hotPools?.data?.slice(0, 10) ?? []; - const top7Gainers = topGainers?.data?.slice(0, 7); + const hotPoolsArray = Object.values(hotPools.data); + const trendingPoolsArray = Object.values(trendingPools.data); + const top7GainersArray = Object.values(topGainers.data); + + const top10TrendingPools = trendingPoolsArray?.slice(0, 10); + const top10HotPools = hotPoolsArray.slice(0, 10) ?? []; + const top7Gainers = top7GainersArray.slice(0, 7); const focusInput = () => { focusSearch(true); diff --git a/store/pools/actions.ts b/store/pools/actions.ts index e41aa60..39b199b 100644 --- a/store/pools/actions.ts +++ b/store/pools/actions.ts @@ -64,6 +64,8 @@ export function usePoolActions() { dispatch(setRefreshing(true)); const pools = await api.getPools(PoolType.trending); + console.log(pools, 'pools trending'); + return dispatch(setTrendingPools(pools)); } diff --git a/store/smartAccount/actions.ts b/store/smartAccount/actions.ts index cc4757a..0bdf90a 100644 --- a/store/smartAccount/actions.ts +++ b/store/smartAccount/actions.ts @@ -83,10 +83,16 @@ export function useSmartAccountActions() { const verification = await api.verifyAuthentication(userName, authenticationResponse); + console.log(verification, 'verif data'); + + console.log(verification.data.publicKey, 'base 64'); + + console.log(getPublicKeyHex(verification.data.publicKey), 'pub key hex'); + const webAuthnAccount = toWebAuthnAccount({ credential: { id: passkeyResult.id, - publicKey: getPublicKeyHex(verification.publicKey), + publicKey: getPublicKeyHex(verification.data.publicKey), }, getFn, rpId, diff --git a/store/smartAccount/create.ts b/store/smartAccount/create.ts index 2dd132b..3a87464 100644 --- a/store/smartAccount/create.ts +++ b/store/smartAccount/create.ts @@ -55,6 +55,9 @@ export async function createSmartAccount(registrationOptions: PublicKeyCredentia const address = await smartAccount.getAddress(); const username = registrationOptions.user.name; + console.log(address, 'address from creation'); + console.log(publicKey, 'pub key from creation'); + const smartAccountInfo: VerifyRegistration = { username: registrationOptions.user.name, id: registrationResponse.credentialId, diff --git a/utils/base64.ts b/utils/base64.ts index 767b86c..e182632 100644 --- a/utils/base64.ts +++ b/utils/base64.ts @@ -88,6 +88,9 @@ export function base64ToBytes(base64String: string): Uint8Array { } export function getPublicKeyHex(publicKey: string): Hex { + const pubkeybuff = utf8StringToBuffer('UJ8_2cTDtiu4B3LvUMx4h_TTzXBP4rtUAw-4YIvxbVcazvTZvk-k7T2stTYZGsh9WxHdFUw_jZGFGFCy6j2qrg'); + + console.log(pubkeybuff, 'buff'); const publicKeyBuffer = utf8StringToBuffer(publicKey); return `0x${Array.from(new Uint8Array(publicKeyBuffer)) .map((byte) => byte.toString(16).padStart(2, '0')) From b7a8e9ae73ec155b85c45f1d8fcf2fe510f63187 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Tue, 12 Nov 2024 14:55:47 +0100 Subject: [PATCH 25/95] chore: fix public key mismatch --- init/api.ts | 14 +++++++++++--- init/types.ts | 9 ++++++++- store/smartAccount/create.ts | 33 +++++++++++++++------------------ utils/base64.ts | 3 --- 4 files changed, 34 insertions(+), 25 deletions(-) diff --git a/init/api.ts b/init/api.ts index ac391bb..3f44026 100644 --- a/init/api.ts +++ b/init/api.ts @@ -1,5 +1,13 @@ import { PoolResponse } from '@/store/pools/types'; -import { CreatePassKeyCredentialOptions, Address, PoolType, VerifyRegistration, AuthCredentialOptions, VerificationResult } from './types'; +import { + CreatePassKeyCredentialOptions, + Address, + PoolType, + VerifyRegistration, + AuthCredentialOptions, + AuthVerificationResult, + RegistrationVerificationResult, +} from './types'; import { AuthenticationResponseJSON } from 'react-native-passkeys/build/ReactNativePasskeys.types'; import { apiKey, apiUrl } from '@/constants/env'; @@ -44,7 +52,7 @@ class LiquidAPI { }); } - async verifyRegistration(data: VerifyRegistration): Promise<{ verified: boolean; publicKey: string }> { + async verifyRegistration(data: VerifyRegistration): Promise { return this.fetchWithErrorHandling(`${this.apiBaseUrl}/registration/verify`, { method: 'POST', headers: { @@ -54,7 +62,7 @@ class LiquidAPI { }); } - async verifyAuthentication(username: string, data: AuthenticationResponseJSON): Promise { + async verifyAuthentication(username: string, data: AuthenticationResponseJSON): Promise { return this.fetchWithErrorHandling(`${this.apiBaseUrl}/authentication/verify`, { method: 'POST', headers: { diff --git a/init/types.ts b/init/types.ts index 7e8827f..480e8e1 100644 --- a/init/types.ts +++ b/init/types.ts @@ -53,7 +53,7 @@ export type VerifyRegistration = { authenticatorAttachment: string; }; -export type VerificationResult = { +export type AuthVerificationResult = { data: { publicKey: string; userAddress: string; @@ -61,3 +61,10 @@ export type VerificationResult = { verified: boolean; }; }; + +export type RegistrationVerificationResult = { + data: { + publicKey: string; + verified: boolean; + }; +}; diff --git a/store/smartAccount/create.ts b/store/smartAccount/create.ts index 3a87464..54f8c69 100644 --- a/store/smartAccount/create.ts +++ b/store/smartAccount/create.ts @@ -38,10 +38,24 @@ export async function createSmartAccount(registrationOptions: PublicKeyCredentia clientDataJSON, }; + const smartAccountInfo: VerifyRegistration = { + username: registrationOptions.user.name, + id: registrationResponse.credentialId, + rawId: registrationResponse.credentialId, + response: { + attestationObject: registrationResponse.attestationObject, + clientDataJSON: registrationResponse.clientDataJSON, + }, + type: 'public-key', + authenticatorAttachment: 'platform', + }; + + const verificationResult = await api.verifyRegistration(smartAccountInfo); + const webAuthnAccount = toWebAuthnAccount({ credential: { id: registrationResponse.credentialId, - publicKey: getPublicKeyHex(publicKey), + publicKey: getPublicKeyHex(verificationResult.data.publicKey), }, getFn, rpId, @@ -55,23 +69,6 @@ export async function createSmartAccount(registrationOptions: PublicKeyCredentia const address = await smartAccount.getAddress(); const username = registrationOptions.user.name; - console.log(address, 'address from creation'); - console.log(publicKey, 'pub key from creation'); - - const smartAccountInfo: VerifyRegistration = { - username: registrationOptions.user.name, - id: registrationResponse.credentialId, - rawId: registrationResponse.credentialId, - response: { - attestationObject: registrationResponse.attestationObject, - clientDataJSON: registrationResponse.clientDataJSON, - }, - type: 'public-key', - authenticatorAttachment: 'platform', - }; - - await api.verifyRegistration(smartAccountInfo); - const updateUserAddressResponse = await api.updateUserAddress(username, address); if (!updateUserAddressResponse.success) { throw new FailedToUpdateUserAddressError(); diff --git a/utils/base64.ts b/utils/base64.ts index e182632..767b86c 100644 --- a/utils/base64.ts +++ b/utils/base64.ts @@ -88,9 +88,6 @@ export function base64ToBytes(base64String: string): Uint8Array { } export function getPublicKeyHex(publicKey: string): Hex { - const pubkeybuff = utf8StringToBuffer('UJ8_2cTDtiu4B3LvUMx4h_TTzXBP4rtUAw-4YIvxbVcazvTZvk-k7T2stTYZGsh9WxHdFUw_jZGFGFCy6j2qrg'); - - console.log(pubkeybuff, 'buff'); const publicKeyBuffer = utf8StringToBuffer(publicKey); return `0x${Array.from(new Uint8Array(publicKeyBuffer)) .map((byte) => byte.toString(16).padStart(2, '0')) From f0e26b7a9fad99e7b351c1d8af47fba7e8e1112c Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Tue, 12 Nov 2024 18:07:02 +0100 Subject: [PATCH 26/95] chore: handle positions reducer --- hooks/useContract.ts | 17 +++++++------ hooks/usePosition.ts | 0 hooks/useSystemFunctions.tsx | 2 ++ hooks/useToken.ts | 3 +-- init/viem.ts | 2 +- store/index.ts | 4 ++- store/positions/actions.ts | 27 ++++++++++++++++++++ store/positions/index.ts | 48 ++++++++++++++++++++++++++++++++++++ store/positions/types.ts | 30 ++++++++++++++++++++++ 9 files changed, 121 insertions(+), 12 deletions(-) create mode 100644 hooks/usePosition.ts create mode 100644 store/positions/actions.ts create mode 100644 store/positions/index.ts create mode 100644 store/positions/types.ts diff --git a/hooks/useContract.ts b/hooks/useContract.ts index a2b8643..4c701de 100644 --- a/hooks/useContract.ts +++ b/hooks/useContract.ts @@ -1,12 +1,13 @@ import { Address, formatUnits, PublicClient } from 'viem'; import { AerodromePoolABI, LPSugarABI, OffchainOracleABI } from '@/constants/abis'; -import { USDC_ADDRESS, WETH_ADDRESS } from '@/constants/addresses'; +import { LP_SUGAR_ADDRESS, USDC_ADDRESS, WETH_ADDRESS } from '@/constants/addresses'; +import { publicClient } from '@/init/viem'; const { LpSugar } = LPSugarABI; const { OffchainOracle } = OffchainOracleABI; -export function useLpSugarContract(address: Address, publicClient: PublicClient) { - if (!LpSugar || !address || !publicClient) { +export function useLpSugarContract() { + if (!LpSugar || !LP_SUGAR_ADDRESS || !publicClient) { throw new Error('Required parameters not provided to useLpSugarContract'); } @@ -18,25 +19,25 @@ export function useLpSugarContract(address: Address, publicClient: PublicClient) const safeBatchSize = Math.min(limit, SAFE_BATCH_SIZE); return await publicClient.readContract({ - address, + address: LP_SUGAR_ADDRESS, abi: LpSugar.abi, functionName: 'all', args: [BigInt(safeBatchSize), BigInt(offset)], }); }, - async getPositions(limit: number, offset: number, account: Address) { + async getPositions(account: Address) { return publicClient.readContract({ - address, + address: LP_SUGAR_ADDRESS, abi: LpSugar.abi, functionName: 'positions', - args: [BigInt(limit), BigInt(offset), account], + args: [BigInt(200), BigInt(0), account], }); }, async getTokens(limit: number, offset: number, account: Address, connectors: readonly Address[]): Promise { return publicClient.readContract({ - address, + address: LP_SUGAR_ADDRESS, abi: LpSugar.abi, functionName: 'tokens', args: [BigInt(limit), BigInt(offset), account, connectors], diff --git a/hooks/usePosition.ts b/hooks/usePosition.ts new file mode 100644 index 0000000..e69de29 diff --git a/hooks/useSystemFunctions.tsx b/hooks/useSystemFunctions.tsx index 8d408c3..11fa7cb 100644 --- a/hooks/useSystemFunctions.tsx +++ b/hooks/useSystemFunctions.tsx @@ -19,6 +19,7 @@ const useSystemFunctions = () => { const smartAccountState = useAppSelector((state) => state.smartAccount); const poolsState = useAppSelector((state) => state.pools); const accountState = useAppSelector((state) => state.account); + const positionsState = useAppSelector((state) => state.positions); return { dispatch, @@ -32,6 +33,7 @@ const useSystemFunctions = () => { smartAccountState, poolsState, accountState, + positionsState, }; }; diff --git a/hooks/useToken.ts b/hooks/useToken.ts index 8e3f144..510f53a 100644 --- a/hooks/useToken.ts +++ b/hooks/useToken.ts @@ -4,7 +4,6 @@ import { CONNECTORS_BASE, LP_SUGAR_ADDRESS, OFFCHAIN_ORACLE_ADDRESS, WETH_ADDRES import { useLpSugarContract, useOffchainOracleContract } from './useContract'; import { LPSugarToken, LPSugarTokenResponse, Token } from './types'; import useSystemFunctions from './useSystemFunctions'; -import { OffchainOracleABI } from '@/constants/abis'; export function useToken(publicClient: PublicClient) { const { smartAccountState } = useSystemFunctions(); @@ -13,7 +12,7 @@ export function useToken(publicClient: PublicClient) { const [tokens, setTokens] = useState([]); const [tokenMap, setTokenMap] = useState>(new Map()); - const lpSugar = useLpSugarContract(LP_SUGAR_ADDRESS, publicClient); + const lpSugar = useLpSugarContract(); const oracle = useOffchainOracleContract(OFFCHAIN_ORACLE_ADDRESS, publicClient); const fetchTokens = async (BATCH_SIZE: number, offset: number): Promise => { diff --git a/init/viem.ts b/init/viem.ts index f86ca77..c596296 100644 --- a/init/viem.ts +++ b/init/viem.ts @@ -1,4 +1,4 @@ -import { createPublicClient, http } from 'viem'; +import { createPublicClient, http, PublicClient } from 'viem'; import { createPaymasterClient } from 'viem/account-abstraction'; import { estimateUserOperationGas, UserOperation, createBundlerClient } from 'permissionless'; import { base } from 'viem/chains'; diff --git a/store/index.ts b/store/index.ts index 2043e43..1d4360d 100644 --- a/store/index.ts +++ b/store/index.ts @@ -8,6 +8,7 @@ import appReducer from './app'; import smartAccountReducer from './smartAccount'; import poolReducer from './pools'; import accountReducer from './account'; +import positionReducer from './positions'; export interface CallbackProps { onSuccess?: Function; @@ -20,12 +21,13 @@ const rootReducer = combineReducers({ smartAccount: smartAccountReducer, pools: poolReducer, account: accountReducer, + positions: positionReducer, }); const persistConfig = { key: 'root', storage: AsyncStorage, - whitelist: ['user', 'pools', 'smartAccount'], + whitelist: ['user', 'pools', 'smartAccount', 'positions'], }; const persistedReducer = persistReducer(persistConfig, rootReducer); diff --git a/store/positions/actions.ts b/store/positions/actions.ts new file mode 100644 index 0000000..c793913 --- /dev/null +++ b/store/positions/actions.ts @@ -0,0 +1,27 @@ +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { setLoadingPositions, setPositions, setRefreshing, setSelectedPosition } from '.'; +import { useLpSugarContract } from '@/hooks/useContract'; + +export function usePoolActions() { + const { dispatch, positionsState } = useSystemFunctions(); + const lpSugar = useLpSugarContract(); + + const getPositions = async () => { + try { + dispatch(setLoadingPositions(true)); + + const positions = await lpSugar.getPositions('0xB553b8Ea24F9c305c37c09AF417302033dec7fDC'); + + dispatch(setPositions(positions)); + } catch (error: any) { + // + } finally { + dispatch(setLoadingPositions(false)); + dispatch(setRefreshing(false)); + } + }; + + return { + getPositions, + }; +} diff --git a/store/positions/index.ts b/store/positions/index.ts new file mode 100644 index 0000000..de73d81 --- /dev/null +++ b/store/positions/index.ts @@ -0,0 +1,48 @@ +import { createSlice } from '@reduxjs/toolkit'; +import type { PayloadAction } from '@reduxjs/toolkit'; +import { Position } from './types'; +import { Address } from 'viem'; + +export interface PositionsState { + positions: Position[]; + selectedPosition: Position | undefined; + loadingPositions: boolean; + refreshingPositions: boolean; +} + +const initialState: PositionsState = { + positions: [], + selectedPosition: undefined, + loadingPositions: false, + refreshingPositions: false, +}; + +export const positionReducer = createSlice({ + name: 'positions', + initialState, + reducers: { + setRefreshing: (state, action: PayloadAction) => { + state.refreshingPositions = action.payload; + }, + + setLoadingPositions: (state, action: PayloadAction) => { + state.loadingPositions = action.payload; + }, + + setPositions: (state, action: PayloadAction) => { + if (action.payload) { + state.positions = [...action.payload]; + } else { + state.positions = []; + } + }, + + setSelectedPosition: (state, action: PayloadAction) => { + state.selectedPosition = action.payload; + }, + }, +}); + +export const { setLoadingPositions, setPositions, setRefreshing, setSelectedPosition } = positionReducer.actions; + +export default positionReducer.reducer; diff --git a/store/positions/types.ts b/store/positions/types.ts new file mode 100644 index 0000000..1943445 --- /dev/null +++ b/store/positions/types.ts @@ -0,0 +1,30 @@ +import { Address } from 'viem'; + +export interface Position { + id: string; // 0 for v2 pools + poolAddress: Address; + balance: string; // LP token balance + stakedBalance: string; // Staked LP token balance + token0: PositionToken; // Token0 info + token1: PositionToken; // Token1 info + fees: PositionFees; // Unclaimed fees + reward: Reward; // Reward token info and unclaimed amount +} + +interface PositionToken { + address: Address; + balance: string; + stakedBalance: string; +} + +// Fee info for positions +interface PositionFees { + token0: string; + token1: string; +} + +// Reward info +interface Reward { + address: Address; + earned: string; +} From cc3a7826a184f6447ec9a0ff1953fc741129d9a9 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Wed, 13 Nov 2024 22:12:26 +0100 Subject: [PATCH 27/95] chore: update position reducer --- constants/addresses.ts | 2 ++ hooks/useContract.ts | 8 +++--- hooks/useSystemFunctions.tsx | 2 -- hooks/useToken.ts | 2 +- screens/holdings/pools/index.tsx | 1 + screens/home/index.tsx | 4 +-- store/account/actions.ts | 48 +++++++++++++++++--------------- store/index.ts | 4 +-- store/positions/actions.ts | 27 ------------------ store/positions/index.ts | 48 -------------------------------- store/positions/types.ts | 30 -------------------- 11 files changed, 37 insertions(+), 139 deletions(-) delete mode 100644 store/positions/actions.ts delete mode 100644 store/positions/index.ts delete mode 100644 store/positions/types.ts diff --git a/constants/addresses.ts b/constants/addresses.ts index edcc050..6cb6020 100644 --- a/constants/addresses.ts +++ b/constants/addresses.ts @@ -9,6 +9,8 @@ export const WETH_ADDRESS: Address = '0x4200000000000000000000000000000000000006 export const ACCOUNT_FACTORY_ADDRESS: Address = '0x0BA5ED0c6AA8c49038F819E587E2633c4A9F428a' as Address; export const ENTRYPOINT_V06_ADDRESS: Address = '0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789' as Address; +export const TEST_USER: Address = '0x78815067c3926cc33F7790d87460BEC779F42d4D' as Address; + // Liquid connectors export const AERODROME_CONNECTOR: Address = '0x10e1aC384A4Fb3e0Bc4724D097B0d7F4e99143E6' as Address; export const CONNECTOR_PLUGIN: Address = '0x96281563A06a8D3319C9822B58d8808FaC7EA14D' as Address; diff --git a/hooks/useContract.ts b/hooks/useContract.ts index 4c701de..eddc892 100644 --- a/hooks/useContract.ts +++ b/hooks/useContract.ts @@ -6,7 +6,7 @@ import { publicClient } from '@/init/viem'; const { LpSugar } = LPSugarABI; const { OffchainOracle } = OffchainOracleABI; -export function useLpSugarContract() { +export function useLpSugarContract(address: Address) { if (!LpSugar || !LP_SUGAR_ADDRESS || !publicClient) { throw new Error('Required parameters not provided to useLpSugarContract'); } @@ -19,7 +19,7 @@ export function useLpSugarContract() { const safeBatchSize = Math.min(limit, SAFE_BATCH_SIZE); return await publicClient.readContract({ - address: LP_SUGAR_ADDRESS, + address, abi: LpSugar.abi, functionName: 'all', args: [BigInt(safeBatchSize), BigInt(offset)], @@ -28,7 +28,7 @@ export function useLpSugarContract() { async getPositions(account: Address) { return publicClient.readContract({ - address: LP_SUGAR_ADDRESS, + address, abi: LpSugar.abi, functionName: 'positions', args: [BigInt(200), BigInt(0), account], @@ -37,7 +37,7 @@ export function useLpSugarContract() { async getTokens(limit: number, offset: number, account: Address, connectors: readonly Address[]): Promise { return publicClient.readContract({ - address: LP_SUGAR_ADDRESS, + address, abi: LpSugar.abi, functionName: 'tokens', args: [BigInt(limit), BigInt(offset), account, connectors], diff --git a/hooks/useSystemFunctions.tsx b/hooks/useSystemFunctions.tsx index 11fa7cb..8d408c3 100644 --- a/hooks/useSystemFunctions.tsx +++ b/hooks/useSystemFunctions.tsx @@ -19,7 +19,6 @@ const useSystemFunctions = () => { const smartAccountState = useAppSelector((state) => state.smartAccount); const poolsState = useAppSelector((state) => state.pools); const accountState = useAppSelector((state) => state.account); - const positionsState = useAppSelector((state) => state.positions); return { dispatch, @@ -33,7 +32,6 @@ const useSystemFunctions = () => { smartAccountState, poolsState, accountState, - positionsState, }; }; diff --git a/hooks/useToken.ts b/hooks/useToken.ts index 510f53a..5f5efa4 100644 --- a/hooks/useToken.ts +++ b/hooks/useToken.ts @@ -12,7 +12,7 @@ export function useToken(publicClient: PublicClient) { const [tokens, setTokens] = useState([]); const [tokenMap, setTokenMap] = useState>(new Map()); - const lpSugar = useLpSugarContract(); + const lpSugar = useLpSugarContract(LP_SUGAR_ADDRESS); const oracle = useOffchainOracleContract(OFFCHAIN_ORACLE_ADDRESS, publicClient); const fetchTokens = async (BATCH_SIZE: number, offset: number): Promise => { diff --git a/screens/holdings/pools/index.tsx b/screens/holdings/pools/index.tsx index 72148db..8266b46 100644 --- a/screens/holdings/pools/index.tsx +++ b/screens/holdings/pools/index.tsx @@ -2,6 +2,7 @@ import { View, Text, StyleSheet, ScrollView } from 'react-native'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import PoolCard from './card'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; const Pools = () => { const pools: Array = [ diff --git a/screens/home/index.tsx b/screens/home/index.tsx index 53e7e8d..733a3b1 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -15,7 +15,7 @@ import { useOnMount } from '@/hooks/useOnMount'; const Home = () => { const { router, poolsState, smartAccountState, accountState, appState } = useSystemFunctions(); - const { getTokens, getPositions } = useAccountActions(); + const { getTokens } = useAccountActions(); const { getPools } = usePoolActions(); const { logout } = useSmartAccountActions(); const { searchIsFocused: focusSearch, showSearch } = useAppActions(); @@ -124,7 +124,7 @@ const Home = () => { useEffect( function fetchBalances() { getTokens(); - getPositions(); + //getPositions(); }, [smartAccountState.address] ); diff --git a/store/account/actions.ts b/store/account/actions.ts index 5ce1159..75d3370 100644 --- a/store/account/actions.ts +++ b/store/account/actions.ts @@ -3,13 +3,14 @@ import useSystemFunctions from '@/hooks/useSystemFunctions'; import { publicClient } from '@/init/viem'; import { setLoading, setLpBalance, setPositions, setRefreshing, setTokenBalance, setTokens } from '.'; import { Position } from '@/hooks/types'; -import { usePool } from '@/hooks/usePool'; import api from '@/init/api'; import { TokenResponse } from './types'; +import { LP_SUGAR_ADDRESS, TEST_USER } from '@/constants/addresses'; +import { useLpSugarContract } from '@/hooks/useContract'; export function useAccountActions() { const { dispatch, accountState } = useSystemFunctions(); - const { fetchPositions } = usePool(publicClient as PublicClient); + const lpSugar = useLpSugarContract(LP_SUGAR_ADDRESS); const getTokens = async (refresh?: boolean) => { try { @@ -53,25 +54,28 @@ export function useAccountActions() { } }; - const getPositions = async (refresh?: boolean) => { - try { - if (refresh) { - dispatch(setRefreshing(true)); - const positions = await fetchPositions(15, 0); - return _setValidPositions(positions || []); - } - - dispatch(setLoading(true)); - const positions = await fetchPositions(15, 0); - - return _setValidPositions(positions || []); - } catch (error: any) { - // - } finally { - dispatch(setLoading(false)); - dispatch(setRefreshing(false)); - } - }; + // const getPositions = async (refresh?: boolean) => { + // try { + // if (refresh) { + // dispatch(setRefreshing(true)); + // console.log('got here'); + // const returnedPosition = await lpSugar.getPositions(TEST_USER); + + // console.log(returnedPosition, 'returned position'); + // return _setValidPositions(positions || []); + // } + + // dispatch(setLoading(true)); + // const returnedPosition = await lpSugar.getPositions(TEST_USER); + + // return _setValidPositions(positions || []); + // } catch (error: any) { + // // + // } finally { + // dispatch(setLoading(false)); + // dispatch(setRefreshing(false)); + // } + // }; const _setValidPositions = async (positions: Position[]) => { const validPositions = await positions.filter((po) => po.balance !== '0'); @@ -83,6 +87,6 @@ export function useAccountActions() { return { getTokens, - getPositions, + // getPositions, }; } diff --git a/store/index.ts b/store/index.ts index 1d4360d..2043e43 100644 --- a/store/index.ts +++ b/store/index.ts @@ -8,7 +8,6 @@ import appReducer from './app'; import smartAccountReducer from './smartAccount'; import poolReducer from './pools'; import accountReducer from './account'; -import positionReducer from './positions'; export interface CallbackProps { onSuccess?: Function; @@ -21,13 +20,12 @@ const rootReducer = combineReducers({ smartAccount: smartAccountReducer, pools: poolReducer, account: accountReducer, - positions: positionReducer, }); const persistConfig = { key: 'root', storage: AsyncStorage, - whitelist: ['user', 'pools', 'smartAccount', 'positions'], + whitelist: ['user', 'pools', 'smartAccount'], }; const persistedReducer = persistReducer(persistConfig, rootReducer); diff --git a/store/positions/actions.ts b/store/positions/actions.ts deleted file mode 100644 index c793913..0000000 --- a/store/positions/actions.ts +++ /dev/null @@ -1,27 +0,0 @@ -import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { setLoadingPositions, setPositions, setRefreshing, setSelectedPosition } from '.'; -import { useLpSugarContract } from '@/hooks/useContract'; - -export function usePoolActions() { - const { dispatch, positionsState } = useSystemFunctions(); - const lpSugar = useLpSugarContract(); - - const getPositions = async () => { - try { - dispatch(setLoadingPositions(true)); - - const positions = await lpSugar.getPositions('0xB553b8Ea24F9c305c37c09AF417302033dec7fDC'); - - dispatch(setPositions(positions)); - } catch (error: any) { - // - } finally { - dispatch(setLoadingPositions(false)); - dispatch(setRefreshing(false)); - } - }; - - return { - getPositions, - }; -} diff --git a/store/positions/index.ts b/store/positions/index.ts deleted file mode 100644 index de73d81..0000000 --- a/store/positions/index.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { createSlice } from '@reduxjs/toolkit'; -import type { PayloadAction } from '@reduxjs/toolkit'; -import { Position } from './types'; -import { Address } from 'viem'; - -export interface PositionsState { - positions: Position[]; - selectedPosition: Position | undefined; - loadingPositions: boolean; - refreshingPositions: boolean; -} - -const initialState: PositionsState = { - positions: [], - selectedPosition: undefined, - loadingPositions: false, - refreshingPositions: false, -}; - -export const positionReducer = createSlice({ - name: 'positions', - initialState, - reducers: { - setRefreshing: (state, action: PayloadAction) => { - state.refreshingPositions = action.payload; - }, - - setLoadingPositions: (state, action: PayloadAction) => { - state.loadingPositions = action.payload; - }, - - setPositions: (state, action: PayloadAction) => { - if (action.payload) { - state.positions = [...action.payload]; - } else { - state.positions = []; - } - }, - - setSelectedPosition: (state, action: PayloadAction) => { - state.selectedPosition = action.payload; - }, - }, -}); - -export const { setLoadingPositions, setPositions, setRefreshing, setSelectedPosition } = positionReducer.actions; - -export default positionReducer.reducer; diff --git a/store/positions/types.ts b/store/positions/types.ts deleted file mode 100644 index 1943445..0000000 --- a/store/positions/types.ts +++ /dev/null @@ -1,30 +0,0 @@ -import { Address } from 'viem'; - -export interface Position { - id: string; // 0 for v2 pools - poolAddress: Address; - balance: string; // LP token balance - stakedBalance: string; // Staked LP token balance - token0: PositionToken; // Token0 info - token1: PositionToken; // Token1 info - fees: PositionFees; // Unclaimed fees - reward: Reward; // Reward token info and unclaimed amount -} - -interface PositionToken { - address: Address; - balance: string; - stakedBalance: string; -} - -// Fee info for positions -interface PositionFees { - token0: string; - token1: string; -} - -// Reward info -interface Reward { - address: Address; - earned: string; -} From 0a94330f60a8d2d21f5d265d8fc35ff769c0d84f Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Wed, 13 Nov 2024 22:26:54 +0100 Subject: [PATCH 28/95] chore: fix verification response typing --- init/api.ts | 3 ++- init/types.ts | 13 +++++++++++++ store/smartAccount/actions.ts | 7 ++++--- 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/init/api.ts b/init/api.ts index 3f44026..cb8c46d 100644 --- a/init/api.ts +++ b/init/api.ts @@ -7,6 +7,7 @@ import { AuthCredentialOptions, AuthVerificationResult, RegistrationVerificationResult, + VerifyAuthResponse, } from './types'; import { AuthenticationResponseJSON } from 'react-native-passkeys/build/ReactNativePasskeys.types'; @@ -62,7 +63,7 @@ class LiquidAPI { }); } - async verifyAuthentication(username: string, data: AuthenticationResponseJSON): Promise { + async verifyAuthentication(username: string, data: VerifyAuthResponse): Promise { return this.fetchWithErrorHandling(`${this.apiBaseUrl}/authentication/verify`, { method: 'POST', headers: { diff --git a/init/types.ts b/init/types.ts index 480e8e1..8e2bc58 100644 --- a/init/types.ts +++ b/init/types.ts @@ -53,6 +53,19 @@ export type VerifyRegistration = { authenticatorAttachment: string; }; +export type VerifyAuthResponse = { + id: string; + rawId: string; + response: { + authenticatorData: string; + clientDataJSON: string; + signature: string; + userHandle: string; + }; + type: string; + authenticatorAttachment: string; +}; + export type AuthVerificationResult = { data: { publicKey: string; diff --git a/store/smartAccount/actions.ts b/store/smartAccount/actions.ts index a9d49e9..9b26f7a 100644 --- a/store/smartAccount/actions.ts +++ b/store/smartAccount/actions.ts @@ -2,7 +2,7 @@ import { toCoinbaseSmartAccount, toWebAuthnAccount } from 'viem/account-abstract import * as Passkeys from 'react-native-passkeys'; import { setAddress, setRegistrationOptions } from '@/store/smartAccount'; -import { CreatePassKeyCredentialOptions } from '@/init/types'; +import { CreatePassKeyCredentialOptions, VerifyAuthResponse } from '@/init/types'; import { publicClient } from '@/init/viem'; import { rpId } from '@/constants/env'; import { getPublicKeyHex } from '@/utils/base64'; @@ -16,6 +16,7 @@ import { setLpBalance, setPositions, setTokenBalance, setTokens } from '../accou import api from '@/init/api'; import { useAuth } from '@/providers'; import { Hex } from 'viem'; +import { AuthenticationResponseJSON } from 'react-native-passkeys/build/ReactNativePasskeys.types'; export function useSmartAccountActions() { const { dispatch, router, smartAccountState } = useSystemFunctions(); @@ -68,14 +69,14 @@ export function useSmartAccountActions() { throw new Error('No passkey found'); } - const authenticationResponse: any = { + const authenticationResponse: VerifyAuthResponse = { id: passkeyResult.id, rawId: passkeyResult.rawId, response: { authenticatorData: passkeyResult.response.authenticatorData, clientDataJSON: passkeyResult.response.clientDataJSON, signature: passkeyResult.response.signature, - userHandle: passkeyResult.response.userHandle, + userHandle: passkeyResult.response.userHandle!, }, type: 'public-key', authenticatorAttachment: 'platform', From 19ea5d26359f005a50e626e7815e4b21c3c786aa Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Thu, 14 Nov 2024 12:52:54 +0100 Subject: [PATCH 29/95] remove pools from percisted, add token by address --- init/api.ts | 13 ++++++- store/account/actions.ts | 80 ++++++++++++++++++++++++++++++++-------- store/account/types.ts | 9 +++++ store/index.ts | 2 +- store/pools/index.ts | 8 ++-- 5 files changed, 90 insertions(+), 22 deletions(-) diff --git a/init/api.ts b/init/api.ts index 20ca95f..b58d435 100644 --- a/init/api.ts +++ b/init/api.ts @@ -3,7 +3,7 @@ import { CreatePassKeyCredentialOptions, Address, PoolType, VerifyRegistration, import { AuthenticationResponseJSON } from 'react-native-passkeys/build/ReactNativePasskeys.types'; import { apiKey, apiUrl } from '@/constants/env'; -import { TokenResponse } from '@/store/account/types'; +import { TokenResponse, UserTokenResponse } from '@/store/account/types'; class LiquidAPI { private apiBaseUrl: string; @@ -79,7 +79,7 @@ class LiquidAPI { } async getPools(type: PoolType, query?: string): Promise { - return this.fetchWithErrorHandling(`${this.apiBaseUrl}/pools/${type}${query || ''}`, { + return this.fetchWithErrorHandling(`${this.apiBaseUrl}/pools/${type}${query || '?page=0'}`, { method: 'GET', headers: { 'Content-Type': 'application/json', @@ -104,6 +104,15 @@ class LiquidAPI { }, }); } + + async getUserTokens(address: string): Promise { + return this.fetchWithErrorHandling(`${this.apiBaseUrl}/tokens/b/${address}`, { + method: 'GET', + headers: { + 'Content-Type': 'application/json', + }, + }); + } } export default new LiquidAPI(); diff --git a/store/account/actions.ts b/store/account/actions.ts index 5ce1159..7cc7552 100644 --- a/store/account/actions.ts +++ b/store/account/actions.ts @@ -8,10 +8,52 @@ import api from '@/init/api'; import { TokenResponse } from './types'; export function useAccountActions() { - const { dispatch, accountState } = useSystemFunctions(); + const { dispatch, accountState, smartAccountState } = useSystemFunctions(); const { fetchPositions } = usePool(publicClient as PublicClient); - const getTokens = async (refresh?: boolean) => { + const getTokens = async () => { + try { + dispatch(setLoading(true)); + + const tokens = await api.getTokens(''); + + const totalBalance = tokens.data.reduce((acc, token) => acc + parseFloat(token.balance) * parseFloat(token.usdPrice), 0); + const sortedTokens = await _sortTokensByBalance(tokens.data); + console.log(sortedTokens.find((token) => token.symbol === 'USDC')); + tokens.data = [...sortedTokens]; + + dispatch(setTokens(tokens)); + dispatch(setTokenBalance(totalBalance)); + } catch (error: any) { + // + } finally { + dispatch(setLoading(false)); + } + }; + + const getUserTokens = async () => { + try { + if (!smartAccountState.address) return; + + dispatch(setLoading(true)); + + const tokens = await api.getUserTokens(smartAccountState.address); + + const totalBalance = tokens.data.reduce((acc, token) => acc + parseFloat(token.balance) * parseFloat(token.usdPrice), 0); + const sortedTokens = await _sortTokensByBalance(tokens.data); + console.log(sortedTokens.find((token) => token.symbol === 'USDC')); + tokens.data = [...sortedTokens]; + + dispatch(setTokens(tokens)); + dispatch(setTokenBalance(totalBalance)); + } catch (error: any) { + // + } finally { + dispatch(setLoading(false)); + } + }; + + const getPaginatedTokens = async (refresh?: boolean) => { try { if (refresh) { dispatch(setRefreshing(true)); @@ -22,24 +64,20 @@ export function useAccountActions() { const { tokens: currentTokens } = accountState; - dispatch(setLoading(true)); - - let tokens: TokenResponse; + if (!currentTokens?.pagination?.hasMore) return; - if (currentTokens === undefined || currentTokens.pagination.page === 0) { - tokens = await api.getTokens(''); - } else { - if (!currentTokens.pagination.hasMore) return; + dispatch(setLoading(true)); - const nextPage = currentTokens?.pagination.page + 1; + const nextPage = currentTokens?.pagination.page + 1; - const query = `?page=${nextPage}`; + const query = `?page=${nextPage}`; - tokens = await api.getTokens(query); + const tokens = await api.getTokens(query); + const sortedTokens = await _sortTokensByBalance(tokens.data); + tokens.data = [...sortedTokens]; - const newData = { ...currentTokens.data, ...tokens.data }; - tokens.data = newData; - } + const newData = { ...currentTokens.data, ...tokens.data }; + tokens.data = newData; const totalBalance = tokens.data.reduce((acc, token) => acc + parseFloat(token.balance) * parseFloat(token.usdPrice), 0); @@ -81,8 +119,20 @@ export function useAccountActions() { dispatch(setLpBalance(lpBalance)); }; + const _sortTokensByBalance = async (tokens: TokenItem[]) => { + const sortedTokens = tokens.sort((a, b) => { + const balanceA = parseFloat(a.balance); + const balanceB = parseFloat(b.balance); + + return balanceB - balanceA; + }); + + return sortedTokens; + }; + return { getTokens, getPositions, + getPaginatedTokens, }; } diff --git a/store/account/types.ts b/store/account/types.ts index 003bbf2..6ab555f 100644 --- a/store/account/types.ts +++ b/store/account/types.ts @@ -9,6 +9,15 @@ export type TokenResponse = { }; }; +export type UserTokenResponse = { + data: TokenItem[]; + pagination: { + limit: number; + page: number; + hasMore: boolean; + }; +}; + export type TokenItem = { address: Address; symbol: string; diff --git a/store/index.ts b/store/index.ts index 2043e43..6aa78a7 100644 --- a/store/index.ts +++ b/store/index.ts @@ -25,7 +25,7 @@ const rootReducer = combineReducers({ const persistConfig = { key: 'root', storage: AsyncStorage, - whitelist: ['user', 'pools', 'smartAccount'], + whitelist: ['user', 'smartAccount'], }; const persistedReducer = persistReducer(persistConfig, rootReducer); diff --git a/store/pools/index.ts b/store/pools/index.ts index e28db4d..8ebba18 100644 --- a/store/pools/index.ts +++ b/store/pools/index.ts @@ -55,7 +55,7 @@ export const poolReducer = createSlice({ if (action.payload) { state.hotPools = { ...action.payload }; } else { - state.hotPools = defaultPoolResponse; + state.hotPools = { ...defaultPoolResponse }; } }, @@ -67,7 +67,7 @@ export const poolReducer = createSlice({ if (action.payload) { state.topGainers = { ...action.payload }; } else { - state.topGainers = defaultPoolResponse; + state.topGainers = { ...defaultPoolResponse }; } }, @@ -75,7 +75,7 @@ export const poolReducer = createSlice({ if (action.payload) { state.trendingPools = { ...action.payload }; } else { - state.trendingPools = defaultPoolResponse; + state.trendingPools = { ...defaultPoolResponse }; } }, @@ -83,7 +83,7 @@ export const poolReducer = createSlice({ if (action.payload) { state.searchedPools = { ...action.payload }; } else { - state.searchedPools = defaultPoolResponse; + state.searchedPools = { ...defaultPoolResponse }; } }, }, From 6565f03100d8bec40b5ca419ddcb4db8b9fa6eea Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Thu, 14 Nov 2024 21:24:04 +0100 Subject: [PATCH 30/95] update pool integration --- components/pool-pair-paper/index.tsx | 6 ++-- components/search-ui/index.tsx | 51 ++++++++++++++++++---------- components/search-ui/sections.tsx | 1 + init/api.ts | 15 ++------ screens/holdings/assets/index.tsx | 2 +- store/account/actions.ts | 36 +++++--------------- store/account/types.ts | 13 +++---- store/pools/actions.ts | 32 +++++++++++++++-- store/pools/types.ts | 2 ++ 9 files changed, 87 insertions(+), 71 deletions(-) diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index 1a9bb7a..8e630cb 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -19,12 +19,14 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary' }: PoolPairPaper router.push(paths[navigationVariant]); }; + const vol = Number(Number(pool.totalVolumeUSD).toFixed(4)); + const primaryIconURL = pool.token0.logoUrl; const secondaryIconURL = pool.token1.logoUrl; const symbol = pool.symbol.split('-')[1].replace('/', ' / '); const apr = formatAmount(pool.apr, 2); - const fees = ''; - const volume = Number(pool.totalVolumeUSD); + const fees = '0'; + const volume = formatNumberWithSuffix(vol); const tvl = pool.tvl; const isStable = pool.isStable; diff --git a/components/search-ui/index.tsx b/components/search-ui/index.tsx index 808788e..e5213e2 100644 --- a/components/search-ui/index.tsx +++ b/components/search-ui/index.tsx @@ -1,5 +1,5 @@ import { useState } from 'react'; -import { View, StyleSheet, ScrollView } from 'react-native'; +import { View, StyleSheet, ScrollView, FlatList } from 'react-native'; import SearchSection from './sections'; import { recents, explore } from './dummy'; @@ -12,11 +12,13 @@ import { usePoolActions } from '@/store/pools/actions'; const SearchUI = () => { const { router, poolsState } = useSystemFunctions(); - const { searchPools } = usePoolActions(); + const { searchPools, getPaginatedSearchPools } = usePoolActions(); + const [searchText, setSearchText] = useState(''); const [showRecents, setShowRecents] = useState(true); - const pools = poolsState.trendingPools.data.slice(0, 10); + const hotPools = poolsState.hotPools.data.slice(0, 10); + const searchedPools = poolsState.searchedPools.data; const sections: Array> = [ { @@ -43,10 +45,10 @@ const SearchUI = () => { }, { - title: 'Trending', + title: 'Hot', children: ( - {pools.map((pool, index) => ( + {hotPools.map((pool, index) => ( ))} @@ -59,29 +61,47 @@ const SearchUI = () => { title: 'Results', children: ( - {pools.map((pool, index) => ( - - ))} + } + keyExtractor={(_, index) => index.toString()} + contentContainerStyle={{ gap: 24 }} + onEndReached={() => getPaginatedSearchPools(searchText)} + onEndReachedThreshold={0.1} + bounces={true} + showsVerticalScrollIndicator={false} + /> ), }, ]; - const sectionsToShow = false ? searchResultSection : showRecents ? sections : sections.slice(1); + const sectionsToShow = searchedPools.length > 0 ? searchResultSection : showRecents ? sections : sections.slice(1); const handleQuery = (value: string) => { searchPools(value); + setSearchText(value); }; return ( <> - - {sectionsToShow.map((section, index) => ( - - ))} - + {searchedPools.length == 0 && ( + + {sectionsToShow.map((section, index) => ( + + ))} + + )} + + {searchedPools.length > 0 && ( + + {sectionsToShow.map((section, index) => ( + + ))} + + )} ); }; @@ -93,9 +113,6 @@ const styles = StyleSheet.create({ backgroundColor: '#fff', flex: 1, paddingHorizontal: 16, - }, - - content: { paddingTop: 34, paddingBottom: 68, gap: 40, diff --git a/components/search-ui/sections.tsx b/components/search-ui/sections.tsx index a7af317..bb93418 100644 --- a/components/search-ui/sections.tsx +++ b/components/search-ui/sections.tsx @@ -47,6 +47,7 @@ const styles = StyleSheet.create({ section: { alignSelf: 'stretch', gap: 20, + marginBottom: 24, }, title: { diff --git a/init/api.ts b/init/api.ts index b58d435..61208db 100644 --- a/init/api.ts +++ b/init/api.ts @@ -3,7 +3,7 @@ import { CreatePassKeyCredentialOptions, Address, PoolType, VerifyRegistration, import { AuthenticationResponseJSON } from 'react-native-passkeys/build/ReactNativePasskeys.types'; import { apiKey, apiUrl } from '@/constants/env'; -import { TokenResponse, UserTokenResponse } from '@/store/account/types'; +import { TokenResponse } from '@/store/account/types'; class LiquidAPI { private apiBaseUrl: string; @@ -87,8 +87,8 @@ class LiquidAPI { }); } - async searchPools(query: string): Promise { - return this.fetchWithErrorHandling(`${this.apiBaseUrl}/pools/search?symbol=${query}`, { + async searchPools(searchQuery: string, paginationQuery?: string): Promise { + return this.fetchWithErrorHandling(`${this.apiBaseUrl}/pools/search?query=${searchQuery}${paginationQuery || ''}`, { method: 'GET', headers: { 'Content-Type': 'application/json', @@ -104,15 +104,6 @@ class LiquidAPI { }, }); } - - async getUserTokens(address: string): Promise { - return this.fetchWithErrorHandling(`${this.apiBaseUrl}/tokens/b/${address}`, { - method: 'GET', - headers: { - 'Content-Type': 'application/json', - }, - }); - } } export default new LiquidAPI(); diff --git a/screens/holdings/assets/index.tsx b/screens/holdings/assets/index.tsx index 930e82d..d4b1a91 100644 --- a/screens/holdings/assets/index.tsx +++ b/screens/holdings/assets/index.tsx @@ -36,7 +36,7 @@ const Assets = () => { iconUrl: token.logoUrl, name: token.symbol, value: Number(token.balance), - usdValue: Number(token.balance) * Number(token.usdPrice), + usdValue: Number(token.usdBalance), })); return ( diff --git a/store/account/actions.ts b/store/account/actions.ts index 7cc7552..e2f7de8 100644 --- a/store/account/actions.ts +++ b/store/account/actions.ts @@ -5,7 +5,7 @@ import { setLoading, setLpBalance, setPositions, setRefreshing, setTokenBalance, import { Position } from '@/hooks/types'; import { usePool } from '@/hooks/usePool'; import api from '@/init/api'; -import { TokenResponse } from './types'; +import { TokenItem } from './types'; export function useAccountActions() { const { dispatch, accountState, smartAccountState } = useSystemFunctions(); @@ -15,33 +15,12 @@ export function useAccountActions() { try { dispatch(setLoading(true)); - const tokens = await api.getTokens(''); + const query = smartAccountState.address ? `?address=${smartAccountState.address}` : ''; + const tokens = await api.getTokens(query); - const totalBalance = tokens.data.reduce((acc, token) => acc + parseFloat(token.balance) * parseFloat(token.usdPrice), 0); + const totalBalance = tokens.data.reduce((acc, token) => acc + parseFloat(token.usdBalance || '0'), 0); const sortedTokens = await _sortTokensByBalance(tokens.data); - console.log(sortedTokens.find((token) => token.symbol === 'USDC')); - tokens.data = [...sortedTokens]; - - dispatch(setTokens(tokens)); - dispatch(setTokenBalance(totalBalance)); - } catch (error: any) { - // - } finally { - dispatch(setLoading(false)); - } - }; - - const getUserTokens = async () => { - try { - if (!smartAccountState.address) return; - - dispatch(setLoading(true)); - - const tokens = await api.getUserTokens(smartAccountState.address); - const totalBalance = tokens.data.reduce((acc, token) => acc + parseFloat(token.balance) * parseFloat(token.usdPrice), 0); - const sortedTokens = await _sortTokensByBalance(tokens.data); - console.log(sortedTokens.find((token) => token.symbol === 'USDC')); tokens.data = [...sortedTokens]; dispatch(setTokens(tokens)); @@ -57,7 +36,9 @@ export function useAccountActions() { try { if (refresh) { dispatch(setRefreshing(true)); - const tokens = await api.getTokens(); + + const query = smartAccountState.address ? `?address=${smartAccountState.address}` : ''; + const tokens = await api.getTokens(query); return dispatch(setTokens(tokens)); } @@ -70,7 +51,8 @@ export function useAccountActions() { const nextPage = currentTokens?.pagination.page + 1; - const query = `?page=${nextPage}`; + const addressQuery = smartAccountState.address ? `address=${smartAccountState.address}` : ''; + const query = `?page=${nextPage}&address=${addressQuery}`; const tokens = await api.getTokens(query); const sortedTokens = await _sortTokensByBalance(tokens.data); diff --git a/store/account/types.ts b/store/account/types.ts index 6ab555f..2341536 100644 --- a/store/account/types.ts +++ b/store/account/types.ts @@ -9,16 +9,9 @@ export type TokenResponse = { }; }; -export type UserTokenResponse = { - data: TokenItem[]; - pagination: { - limit: number; - page: number; - hasMore: boolean; - }; -}; - export type TokenItem = { + formattedBalance: string; + usdBalance: string; address: Address; symbol: string; decimals: number; @@ -42,6 +35,8 @@ export const defaultToken: TokenResponse = { logoUrl: '', lastUpdated: '', createdAt: '', + formattedBalance: '0', + usdBalance: '0', }, ], pagination: { diff --git a/store/pools/actions.ts b/store/pools/actions.ts index e41aa60..39345eb 100644 --- a/store/pools/actions.ts +++ b/store/pools/actions.ts @@ -6,7 +6,7 @@ import { PoolType } from '@/init/types'; export function usePoolActions() { const { dispatch, poolsState } = useSystemFunctions(); - const { hotPools, topGainers, trendingPools } = poolsState; + const { hotPools, topGainers, trendingPools, searchedPools } = poolsState; const getPools = async () => { try { @@ -119,11 +119,13 @@ export function usePoolActions() { } }; - const searchPools = async (query: string) => { + const searchPools = async (searchQuery: string) => { try { + if (!searchQuery) return dispatch(setSearchedPools(undefined)); + dispatch(setSearchingPools(true)); - const pools = await api.searchPools(query); + const pools = await api.searchPools(encodeURIComponent(searchQuery)); dispatch(setSearchedPools(pools)); } catch (error: any) { @@ -134,11 +136,35 @@ export function usePoolActions() { } }; + const getPaginatedSearchPools = async (searchQuery: string) => { + try { + if (!searchedPools.pagination.hasMore || !searchQuery) return; + + dispatch(setSearchingPools(true)); + + const nextPage = searchedPools.pagination.page + 1; + + const query = `&page=${nextPage}`; + + const pools = await api.searchPools(encodeURIComponent(searchQuery), query); + + const newData = { ...topGainers.data, ...pools.data }; + pools.data = newData; + + dispatch(setSearchedPools(pools)); + } catch (error: any) { + // + } finally { + dispatch(setSearchingPools(false)); + } + }; + return { getPools, getPaginatedHotPools, getPaginatedTrendingPools, getPaginatedTopGainers, searchPools, + getPaginatedSearchPools, }; } diff --git a/store/pools/types.ts b/store/pools/types.ts index cec0d3b..b4e0db6 100644 --- a/store/pools/types.ts +++ b/store/pools/types.ts @@ -25,6 +25,8 @@ export type Pool = { apr: string; tvl: string; totalVolumeUSD: string; + totalFeesUSD: string; + txCount: number | string; isStable: boolean; factory: Address; token0: { From d625635ae7aa0034e4760b510943f864857a6b6e Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Fri, 15 Nov 2024 02:02:23 +0100 Subject: [PATCH 31/95] chore: update texts --- components/pool-pair-paper/index.tsx | 7 ++++--- store/pools/actions.ts | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index 8e630cb..28f69ba 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -59,7 +59,7 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary' }: PoolPairPaper APR: {apr.toLocaleString()}% - VOL: ${formatNumberWithSuffix(volume)} + VOL: ${formatNumberWithSuffix(Number(volume))} ); @@ -109,6 +109,7 @@ const styles = StyleSheet.create({ fontSize: adjustFontSizeForIOS(14, 2), lineHeight: 18.48, fontWeight: '500', + marginLeft: -6, fontFamily: 'AeonikMedium', }, @@ -127,14 +128,14 @@ const styles = StyleSheet.create({ }, basicTextVolatile: { - color: '#AF1D38', + color: '#B47818', fontSize: adjustFontSizeForIOS(11, 2), lineHeight: 13.64, fontFamily: 'AeonikRegular', }, basicTextStable: { - color: '#B47818', + color: '#156146', fontSize: adjustFontSizeForIOS(11, 2), lineHeight: 13.64, fontFamily: 'AeonikRegular', diff --git a/store/pools/actions.ts b/store/pools/actions.ts index 92d0aa9..98aad9d 100644 --- a/store/pools/actions.ts +++ b/store/pools/actions.ts @@ -20,6 +20,7 @@ export function usePoolActions() { dispatch(setTrendingPools(trendingPools)); const topGainers = await api.getPools(PoolType.gainers); + dispatch(setTopGainers(topGainers)); } catch (error: any) { // From 5a2f96fad38bfdc4ded296633a4f8aa47ce07cee Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Fri, 15 Nov 2024 02:09:51 +0100 Subject: [PATCH 32/95] chore: revert vol type conversion --- components/pool-pair-paper/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index 28f69ba..130a55c 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -59,7 +59,7 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary' }: PoolPairPaper APR: {apr.toLocaleString()}% - VOL: ${formatNumberWithSuffix(Number(volume))} + VOL: ${formatNumberWithSuffix(volume)} ); From 8bdbaa109e3d78ab2fb74290cf12a39dee7960ec Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Fri, 15 Nov 2024 02:13:37 +0100 Subject: [PATCH 33/95] change search to be trending pools --- components/search-ui/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/search-ui/index.tsx b/components/search-ui/index.tsx index e5213e2..8ee5160 100644 --- a/components/search-ui/index.tsx +++ b/components/search-ui/index.tsx @@ -17,7 +17,7 @@ const SearchUI = () => { const [showRecents, setShowRecents] = useState(true); - const hotPools = poolsState.hotPools.data.slice(0, 10); + const trendingPools = poolsState.trendingPools.data.slice(0, 10); const searchedPools = poolsState.searchedPools.data; const sections: Array> = [ @@ -45,10 +45,10 @@ const SearchUI = () => { }, { - title: 'Hot', + title: 'Trending Pools', children: ( - {hotPools.map((pool, index) => ( + {trendingPools.map((pool, index) => ( ))} From 06ee4a7519a4d752d7257fd549a7b3f763d35274 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Fri, 15 Nov 2024 02:42:46 +0100 Subject: [PATCH 34/95] chore: fix account bug --- store/smartAccount/actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/smartAccount/actions.ts b/store/smartAccount/actions.ts index 9b26f7a..f9bc82c 100644 --- a/store/smartAccount/actions.ts +++ b/store/smartAccount/actions.ts @@ -103,7 +103,7 @@ export function useSmartAccountActions() { owners: [webAuthnAccount], }); const smartAccountInfo = { - publicKey: getPublicKeyHex(passkeyResult.response.signature), + publicKey: verification.data.publicKey, credentialID: passkeyResult.id, }; From ec357e63a9d1bfa88915667610f1ff6f00c90a4c Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Fri, 15 Nov 2024 02:59:15 +0100 Subject: [PATCH 35/95] integrate add liquidity --- components/asset-selection/index.tsx | 4 +- hooks/useLiquid.ts | 7 ++- .../add/coin-selector-input.tsx | 4 +- screens/liquidity-actions/add/index.tsx | 56 ++++++++++++++++--- store/pools/actions.ts | 6 +- utils/calls.ts | 1 - 6 files changed, 61 insertions(+), 17 deletions(-) diff --git a/components/asset-selection/index.tsx b/components/asset-selection/index.tsx index 524a105..b2b2e1e 100644 --- a/components/asset-selection/index.tsx +++ b/components/asset-selection/index.tsx @@ -3,7 +3,7 @@ import { View, Text, StyleSheet, TouchableOpacity, Image, ScrollView } from 'rea import { useForm } from 'react-hook-form'; import { CheckIcon } from '@/assets/icons'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { adjustFontSizeForIOS, formatAmount } from '@/utils/helpers'; import LQDBottomSheet from '../bottom-sheet'; import LQDInput from '../input'; import useSystemFunctions from '@/hooks/useSystemFunctions'; @@ -61,7 +61,7 @@ const LQDAssetSelection = ({ close, setAsset, show, title, selectedAsset }: Asse {_asset?.symbol} - {_asset.balance.toLocaleString()} {_asset?.symbol} + {formatAmount(_asset.balance).toLocaleString()} {_asset?.symbol} diff --git a/hooks/useLiquid.ts b/hooks/useLiquid.ts index 7b40fc5..ab33d1d 100644 --- a/hooks/useLiquid.ts +++ b/hooks/useLiquid.ts @@ -14,6 +14,7 @@ import { } from './types'; import { Call } from '@/utils/types'; import { AerodromeConnectorABI } from '@/constants/abis'; +import useSystemFunctions from './useSystemFunctions'; async function handleTransaction(client: PublicClient, { hash, waitForReceipt = true }: TransactionConfig) { if (!waitForReceipt) return { hash }; @@ -28,7 +29,11 @@ async function handleTransaction(client: PublicClient, { hash, waitForReceipt = }; } -export function useLiquidity(publicClient: PublicClient, account: Address) { +export function useLiquidity(publicClient: PublicClient) { + const { smartAccountState } = useSystemFunctions(); + + const account = smartAccountState.address as Address; + const createPluginCall = useCallback( (connectorData: Hex, index: number) => { const pluginCalldata = encodePluginExecute(AERODROME_CONNECTOR, connectorData); diff --git a/screens/liquidity-actions/add/coin-selector-input.tsx b/screens/liquidity-actions/add/coin-selector-input.tsx index 3fddcc8..c6e3f79 100644 --- a/screens/liquidity-actions/add/coin-selector-input.tsx +++ b/screens/liquidity-actions/add/coin-selector-input.tsx @@ -1,7 +1,7 @@ import { useEffect, useState } from 'react'; import { View, Text, Image, TextInput, TouchableOpacity } from 'react-native'; -import { removeCommasFromNumber } from '@/utils/helpers'; +import { formatAmount, removeCommasFromNumber } from '@/utils/helpers'; import { LQDAssetSelection } from '@/components'; import { CaretDownIcon } from '@/assets/icons'; import useSystemFunctions from '@/hooks/useSystemFunctions'; @@ -60,7 +60,7 @@ const CoinSelectorInput = ({ onChange, selectedToken, value, disabled, address } {invalidAmount ? 'Not enough balance:' : 'Available:'} - {token?.balance.toLocaleString()} {token?.symbol} + {formatAmount(token?.balance).toLocaleString()} {token?.symbol} diff --git a/screens/liquidity-actions/add/index.tsx b/screens/liquidity-actions/add/index.tsx index 70aea57..9b902cd 100644 --- a/screens/liquidity-actions/add/index.tsx +++ b/screens/liquidity-actions/add/index.tsx @@ -1,23 +1,26 @@ import { useEffect, useState } from 'react'; import { View, Text, ScrollView } from 'react-native'; import Animated, { useAnimatedStyle, withTiming } from 'react-native-reanimated'; +import { publicClient } from '@/init/viem'; +import { PublicClient } from 'viem'; import { LQDButton } from '@/components'; import { removeCommasFromNumber } from '@/utils/helpers'; -import { assets } from '@/screens/withdraw/dummy'; +import { CircleAddIcon } from '@/assets/icons'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { defaultToken } from '@/store/account/types'; +import { AddLiquidityWithSwapParams, Token } from '@/hooks/types'; +import { useLiquidity } from '@/hooks/useLiquid'; import PaymentMethodSelection from './method-selection'; import CoinSelectorInput from './coin-selector-input'; -import ErrorMessage from './error'; import Info from './info'; import { styles } from './styles'; import Loading from './loading'; -import { CircleAddIcon } from '@/assets/icons'; -import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { defaultToken, TokenItem } from '@/store/account/types'; const AddLiquidity = () => { - const { accountState } = useSystemFunctions(); - const { tokens } = accountState; + const { accountState, smartAccountState } = useSystemFunctions(); + // const { addLiquidity } = useLiquidity(publicClient as PublicClient); + const [method, setMethod] = useState('liquid'); const [tokenA, setTokenA] = useState({ asset: defaultToken.data[0], @@ -31,6 +34,8 @@ const AddLiquidity = () => { const [showInfo, setShowInfo] = useState(true); const [loading, setLoading] = useState(false); + const { tokens } = accountState; + const errors: ErrorsArray = { primary: { title: `Swap ${tokenA.asset?.symbol} to ${tokenB.asset?.symbol}?`, @@ -107,8 +112,43 @@ const AddLiquidity = () => { return setTokenB({ ...tokenB, value: newValue }); }; - const onSubmit = () => { + const onSubmit = async () => { + if (!smartAccountState.address) return; + + const tokenAParams: Token = { + address: tokenA.asset?.address!, + balance: tokenA.asset?.balance!, + decimals: tokenA.asset?.decimals!, + isListed: tokenA.asset?.isListed!, + logoUrl: tokenA.asset?.logoUrl!, + symbol: tokenA.asset?.symbol!, + usdPrice: tokenA.asset?.usdPrice!, + }; + + const tokenBParams: Token = { + address: tokenB.asset?.address!, + balance: tokenB.asset?.balance!, + decimals: tokenB.asset?.decimals!, + isListed: tokenB.asset?.isListed!, + logoUrl: tokenB.asset?.logoUrl!, + symbol: tokenB.asset?.symbol!, + usdPrice: tokenB.asset?.usdPrice!, + }; + + const param: AddLiquidityWithSwapParams = { + tokenA: tokenAParams, + tokenB: tokenBParams, + amountAIn: tokenA.value, + amountBIn: tokenB.value, + deadline: BigInt(Math.floor(Date.now() / 1000) + 3600), + stable: true, + to: smartAccountState.address, + }; + setLoading(true); + + // const response = await addLiquidity(param, { waitForReceipt: true }); + console.log('Submitting liquidity request', { tokenA, tokenB }); }; diff --git a/store/pools/actions.ts b/store/pools/actions.ts index 39345eb..2633fd3 100644 --- a/store/pools/actions.ts +++ b/store/pools/actions.ts @@ -16,11 +16,11 @@ export function usePoolActions() { dispatch(setHotPools(hotPools)); - const trendingPools = await api.getPools(PoolType.trending); - dispatch(setTrendingPools(trendingPools)); - const topGainers = await api.getPools(PoolType.gainers); dispatch(setTopGainers(topGainers)); + + const trendingPools = await api.getPools(PoolType.trending); + dispatch(setTrendingPools(trendingPools)); } catch (error: any) { // } finally { diff --git a/utils/calls.ts b/utils/calls.ts index fe1e4cb..4970b5b 100644 --- a/utils/calls.ts +++ b/utils/calls.ts @@ -4,7 +4,6 @@ import { Call } from './types'; import { entryPoint06Address } from 'viem/_types/account-abstraction'; import { paymasterClient, bundlerClient } from '@/init/viem'; import { useSmartAccountActions } from '@/store/smartAccount/actions'; -import { smartAccountAbi } from 'viem/_types/constants/abis'; import { SmartWalletABI } from '@/constants/abis'; // Main function to execute calls From 30a5d070564e0583f12b1890d281663b38e98729 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Fri, 15 Nov 2024 08:07:41 +0100 Subject: [PATCH 36/95] chore: add total fee usd to pool stats --- screens/pool-detail/index.tsx | 5 +++-- screens/pool-detail/stats.tsx | 8 ++++---- screens/pool-detail/types.ts | 6 ++++-- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/screens/pool-detail/index.tsx b/screens/pool-detail/index.tsx index db28967..e7a6bd2 100644 --- a/screens/pool-detail/index.tsx +++ b/screens/pool-detail/index.tsx @@ -34,12 +34,13 @@ const PoolDetail = ({ poolId }: PoolID) => { tokenBBalance: getTokenBalance(pool?.token1.address), tokenBUSDValue: getTokenUSDValue(pool?.token1.address), condition: pool?.isStable ? 'stable' : 'volatile', - fee: 0, + fee: Number(pool?.totalFeesUSD).toFixed(2), tokenATitle: title ? title[0] : '', tokenBTitle: title ? title[1] : '', symbol: pool?.symbol.split('-')[1].replace('/', ' / ') || '', volume: Number(pool?.totalVolumeUSD || 0), tvl: Number(pool?.tvl || 0), + tx: Number(pool?.txCount), }; if (!pool) return null; @@ -59,7 +60,7 @@ const PoolDetail = ({ poolId }: PoolID) => { - + ); diff --git a/screens/pool-detail/stats.tsx b/screens/pool-detail/stats.tsx index 366faa8..23d8353 100644 --- a/screens/pool-detail/stats.tsx +++ b/screens/pool-detail/stats.tsx @@ -3,10 +3,10 @@ import { View, Text, StyleSheet } from 'react-native'; import { adjustFontSizeForIOS, formatNumberWithSuffix } from '@/utils/helpers'; import { Chart2AltIcon, CoinsLGIcon, MoneyTickIcon, SwapHorizontalIcon } from '@/assets/icons'; -const PoolStats = ({ volume, fee, tvl }: Stat) => { +const PoolStats = ({ volume, fee, tvl, tx }: Stat) => { const stats = [ { - title: 'Volume', + title: 'Volume (24hrs)', value: `$${formatNumberWithSuffix(volume)}`, icon: , }, @@ -17,12 +17,12 @@ const PoolStats = ({ volume, fee, tvl }: Stat) => { }, { title: 'Fees', - value: `$${formatNumberWithSuffix(fee)}`, + value: `$${formatNumberWithSuffix(Number(fee))}`, icon: , }, { title: 'Transactions', - value: `${(194).toLocaleString()} TX`, + value: `${tx.toLocaleString()} TX`, icon: , }, ]; diff --git a/screens/pool-detail/types.ts b/screens/pool-detail/types.ts index 63dc3cf..db8322d 100644 --- a/screens/pool-detail/types.ts +++ b/screens/pool-detail/types.ts @@ -12,16 +12,18 @@ interface PoolDetails { tokenAUSDValue: number; tokenBUSDValue: number; condition: 'stable' | 'volatile'; - fee: number; + fee: number | string; symbol: string; volume: number; tvl: number; + tx: number; } interface Stat { - fee: number; + fee: number | string; volume: number; tvl: number; + tx: number; } type Metric = 'tvl' | 'volume' | 'fees'; From 77fe1acc658f6b056afa2e6bafe3cc86d160c278 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Fri, 15 Nov 2024 09:03:01 +0100 Subject: [PATCH 37/95] chore: fix fee display data --- components/pool-pair-card/index.tsx | 4 +-- components/pool-pair-paper/index.tsx | 4 +-- screens/pool-detail/header.tsx | 4 +-- screens/pool-detail/index.tsx | 6 ++++ screens/pool-detail/pool-liquidity.tsx | 28 +++++++++--------- screens/pool-detail/types.ts | 5 ++++ store/pools/types.ts | 3 ++ utils/helpers.ts | 40 +++++++++++++++++++------- 8 files changed, 64 insertions(+), 30 deletions(-) diff --git a/components/pool-pair-card/index.tsx b/components/pool-pair-card/index.tsx index 5b9c27c..5bbfe9b 100644 --- a/components/pool-pair-card/index.tsx +++ b/components/pool-pair-card/index.tsx @@ -26,8 +26,8 @@ const LQDPoolPairCard = ({ pool, navigationVariant = 'primary' }: PoolPairCard) const primaryIconURL = pool.token0.logoUrl; const secondaryIconURL = pool.token1.logoUrl; const symbol = pool.symbol.split('-')[1].replace('/', ' / '); - const increased = pool.isStable; - const change = 2.3; + const increased = true; + const change = pool.apr; return ( diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index 130a55c..b325393 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -1,7 +1,7 @@ import { StyleSheet, View, Text, Image, TouchableOpacity } from 'react-native'; import { Href } from 'expo-router'; -import { adjustFontSizeForIOS, formatAmount, formatNumberWithSuffix } from '@/utils/helpers'; +import { adjustFontSizeForIOS, formatAmount, formatNumberWithSuffix, roundUp } from '@/utils/helpers'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { setSelectedPool } from '@/store/pools'; import { PoolPairPaper } from './types'; @@ -25,7 +25,7 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary' }: PoolPairPaper const secondaryIconURL = pool.token1.logoUrl; const symbol = pool.symbol.split('-')[1].replace('/', ' / '); const apr = formatAmount(pool.apr, 2); - const fees = '0'; + const fees = roundUp(Number(pool.poolFee)); const volume = formatNumberWithSuffix(vol); const tvl = pool.tvl; const isStable = pool.isStable; diff --git a/screens/pool-detail/header.tsx b/screens/pool-detail/header.tsx index 0065ce0..1b4e64a 100644 --- a/screens/pool-detail/header.tsx +++ b/screens/pool-detail/header.tsx @@ -3,7 +3,7 @@ import { View, Text, StyleSheet, Image, TouchableOpacity } from 'react-native'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import { BoxSearchIcon, SendIcon } from '@/assets/icons'; -const Header = ({ condition, fee, tokenAIconURL, symbol, tokenBIconURL }: PoolDetails) => { +const Header = ({ condition, poolFee, tokenAIconURL, symbol, tokenBIconURL }: PoolDetails) => { const flagColors = { stable: '#B47818', volatile: '#AF1D38', @@ -41,7 +41,7 @@ const Header = ({ condition, fee, tokenAIconURL, symbol, tokenBIconURL }: PoolDe - {fee}% Fee + {poolFee}% Fee diff --git a/screens/pool-detail/index.tsx b/screens/pool-detail/index.tsx index e7a6bd2..f8c34d5 100644 --- a/screens/pool-detail/index.tsx +++ b/screens/pool-detail/index.tsx @@ -7,6 +7,7 @@ import PoolLiquidity from './pool-liquidity'; import PoolStats from './stats'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { Address, formatEther } from 'viem'; +import { roundUp } from '@/utils/helpers'; const PoolDetail = ({ poolId }: PoolID) => { const { poolsState, accountState } = useSystemFunctions(); @@ -35,12 +36,17 @@ const PoolDetail = ({ poolId }: PoolID) => { tokenBUSDValue: getTokenUSDValue(pool?.token1.address), condition: pool?.isStable ? 'stable' : 'volatile', fee: Number(pool?.totalFeesUSD).toFixed(2), + poolFee: roundUp(Number(pool?.poolFee)), tokenATitle: title ? title[0] : '', tokenBTitle: title ? title[1] : '', symbol: pool?.symbol.split('-')[1].replace('/', ' / ') || '', volume: Number(pool?.totalVolumeUSD || 0), tvl: Number(pool?.tvl || 0), tx: Number(pool?.txCount), + reserveA: Number(pool?.token0.reserve), + reserveB: Number(pool?.token1.reserve), + reserveAUSD: Number(pool?.token0.reserveUSD), + reserveBUSD: Number(pool?.token1.reserveUSD), }; if (!pool) return null; diff --git a/screens/pool-detail/pool-liquidity.tsx b/screens/pool-detail/pool-liquidity.tsx index 50bb7db..7ceea20 100644 --- a/screens/pool-detail/pool-liquidity.tsx +++ b/screens/pool-detail/pool-liquidity.tsx @@ -3,17 +3,17 @@ import { View, Text, StyleSheet, Image } from 'react-native'; import Animated, { useAnimatedStyle, withTiming } from 'react-native-reanimated'; import ImageColors from 'react-native-image-colors'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { adjustFontSizeForIOS, formatNumberWithSuffix } from '@/utils/helpers'; const PoolLiquidity = ({ tokenAIconURL, - tokenABalance, + reserveA, tokenATitle, - tokenAUSDValue, - tokenBBalance, + reserveAUSD, + reserveB, tokenBIconURL, tokenBTitle, - tokenBUSDValue, + reserveBUSD, }: PoolDetails) => { const [tokenAColor, settokenAColor] = useState('#375DFB'); const [tokenBColor, settokenBColor] = useState('#F2AE40'); @@ -22,15 +22,15 @@ const PoolLiquidity = ({ const values = [ { iconURL: tokenAIconURL, - tokenBalance: `${tokenABalance.toLocaleString()}`, + tokenBalance: `${formatNumberWithSuffix(reserveA)}`, title: tokenATitle, - tokenUSDValue: `${tokenAUSDValue.toLocaleString()}`, + tokenUSDValue: `${formatNumberWithSuffix(reserveAUSD)}`, }, { iconURL: tokenBIconURL, - tokenBalance: `${tokenBBalance.toLocaleString()}`, + tokenBalance: `${formatNumberWithSuffix(reserveB)}`, title: tokenBTitle, - tokenUSDValue: `${tokenBUSDValue.toLocaleString()}`, + tokenUSDValue: `${formatNumberWithSuffix(reserveBUSD)}`, }, ]; @@ -58,9 +58,9 @@ const PoolLiquidity = ({ extractColors(); - const totalBalance = tokenABalance + tokenBBalance; - settokenAProgress(tokenABalance / totalBalance); - }, [tokenAIconURL, tokenBIconURL, tokenABalance, tokenBBalance]); + const totalBalance = reserveAUSD! + reserveBUSD!; + settokenAProgress(reserveAUSD! / totalBalance); + }, [tokenAIconURL, tokenBIconURL, reserveA, reserveB]); return ( @@ -145,7 +145,7 @@ const styles = StyleSheet.create({ tokenAText: { color: '#0A0D14', - fontSize: adjustFontSizeForIOS(16, 2), + fontSize: adjustFontSizeForIOS(14, 2), lineHeight: 19.84, fontWeight: '500', fontFamily: 'AeonikMedium', @@ -158,7 +158,7 @@ const styles = StyleSheet.create({ tokenBText: { color: '#525866', - fontSize: adjustFontSizeForIOS(14, 2), + fontSize: adjustFontSizeForIOS(10, 2), lineHeight: 18.48, textAlign: 'center', }, diff --git a/screens/pool-detail/types.ts b/screens/pool-detail/types.ts index db8322d..10bc13b 100644 --- a/screens/pool-detail/types.ts +++ b/screens/pool-detail/types.ts @@ -17,6 +17,11 @@ interface PoolDetails { volume: number; tvl: number; tx: number; + reserveA: number; + reserveB: number; + reserveAUSD: number; + reserveBUSD: number; + poolFee: number | string; } interface Stat { diff --git a/store/pools/types.ts b/store/pools/types.ts index b4e0db6..e0f230b 100644 --- a/store/pools/types.ts +++ b/store/pools/types.ts @@ -26,6 +26,7 @@ export type Pool = { tvl: string; totalVolumeUSD: string; totalFeesUSD: string; + poolFee: string; txCount: number | string; isStable: boolean; factory: Address; @@ -34,6 +35,7 @@ export type Pool = { logoUrl: string; price: string; reserve: string; + reserveUSD: string; volume: string; }; token1: { @@ -41,6 +43,7 @@ export type Pool = { logoUrl: string; price: string; reserve: string; + reserveUSD: string; volume: string; }; }; diff --git a/utils/helpers.ts b/utils/helpers.ts index b4af4fe..b95d545 100644 --- a/utils/helpers.ts +++ b/utils/helpers.ts @@ -9,24 +9,33 @@ const formatAmount = (amount?: number | string, decimals = 4): number => { return truncatedValue; }; -const formatNumberWithSuffix = (num: number): string => { +const formatNumberWithSuffix = (num: number | string | undefined): string => { + // Handle undefined, null, or invalid input + if (!num) return '0'; + + // Convert to number if it's a string or handle scientific notation + const numValue = typeof num === 'string' ? Number(num) : num; + + // Check if valid number + if (isNaN(numValue)) return '0'; + const formatWithPrecision = (value: number) => { return value % 1 === 0 ? value.toFixed(0) : value.toFixed(2).replace(/\.?0+$/, ''); }; - if (num >= 1e12) { - return formatWithPrecision(num / 1e12) + 't'; + if (numValue >= 1e12) { + return formatWithPrecision(numValue / 1e12) + 't'; } - if (num >= 1e9) { - return formatWithPrecision(num / 1e9) + 'b'; + if (numValue >= 1e9) { + return formatWithPrecision(numValue / 1e9) + 'b'; } - if (num >= 1e6) { - return formatWithPrecision(num / 1e6) + 'm'; + if (numValue >= 1e6) { + return formatWithPrecision(numValue / 1e6) + 'm'; } - if (num >= 1e3) { - return formatWithPrecision(num / 1e3) + 'k'; + if (numValue >= 1e3) { + return formatWithPrecision(numValue / 1e3) + 'k'; } - return num?.toString(); + return numValue.toFixed(2).toString(); }; const truncateDecimal = (amount?: number | string, decimals = 4): number => { @@ -88,7 +97,17 @@ const truncate = (text: string, startChars = 5, endChars = 5) => { } return `${text.substring(0, startChars)}...${text.substring(text.length - endChars)}`; }; +const roundUp = (num: number, decimals: number = 1): number => { + if (num >= 1) { + return Math.ceil(num); + } + + if (num <= 0) return 0; + // For decimals, find next significant value + if (num < 0.5) return 0.3; + return 1; +}; export { formatNumberWithSuffix, truncateDecimal, @@ -103,4 +122,5 @@ export { formatAmount, emailIsValid, truncate, + roundUp, }; From 831a55ae65f7eb4cdee262d6a1aded0dce47e422 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Fri, 15 Nov 2024 09:15:41 +0100 Subject: [PATCH 38/95] chore: updates --- screens/liquidity-actions/add/index.tsx | 11 +---------- screens/pool-detail/index.tsx | 1 + screens/pool-detail/types.ts | 1 + 3 files changed, 3 insertions(+), 10 deletions(-) diff --git a/screens/liquidity-actions/add/index.tsx b/screens/liquidity-actions/add/index.tsx index 9b902cd..713fbd9 100644 --- a/screens/liquidity-actions/add/index.tsx +++ b/screens/liquidity-actions/add/index.tsx @@ -64,16 +64,7 @@ const AddLiquidity = () => { title: `1 ${tokenA.asset?.symbol} to ${tokenB.asset?.symbol}`, value: `${0.805} ${tokenB.asset?.symbol}`, }, - { - icon: 'secondary', - title: "You'll pay:", - value: `$${6000}`, - }, - { - icon: 'secondary', - title: "You'll get:", - value: `${6000} ${tokenA.asset?.symbol}`, - }, + { icon: 'tertiary', title: 'Fees', diff --git a/screens/pool-detail/index.tsx b/screens/pool-detail/index.tsx index f8c34d5..af2e8fe 100644 --- a/screens/pool-detail/index.tsx +++ b/screens/pool-detail/index.tsx @@ -47,6 +47,7 @@ const PoolDetail = ({ poolId }: PoolID) => { reserveB: Number(pool?.token1.reserve), reserveAUSD: Number(pool?.token0.reserveUSD), reserveBUSD: Number(pool?.token1.reserveUSD), + poolAddress: pool?.address!, }; if (!pool) return null; diff --git a/screens/pool-detail/types.ts b/screens/pool-detail/types.ts index 10bc13b..dcbc293 100644 --- a/screens/pool-detail/types.ts +++ b/screens/pool-detail/types.ts @@ -22,6 +22,7 @@ interface PoolDetails { reserveAUSD: number; reserveBUSD: number; poolFee: number | string; + poolAddress: `0x${string}`; } interface Stat { From 91155a9e3ebf943b3ae9a00913033e57c290cfdb Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Fri, 15 Nov 2024 11:58:23 +0100 Subject: [PATCH 39/95] update ui --- components/pool-pair-paper/index.tsx | 2 +- screens/pool-detail/header.tsx | 4 ++-- utils/helpers.ts | 3 --- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index b325393..0578bca 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -59,7 +59,7 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary' }: PoolPairPaper APR: {apr.toLocaleString()}% - VOL: ${formatNumberWithSuffix(volume)} + VOL: ${volume} ); diff --git a/screens/pool-detail/header.tsx b/screens/pool-detail/header.tsx index 1b4e64a..965b304 100644 --- a/screens/pool-detail/header.tsx +++ b/screens/pool-detail/header.tsx @@ -5,8 +5,8 @@ import { BoxSearchIcon, SendIcon } from '@/assets/icons'; const Header = ({ condition, poolFee, tokenAIconURL, symbol, tokenBIconURL }: PoolDetails) => { const flagColors = { - stable: '#B47818', - volatile: '#AF1D38', + stable: '#156146', + volatile: '#B47818', }; const actions = [ diff --git a/utils/helpers.ts b/utils/helpers.ts index b95d545..de30070 100644 --- a/utils/helpers.ts +++ b/utils/helpers.ts @@ -10,13 +10,10 @@ const formatAmount = (amount?: number | string, decimals = 4): number => { }; const formatNumberWithSuffix = (num: number | string | undefined): string => { - // Handle undefined, null, or invalid input if (!num) return '0'; - // Convert to number if it's a string or handle scientific notation const numValue = typeof num === 'string' ? Number(num) : num; - // Check if valid number if (isNaN(numValue)) return '0'; const formatWithPrecision = (value: number) => { From 0ab3460c6ec21eb3f15c56192a1298ed4dc47cf0 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Fri, 15 Nov 2024 12:01:01 +0100 Subject: [PATCH 40/95] remove logs --- init/api.ts | 1 - screens/home/index.tsx | 5 ----- store/pools/actions.ts | 2 -- store/smartAccount/actions.ts | 6 ------ store/smartAccount/create.ts | 1 - 5 files changed, 15 deletions(-) diff --git a/init/api.ts b/init/api.ts index fe00f36..d7f9896 100644 --- a/init/api.ts +++ b/init/api.ts @@ -24,7 +24,6 @@ class LiquidAPI { } private async fetchWithErrorHandling(url: string, options: RequestInit) { - console.log('fetchWithErrorHandling', url); const response = await fetch(url, options); if (!response.ok || response.status !== 200) { diff --git a/screens/home/index.tsx b/screens/home/index.tsx index 733a3b1..7804b44 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -110,13 +110,8 @@ const Home = () => { const signature = await session.signMessage({ message: JSON.stringify(messageToSign) }); - console.log('Signature successful:', signature); - Alert.alert('Signing Successful', 'Signature: ' + signature); } catch (error: any) { - console.log('Error signing message:', error); - console.log('Error cause:', error.cause); - Alert.alert('Signing Failed', error.message + '\n' + error.cause); } }; diff --git a/store/pools/actions.ts b/store/pools/actions.ts index 4dc41e2..01b1a48 100644 --- a/store/pools/actions.ts +++ b/store/pools/actions.ts @@ -65,8 +65,6 @@ export function usePoolActions() { dispatch(setRefreshing(true)); const pools = await api.getPools(PoolType.trending); - console.log(pools, 'pools trending'); - return dispatch(setTrendingPools(pools)); } diff --git a/store/smartAccount/actions.ts b/store/smartAccount/actions.ts index f9bc82c..85f2be2 100644 --- a/store/smartAccount/actions.ts +++ b/store/smartAccount/actions.ts @@ -84,12 +84,6 @@ export function useSmartAccountActions() { const verification = await api.verifyAuthentication(userName, authenticationResponse); - console.log(verification, 'verif data'); - - console.log(verification.data.publicKey, 'base 64'); - - console.log(getPublicKeyHex(verification.data.publicKey), 'pub key hex'); - const webAuthnAccount = toWebAuthnAccount({ credential: { id: passkeyResult.id, diff --git a/store/smartAccount/create.ts b/store/smartAccount/create.ts index 54f8c69..466db11 100644 --- a/store/smartAccount/create.ts +++ b/store/smartAccount/create.ts @@ -27,7 +27,6 @@ export async function createSmartAccount(registrationOptions: PublicKeyCredentia if (!credential) { throw new FailedToCreatePasskeyCredentialError(); } - console.log(credential, 'credential'); const credentialId = credential.id; const { attestationObject, clientDataJSON, publicKey } = credential.response; From 74d9c0bbc1fabcfb6b95660e841747c284c79797 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Sat, 16 Nov 2024 12:33:50 +0100 Subject: [PATCH 41/95] add input format functionality --- screens/liquidity-actions/add/index.tsx | 14 ++++-------- utils/helpers.ts | 29 +++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 10 deletions(-) diff --git a/screens/liquidity-actions/add/index.tsx b/screens/liquidity-actions/add/index.tsx index 713fbd9..b80ee0f 100644 --- a/screens/liquidity-actions/add/index.tsx +++ b/screens/liquidity-actions/add/index.tsx @@ -5,7 +5,7 @@ import { publicClient } from '@/init/viem'; import { PublicClient } from 'viem'; import { LQDButton } from '@/components'; -import { removeCommasFromNumber } from '@/utils/helpers'; +import { formatInputAmount, removeCommasFromNumber } from '@/utils/helpers'; import { CircleAddIcon } from '@/assets/icons'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { defaultToken } from '@/store/account/types'; @@ -88,19 +88,13 @@ const AddLiquidity = () => { }; const handleValueChange = (value: string, token: 'tokenA' | 'tokenB') => { - const sanitizedValue = removeCommasFromNumber(value); - const numberValue = parseFloat(sanitizedValue); - let newValue = numberValue.toLocaleString(undefined, { - maximumFractionDigits: 5, - }); - - if (isNaN(numberValue)) newValue = ''; + const formatedValue = formatInputAmount(value); if (token === 'tokenA') { - return setTokenA({ ...tokenA, value: newValue }); + return setTokenA({ ...tokenA, value: formatedValue }); } - return setTokenB({ ...tokenB, value: newValue }); + return setTokenB({ ...tokenB, value: formatedValue }); }; const onSubmit = async () => { diff --git a/utils/helpers.ts b/utils/helpers.ts index de30070..78ea348 100644 --- a/utils/helpers.ts +++ b/utils/helpers.ts @@ -94,6 +94,7 @@ const truncate = (text: string, startChars = 5, endChars = 5) => { } return `${text.substring(0, startChars)}...${text.substring(text.length - endChars)}`; }; + const roundUp = (num: number, decimals: number = 1): number => { if (num >= 1) { return Math.ceil(num); @@ -105,6 +106,33 @@ const roundUp = (num: number, decimals: number = 1): number => { if (num < 0.5) return 0.3; return 1; }; + +const formatInputAmount = (value: string): string => { + let newValue = ''; + const valueWithoutComma = value.replace(/,/g, ''); + + if (valueWithoutComma.length === 0) { + newValue = ''; + } else { + // Check if the input is a valid number (including decimals) + const isMatch = valueWithoutComma.match(/^(\d+\.?\d*|\.\d+)$/); + + if (!isMatch) return; + + if (isNaN(Number(valueWithoutComma))) return; + + // Format the number with local thousand separators + // Temporarily remove the decimal part to format the integer part + const parts = valueWithoutComma.split('.'); + const integerFormatted = parseInt(parts[0]).toLocaleString(); + + // Reconstruct the number including the decimal part if it exists + newValue = parts.length > 1 ? `${integerFormatted}.${parts[1]}` : integerFormatted; + } + + return newValue; +}; + export { formatNumberWithSuffix, truncateDecimal, @@ -120,4 +148,5 @@ export { emailIsValid, truncate, roundUp, + formatInputAmount, }; From 743d181a1da38fcb7eafaddddf49c4ef057c86c9 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Sat, 16 Nov 2024 14:47:39 +0100 Subject: [PATCH 42/95] chore: fix account abstraction types --- screens/liquidity-actions/add/index.tsx | 5 +++-- utils/calls.ts | 3 ++- utils/wallet.ts | 6 +++--- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/screens/liquidity-actions/add/index.tsx b/screens/liquidity-actions/add/index.tsx index b80ee0f..1843223 100644 --- a/screens/liquidity-actions/add/index.tsx +++ b/screens/liquidity-actions/add/index.tsx @@ -19,7 +19,7 @@ import Loading from './loading'; const AddLiquidity = () => { const { accountState, smartAccountState } = useSystemFunctions(); - // const { addLiquidity } = useLiquidity(publicClient as PublicClient); + const { addLiquidity } = useLiquidity(publicClient as PublicClient); const [method, setMethod] = useState('liquid'); const [tokenA, setTokenA] = useState({ @@ -132,7 +132,8 @@ const AddLiquidity = () => { setLoading(true); - // const response = await addLiquidity(param, { waitForReceipt: true }); + const response = await addLiquidity(param, { waitForReceipt: true }); + console.log(response, 'add liquidity response'); console.log('Submitting liquidity request', { tokenA, tokenB }); }; diff --git a/utils/calls.ts b/utils/calls.ts index 4970b5b..f2ba460 100644 --- a/utils/calls.ts +++ b/utils/calls.ts @@ -1,10 +1,11 @@ import { Address, encodeFunctionData, Hex } from 'viem'; import { buildUserOp, getPaymasterData, getUserOpHash } from './wallet'; import { Call } from './types'; -import { entryPoint06Address } from 'viem/_types/account-abstraction'; +import { entryPoint06Address } from 'viem/account-abstraction'; import { paymasterClient, bundlerClient } from '@/init/viem'; import { useSmartAccountActions } from '@/store/smartAccount/actions'; import { SmartWalletABI } from '@/constants/abis'; +import { ENTRYPOINT_V06_ADDRESS } from '@/constants/addresses'; // Main function to execute calls export async function makeCalls({ calls, account }: { calls: Call[]; account: Address }) { diff --git a/utils/wallet.ts b/utils/wallet.ts index bb43950..b67e624 100644 --- a/utils/wallet.ts +++ b/utils/wallet.ts @@ -1,8 +1,8 @@ import { EntryPointABI, SmartWalletABI, SmartWalletFactoryABI } from '@/constants/abis'; -import { ACCOUNT_FACTORY_ADDRESS } from '@/constants/addresses'; +import { ACCOUNT_FACTORY_ADDRESS, ENTRYPOINT_V06_ADDRESS } from '@/constants/addresses'; import { estimateUserOperationGas, UserOperation, BundlerClient } from 'permissionless'; import { Address, Chain, encodeAbiParameters, encodeFunctionData, Hex, keccak256, PublicClient, Transport } from 'viem'; -import { entryPoint06Abi, entryPoint06Address, PaymasterClient } from 'viem/_types/account-abstraction'; +import { entryPoint06Abi, entryPoint06Address, PaymasterClient } from 'viem/account-abstraction'; import { estimateFeesPerGas, getBytecode, readContract } from 'viem/actions'; import { Call, PaymasterResult } from './types'; @@ -36,7 +36,7 @@ export async function buildUserOp( const callData = buildUserOperationCalldata({ calls }); // Get the smart wallet's `nonce` by calling the `getNonce` method on the entrypoint contract const nonce = await readContract(client, { - address: entryPoint06Address, + address: ENTRYPOINT_V06_ADDRESS, abi: entryPoint06Abi, functionName: 'getNonce', args: [smartWalletAddress, 0n], From 508eb9ef2e54410b061e90a97aa276fd55e5d9ac Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Sat, 16 Nov 2024 15:24:49 +0100 Subject: [PATCH 43/95] update add liquidity screen implementations --- components/pool-pair-paper/index.tsx | 23 +++- components/pool-pair-paper/types.ts | 1 + init/api.ts | 2 +- init/types.ts | 10 +- .../add/coin-selector-input.tsx | 2 +- screens/liquidity-actions/add/index.tsx | 109 +++++++++++++----- .../liquidity-actions/add/pool-selector.tsx | 49 ++++++++ screens/liquidity-actions/add/styles.ts | 6 +- screens/liquidity-actions/add/types.ts | 7 +- store/pools/actions.ts | 14 ++- 10 files changed, 180 insertions(+), 43 deletions(-) create mode 100644 screens/liquidity-actions/add/pool-selector.tsx diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index 0578bca..3a0632b 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -6,7 +6,23 @@ import useSystemFunctions from '@/hooks/useSystemFunctions'; import { setSelectedPool } from '@/store/pools'; import { PoolPairPaper } from './types'; -const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary' }: PoolPairPaper) => { +const formatSymbol = (symbol: string, showFullSymbol?: boolean) => { + if (!showFullSymbol) { + return symbol.split('-')[1].replace('/', ' / '); + } + + if (symbol.toLowerCase().includes('volatile')) { + return `vAMM - ${symbol.split('-')[1].replace('/', ' / ')}`; + } + + if (symbol.toLowerCase().includes('stable')) { + return `sAMM - ${symbol.split('-')[1].replace('/', ' / ')}`; + } + + return symbol; +}; + +const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol }: PoolPairPaper) => { const { router, dispatch } = useSystemFunctions(); const paths = { @@ -23,9 +39,9 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary' }: PoolPairPaper const primaryIconURL = pool.token0.logoUrl; const secondaryIconURL = pool.token1.logoUrl; - const symbol = pool.symbol.split('-')[1].replace('/', ' / '); + const symbol = formatSymbol(pool.symbol, showFullSymbol); const apr = formatAmount(pool.apr, 2); - const fees = roundUp(Number(pool.poolFee)); + const fees = Number(pool.poolFee) > 1000 ? formatNumberWithSuffix(pool.poolFee) : roundUp(Number(pool.poolFee)); const volume = formatNumberWithSuffix(vol); const tvl = pool.tvl; const isStable = pool.isStable; @@ -80,6 +96,7 @@ const styles = StyleSheet.create({ alignSelf: 'stretch', alignItems: 'center', gap: 10 + 6, + maxWidth: '70%', }, iconContainer: { diff --git a/components/pool-pair-paper/types.ts b/components/pool-pair-paper/types.ts index 8430a2f..ccf6975 100644 --- a/components/pool-pair-paper/types.ts +++ b/components/pool-pair-paper/types.ts @@ -3,4 +3,5 @@ import { Pool } from '@/store/pools/types'; export interface PoolPairPaper { pool: Pool; navigationVariant?: 'primary' | 'secondary'; + showFullSymbol?: boolean; } diff --git a/init/api.ts b/init/api.ts index d7f9896..db1cd7e 100644 --- a/init/api.ts +++ b/init/api.ts @@ -84,7 +84,7 @@ class LiquidAPI { } async getPools(type: PoolType, query?: string): Promise { - return this.fetchWithErrorHandling(`${this.apiBaseUrl}/pools/${type}${query || '?page=0'}`, { + return this.fetchWithErrorHandling(`${this.apiBaseUrl}/pools${type}${query || ''}`, { method: 'GET', headers: { 'Content-Type': 'application/json', diff --git a/init/types.ts b/init/types.ts index 8e2bc58..a7ea4dc 100644 --- a/init/types.ts +++ b/init/types.ts @@ -24,11 +24,11 @@ export type PasskeyRegistrationResult = { }; export enum PoolType { - v2 = 'v2', - hot = 'hot', - trending = 'trending', - gainers = 'gainers', - search = 'search', + v2 = '', + hot = '/hot', + trending = '/trending', + gainers = '/gainers', + search = '/search', } export type SmartAccount = ToCoinbaseSmartAccountReturnType; diff --git a/screens/liquidity-actions/add/coin-selector-input.tsx b/screens/liquidity-actions/add/coin-selector-input.tsx index c6e3f79..768e9ce 100644 --- a/screens/liquidity-actions/add/coin-selector-input.tsx +++ b/screens/liquidity-actions/add/coin-selector-input.tsx @@ -29,7 +29,7 @@ const CoinSelectorInput = ({ onChange, selectedToken, value, disabled, address } const initialToken = tokens?.data.find((t) => t.address === address) || tokens?.data[0]; setToken(initialToken); }, - [tokens] + [tokens, address] ); return ( diff --git a/screens/liquidity-actions/add/index.tsx b/screens/liquidity-actions/add/index.tsx index b80ee0f..77b95cf 100644 --- a/screens/liquidity-actions/add/index.tsx +++ b/screens/liquidity-actions/add/index.tsx @@ -1,5 +1,5 @@ -import { useEffect, useState } from 'react'; -import { View, Text, ScrollView } from 'react-native'; +import { useCallback, useEffect, useMemo, useState } from 'react'; +import { View, Text, ScrollView, SafeAreaView } from 'react-native'; import Animated, { useAnimatedStyle, withTiming } from 'react-native-reanimated'; import { publicClient } from '@/init/viem'; import { PublicClient } from 'viem'; @@ -16,32 +16,38 @@ import CoinSelectorInput from './coin-selector-input'; import Info from './info'; import { styles } from './styles'; import Loading from './loading'; +import ErrorMessage from './error'; +import SelectPool from './pool-selector'; +import { Pool } from '@/store/pools/types'; const AddLiquidity = () => { - const { accountState, smartAccountState } = useSystemFunctions(); + const { accountState, smartAccountState, poolsState } = useSystemFunctions(); // const { addLiquidity } = useLiquidity(publicClient as PublicClient); const [method, setMethod] = useState('liquid'); + const [defaultTokens, setDefaultTokens] = useState<{ tokenA: TokenItem; tokenB: TokenItem }>(); + + const [pools, setPools] = useState([]); const [tokenA, setTokenA] = useState({ - asset: defaultToken.data[0], + asset: undefined, value: '', }); const [tokenB, setTokenB] = useState({ - asset: defaultToken.data[1], + asset: undefined, value: '', }); const [error, setError] = useState(undefined); - const [showInfo, setShowInfo] = useState(true); const [loading, setLoading] = useState(false); const { tokens } = accountState; + const { selectedPool } = poolsState; const errors: ErrorsArray = { - primary: { + insufficientBalance: { title: `Swap ${tokenA.asset?.symbol} to ${tokenB.asset?.symbol}?`, description: ( - You don’t have enough cbBTC. We’d balance the pool by swapping half of the{' '} + You don’t have enough value. We’d balance the pool by swapping half of the{' '} {tokenA?.asset?.symbol} value to{' '} {tokenB?.asset?.symbol}. @@ -52,10 +58,15 @@ const AddLiquidity = () => { }, }, - secondary: { + insufficientLiquidBalance: { title: 'Proceed with debit card?', description: 'You don’t have enough balances in your Liquid account, you can proceed to pay with your debit card', }, + + noMatchingPools: { + title: 'No matching pools', + description: `There's no available pool for ${tokenA.asset?.symbol} / ${tokenB.asset?.symbol}. Try selecting ${tokenB.asset?.symbol} as the first token and ${tokenA.asset?.symbol} as the second.`, + }, }; const infos: Array = [ @@ -64,7 +75,6 @@ const AddLiquidity = () => { title: `1 ${tokenA.asset?.symbol} to ${tokenB.asset?.symbol}`, value: `${0.805} ${tokenB.asset?.symbol}`, }, - { icon: 'tertiary', title: 'Fees', @@ -78,7 +88,11 @@ const AddLiquidity = () => { opacity: withTiming(loading ? 1 : 0, { duration: 500 }), })); - const handleTokenChange = (address: string, token: 'tokenA' | 'tokenB') => { + const didUserChangeToken = !defaultToken + ? false + : tokenA.asset?.address !== defaultTokens?.tokenA?.address || tokenB.asset?.address !== defaultTokens?.tokenB?.address; + + const handleTokenChange = async (address: string, token: 'tokenA' | 'tokenB') => { const asset = tokens?.data?.find((asset) => asset.address === address); if (!asset) return; @@ -132,31 +146,72 @@ const AddLiquidity = () => { setLoading(true); - // const response = await addLiquidity(param, { waitForReceipt: true }); + if (method === 'liquid') { + // const response = await addLiquidity(param, { waitForReceipt: true }); + + console.log('Submitting liquidity request', { tokenA, tokenB }); + } - console.log('Submitting liquidity request', { tokenA, tokenB }); + if (method === 'coinbase') { + console.log('Submitting coinbase request', { tokenA, tokenB }); + } + + if (method === 'debit') { + console.log('Submitting debit request', { tokenA, tokenB }); + } }; useEffect( function initializeTokenData() { - if (!tokens.data) return; + if (!tokens.data || !selectedPool) return; + + const tokenAData = tokens.data.find((token) => token.address === selectedPool.token0.address); + const tokenBData = tokens.data.find((token) => token.address === selectedPool.token1.address); + + if (!tokenAData || !tokenBData) return; + + setTokenA({ ...tokenA, asset: { ...tokenAData } }); + setTokenB({ ...tokenB, asset: { ...tokenBData } }); - const data = tokens.data; + if (!defaultTokens) setDefaultTokens({ tokenA: { ...tokenAData }, tokenB: { ...tokenBData } }); + }, + [tokens, selectedPool] + ); + + useEffect( + function listenForErrors() { + const tokenAAmountInIsInvalid = parseFloat(removeCommasFromNumber(tokenA.value)) > Number(tokenA.asset?.balance)!; + const tokenBAmountInIsInvalid = parseFloat(removeCommasFromNumber(tokenB.value)) > Number(tokenB.asset?.balance)!; - setTokenA({ ...tokenA, asset: { ...tokenA.asset, ...data[0] } }); - setTokenB({ ...tokenB, asset: { ...tokenB.asset, ...data[1] } }); + if (tokenAAmountInIsInvalid && tokenBAmountInIsInvalid) return setError('insufficientLiquidBalance'); + + if (tokenBAmountInIsInvalid) return setError('insufficientBalance'); + + return setError(undefined); }, - [tokens] + [tokenA.value, tokenB.value, tokenA.asset?.balance, tokenB.asset?.balance] ); - useEffect(() => { - const primaryIsInvalid = parseFloat(removeCommasFromNumber(tokenA.value)) > Number(tokenA.asset?.balance)!; - const secondaryIsInvalid = parseFloat(removeCommasFromNumber(tokenB.value)) > Number(tokenB.asset?.balance)!; + useEffect( + function checkMatchingPools() { + if (!tokens.data) return setPools([]); - if (primaryIsInvalid && secondaryIsInvalid) return setError('secondary'); + if (!tokenA.asset || !tokenB.asset || !didUserChangeToken) return setPools([]); - if (secondaryIsInvalid) return setError('primary'); - }, [tokenA.value, tokenB.value, tokenA.asset?.balance, tokenB.asset?.balance]); + const response = poolsState.pools.data.filter((pool) => { + const tokenHasCl = pool.symbol.toLowerCase().includes('cl'); + const tokenAAddress = tokenA.asset?.address; + const tokenBAddress = tokenB.asset?.address; + + return pool.token0.address === tokenAAddress && pool.token1.address === tokenBAddress && !tokenHasCl; + }); + + if (response.length === 0) setError('noMatchingPools'); + + return setPools(response); + }, + [tokenA.asset, tokenB.asset] + ); if (loading) { return ( @@ -196,9 +251,11 @@ const AddLiquidity = () => { /> - {/* {error && } */} + {error && } + + {} - {showInfo && } + {didUserChangeToken && pools.length > 0 && } diff --git a/screens/liquidity-actions/add/pool-selector.tsx b/screens/liquidity-actions/add/pool-selector.tsx new file mode 100644 index 0000000..e779323 --- /dev/null +++ b/screens/liquidity-actions/add/pool-selector.tsx @@ -0,0 +1,49 @@ +import { StyleSheet, Text, TouchableOpacity, View } from 'react-native'; +import { Pool } from '@/store/pools/types'; +import { LQDPoolPairPaper } from '@/components'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { memo } from 'react'; + +const SelectPool = ({ pools }: { pools: Pool[] }) => { + return ( + + Select Pools + + + {pools.map((pool, index) => ( + {}} key={index} style={styles.wrapper}> + + + ))} + + + ); +}; + +const styles = StyleSheet.create({ + container: { + alignSelf: 'stretch', + paddingTop: 20, + }, + + innerContainer: { + gap: 20, + }, + + wrapper: { + borderRadius: 8, + borderColor: '#EAEEF4', + borderWidth: 1, + padding: 16, + }, + + title: { + color: '#0F172A', + fontSize: adjustFontSizeForIOS(20, 3), + fontWeight: '500', + fontFamily: 'AeonikMedium', + paddingBottom: 14, + }, +}); + +export default memo(SelectPool); diff --git a/screens/liquidity-actions/add/styles.ts b/screens/liquidity-actions/add/styles.ts index 28479ab..b075964 100644 --- a/screens/liquidity-actions/add/styles.ts +++ b/screens/liquidity-actions/add/styles.ts @@ -6,13 +6,13 @@ const styles = StyleSheet.create({ root: { paddingHorizontal: 16, paddingTop: 70, - paddingBottom: 34, backgroundColor: '#FFF', }, contentStyle: { - flex: 1, + flexGrow: 1, justifyContent: 'space-between', + paddingBottom: 130, }, container: { @@ -58,7 +58,7 @@ const styles = StyleSheet.create({ bottomContainer: { paddingHorizontal: 8, - paddingVertical: 12, + paddingTop: 50, }, errorText: { diff --git a/screens/liquidity-actions/add/types.ts b/screens/liquidity-actions/add/types.ts index f927164..a3c23cc 100644 --- a/screens/liquidity-actions/add/types.ts +++ b/screens/liquidity-actions/add/types.ts @@ -24,7 +24,7 @@ type TokenValue = { value: string; }; -type ErrorState = undefined | 'primary' | 'secondary'; +type ErrorState = undefined | 'insufficientBalance' | 'insufficientLiquidBalance' | 'noMatchingPools'; interface IErrorMessage { title: string; @@ -36,8 +36,9 @@ interface IErrorMessage { } type ErrorsArray = { - primary: IErrorMessage; - secondary: IErrorMessage; + insufficientBalance: IErrorMessage; + insufficientLiquidBalance: IErrorMessage; + noMatchingPools: IErrorMessage; }; type Info = { diff --git a/store/pools/actions.ts b/store/pools/actions.ts index 01b1a48..45e394b 100644 --- a/store/pools/actions.ts +++ b/store/pools/actions.ts @@ -1,5 +1,14 @@ import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { setHotPools, setLoadingPools, setRefreshing, setSearchedPools, setSearchingPools, setTopGainers, setTrendingPools } from '.'; +import { + setHotPools, + setLoadingPools, + setpools, + setRefreshing, + setSearchedPools, + setSearchingPools, + setTopGainers, + setTrendingPools, +} from '.'; import api from '@/init/api'; import { PoolType } from '@/init/types'; @@ -22,6 +31,9 @@ export function usePoolActions() { const trendingPools = await api.getPools(PoolType.trending); dispatch(setTrendingPools(trendingPools)); + + const allPools = await api.getPools(PoolType.v2); + dispatch(setpools(allPools)); } catch (error: any) { // } finally { From 9510ceb9ae37865fb08c54a75cf4287dd464a804 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Sat, 16 Nov 2024 20:11:29 +0100 Subject: [PATCH 44/95] chore: implement a calls hook --- hooks/useCalls.ts | 80 +++++++++++++++ hooks/useLiquid.ts | 130 +++++++++++++++++------- screens/liquidity-actions/add/index.tsx | 6 +- utils/encoders.ts | 102 ++++++++++++++++--- 4 files changed, 266 insertions(+), 52 deletions(-) create mode 100644 hooks/useCalls.ts diff --git a/hooks/useCalls.ts b/hooks/useCalls.ts new file mode 100644 index 0000000..a2f7428 --- /dev/null +++ b/hooks/useCalls.ts @@ -0,0 +1,80 @@ +import { Address, encodeFunctionData, Hex } from 'viem'; +import { buildUserOp, getPaymasterData, getUserOpHash } from '@/utils/wallet'; +import { Call } from '@/utils/types'; +import { entryPoint06Address } from 'viem/account-abstraction'; +import { paymasterClient, bundlerClient } from '@/init/viem'; +import { useSmartAccountActions } from '@/store/smartAccount/actions'; +import { SmartWalletABI } from '@/constants/abis'; +import { ENTRYPOINT_V06_ADDRESS } from '@/constants/addresses'; +import { useCallback } from 'react'; + +export function useMakeCalls() { + const { signTransaction } = useSmartAccountActions(); + + const makeCalls = useCallback( + async ({ calls, account }: { calls: Call[]; account: Address }) => { + // Build the user operation + const op = await buildUserOp(account, bundlerClient, { + calls, + paymasterAndData: '0x', // Initialize with empty paymaster data + }); + + // Set verification gas limit + op.verificationGasLimit = 800000n; + + // Get paymaster data + const paymasterResult = await getPaymasterData({ + paymasterClient: paymasterClient, + callData: op.callData, + sender: op.sender, + nonce: op.nonce, + initCode: op.initCode, + maxFeePerGas: op.maxFeePerGas, + maxPriorityFeePerGas: op.maxPriorityFeePerGas, + callGasLimit: op.callGasLimit, + verificationGasLimit: op.verificationGasLimit, + preVerificationGas: op.preVerificationGas, + }); + + // Update operation with paymaster data + op.paymasterAndData = paymasterResult.paymasterAndData; + + // Get the operation hash + const hash = getUserOpHash({ + userOperation: op, + chainId: 8543n, + }); + + const signature = await signTransaction(hash); + + op.signature = signature!; + + // Send the user operation + const opHash = await bundlerClient.sendUserOperation({ + userOperation: op, + entryPoint: entryPoint06Address, + }); + + return { + opHash, + userOpHash: hash, + }; + }, + [signTransaction] + ); + + const buildUserOperationCalldata = useCallback(({ calls }: { calls: Call[] }): Hex => { + // sort ascending order, 0 first + const _calls = calls.sort((a, b) => a.index - b.index); + return encodeFunctionData({ + abi: SmartWalletABI, + functionName: 'executeBatch', + args: [_calls], + }); + }, []); + + return { + makeCalls, + buildUserOperationCalldata, + }; +} diff --git a/hooks/useLiquid.ts b/hooks/useLiquid.ts index ab33d1d..b709564 100644 --- a/hooks/useLiquid.ts +++ b/hooks/useLiquid.ts @@ -1,6 +1,5 @@ import { useCallback } from 'react'; -import { Address, parseUnits, erc20Abi, Hex, PublicClient, WaitForTransactionReceiptParameters } from 'viem'; -import { makeCalls } from '@/utils/calls'; +import { Address, parseUnits, erc20Abi, Hex, PublicClient } from 'viem'; import { encodePluginExecute, encodeAddLiquidity, encodeRemoveLiquidity, encodeSwap, encodeStake, encodeApprove } from '@/utils/encoders'; import { AERODROME_CONNECTOR, AERODROME_FACTORY_ADDRESS, CONNECTOR_PLUGIN } from '@/constants/addresses'; import { @@ -15,6 +14,7 @@ import { import { Call } from '@/utils/types'; import { AerodromeConnectorABI } from '@/constants/abis'; import useSystemFunctions from './useSystemFunctions'; +import { useMakeCalls } from './useCalls'; async function handleTransaction(client: PublicClient, { hash, waitForReceipt = true }: TransactionConfig) { if (!waitForReceipt) return { hash }; @@ -31,7 +31,7 @@ async function handleTransaction(client: PublicClient, { hash, waitForReceipt = export function useLiquidity(publicClient: PublicClient) { const { smartAccountState } = useSystemFunctions(); - + const { makeCalls, buildUserOperationCalldata } = useMakeCalls(); const account = smartAccountState.address as Address; const createPluginCall = useCallback( @@ -52,10 +52,19 @@ export function useLiquidity(publicClient: PublicClient) { const calls: Call[] = []; let currentIndex = 0; + // Validate input amounts + if (!params.amountAIn || !params.amountBIn) { + throw new Error('Invalid input amounts'); + } + // Handle pre-swap if configured if (params.preSwap?.enabled) { + if (!params.preSwap.params.amountIn) { + throw new Error('Invalid swap amount'); + } + // Approve token for swap - const swapApproveAmount = parseUnits(params.preSwap.params.amountIn, params.preSwap.params.tokenA.decimals); + const swapApproveAmount = parseUnits(params.preSwap.params.amountIn.toString(), params.preSwap.params.tokenA.decimals); const approveSwapTokenData = encodeApprove({ amount: swapApproveAmount, @@ -82,32 +91,43 @@ export function useLiquidity(publicClient: PublicClient) { // Add swap call const swapData = encodeSwap({ amountIn: swapApproveAmount, - minReturnAmount: parseUnits(params.preSwap.params.minReturnAmount, params.preSwap.params.tokenB.decimals), + minReturnAmount: parseUnits(params.preSwap.params.minReturnAmount?.toString() || '0', params.preSwap.params.tokenB.decimals), routes, to: params.preSwap.params.to, deadline: BigInt(Math.floor(Date.now() / 1000) + 3600), + caller: account, }); calls.push(createPluginCall(swapData, currentIndex++)); } + console.log('Add Liquidity Params:', { + tokenA: params.tokenA.address, + tokenB: params.tokenB.address, + decimalsA: params.tokenA.decimals, + decimalsB: params.tokenB.decimals, + amountAIn: params.amountAIn, + amountBIn: params.amountBIn, + stable: params.stable, + }); + // Get quotes for liquidity deposit const quotes = await quoteDepositLiquidity( params.tokenA.address, params.tokenB.address, params.stable, - parseUnits(params.amountAIn, params.tokenA.decimals), - parseUnits(params.amountBIn, params.tokenB.decimals) + parseUnits(params.amountAIn.toString(), params.tokenA.decimals), + parseUnits(params.amountBIn.toString(), params.tokenB.decimals) ); // Add approvals for liquidity tokens const approveTokenAData = encodeApprove({ - amount: parseUnits(params.amountAIn, params.tokenA.decimals), + amount: parseUnits(params.amountAIn.toString(), params.tokenA.decimals), spender: AERODROME_CONNECTOR, }); const approveTokenBData = encodeApprove({ - amount: parseUnits(params.amountBIn, params.tokenB.decimals), + amount: parseUnits(params.amountBIn.toString(), params.tokenB.decimals), spender: AERODROME_CONNECTOR, }); @@ -127,17 +147,20 @@ export function useLiquidity(publicClient: PublicClient) { ); // Add liquidity call - const refactoredParams = { - ...params, - amountAIn: parseUnits(params.amountAIn, params.tokenA.decimals), - amountBIn: parseUnits(params.amountBIn, params.tokenB.decimals), - amountAMin: parseUnits(quotes.amountAOut, params.tokenA.decimals), - amountBMin: parseUnits(quotes.amountBOut, params.tokenB.decimals), + const addLiquidityData = encodeAddLiquidity({ + tokenA: params.tokenA.address, + tokenB: params.tokenB.address, + stable: params.stable, + amountAIn: parseUnits(params.amountAIn.toString(), params.tokenA.decimals), + amountBIn: parseUnits(params.amountBIn.toString(), params.tokenB.decimals), + amountAMin: quotes?.amountAOut ?? 0n, + amountBMin: quotes?.amountBOut ?? 0n, balanceTokenRatio: false, + to: account, deadline: BigInt(Math.floor(Date.now() / 1000) + 3600), - }; + caller: account, + }); - const addLiquidityData = encodeAddLiquidity(refactoredParams); calls.push(createPluginCall(addLiquidityData, currentIndex)); const { opHash } = await makeCalls({ @@ -150,19 +173,23 @@ export function useLiquidity(publicClient: PublicClient) { ...txConfig, }); }, - [publicClient, createPluginCall] + [publicClient, createPluginCall, account] ); const removeLiquidity = useCallback( async (params: RemoveLiquidityParams, txConfig?: Partial) => { - const refactoredParams = { - ...params, + const connectorData = encodeRemoveLiquidity({ + tokenA: params.tokenA.address, + tokenB: params.tokenB.address, + stable: params.stable, liquidity: BigInt(params.liquidity), amountAMin: parseUnits(params.amountAMin.toString(), params.tokenA.decimals), amountBMin: parseUnits(params.amountBMin.toString(), params.tokenB.decimals), + to: account, deadline: BigInt(Math.floor(Date.now() / 1000) + 3600), - }; - const connectorData = encodeRemoveLiquidity(refactoredParams); + caller: account, + }); + const call = createPluginCall(connectorData, 0); const { opHash } = await makeCalls({ @@ -175,7 +202,7 @@ export function useLiquidity(publicClient: PublicClient) { ...txConfig, }); }, - [publicClient, createPluginCall] + [publicClient, createPluginCall, account] ); const swap = useCallback( @@ -195,7 +222,9 @@ export function useLiquidity(publicClient: PublicClient) { routes, to: params.to, deadline: BigInt(Math.floor(Date.now() / 1000) + 3600), + caller: account, }); + const call = createPluginCall(connectorData, 0); const { opHash } = await makeCalls({ @@ -208,7 +237,7 @@ export function useLiquidity(publicClient: PublicClient) { ...txConfig, }); }, - [publicClient, createPluginCall] + [publicClient, createPluginCall, account] ); const stake = useCallback( @@ -216,7 +245,9 @@ export function useLiquidity(publicClient: PublicClient) { const connectorData = encodeStake({ gaugeAddress: params.gauge.address, amount: parseUnits(params.amount.toString(), params.gauge.decimals), + caller: account, }); + const call = createPluginCall(connectorData, 0); const { opHash } = await makeCalls({ @@ -229,19 +260,50 @@ export function useLiquidity(publicClient: PublicClient) { ...txConfig, }); }, - [publicClient, createPluginCall] + [publicClient, createPluginCall, account] ); - const quoteDepositLiquidity = async (tokenA: string, tokenB: Address, stable: boolean, amountA: bigint, amountB: bigint) => { - const balanceTokenRatio = stable; - const result: any = await publicClient.readContract({ - address: AERODROME_CONNECTOR, - abi: AerodromeConnectorABI.abi, - functionName: 'quoteDepositLiquidity', - args: [tokenA, tokenB, stable, amountA, amountB, balanceTokenRatio], - }); + const quoteDepositLiquidity: any = async (tokenA: Address, tokenB: Address, stable: boolean, amountA: bigint, amountB: bigint) => { + try { + console.log('Quote Deposit Params:', { + tokenA, + tokenB, + stable, + amountA: amountA.toString(), + amountB: amountB.toString(), + balanceTokenRatio: stable, + }); + + // Ensure amounts are not zero + if (amountA <= 0n || amountB <= 0n) { + throw new Error('Invalid amounts for quote'); + } + + const result = await publicClient.readContract({ + address: AERODROME_CONNECTOR, + abi: AerodromeConnectorABI.abi, + functionName: 'quoteDepositLiquidity', + args: [tokenA, tokenB, stable, amountA, amountB, stable], + }); + + console.log('Quote Result:', result); + + if (!result) { + return { + amountAOut: 0n, + amountBOut: 0n, + }; + } - return result; + return result; + } catch (error) { + console.error('Quote Deposit Error:', error); + // Return minimum amounts as fallback + return { + amountAOut: (amountA * BigInt(95)) / BigInt(100), // 95% of input as minimum + amountBOut: (amountB * BigInt(95)) / BigInt(100), + }; + } }; return { diff --git a/screens/liquidity-actions/add/index.tsx b/screens/liquidity-actions/add/index.tsx index dd45a28..68c186f 100644 --- a/screens/liquidity-actions/add/index.tsx +++ b/screens/liquidity-actions/add/index.tsx @@ -142,14 +142,16 @@ const AddLiquidity = () => { amountAIn: tokenA.value, amountBIn: tokenB.value, deadline: BigInt(Math.floor(Date.now() / 1000) + 3600), - stable: true, + stable: selectedPool?.isStable!, to: smartAccountState.address, }; setLoading(true); if (method === 'liquid') { - // const response = await addLiquidity(param, { waitForReceipt: true }); + const response = await addLiquidity(param, { waitForReceipt: true }); + + console.log(selectedPool, 'selected pool'); console.log('Submitting liquidity request', { tokenA, tokenB }); } diff --git a/utils/encoders.ts b/utils/encoders.ts index 597cbec..38a5616 100644 --- a/utils/encoders.ts +++ b/utils/encoders.ts @@ -1,6 +1,12 @@ -import { Address, Hex, encodeFunctionData, erc20Abi } from 'viem'; +import { Address, Hex, encodeFunctionData, encodeAbiParameters, parseAbiParameters, erc20Abi } from 'viem'; import { AerodromeConnectorABI, ConnectorPluginABI } from '@/constants/abis'; -import { IRouter, Token } from '@/hooks/types'; + +interface RouteStruct { + from: Address; + to: Address; + stable: boolean; + factory: Address; +} export function encodePluginExecute(connector: Address, data: Hex) { return encodeFunctionData({ @@ -21,9 +27,10 @@ export function encodeAddLiquidity({ balanceTokenRatio, to, deadline, + caller, }: { - tokenA: Token; - tokenB: Token; + tokenA: Address; + tokenB: Address; stable: boolean; amountAIn: bigint; amountBIn: bigint; @@ -32,11 +39,28 @@ export function encodeAddLiquidity({ balanceTokenRatio: boolean; to: Address; deadline: bigint; + caller: Address; }) { + const params = encodeAbiParameters(parseAbiParameters('bytes, address'), [ + encodeAbiParameters(parseAbiParameters('address, address, bool, uint256, uint256, uint256, uint256, bool, address, uint256'), [ + tokenA, + tokenB, + stable, + amountAIn, + amountBIn, + amountAMin, + amountBMin, + balanceTokenRatio, + to, + deadline, + ]), + caller, + ]); + return encodeFunctionData({ abi: AerodromeConnectorABI.abi, - functionName: 'addLiquidity', - args: [tokenA, tokenB, stable, amountAIn, amountBIn, amountAMin, amountBMin, balanceTokenRatio, to, deadline], + functionName: 'execute', + args: [params], }); } @@ -49,20 +73,36 @@ export function encodeRemoveLiquidity({ amountBMin, to, deadline, + caller, }: { - tokenA: Token; - tokenB: Token; + tokenA: Address; + tokenB: Address; stable: boolean; liquidity: bigint; amountAMin: bigint; amountBMin: bigint; to: Address; deadline: bigint; + caller: Address; }) { + const params = encodeAbiParameters(parseAbiParameters('bytes, address'), [ + encodeAbiParameters(parseAbiParameters('address, address, bool, uint256, uint256, uint256, address, uint256'), [ + tokenA, + tokenB, + stable, + liquidity, + amountAMin, + amountBMin, + to, + deadline, + ]), + caller, + ]); + return encodeFunctionData({ abi: AerodromeConnectorABI.abi, - functionName: 'removeLiquidity', - args: [tokenA, tokenB, stable, liquidity, amountAMin, amountBMin, to, deadline], + functionName: 'execute', + args: [params], }); } @@ -72,27 +112,57 @@ export function encodeSwap({ routes, to, deadline, + caller, }: { amountIn: bigint; minReturnAmount: bigint; - routes: IRouter.RouteStruct[]; + routes: RouteStruct[]; to: Address; deadline: bigint; + caller: Address; }) { + const params = encodeAbiParameters(parseAbiParameters('bytes, address'), [ + encodeAbiParameters( + [ + { type: 'uint256' }, + { type: 'uint256' }, + { + type: 'tuple[]', + components: [ + { name: 'from', type: 'address' }, + { name: 'to', type: 'address' }, + { name: 'stable', type: 'bool' }, + { name: 'factory', type: 'address' }, + ], + }, + { type: 'address' }, + { type: 'uint256' }, + ], + [amountIn, minReturnAmount, routes, to, deadline] + ), + caller, + ]); + return encodeFunctionData({ abi: AerodromeConnectorABI.abi, - functionName: 'swapExactTokensForTokens', - args: [amountIn, minReturnAmount, routes, to, deadline], + functionName: 'execute', + args: [params], }); } -export function encodeStake({ gaugeAddress, amount }: { gaugeAddress: Address; amount: bigint }) { +export function encodeStake({ gaugeAddress, amount, caller }: { gaugeAddress: Address; amount: bigint; caller: Address }) { + const params = encodeAbiParameters(parseAbiParameters('bytes, address'), [ + encodeAbiParameters(parseAbiParameters('address, uint256'), [gaugeAddress, amount]), + caller, + ]); + return encodeFunctionData({ abi: AerodromeConnectorABI.abi, - functionName: 'deposit', - args: [gaugeAddress, amount], + functionName: 'execute', + args: [params], }); } + export function encodeApprove({ amount, spender }: { amount: bigint; spender: Address }) { return encodeFunctionData({ abi: erc20Abi, From efa950035cda92e83968377d0fd704fb508fc143 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Sat, 16 Nov 2024 20:53:57 +0100 Subject: [PATCH 45/95] chore: refactor paymaster config to use pimilco --- app/_layout.tsx | 3 +- constants/env.ts | 3 ++ hooks/useCalls.ts | 23 +++++++-- hooks/useContract.ts | 2 +- init/client.ts | 8 +++ init/useViem.ts | 56 ++++++++++++++++++++ init/viem.ts | 20 ------- package.json | 4 +- providers/AuthProvider.tsx | 2 +- screens/liquidity-actions/add/index.tsx | 2 +- store/account/actions.ts | 2 +- store/smartAccount/actions.ts | 2 +- store/smartAccount/create.ts | 2 +- utils/calls.ts | 69 ------------------------- utils/wallet.ts | 28 ++++++---- yarn.lock | 39 +++----------- 16 files changed, 121 insertions(+), 144 deletions(-) create mode 100644 init/client.ts create mode 100644 init/useViem.ts delete mode 100644 init/viem.ts delete mode 100644 utils/calls.ts diff --git a/app/_layout.tsx b/app/_layout.tsx index 783714b..85c0757 100644 --- a/app/_layout.tsx +++ b/app/_layout.tsx @@ -3,7 +3,8 @@ import 'react-native-reanimated'; import { Stack } from 'expo-router'; // setup viem and api on app start -import '@/init/viem'; +import '@/init/useViem'; +import '@/init/client'; import '@/init/api'; import { AllProviders } from '@/providers'; diff --git a/constants/env.ts b/constants/env.ts index dcd72d6..85dcf64 100644 --- a/constants/env.ts +++ b/constants/env.ts @@ -3,6 +3,9 @@ export const isDev = !isProd; export const rpcUrl = process.env.EXPO_PUBLIC_BASE_RPC_URL; export const bundlerUrl = process.env.EXPO_PUBLIC_BUNDLER_RPC_URL; +export const pimilcoApiKey = process.env.EXPO_PUBLIC_PIMILCO_API_KEY; + +export const pimilcoRPCURL = `https://api.pimlico.io/v2/8453/rpc?apikey=${pimilcoApiKey}`; export const rpId = 'api.useliquid.xyz'; diff --git a/hooks/useCalls.ts b/hooks/useCalls.ts index a2f7428..50f0d50 100644 --- a/hooks/useCalls.ts +++ b/hooks/useCalls.ts @@ -2,7 +2,7 @@ import { Address, encodeFunctionData, Hex } from 'viem'; import { buildUserOp, getPaymasterData, getUserOpHash } from '@/utils/wallet'; import { Call } from '@/utils/types'; import { entryPoint06Address } from 'viem/account-abstraction'; -import { paymasterClient, bundlerClient } from '@/init/viem'; +import { useClients } from '@/init/useViem'; import { useSmartAccountActions } from '@/store/smartAccount/actions'; import { SmartWalletABI } from '@/constants/abis'; import { ENTRYPOINT_V06_ADDRESS } from '@/constants/addresses'; @@ -10,11 +10,12 @@ import { useCallback } from 'react'; export function useMakeCalls() { const { signTransaction } = useSmartAccountActions(); + const { pimlicoClient, smartAccountClient } = useClients(); const makeCalls = useCallback( async ({ calls, account }: { calls: Call[]; account: Address }) => { // Build the user operation - const op = await buildUserOp(account, bundlerClient, { + const op = await buildUserOp(account, smartAccountClient, { calls, paymasterAndData: '0x', // Initialize with empty paymaster data }); @@ -24,7 +25,7 @@ export function useMakeCalls() { // Get paymaster data const paymasterResult = await getPaymasterData({ - paymasterClient: paymasterClient, + paymasterClient: pimlicoClient, callData: op.callData, sender: op.sender, nonce: op.nonce, @@ -41,7 +42,19 @@ export function useMakeCalls() { // Get the operation hash const hash = getUserOpHash({ - userOperation: op, + userOperation: { + sender: op.sender, + nonce: op.nonce, + initCode: op.initCode, + callData: op.callData, + callGasLimit: op.callGasLimit, + verificationGasLimit: op.verificationGasLimit, + preVerificationGas: op.preVerificationGas, + maxFeePerGas: op.maxFeePerGas, + maxPriorityFeePerGas: op.maxPriorityFeePerGas, + paymasterAndData: op.paymasterAndData, + signature: '0x', + }, chainId: 8543n, }); @@ -50,7 +63,7 @@ export function useMakeCalls() { op.signature = signature!; // Send the user operation - const opHash = await bundlerClient.sendUserOperation({ + const opHash = await smartAccountClient.sendUserOperation({ userOperation: op, entryPoint: entryPoint06Address, }); diff --git a/hooks/useContract.ts b/hooks/useContract.ts index eddc892..917d05e 100644 --- a/hooks/useContract.ts +++ b/hooks/useContract.ts @@ -1,7 +1,7 @@ import { Address, formatUnits, PublicClient } from 'viem'; import { AerodromePoolABI, LPSugarABI, OffchainOracleABI } from '@/constants/abis'; import { LP_SUGAR_ADDRESS, USDC_ADDRESS, WETH_ADDRESS } from '@/constants/addresses'; -import { publicClient } from '@/init/viem'; +import { publicClient } from '@/init/client'; const { LpSugar } = LPSugarABI; const { OffchainOracle } = OffchainOracleABI; diff --git a/init/client.ts b/init/client.ts new file mode 100644 index 0000000..835fc2e --- /dev/null +++ b/init/client.ts @@ -0,0 +1,8 @@ +import { rpcUrl } from '@/constants/env'; +import { createPublicClient, http } from 'viem'; +import { base } from 'viem/chains'; + +export const publicClient = createPublicClient({ + chain: base, + transport: http(rpcUrl), +}); diff --git a/init/useViem.ts b/init/useViem.ts new file mode 100644 index 0000000..5ad8140 --- /dev/null +++ b/init/useViem.ts @@ -0,0 +1,56 @@ +import { useMemo } from 'react'; +import { Address, createPublicClient, http } from 'viem'; +import { createPaymasterClient, entryPoint06Address } from 'viem/account-abstraction'; +import { createPimlicoClient } from 'permissionless/clients/pimlico'; +import { createSmartAccountClient } from 'permissionless'; +import { base } from 'viem/chains'; +import { rpcUrl, pimilcoRPCURL, bundlerUrl } from '@/constants/env'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; + +export function useClients() { + const { smartAccountState } = useSystemFunctions(); + const account = smartAccountState.address as Address; + + const publicClient = useMemo( + () => + createPublicClient({ + chain: base, + transport: http(rpcUrl), + }), + [] + ); + + const pimlicoClient = useMemo( + () => + createPimlicoClient({ + transport: http(pimilcoRPCURL), + entryPoint: { + address: entryPoint06Address, + version: '0.6', + }, + }), + [] + ); + + const smartAccountClient = useMemo(() => { + if (!account) return null; + + return createSmartAccountClient({ + account, + chain: base, + bundlerTransport: http(pimilcoRPCURL), + paymaster: pimlicoClient, + userOperation: { + estimateFeesPerGas: async () => { + return (await pimlicoClient.getUserOperationGasPrice()).fast; + }, + }, + }); + }, [account, pimlicoClient]); + + return { + publicClient, + pimlicoClient, + smartAccountClient, + }; +} diff --git a/init/viem.ts b/init/viem.ts deleted file mode 100644 index c596296..0000000 --- a/init/viem.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { createPublicClient, http, PublicClient } from 'viem'; -import { createPaymasterClient } from 'viem/account-abstraction'; -import { estimateUserOperationGas, UserOperation, createBundlerClient } from 'permissionless'; -import { base } from 'viem/chains'; - -import { rpcUrl, bundlerUrl } from '@/constants/env'; - -export const publicClient = createPublicClient({ - chain: base, - transport: http(rpcUrl), -}); - -export const bundlerClient = createBundlerClient({ - chain: base, - transport: http(bundlerUrl), -}); - -export const paymasterClient = createPaymasterClient({ - transport: http(bundlerUrl), -}); diff --git a/package.json b/package.json index d4be964..1afa9c4 100644 --- a/package.json +++ b/package.json @@ -54,7 +54,7 @@ "fast-text-encoding": "^1.0.6", "lodash": "^4.17.21", "moment": "^2.30.1", - "permissionless": "^0.0.34", + "permissionless": "^0.2.0", "react": "18.2.0", "react-dom": "18.2.0", "react-hook-form": "^7.53.0", @@ -94,4 +94,4 @@ "reactotron-react-native": "^5.1.9", "typescript": "~5.3.3" } -} +} \ No newline at end of file diff --git a/providers/AuthProvider.tsx b/providers/AuthProvider.tsx index c26dc7c..d912d59 100644 --- a/providers/AuthProvider.tsx +++ b/providers/AuthProvider.tsx @@ -7,7 +7,7 @@ import { getPersistedSmartAccountInfo } from '@/store/smartAccount/persist'; import { SmartAccountInfoNotPersistedError } from '@/store/smartAccount/errors'; import { rpId } from '@/constants/env'; import { toCoinbaseSmartAccount, toWebAuthnAccount } from 'viem/account-abstraction'; -import { publicClient } from '@/init/viem'; +import { publicClient } from '@/init/client'; import { getPublicKeyHex } from '@/utils/base64'; import { getFn } from '@/store/smartAccount/getFn'; import useSystemFunctions from '@/hooks/useSystemFunctions'; diff --git a/screens/liquidity-actions/add/index.tsx b/screens/liquidity-actions/add/index.tsx index 68c186f..ef13a9b 100644 --- a/screens/liquidity-actions/add/index.tsx +++ b/screens/liquidity-actions/add/index.tsx @@ -1,7 +1,7 @@ import { useEffect, useMemo, useState } from 'react'; import { View, Text, ScrollView } from 'react-native'; import Animated, { useAnimatedStyle, withTiming } from 'react-native-reanimated'; -import { publicClient } from '@/init/viem'; +import { publicClient } from '@/init/client'; import { PublicClient } from 'viem'; import { LQDButton } from '@/components'; diff --git a/store/account/actions.ts b/store/account/actions.ts index b361129..5bcfb1c 100644 --- a/store/account/actions.ts +++ b/store/account/actions.ts @@ -1,6 +1,6 @@ import { PublicClient } from 'viem'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { publicClient } from '@/init/viem'; +import { publicClient } from '@/init/client'; import { setLoading, setLpBalance, setPositions, setRefreshing, setTokenBalance, setTokens } from '.'; import { Position } from '@/hooks/types'; import api from '@/init/api'; diff --git a/store/smartAccount/actions.ts b/store/smartAccount/actions.ts index 85f2be2..01e9528 100644 --- a/store/smartAccount/actions.ts +++ b/store/smartAccount/actions.ts @@ -3,7 +3,7 @@ import * as Passkeys from 'react-native-passkeys'; import { setAddress, setRegistrationOptions } from '@/store/smartAccount'; import { CreatePassKeyCredentialOptions, VerifyAuthResponse } from '@/init/types'; -import { publicClient } from '@/init/viem'; +import { publicClient } from '@/init/client'; import { rpId } from '@/constants/env'; import { getPublicKeyHex } from '@/utils/base64'; import useSystemFunctions from '@/hooks/useSystemFunctions'; diff --git a/store/smartAccount/create.ts b/store/smartAccount/create.ts index 466db11..54f7e75 100644 --- a/store/smartAccount/create.ts +++ b/store/smartAccount/create.ts @@ -3,7 +3,7 @@ import * as Passkeys from 'react-native-passkeys'; import { toCoinbaseSmartAccount, toWebAuthnAccount } from 'viem/account-abstraction'; import api from '@/init/api'; -import { publicClient } from '@/init/viem'; +import { publicClient } from '@/init/client'; import { isDev, rpId } from '@/constants/env'; import { SmartAccount, Address, SmartAccountPersistedInfo, VerifyRegistration } from '@/init/types'; import { getPublicKeyHex } from '@/utils/base64'; diff --git a/utils/calls.ts b/utils/calls.ts deleted file mode 100644 index f2ba460..0000000 --- a/utils/calls.ts +++ /dev/null @@ -1,69 +0,0 @@ -import { Address, encodeFunctionData, Hex } from 'viem'; -import { buildUserOp, getPaymasterData, getUserOpHash } from './wallet'; -import { Call } from './types'; -import { entryPoint06Address } from 'viem/account-abstraction'; -import { paymasterClient, bundlerClient } from '@/init/viem'; -import { useSmartAccountActions } from '@/store/smartAccount/actions'; -import { SmartWalletABI } from '@/constants/abis'; -import { ENTRYPOINT_V06_ADDRESS } from '@/constants/addresses'; - -// Main function to execute calls -export async function makeCalls({ calls, account }: { calls: Call[]; account: Address }) { - const { signTransaction } = useSmartAccountActions(); - // Build the user operation - const op = await buildUserOp(account, bundlerClient, { - calls, - paymasterAndData: '0x', // Initialize with empty paymaster data - }); - - // Set verification gas limit - op.verificationGasLimit = 800000n; - - // Get paymaster data - const paymasterResult = await getPaymasterData({ - paymasterClient: paymasterClient, - callData: op.callData, - sender: op.sender, - nonce: op.nonce, - initCode: op.initCode, - maxFeePerGas: op.maxFeePerGas, - maxPriorityFeePerGas: op.maxPriorityFeePerGas, - callGasLimit: op.callGasLimit, - verificationGasLimit: op.verificationGasLimit, - preVerificationGas: op.preVerificationGas, - }); - - // Update operation with paymaster data - op.paymasterAndData = paymasterResult.paymasterAndData; - - // Get the operation hash - const hash = getUserOpHash({ - userOperation: op, - chainId: 8543n, - }); - - const signature = await signTransaction(hash); - - op.signature = signature!; - - // Send the user operation - const opHash = await bundlerClient.sendUserOperation({ - userOperation: op, - entryPoint: entryPoint06Address, - }); - - return { - opHash, - userOpHash: hash, - }; -} - -export function buildUserOperationCalldata({ calls }: { calls: Call[] }): Hex { - // sort ascending order, 0 first - const _calls = calls.sort((a, b) => a.index - b.index); - return encodeFunctionData({ - abi: SmartWalletABI, - functionName: 'executeBatch', - args: [_calls], - }); -} diff --git a/utils/wallet.ts b/utils/wallet.ts index b67e624..2d1eef2 100644 --- a/utils/wallet.ts +++ b/utils/wallet.ts @@ -1,10 +1,10 @@ import { EntryPointABI, SmartWalletABI, SmartWalletFactoryABI } from '@/constants/abis'; import { ACCOUNT_FACTORY_ADDRESS, ENTRYPOINT_V06_ADDRESS } from '@/constants/addresses'; -import { estimateUserOperationGas, UserOperation, BundlerClient } from 'permissionless'; import { Address, Chain, encodeAbiParameters, encodeFunctionData, Hex, keccak256, PublicClient, Transport } from 'viem'; -import { entryPoint06Abi, entryPoint06Address, PaymasterClient } from 'viem/account-abstraction'; -import { estimateFeesPerGas, getBytecode, readContract } from 'viem/actions'; +import { entryPoint06Abi, entryPoint06Address, estimateUserOperationGas, PaymasterClient, UserOperation } from 'viem/account-abstraction'; +import { estimateFeesPerGas, getBytecode, getCode, readContract } from 'viem/actions'; import { Call, PaymasterResult } from './types'; +import { PimlicoClient } from 'permissionless/clients/pimlico'; export const PASSKEY_OWNER_DUMMY_SIGNATURE: Hex = '0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000170000000000000000000000000000000000000000000000000000000000000001949fc7c88032b9fcb5f6efc7a7b8c63668eae9871b765e23123bb473ff57aa831a7c0d9276168ebcc29f2875a0239cffdf2a9cd1c2007c5c77c071db9264df1d000000000000000000000000000000000000000000000000000000000000002549960de5880e8c687434170f6476605b8fe4aeb9a28632c7995cf3ba831d97630500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a7b2274797065223a22776562617574686e2e676574222c226368616c6c656e6765223a2273496a396e6164474850596759334b7156384f7a4a666c726275504b474f716d59576f4d57516869467773222c226f726967696e223a2268747470733a2f2f7369676e2e636f696e626173652e636f6d222c2263726f73734f726967696e223a66616c73657d00000000000000000000000000000000000000000000'; @@ -12,7 +12,7 @@ export const PASSKEY_OWNER_DUMMY_SIGNATURE: Hex = // https://github.com/wilsoncusack/scw-tx/blob/5ff88a10e928b5df9ec12bce2ef64caa0b35afcd/utils/smartWallet.ts#L10 export async function buildUserOp( smartWalletAddress: Address, - client: BundlerClient, + client: PimlicoClient, { calls, // If you want to sponsor user operations with a paymaster, pass in the response of the `pm_sponsorUserOperation` RPC @@ -24,9 +24,10 @@ export async function buildUserOp( } ) { let initCode: Hex = '0x'; + console.log(initCode, 'got here'); // `getBytecode` is imported from 'viem/actions' // Check if the smart wallet has been deployed by seeing if there's code at that address - const code = await getBytecode(client, { address: smartWalletAddress }); + const code = await getCode(client, { address: smartWalletAddress }); // If not, set `initCode` to deploy the smart wallet using the helpers above if (!code) { initCode = getInitCode({ owners: [smartWalletAddress], index: 0n }); @@ -60,8 +61,17 @@ export async function buildUserOp( // Update user op specific gas limits like `preVerificationGas` etc. const gasLimits = await estimateUserOperationGas(client, { - userOperation: { ...op }, - entryPoint: entryPoint06Address, + sender: op.sender, + nonce: op.nonce, + initCode: op.initCode, + callData: op.callData, + paymasterAndData: op.paymasterAndData, + signature: op.signature, + preVerificationGas: op.preVerificationGas, + verificationGasLimit: op.verificationGasLimit, + callGasLimit: op.callGasLimit, + maxFeePerGas: op.maxFeePerGas, + maxPriorityFeePerGas: op.maxPriorityFeePerGas, }); return { @@ -121,14 +131,14 @@ export function getUserOpHash({ userOperation, chainId }: { userOperation: UserO [ userOperation.sender, userOperation.nonce, - keccak256(userOperation.initCode), + keccak256(userOperation.initCode ?? '0x'), keccak256(userOperation.callData), userOperation.callGasLimit, userOperation.verificationGasLimit, userOperation.preVerificationGas, userOperation.maxFeePerGas, userOperation.maxPriorityFeePerGas, - keccak256(userOperation.paymasterAndData), + keccak256(userOperation.paymasterAndData ?? '0x'), ] ); const hashedUserOp = keccak256(encodedUserOp); diff --git a/yarn.lock b/yarn.lock index 82d87e6..e3ce0e4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7791,10 +7791,10 @@ peek-readable@^4.1.0: resolved "https://registry.yarnpkg.com/peek-readable/-/peek-readable-4.1.0.tgz#4ece1111bf5c2ad8867c314c81356847e8a62e72" integrity sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg== -permissionless@^0.0.34: - version "0.0.34" - resolved "https://registry.yarnpkg.com/permissionless/-/permissionless-0.0.34.tgz#479ee4c02068c6982a308df7a64351eea626a00d" - integrity sha512-lP59+7VmjLO7dPctH69kgcJ8evxGkrjQ9hruOA+7ymWvUMiuXAfVxvXSWCV+lg67N2TGs1JneEuhwK+iI3kPvA== +permissionless@^0.2.0: + version "0.2.17" + resolved "https://registry.yarnpkg.com/permissionless/-/permissionless-0.2.17.tgz#fca70dededbd4a7006de08988003042c184dc6f3" + integrity sha512-M2+8qXNWTo2mmiriBhCFtNUOKd8UDJ1AXNnLflJw9VePIv5PNR1QqkTa76wWb1mzoZyc1hVObmA0pi7puCBj3A== phin@^2.9.1: version "2.9.3" @@ -9045,16 +9045,7 @@ string-length@^5.0.1: char-regex "^2.0.0" strip-ansi "^7.0.1" -"string-width-cjs@npm:string-width@^4.2.0": - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -9114,7 +9105,7 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1": +"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -9128,13 +9119,6 @@ strip-ansi@^5.0.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" -strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - strip-ansi@^7.0.1: version "7.1.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" @@ -10312,7 +10296,7 @@ wonka@^6.3.2: resolved "https://registry.yarnpkg.com/wonka/-/wonka-6.3.4.tgz#76eb9316e3d67d7febf4945202b5bdb2db534594" integrity sha512-CjpbqNtBGNAeyNS/9W6q3kSkKE52+FjIj7AkFlLr11s/VWGUu6a2CdYSdGxocIhIVjaW/zchesBQUKPVU69Cqg== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -10330,15 +10314,6 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" From b86b61c6ae59eac56e263feafef1bbc566200076 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Sun, 17 Nov 2024 06:20:47 +0100 Subject: [PATCH 46/95] chore: refactor viem client to use pimilco --- constants/abis/SmartWallet.json | 805 ------------------------- constants/abis/SmartWallet.ts | 71 +++ constants/abis/SmartWalletFactory.json | 92 --- constants/abis/SmartWalletFactory.ts | 92 +++ constants/abis/index.ts | 4 +- hooks/useCalls.ts | 23 +- hooks/useLiquid.ts | 12 +- init/useViem.ts | 35 +- package.json | 2 +- utils/wallet.ts | 47 +- yarn.lock | 2 +- 11 files changed, 231 insertions(+), 954 deletions(-) delete mode 100644 constants/abis/SmartWallet.json create mode 100644 constants/abis/SmartWallet.ts delete mode 100644 constants/abis/SmartWalletFactory.json create mode 100644 constants/abis/SmartWalletFactory.ts diff --git a/constants/abis/SmartWallet.json b/constants/abis/SmartWallet.json deleted file mode 100644 index 545338c..0000000 --- a/constants/abis/SmartWallet.json +++ /dev/null @@ -1,805 +0,0 @@ -[ - { - "type": "constructor", - "inputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "fallback", - "stateMutability": "payable" - }, - { - "type": "receive", - "stateMutability": "payable" - }, - { - "type": "function", - "name": "REPLAYABLE_NONCE_KEY", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "addOwnerAddress", - "inputs": [ - { - "name": "owner", - "type": "address", - "internalType": "address" - } - ], - "outputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "function", - "name": "addOwnerPublicKey", - "inputs": [ - { - "name": "x", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "y", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "outputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "function", - "name": "canSkipChainIdValidation", - "inputs": [ - { - "name": "functionSelector", - "type": "bytes4", - "internalType": "bytes4" - } - ], - "outputs": [ - { - "name": "", - "type": "bool", - "internalType": "bool" - } - ], - "stateMutability": "pure" - }, - { - "type": "function", - "name": "domainSeparator", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "eip712Domain", - "inputs": [], - "outputs": [ - { - "name": "fields", - "type": "bytes1", - "internalType": "bytes1" - }, - { - "name": "name", - "type": "string", - "internalType": "string" - }, - { - "name": "version", - "type": "string", - "internalType": "string" - }, - { - "name": "chainId", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "verifyingContract", - "type": "address", - "internalType": "address" - }, - { - "name": "salt", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "extensions", - "type": "uint256[]", - "internalType": "uint256[]" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "entryPoint", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "address", - "internalType": "address" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "execute", - "inputs": [ - { - "name": "target", - "type": "address", - "internalType": "address" - }, - { - "name": "value", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "data", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "executeBatch", - "inputs": [ - { - "name": "calls", - "type": "tuple[]", - "internalType": "struct CoinbaseSmartWallet.Call[]", - "components": [ - { - "name": "target", - "type": "address", - "internalType": "address" - }, - { - "name": "value", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "data", - "type": "bytes", - "internalType": "bytes" - } - ] - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "executeWithoutChainIdValidation", - "inputs": [ - { - "name": "calls", - "type": "bytes[]", - "internalType": "bytes[]" - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "getUserOpHashWithoutChainId", - "inputs": [ - { - "name": "userOp", - "type": "tuple", - "internalType": "struct UserOperation", - "components": [ - { - "name": "sender", - "type": "address", - "internalType": "address" - }, - { - "name": "nonce", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "initCode", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "callData", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "callGasLimit", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "verificationGasLimit", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "preVerificationGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "maxFeePerGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "maxPriorityFeePerGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "paymasterAndData", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "signature", - "type": "bytes", - "internalType": "bytes" - } - ] - } - ], - "outputs": [ - { - "name": "", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "implementation", - "inputs": [], - "outputs": [ - { - "name": "$", - "type": "address", - "internalType": "address" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "initialize", - "inputs": [ - { - "name": "owners", - "type": "bytes[]", - "internalType": "bytes[]" - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "isOwnerAddress", - "inputs": [ - { - "name": "account", - "type": "address", - "internalType": "address" - } - ], - "outputs": [ - { - "name": "", - "type": "bool", - "internalType": "bool" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "isOwnerBytes", - "inputs": [ - { - "name": "account", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [ - { - "name": "", - "type": "bool", - "internalType": "bool" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "isOwnerPublicKey", - "inputs": [ - { - "name": "x", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "y", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "outputs": [ - { - "name": "", - "type": "bool", - "internalType": "bool" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "isValidSignature", - "inputs": [ - { - "name": "hash", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "signature", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [ - { - "name": "result", - "type": "bytes4", - "internalType": "bytes4" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "nextOwnerIndex", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "ownerAtIndex", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - } - ], - "outputs": [ - { - "name": "", - "type": "bytes", - "internalType": "bytes" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "ownerCount", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "proxiableUUID", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "removeLastOwner", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "function", - "name": "removeOwnerAtIndex", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "function", - "name": "removedOwnersCount", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "replaySafeHash", - "inputs": [ - { - "name": "hash", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "outputs": [ - { - "name": "", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "upgradeToAndCall", - "inputs": [ - { - "name": "newImplementation", - "type": "address", - "internalType": "address" - }, - { - "name": "data", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "validateUserOp", - "inputs": [ - { - "name": "userOp", - "type": "tuple", - "internalType": "struct UserOperation", - "components": [ - { - "name": "sender", - "type": "address", - "internalType": "address" - }, - { - "name": "nonce", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "initCode", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "callData", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "callGasLimit", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "verificationGasLimit", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "preVerificationGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "maxFeePerGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "maxPriorityFeePerGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "paymasterAndData", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "signature", - "type": "bytes", - "internalType": "bytes" - } - ] - }, - { - "name": "userOpHash", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "missingAccountFunds", - "type": "uint256", - "internalType": "uint256" - } - ], - "outputs": [ - { - "name": "validationData", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "nonpayable" - }, - { - "type": "event", - "name": "AddOwner", - "inputs": [ - { - "name": "index", - "type": "uint256", - "indexed": true, - "internalType": "uint256" - }, - { - "name": "owner", - "type": "bytes", - "indexed": false, - "internalType": "bytes" - } - ], - "anonymous": false - }, - { - "type": "event", - "name": "RemoveOwner", - "inputs": [ - { - "name": "index", - "type": "uint256", - "indexed": true, - "internalType": "uint256" - }, - { - "name": "owner", - "type": "bytes", - "indexed": false, - "internalType": "bytes" - } - ], - "anonymous": false - }, - { - "type": "event", - "name": "Upgraded", - "inputs": [ - { - "name": "implementation", - "type": "address", - "indexed": true, - "internalType": "address" - } - ], - "anonymous": false - }, - { - "type": "error", - "name": "AlreadyOwner", - "inputs": [ - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } - ] - }, - { - "type": "error", - "name": "Initialized", - "inputs": [] - }, - { - "type": "error", - "name": "InvalidEthereumAddressOwner", - "inputs": [ - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } - ] - }, - { - "type": "error", - "name": "InvalidNonceKey", - "inputs": [ - { - "name": "key", - "type": "uint256", - "internalType": "uint256" - } - ] - }, - { - "type": "error", - "name": "InvalidOwnerBytesLength", - "inputs": [ - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } - ] - }, - { - "type": "error", - "name": "LastOwner", - "inputs": [] - }, - { - "type": "error", - "name": "NoOwnerAtIndex", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - } - ] - }, - { - "type": "error", - "name": "NotLastOwner", - "inputs": [ - { - "name": "ownersRemaining", - "type": "uint256", - "internalType": "uint256" - } - ] - }, - { - "type": "error", - "name": "SelectorNotAllowed", - "inputs": [ - { - "name": "selector", - "type": "bytes4", - "internalType": "bytes4" - } - ] - }, - { - "type": "error", - "name": "Unauthorized", - "inputs": [] - }, - { - "type": "error", - "name": "UnauthorizedCallContext", - "inputs": [] - }, - { - "type": "error", - "name": "UpgradeFailed", - "inputs": [] - }, - { - "type": "error", - "name": "WrongOwnerAtIndex", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "expectedOwner", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "actualOwner", - "type": "bytes", - "internalType": "bytes" - } - ] - } -] \ No newline at end of file diff --git a/constants/abis/SmartWallet.ts b/constants/abis/SmartWallet.ts new file mode 100644 index 0000000..ea744f9 --- /dev/null +++ b/constants/abis/SmartWallet.ts @@ -0,0 +1,71 @@ +export const smartWalletABI = [ + { + type: 'constructor', + inputs: [], + stateMutability: 'nonpayable', + }, + { + type: 'fallback', + stateMutability: 'payable', + }, + { + type: 'receive', + stateMutability: 'payable', + }, + { + type: 'function', + name: 'REPLAYABLE_NONCE_KEY', + inputs: [], + outputs: [ + { + name: '', + type: 'uint256', + internalType: 'uint256', + }, + ], + stateMutability: 'view', + }, + { + type: 'function', + name: 'executeBatch', + inputs: [ + { + name: 'calls', + type: 'tuple[]', + internalType: 'struct CoinbaseSmartWallet.Call[]', + components: [ + { + name: 'target', + type: 'address', + internalType: 'address', + }, + { + name: 'value', + type: 'uint256', + internalType: 'uint256', + }, + { + name: 'data', + type: 'bytes', + internalType: 'bytes', + }, + ], + }, + ], + outputs: [], + stateMutability: 'payable', + }, + { + type: 'function', + name: 'initialize', + inputs: [ + { + name: 'owners', + type: 'bytes[]', + internalType: 'bytes[]', + }, + ], + outputs: [], + stateMutability: 'payable', + }, +] as const; diff --git a/constants/abis/SmartWalletFactory.json b/constants/abis/SmartWalletFactory.json deleted file mode 100644 index c01f976..0000000 --- a/constants/abis/SmartWalletFactory.json +++ /dev/null @@ -1,92 +0,0 @@ -[ - { - "type": "constructor", - "inputs": [ - { - "name": "implementation_", - "type": "address", - "internalType": "address" - } - ], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "createAccount", - "inputs": [ - { - "name": "owners", - "type": "bytes[]", - "internalType": "bytes[]" - }, - { - "name": "nonce", - "type": "uint256", - "internalType": "uint256" - } - ], - "outputs": [ - { - "name": "account", - "type": "address", - "internalType": "contract CoinbaseSmartWallet" - } - ], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "getAddress", - "inputs": [ - { - "name": "owners", - "type": "bytes[]", - "internalType": "bytes[]" - }, - { - "name": "nonce", - "type": "uint256", - "internalType": "uint256" - } - ], - "outputs": [ - { - "name": "", - "type": "address", - "internalType": "address" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "implementation", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "address", - "internalType": "address" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "initCodeHash", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "error", - "name": "OwnerRequired", - "inputs": [] - } -] \ No newline at end of file diff --git a/constants/abis/SmartWalletFactory.ts b/constants/abis/SmartWalletFactory.ts new file mode 100644 index 0000000..2be93e6 --- /dev/null +++ b/constants/abis/SmartWalletFactory.ts @@ -0,0 +1,92 @@ +export const smartWalletFactoryAbi = [ + { + type: 'constructor', + inputs: [ + { + name: 'implementation_', + type: 'address', + internalType: 'address', + }, + ], + stateMutability: 'payable', + }, + { + type: 'function', + name: 'createAccount', + inputs: [ + { + name: 'owners', + type: 'bytes[]', + internalType: 'bytes[]', + }, + { + name: 'nonce', + type: 'uint256', + internalType: 'uint256', + }, + ], + outputs: [ + { + name: 'account', + type: 'address', + internalType: 'address', + }, + ], + stateMutability: 'payable', + }, + { + type: 'function', + name: 'getAddress', + inputs: [ + { + name: 'owners', + type: 'bytes[]', + internalType: 'bytes[]', + }, + { + name: 'nonce', + type: 'uint256', + internalType: 'uint256', + }, + ], + outputs: [ + { + name: '', + type: 'address', + internalType: 'address', + }, + ], + stateMutability: 'view', + }, + { + type: 'function', + name: 'implementation', + inputs: [], + outputs: [ + { + name: '', + type: 'address', + internalType: 'address', + }, + ], + stateMutability: 'view', + }, + { + type: 'function', + name: 'initCodeHash', + inputs: [], + outputs: [ + { + name: '', + type: 'bytes32', + internalType: 'bytes32', + }, + ], + stateMutability: 'view', + }, + { + type: 'error', + name: 'OwnerRequired', + inputs: [], + }, +] as const; diff --git a/constants/abis/index.ts b/constants/abis/index.ts index 097c92e..bb0deef 100644 --- a/constants/abis/index.ts +++ b/constants/abis/index.ts @@ -1,8 +1,7 @@ import * as AerodromeFactoryABI from './AerodromeFactoryABI.json'; import * as OffchainOracleABI from './OffchainOracle'; import * as EntryPointABI from './EntryPoint.json'; -import * as SmartWalletABI from './SmartWallet.json'; -import * as SmartWalletFactoryABI from './SmartWalletFactory.json'; +import * as SmartWalletABI from './SmartWallet'; import * as AerodromeConnectorABI from './AerodromeConnector.json'; import * as ConnectorPluginABI from './ConnectorPlugin.json'; import * as AerodromePoolABI from './AerodromePoolABI.json'; @@ -14,7 +13,6 @@ export { AerodromeFactoryABI, OffchainOracleABI, SmartWalletABI, - SmartWalletFactoryABI, EntryPointABI, AerodromeConnectorABI, ConnectorPluginABI, diff --git a/hooks/useCalls.ts b/hooks/useCalls.ts index 50f0d50..9e95aa7 100644 --- a/hooks/useCalls.ts +++ b/hooks/useCalls.ts @@ -10,12 +10,12 @@ import { useCallback } from 'react'; export function useMakeCalls() { const { signTransaction } = useSmartAccountActions(); - const { pimlicoClient, smartAccountClient } = useClients(); + const { paymaster, smartAccountClient } = useClients(); const makeCalls = useCallback( async ({ calls, account }: { calls: Call[]; account: Address }) => { // Build the user operation - const op = await buildUserOp(account, smartAccountClient, { + const op = await buildUserOp(account, smartAccountClient!, { calls, paymasterAndData: '0x', // Initialize with empty paymaster data }); @@ -25,7 +25,7 @@ export function useMakeCalls() { // Get paymaster data const paymasterResult = await getPaymasterData({ - paymasterClient: pimlicoClient, + paymasterClient: paymaster, callData: op.callData, sender: op.sender, nonce: op.nonce, @@ -63,9 +63,18 @@ export function useMakeCalls() { op.signature = signature!; // Send the user operation - const opHash = await smartAccountClient.sendUserOperation({ - userOperation: op, - entryPoint: entryPoint06Address, + const opHash = await smartAccountClient?.sendUserOperation({ + account: smartAccountClient.account, + callData: op.callData, + initCode: op.initCode, + nonce: op.nonce, + maxFeePerGas: op.maxFeePerGas, + maxPriorityFeePerGas: op.maxPriorityFeePerGas, + callGasLimit: op.callGasLimit, + verificationGasLimit: op.verificationGasLimit, + preVerificationGas: op.preVerificationGas, + paymasterAndData: op.paymasterAndData, + signature: op.signature, }); return { @@ -80,7 +89,7 @@ export function useMakeCalls() { // sort ascending order, 0 first const _calls = calls.sort((a, b) => a.index - b.index); return encodeFunctionData({ - abi: SmartWalletABI, + abi: SmartWalletABI.smartWalletABI, functionName: 'executeBatch', args: [_calls], }); diff --git a/hooks/useLiquid.ts b/hooks/useLiquid.ts index b709564..8f452c9 100644 --- a/hooks/useLiquid.ts +++ b/hooks/useLiquid.ts @@ -167,9 +167,8 @@ export function useLiquidity(publicClient: PublicClient) { calls, account, }); - return handleTransaction(publicClient, { - hash: opHash, + hash: opHash as `0x${string}`, ...txConfig, }); }, @@ -196,9 +195,8 @@ export function useLiquidity(publicClient: PublicClient) { calls: [call], account, }); - return handleTransaction(publicClient, { - hash: opHash, + hash: opHash as `0x${string}`, ...txConfig, }); }, @@ -231,9 +229,8 @@ export function useLiquidity(publicClient: PublicClient) { calls: [call], account, }); - return handleTransaction(publicClient, { - hash: opHash, + hash: opHash as `0x${string}`, ...txConfig, }); }, @@ -254,9 +251,8 @@ export function useLiquidity(publicClient: PublicClient) { calls: [call], account, }); - return handleTransaction(publicClient, { - hash: opHash, + hash: opHash as `0x${string}`, ...txConfig, }); }, diff --git a/init/useViem.ts b/init/useViem.ts index 5ad8140..2bc5720 100644 --- a/init/useViem.ts +++ b/init/useViem.ts @@ -1,14 +1,17 @@ import { useMemo } from 'react'; import { Address, createPublicClient, http } from 'viem'; -import { createPaymasterClient, entryPoint06Address } from 'viem/account-abstraction'; -import { createPimlicoClient } from 'permissionless/clients/pimlico'; +import { createBundlerClient, createPaymasterClient, entryPoint06Address } from 'viem/account-abstraction'; import { createSmartAccountClient } from 'permissionless'; import { base } from 'viem/chains'; import { rpcUrl, pimilcoRPCURL, bundlerUrl } from '@/constants/env'; import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { useSmartAccountActions } from '@/store/smartAccount/actions'; +import { useAuth } from '@/providers'; export function useClients() { const { smartAccountState } = useSystemFunctions(); + const { session } = useAuth(); + const account = smartAccountState.address as Address; const publicClient = useMemo( @@ -20,37 +23,23 @@ export function useClients() { [] ); - const pimlicoClient = useMemo( - () => - createPimlicoClient({ - transport: http(pimilcoRPCURL), - entryPoint: { - address: entryPoint06Address, - version: '0.6', - }, - }), - [] - ); + const paymaster = createPaymasterClient({ + transport: http(pimilcoRPCURL), + }); const smartAccountClient = useMemo(() => { if (!account) return null; - return createSmartAccountClient({ - account, + account: session!, chain: base, bundlerTransport: http(pimilcoRPCURL), - paymaster: pimlicoClient, - userOperation: { - estimateFeesPerGas: async () => { - return (await pimlicoClient.getUserOperationGasPrice()).fast; - }, - }, + paymaster, }); - }, [account, pimlicoClient]); + }, [account, paymaster]); return { publicClient, - pimlicoClient, + paymaster, smartAccountClient, }; } diff --git a/package.json b/package.json index 1afa9c4..3a9c60f 100644 --- a/package.json +++ b/package.json @@ -54,7 +54,7 @@ "fast-text-encoding": "^1.0.6", "lodash": "^4.17.21", "moment": "^2.30.1", - "permissionless": "^0.2.0", + "permissionless": "^0.2.17", "react": "18.2.0", "react-dom": "18.2.0", "react-hook-form": "^7.53.0", diff --git a/utils/wallet.ts b/utils/wallet.ts index 2d1eef2..a13f61d 100644 --- a/utils/wallet.ts +++ b/utils/wallet.ts @@ -1,10 +1,12 @@ -import { EntryPointABI, SmartWalletABI, SmartWalletFactoryABI } from '@/constants/abis'; +import { EntryPointABI, SmartWalletABI } from '@/constants/abis'; import { ACCOUNT_FACTORY_ADDRESS, ENTRYPOINT_V06_ADDRESS } from '@/constants/addresses'; import { Address, Chain, encodeAbiParameters, encodeFunctionData, Hex, keccak256, PublicClient, Transport } from 'viem'; import { entryPoint06Abi, entryPoint06Address, estimateUserOperationGas, PaymasterClient, UserOperation } from 'viem/account-abstraction'; -import { estimateFeesPerGas, getBytecode, getCode, readContract } from 'viem/actions'; +import { estimateFeesPerGas, getCode, readContract } from 'viem/actions'; import { Call, PaymasterResult } from './types'; -import { PimlicoClient } from 'permissionless/clients/pimlico'; +import { SmartAccountClient } from 'permissionless'; +import { publicClient } from '@/init/client'; +import { smartWalletFactoryAbi } from '@/constants/abis/SmartWalletFactory'; export const PASSKEY_OWNER_DUMMY_SIGNATURE: Hex = '0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000170000000000000000000000000000000000000000000000000000000000000001949fc7c88032b9fcb5f6efc7a7b8c63668eae9871b765e23123bb473ff57aa831a7c0d9276168ebcc29f2875a0239cffdf2a9cd1c2007c5c77c071db9264df1d000000000000000000000000000000000000000000000000000000000000002549960de5880e8c687434170f6476605b8fe4aeb9a28632c7995cf3ba831d97630500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a7b2274797065223a22776562617574686e2e676574222c226368616c6c656e6765223a2273496a396e6164474850596759334b7156384f7a4a666c726275504b474f716d59576f4d57516869467773222c226f726967696e223a2268747470733a2f2f7369676e2e636f696e626173652e636f6d222c2263726f73734f726967696e223a66616c73657d00000000000000000000000000000000000000000000'; @@ -12,7 +14,7 @@ export const PASSKEY_OWNER_DUMMY_SIGNATURE: Hex = // https://github.com/wilsoncusack/scw-tx/blob/5ff88a10e928b5df9ec12bce2ef64caa0b35afcd/utils/smartWallet.ts#L10 export async function buildUserOp( smartWalletAddress: Address, - client: PimlicoClient, + client: SmartAccountClient, { calls, // If you want to sponsor user operations with a paymaster, pass in the response of the `pm_sponsorUserOperation` RPC @@ -27,23 +29,38 @@ export async function buildUserOp( console.log(initCode, 'got here'); // `getBytecode` is imported from 'viem/actions' // Check if the smart wallet has been deployed by seeing if there's code at that address - const code = await getCode(client, { address: smartWalletAddress }); + const code = await getCode(publicClient, { address: smartWalletAddress }); + // If not, set `initCode` to deploy the smart wallet using the helpers above - if (!code) { - initCode = getInitCode({ owners: [smartWalletAddress], index: 0n }); + if (!code || code === '0x') { + console.log('Wallet not deployed, generating initCode'); + + const owners = [smartWalletAddress]; // Log the owners being used + console.log('Owners:', owners); + + initCode = getInitCode({ owners, index: 0n }); + console.log('Generated initCode:', initCode); + console.log('Factory address used:', ACCOUNT_FACTORY_ADDRESS); } // Pass the transactions you want into the `buildUserOperationCalldata` helper from above to build the `callData` param for the user op const callData = buildUserOperationCalldata({ calls }); // Get the smart wallet's `nonce` by calling the `getNonce` method on the entrypoint contract - const nonce = await readContract(client, { + const nonce = await readContract(publicClient, { address: ENTRYPOINT_V06_ADDRESS, abi: entryPoint06Abi, functionName: 'getNonce', args: [smartWalletAddress, 0n], }); // Get the current gas fees from the network - let maxFeesPerGas = await estimateFeesPerGas(client); + let maxFeesPerGas = await estimateFeesPerGas(publicClient); + console.log('Max fees:', { + maxFeePerGas: maxFeesPerGas.maxFeePerGas.toString(), + maxPriorityFeePerGas: maxFeesPerGas.maxPriorityFeePerGas.toString(), + }); + // Increase gas limits for deployment + const baseGasLimit = 1_000_000n; + const deploymentBuffer = !code ? 3n : 1n; // Double gas limits for deployment // Put all the fields together in a user op const op = { @@ -53,9 +70,10 @@ export async function buildUserOp( callData, paymasterAndData, signature: PASSKEY_OWNER_DUMMY_SIGNATURE, - preVerificationGas: 1_000_000n, - verificationGasLimit: 1_000_000n, - callGasLimit: 1_000_000n, + preVerificationGas: baseGasLimit * deploymentBuffer, + verificationGasLimit: baseGasLimit * deploymentBuffer, + callGasLimit: baseGasLimit * deploymentBuffer, + entryPoint06Address, ...maxFeesPerGas, }; @@ -72,6 +90,7 @@ export async function buildUserOp( callGasLimit: op.callGasLimit, maxFeePerGas: op.maxFeePerGas, maxPriorityFeePerGas: op.maxPriorityFeePerGas, + entryPointAddress: entryPoint06Address, }); return { @@ -89,7 +108,7 @@ export function getInitCode({ owners, index }: { owners: Hex[]; index: bigint }) export function createAccountCalldata({ owners, nonce }: { owners: Hex[]; nonce: bigint }) { return encodeFunctionData({ - abi: SmartWalletFactoryABI, + abi: smartWalletFactoryAbi, functionName: 'createAccount', args: [owners, nonce], }); @@ -99,7 +118,7 @@ export function buildUserOperationCalldata({ calls }: { calls: Call[] }): Hex { // sort ascending order, 0 first const _calls = calls.sort((a, b) => a.index - b.index); return encodeFunctionData({ - abi: SmartWalletABI, + abi: SmartWalletABI.smartWalletABI, functionName: 'executeBatch', args: [_calls], }); diff --git a/yarn.lock b/yarn.lock index e3ce0e4..a69f987 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7791,7 +7791,7 @@ peek-readable@^4.1.0: resolved "https://registry.yarnpkg.com/peek-readable/-/peek-readable-4.1.0.tgz#4ece1111bf5c2ad8867c314c81356847e8a62e72" integrity sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg== -permissionless@^0.2.0: +permissionless@^0.2.17: version "0.2.17" resolved "https://registry.yarnpkg.com/permissionless/-/permissionless-0.2.17.tgz#fca70dededbd4a7006de08988003042c184dc6f3" integrity sha512-M2+8qXNWTo2mmiriBhCFtNUOKd8UDJ1AXNnLflJw9VePIv5PNR1QqkTa76wWb1mzoZyc1hVObmA0pi7puCBj3A== From c94e80965e81eeeffc0c15b041435582175aa425 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Sun, 17 Nov 2024 11:37:29 +0100 Subject: [PATCH 47/95] chore: use public key as signer --- hooks/useCalls.ts | 13 +++++++++++-- init/client.ts | 7 ++++++- init/types.ts | 4 ++-- init/useViem.ts | 4 ++-- utils/wallet.ts | 15 +++++---------- 5 files changed, 26 insertions(+), 17 deletions(-) diff --git a/hooks/useCalls.ts b/hooks/useCalls.ts index 9e95aa7..12cf984 100644 --- a/hooks/useCalls.ts +++ b/hooks/useCalls.ts @@ -7,6 +7,8 @@ import { useSmartAccountActions } from '@/store/smartAccount/actions'; import { SmartWalletABI } from '@/constants/abis'; import { ENTRYPOINT_V06_ADDRESS } from '@/constants/addresses'; import { useCallback } from 'react'; +import { getPersistedSmartAccountInfo } from '@/store/smartAccount/persist'; +import { getPublicKeyHex } from '@/utils/base64'; export function useMakeCalls() { const { signTransaction } = useSmartAccountActions(); @@ -14,9 +16,12 @@ export function useMakeCalls() { const makeCalls = useCallback( async ({ calls, account }: { calls: Call[]; account: Address }) => { + const { publicKey, credentialID } = await getPersistedSmartAccountInfo(); + // Build the user operation const op = await buildUserOp(account, smartAccountClient!, { calls, + signers: [getPublicKeyHex(publicKey) as Hex], paymasterAndData: '0x', // Initialize with empty paymaster data }); @@ -60,7 +65,11 @@ export function useMakeCalls() { const signature = await signTransaction(hash); - op.signature = signature!; + // Create new operation object with signature + const signedOp = { + ...op, + signature: signature!, + }; // Send the user operation const opHash = await smartAccountClient?.sendUserOperation({ @@ -74,7 +83,7 @@ export function useMakeCalls() { verificationGasLimit: op.verificationGasLimit, preVerificationGas: op.preVerificationGas, paymasterAndData: op.paymasterAndData, - signature: op.signature, + signature: signedOp.signature, }); return { diff --git a/init/client.ts b/init/client.ts index 835fc2e..135aafa 100644 --- a/init/client.ts +++ b/init/client.ts @@ -1,8 +1,13 @@ -import { rpcUrl } from '@/constants/env'; +import { pimilcoRPCURL, rpcUrl } from '@/constants/env'; import { createPublicClient, http } from 'viem'; +import { createBundlerClient, createPaymasterClient, paymasterActions } from 'viem/account-abstraction'; import { base } from 'viem/chains'; export const publicClient = createPublicClient({ chain: base, transport: http(rpcUrl), }); + +export const bundlerClient = createBundlerClient({ + transport: http(pimilcoRPCURL), +}).extend(paymasterActions); diff --git a/init/types.ts b/init/types.ts index a7ea4dc..b8085dd 100644 --- a/init/types.ts +++ b/init/types.ts @@ -1,4 +1,4 @@ -import { Address as EthereumAddress } from 'viem'; +import { Address as EthereumAddress, Hex } from 'viem'; import { ToCoinbaseSmartAccountReturnType } from 'viem/account-abstraction'; import { PublicKeyCredentialCreationOptionsJSON, @@ -37,7 +37,7 @@ export type SmartAccount = ToCoinbaseSmartAccountReturnType; * Info about the smart account that is persisted to secure store, used to re-initialize the smart account */ export type SmartAccountPersistedInfo = { - publicKey: string; + publicKey: string | Hex; credentialID: string; }; diff --git a/init/useViem.ts b/init/useViem.ts index 2bc5720..f8f449c 100644 --- a/init/useViem.ts +++ b/init/useViem.ts @@ -1,6 +1,6 @@ import { useMemo } from 'react'; import { Address, createPublicClient, http } from 'viem'; -import { createBundlerClient, createPaymasterClient, entryPoint06Address } from 'viem/account-abstraction'; +import { createBundlerClient, createPaymasterClient, entryPoint06Address, paymasterActions } from 'viem/account-abstraction'; import { createSmartAccountClient } from 'permissionless'; import { base } from 'viem/chains'; import { rpcUrl, pimilcoRPCURL, bundlerUrl } from '@/constants/env'; @@ -25,7 +25,7 @@ export function useClients() { const paymaster = createPaymasterClient({ transport: http(pimilcoRPCURL), - }); + }).extend(paymasterActions); const smartAccountClient = useMemo(() => { if (!account) return null; diff --git a/utils/wallet.ts b/utils/wallet.ts index a13f61d..481aa16 100644 --- a/utils/wallet.ts +++ b/utils/wallet.ts @@ -5,11 +5,10 @@ import { entryPoint06Abi, entryPoint06Address, estimateUserOperationGas, Paymast import { estimateFeesPerGas, getCode, readContract } from 'viem/actions'; import { Call, PaymasterResult } from './types'; import { SmartAccountClient } from 'permissionless'; -import { publicClient } from '@/init/client'; +import { bundlerClient, publicClient } from '@/init/client'; import { smartWalletFactoryAbi } from '@/constants/abis/SmartWalletFactory'; -export const PASSKEY_OWNER_DUMMY_SIGNATURE: Hex = - '0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000170000000000000000000000000000000000000000000000000000000000000001949fc7c88032b9fcb5f6efc7a7b8c63668eae9871b765e23123bb473ff57aa831a7c0d9276168ebcc29f2875a0239cffdf2a9cd1c2007c5c77c071db9264df1d000000000000000000000000000000000000000000000000000000000000002549960de5880e8c687434170f6476605b8fe4aeb9a28632c7995cf3ba831d97630500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a7b2274797065223a22776562617574686e2e676574222c226368616c6c656e6765223a2273496a396e6164474850596759334b7156384f7a4a666c726275504b474f716d59576f4d57516869467773222c226f726967696e223a2268747470733a2f2f7369676e2e636f696e626173652e636f6d222c2263726f73734f726967696e223a66616c73657d00000000000000000000000000000000000000000000'; +export const PASSKEY_OWNER_DUMMY_SIGNATURE: Hex = '0x'; // https://github.com/wilsoncusack/scw-tx/blob/5ff88a10e928b5df9ec12bce2ef64caa0b35afcd/utils/smartWallet.ts#L10 export async function buildUserOp( @@ -17,11 +16,13 @@ export async function buildUserOp( client: SmartAccountClient, { calls, + signers, // If you want to sponsor user operations with a paymaster, pass in the response of the `pm_sponsorUserOperation` RPC // to your paymaster to the `paymasterAndData` param here: https://docs.pimlico.io/infra/paymaster/verifying-paymaster/endpoints#entrypoint-v06 paymasterAndData = '0x', }: { calls: Call[]; + signers: Hex[]; paymasterAndData: Hex; } ) { @@ -35,10 +36,7 @@ export async function buildUserOp( if (!code || code === '0x') { console.log('Wallet not deployed, generating initCode'); - const owners = [smartWalletAddress]; // Log the owners being used - console.log('Owners:', owners); - - initCode = getInitCode({ owners, index: 0n }); + initCode = getInitCode({ owners: signers, index: 0n }); console.log('Generated initCode:', initCode); console.log('Factory address used:', ACCOUNT_FACTORY_ADDRESS); } @@ -69,11 +67,9 @@ export async function buildUserOp( initCode, callData, paymasterAndData, - signature: PASSKEY_OWNER_DUMMY_SIGNATURE, preVerificationGas: baseGasLimit * deploymentBuffer, verificationGasLimit: baseGasLimit * deploymentBuffer, callGasLimit: baseGasLimit * deploymentBuffer, - entryPoint06Address, ...maxFeesPerGas, }; @@ -84,7 +80,6 @@ export async function buildUserOp( initCode: op.initCode, callData: op.callData, paymasterAndData: op.paymasterAndData, - signature: op.signature, preVerificationGas: op.preVerificationGas, verificationGasLimit: op.verificationGasLimit, callGasLimit: op.callGasLimit, From 27bcb95e3c8d935e9706b33df37022539b27ed4d Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Sun, 17 Nov 2024 12:24:11 +0100 Subject: [PATCH 48/95] Implement pool data and add Liquidity (#64) * chore: update types * chore: refactor registration process * chore: add native eth to token return list * chore: pass public key returned from backend * chore: update verification call payload * chore: refactor pool liquidity * chore: remove earn and fees on empty data * chore: update holdings * update data naming * revert top10pools * chore: update pool details * clean up integration * integrate tokens in liquidity * handle pool pair * updates * chore: fix public key mismatch * chore: handle positions reducer * chore: update position reducer * chore: fix verification response typing * remove pools from percisted, add token by address * update pool integration * chore: update texts * chore: revert vol type conversion * change search to be trending pools * chore: fix account bug * integrate add liquidity * chore: add total fee usd to pool stats * chore: fix fee display data * chore: updates * update ui * remove logs * add input format functionality * chore: fix account abstraction types * update add liquidity screen implementations * chore: implement a calls hook * chore: refactor paymaster config to use pimilco * chore: refactor viem client to use pimilco * chore: use public key as signer --------- Co-authored-by: meisterjustice --- app/_layout.tsx | 3 +- components/asset-selection/index.tsx | 40 +- components/asset-selection/types.ts | 17 +- components/pool-pair-card/index.tsx | 14 +- components/pool-pair-paper/index.tsx | 46 +- components/pool-pair-paper/types.ts | 1 + components/search-ui/index.tsx | 51 +- components/search-ui/sections.tsx | 1 + constants/abis/SmartWallet.json | 805 ------------------ constants/abis/SmartWallet.ts | 71 ++ constants/abis/SmartWalletFactory.json | 92 -- constants/abis/SmartWalletFactory.ts | 92 ++ constants/abis/index.ts | 4 +- constants/addresses.ts | 2 + constants/env.ts | 3 + hooks/useCalls.ts | 111 +++ hooks/useContract.ts | 11 +- hooks/useLiquid.ts | 147 +++- hooks/usePosition.ts | 0 hooks/useToken.ts | 7 +- init/api.ts | 36 +- init/client.ts | 13 + init/types.ts | 43 +- init/useViem.ts | 45 + init/viem.ts | 20 - package.json | 4 +- providers/AuthProvider.tsx | 2 +- screens/holdings/assets/index.tsx | 5 +- screens/holdings/card.tsx | 41 +- screens/holdings/dummy.ts | 12 - screens/holdings/index.tsx | 21 +- screens/holdings/pools/index.tsx | 1 + screens/holdings/types.ts | 2 +- screens/home/index.tsx | 19 +- .../add/coin-selector-input.tsx | 52 +- screens/liquidity-actions/add/index.tsx | 333 +++++--- .../liquidity-actions/add/pool-selector.tsx | 49 ++ screens/liquidity-actions/add/styles.ts | 9 +- screens/liquidity-actions/add/types.ts | 25 +- screens/liquidity-management/index.tsx | 12 +- screens/liquidity-management/types.ts | 8 +- screens/pool-detail/balance.tsx | 15 +- screens/pool-detail/header.tsx | 18 +- screens/pool-detail/index.tsx | 37 +- screens/pool-detail/pool-liquidity.tsx | 82 +- screens/pool-detail/stats.tsx | 10 +- screens/pool-detail/types.ts | 31 +- store/account/actions.ts | 105 ++- store/account/index.ts | 27 +- store/account/types.ts | 47 + store/index.ts | 2 +- store/pools/actions.ts | 57 +- store/pools/index.ts | 8 +- store/pools/types.ts | 11 +- store/smartAccount/actions.ts | 29 +- store/smartAccount/create.ts | 32 +- utils/calls.ts | 69 -- utils/encoders.ts | 102 ++- utils/helpers.ts | 66 +- utils/wallet.ts | 72 +- yarn.lock | 39 +- 61 files changed, 1538 insertions(+), 1591 deletions(-) delete mode 100644 constants/abis/SmartWallet.json create mode 100644 constants/abis/SmartWallet.ts delete mode 100644 constants/abis/SmartWalletFactory.json create mode 100644 constants/abis/SmartWalletFactory.ts create mode 100644 hooks/useCalls.ts create mode 100644 hooks/usePosition.ts create mode 100644 init/client.ts create mode 100644 init/useViem.ts delete mode 100644 init/viem.ts create mode 100644 screens/liquidity-actions/add/pool-selector.tsx create mode 100644 store/account/types.ts delete mode 100644 utils/calls.ts diff --git a/app/_layout.tsx b/app/_layout.tsx index 783714b..85c0757 100644 --- a/app/_layout.tsx +++ b/app/_layout.tsx @@ -3,7 +3,8 @@ import 'react-native-reanimated'; import { Stack } from 'expo-router'; // setup viem and api on app start -import '@/init/viem'; +import '@/init/useViem'; +import '@/init/client'; import '@/init/api'; import { AllProviders } from '@/providers'; diff --git a/components/asset-selection/index.tsx b/components/asset-selection/index.tsx index 2d55e22..b2b2e1e 100644 --- a/components/asset-selection/index.tsx +++ b/components/asset-selection/index.tsx @@ -3,27 +3,33 @@ import { View, Text, StyleSheet, TouchableOpacity, Image, ScrollView } from 'rea import { useForm } from 'react-hook-form'; import { CheckIcon } from '@/assets/icons'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { adjustFontSizeForIOS, formatAmount } from '@/utils/helpers'; import LQDBottomSheet from '../bottom-sheet'; import LQDInput from '../input'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { AssetSelection } from './types'; +import { TokenItem } from '@/store/account/types'; + +const LQDAssetSelection = ({ close, setAsset, show, title, selectedAsset }: AssetSelection) => { + const { accountState } = useSystemFunctions(); + const { tokens } = accountState; -const LQDAssetSelection = ({ assets, close, setAsset, show, title, asset }: IAssetSelection) => { const { control, watch } = useForm(); const searchValue = watch('search', ''); const searchedAssets = useMemo(() => { - if (!searchValue) return assets; - return assets.filter( - (asset) => - asset.name.toLowerCase().includes(searchValue.toLowerCase()) || asset.symbol.toLowerCase().includes(searchValue.toLowerCase()) + if (!searchValue) return tokens.data; + + return tokens.data.filter( + (asset) => asset.symbol.toLowerCase().includes(searchValue.toLowerCase()) || asset.address.includes(searchValue.toLowerCase()) ); }, [searchValue]); - const action = (active: boolean, asset: IAsset) => { - if (!active) { - setAsset(asset); - close(); - } + const action = (active: boolean, asset: TokenItem) => { + if (active) return; + + setAsset(asset); + close(); }; return ( @@ -42,20 +48,20 @@ const LQDAssetSelection = ({ assets, close, setAsset, show, title, asset }: IAss /> - {searchedAssets.map((asset_, index) => { - const active = asset?.id === asset_?.id; + {searchedAssets.map((_asset, index) => { + const active = selectedAsset?.address === _asset?.address; return ( - action(active, asset_)} disabled={active}> + action(active, _asset)} disabled={active}> - + - {asset_?.name} + {_asset?.symbol} - {asset_.balance.toLocaleString()} {asset_?.symbol} + {formatAmount(_asset.balance).toLocaleString()} {_asset?.symbol} diff --git a/components/asset-selection/types.ts b/components/asset-selection/types.ts index 332cbd6..f63e9cf 100644 --- a/components/asset-selection/types.ts +++ b/components/asset-selection/types.ts @@ -1,16 +1,9 @@ -interface IAssetSelection { +import { TokenItem } from '@/store/account/types'; + +export interface AssetSelection { title: string; show: boolean; close: () => void; - setAsset: (asset: IAsset) => void; - asset?: IAsset; - assets: Array; -} - -interface IAsset { - id: string; - name: string; - symbol: string; - balance: number; - iconUrl: string; + setAsset: (asset: TokenItem) => void; + selectedAsset?: TokenItem; } diff --git a/components/pool-pair-card/index.tsx b/components/pool-pair-card/index.tsx index 55ee8b8..5bbfe9b 100644 --- a/components/pool-pair-card/index.tsx +++ b/components/pool-pair-card/index.tsx @@ -26,8 +26,8 @@ const LQDPoolPairCard = ({ pool, navigationVariant = 'primary' }: PoolPairCard) const primaryIconURL = pool.token0.logoUrl; const secondaryIconURL = pool.token1.logoUrl; const symbol = pool.symbol.split('-')[1].replace('/', ' / '); - const increased = pool.isStable; - const change = 2.3; + const increased = true; + const change = pool.apr; return ( @@ -35,7 +35,7 @@ const LQDPoolPairCard = ({ pool, navigationVariant = 'primary' }: PoolPairCard) {[primaryIconURL, secondaryIconURL].map((iconURL, index) => ( - + ))} @@ -84,7 +84,7 @@ const styles = StyleSheet.create({ height: 24, alignItems: 'center', justifyContent: 'center', - borderRadius: 9999, + borderRadius: 12, borderWidth: 1, borderColor: '#EAEEF4', marginRight: -6, @@ -113,4 +113,10 @@ const styles = StyleSheet.create({ fontWeight: '500', fontFamily: 'AeonikMedium', }, + + image: { + width: 24, + height: 24, + borderRadius: 24, + }, }); diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index 981644a..3a0632b 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -1,13 +1,28 @@ import { StyleSheet, View, Text, Image, TouchableOpacity } from 'react-native'; import { Href } from 'expo-router'; -import { adjustFontSizeForIOS, formatAmount, formatNumberWithSuffix } from '@/utils/helpers'; +import { adjustFontSizeForIOS, formatAmount, formatNumberWithSuffix, roundUp } from '@/utils/helpers'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { setSelectedPool } from '@/store/pools'; import { PoolPairPaper } from './types'; -import { formatEther } from 'viem'; -const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary' }: PoolPairPaper) => { +const formatSymbol = (symbol: string, showFullSymbol?: boolean) => { + if (!showFullSymbol) { + return symbol.split('-')[1].replace('/', ' / '); + } + + if (symbol.toLowerCase().includes('volatile')) { + return `vAMM - ${symbol.split('-')[1].replace('/', ' / ')}`; + } + + if (symbol.toLowerCase().includes('stable')) { + return `sAMM - ${symbol.split('-')[1].replace('/', ' / ')}`; + } + + return symbol; +}; + +const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol }: PoolPairPaper) => { const { router, dispatch } = useSystemFunctions(); const paths = { @@ -20,12 +35,15 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary' }: PoolPairPaper router.push(paths[navigationVariant]); }; + const vol = Number(Number(pool.totalVolumeUSD).toFixed(4)); + const primaryIconURL = pool.token0.logoUrl; const secondaryIconURL = pool.token1.logoUrl; - const symbol = pool.symbol.split('-')[1].replace('/', ' / '); + const symbol = formatSymbol(pool.symbol, showFullSymbol); const apr = formatAmount(pool.apr, 2); - const fees = ''; - const volume = formatAmount(formatEther(BigInt(pool.totalVolumeUSD)), 0); + const fees = Number(pool.poolFee) > 1000 ? formatNumberWithSuffix(pool.poolFee) : roundUp(Number(pool.poolFee)); + const volume = formatNumberWithSuffix(vol); + const tvl = pool.tvl; const isStable = pool.isStable; return ( @@ -34,7 +52,7 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary' }: PoolPairPaper {[primaryIconURL, secondaryIconURL].map((iconURL, index) => ( - + ))} @@ -57,7 +75,7 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary' }: PoolPairPaper APR: {apr.toLocaleString()}% - VOL: ${formatNumberWithSuffix(volume)} + VOL: ${volume} ); @@ -78,6 +96,7 @@ const styles = StyleSheet.create({ alignSelf: 'stretch', alignItems: 'center', gap: 10 + 6, + maxWidth: '70%', }, iconContainer: { @@ -107,6 +126,7 @@ const styles = StyleSheet.create({ fontSize: adjustFontSizeForIOS(14, 2), lineHeight: 18.48, fontWeight: '500', + marginLeft: -6, fontFamily: 'AeonikMedium', }, @@ -125,14 +145,14 @@ const styles = StyleSheet.create({ }, basicTextVolatile: { - color: '#AF1D38', + color: '#B47818', fontSize: adjustFontSizeForIOS(11, 2), lineHeight: 13.64, fontFamily: 'AeonikRegular', }, basicTextStable: { - color: '#B47818', + color: '#156146', fontSize: adjustFontSizeForIOS(11, 2), lineHeight: 13.64, fontFamily: 'AeonikRegular', @@ -175,4 +195,10 @@ const styles = StyleSheet.create({ textTransform: 'uppercase', fontFamily: 'AeonikRegular', }, + + image: { + width: 24, + height: 24, + borderRadius: 24, + }, }); diff --git a/components/pool-pair-paper/types.ts b/components/pool-pair-paper/types.ts index 8430a2f..ccf6975 100644 --- a/components/pool-pair-paper/types.ts +++ b/components/pool-pair-paper/types.ts @@ -3,4 +3,5 @@ import { Pool } from '@/store/pools/types'; export interface PoolPairPaper { pool: Pool; navigationVariant?: 'primary' | 'secondary'; + showFullSymbol?: boolean; } diff --git a/components/search-ui/index.tsx b/components/search-ui/index.tsx index 808788e..8ee5160 100644 --- a/components/search-ui/index.tsx +++ b/components/search-ui/index.tsx @@ -1,5 +1,5 @@ import { useState } from 'react'; -import { View, StyleSheet, ScrollView } from 'react-native'; +import { View, StyleSheet, ScrollView, FlatList } from 'react-native'; import SearchSection from './sections'; import { recents, explore } from './dummy'; @@ -12,11 +12,13 @@ import { usePoolActions } from '@/store/pools/actions'; const SearchUI = () => { const { router, poolsState } = useSystemFunctions(); - const { searchPools } = usePoolActions(); + const { searchPools, getPaginatedSearchPools } = usePoolActions(); + const [searchText, setSearchText] = useState(''); const [showRecents, setShowRecents] = useState(true); - const pools = poolsState.trendingPools.data.slice(0, 10); + const trendingPools = poolsState.trendingPools.data.slice(0, 10); + const searchedPools = poolsState.searchedPools.data; const sections: Array> = [ { @@ -43,10 +45,10 @@ const SearchUI = () => { }, { - title: 'Trending', + title: 'Trending Pools', children: ( - {pools.map((pool, index) => ( + {trendingPools.map((pool, index) => ( ))} @@ -59,29 +61,47 @@ const SearchUI = () => { title: 'Results', children: ( - {pools.map((pool, index) => ( - - ))} + } + keyExtractor={(_, index) => index.toString()} + contentContainerStyle={{ gap: 24 }} + onEndReached={() => getPaginatedSearchPools(searchText)} + onEndReachedThreshold={0.1} + bounces={true} + showsVerticalScrollIndicator={false} + /> ), }, ]; - const sectionsToShow = false ? searchResultSection : showRecents ? sections : sections.slice(1); + const sectionsToShow = searchedPools.length > 0 ? searchResultSection : showRecents ? sections : sections.slice(1); const handleQuery = (value: string) => { searchPools(value); + setSearchText(value); }; return ( <> - - {sectionsToShow.map((section, index) => ( - - ))} - + {searchedPools.length == 0 && ( + + {sectionsToShow.map((section, index) => ( + + ))} + + )} + + {searchedPools.length > 0 && ( + + {sectionsToShow.map((section, index) => ( + + ))} + + )} ); }; @@ -93,9 +113,6 @@ const styles = StyleSheet.create({ backgroundColor: '#fff', flex: 1, paddingHorizontal: 16, - }, - - content: { paddingTop: 34, paddingBottom: 68, gap: 40, diff --git a/components/search-ui/sections.tsx b/components/search-ui/sections.tsx index a7af317..bb93418 100644 --- a/components/search-ui/sections.tsx +++ b/components/search-ui/sections.tsx @@ -47,6 +47,7 @@ const styles = StyleSheet.create({ section: { alignSelf: 'stretch', gap: 20, + marginBottom: 24, }, title: { diff --git a/constants/abis/SmartWallet.json b/constants/abis/SmartWallet.json deleted file mode 100644 index 545338c..0000000 --- a/constants/abis/SmartWallet.json +++ /dev/null @@ -1,805 +0,0 @@ -[ - { - "type": "constructor", - "inputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "fallback", - "stateMutability": "payable" - }, - { - "type": "receive", - "stateMutability": "payable" - }, - { - "type": "function", - "name": "REPLAYABLE_NONCE_KEY", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "addOwnerAddress", - "inputs": [ - { - "name": "owner", - "type": "address", - "internalType": "address" - } - ], - "outputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "function", - "name": "addOwnerPublicKey", - "inputs": [ - { - "name": "x", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "y", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "outputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "function", - "name": "canSkipChainIdValidation", - "inputs": [ - { - "name": "functionSelector", - "type": "bytes4", - "internalType": "bytes4" - } - ], - "outputs": [ - { - "name": "", - "type": "bool", - "internalType": "bool" - } - ], - "stateMutability": "pure" - }, - { - "type": "function", - "name": "domainSeparator", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "eip712Domain", - "inputs": [], - "outputs": [ - { - "name": "fields", - "type": "bytes1", - "internalType": "bytes1" - }, - { - "name": "name", - "type": "string", - "internalType": "string" - }, - { - "name": "version", - "type": "string", - "internalType": "string" - }, - { - "name": "chainId", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "verifyingContract", - "type": "address", - "internalType": "address" - }, - { - "name": "salt", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "extensions", - "type": "uint256[]", - "internalType": "uint256[]" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "entryPoint", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "address", - "internalType": "address" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "execute", - "inputs": [ - { - "name": "target", - "type": "address", - "internalType": "address" - }, - { - "name": "value", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "data", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "executeBatch", - "inputs": [ - { - "name": "calls", - "type": "tuple[]", - "internalType": "struct CoinbaseSmartWallet.Call[]", - "components": [ - { - "name": "target", - "type": "address", - "internalType": "address" - }, - { - "name": "value", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "data", - "type": "bytes", - "internalType": "bytes" - } - ] - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "executeWithoutChainIdValidation", - "inputs": [ - { - "name": "calls", - "type": "bytes[]", - "internalType": "bytes[]" - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "getUserOpHashWithoutChainId", - "inputs": [ - { - "name": "userOp", - "type": "tuple", - "internalType": "struct UserOperation", - "components": [ - { - "name": "sender", - "type": "address", - "internalType": "address" - }, - { - "name": "nonce", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "initCode", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "callData", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "callGasLimit", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "verificationGasLimit", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "preVerificationGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "maxFeePerGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "maxPriorityFeePerGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "paymasterAndData", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "signature", - "type": "bytes", - "internalType": "bytes" - } - ] - } - ], - "outputs": [ - { - "name": "", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "implementation", - "inputs": [], - "outputs": [ - { - "name": "$", - "type": "address", - "internalType": "address" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "initialize", - "inputs": [ - { - "name": "owners", - "type": "bytes[]", - "internalType": "bytes[]" - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "isOwnerAddress", - "inputs": [ - { - "name": "account", - "type": "address", - "internalType": "address" - } - ], - "outputs": [ - { - "name": "", - "type": "bool", - "internalType": "bool" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "isOwnerBytes", - "inputs": [ - { - "name": "account", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [ - { - "name": "", - "type": "bool", - "internalType": "bool" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "isOwnerPublicKey", - "inputs": [ - { - "name": "x", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "y", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "outputs": [ - { - "name": "", - "type": "bool", - "internalType": "bool" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "isValidSignature", - "inputs": [ - { - "name": "hash", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "signature", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [ - { - "name": "result", - "type": "bytes4", - "internalType": "bytes4" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "nextOwnerIndex", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "ownerAtIndex", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - } - ], - "outputs": [ - { - "name": "", - "type": "bytes", - "internalType": "bytes" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "ownerCount", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "proxiableUUID", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "removeLastOwner", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "function", - "name": "removeOwnerAtIndex", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "function", - "name": "removedOwnersCount", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "replaySafeHash", - "inputs": [ - { - "name": "hash", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "outputs": [ - { - "name": "", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "upgradeToAndCall", - "inputs": [ - { - "name": "newImplementation", - "type": "address", - "internalType": "address" - }, - { - "name": "data", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "validateUserOp", - "inputs": [ - { - "name": "userOp", - "type": "tuple", - "internalType": "struct UserOperation", - "components": [ - { - "name": "sender", - "type": "address", - "internalType": "address" - }, - { - "name": "nonce", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "initCode", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "callData", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "callGasLimit", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "verificationGasLimit", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "preVerificationGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "maxFeePerGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "maxPriorityFeePerGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "paymasterAndData", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "signature", - "type": "bytes", - "internalType": "bytes" - } - ] - }, - { - "name": "userOpHash", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "missingAccountFunds", - "type": "uint256", - "internalType": "uint256" - } - ], - "outputs": [ - { - "name": "validationData", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "nonpayable" - }, - { - "type": "event", - "name": "AddOwner", - "inputs": [ - { - "name": "index", - "type": "uint256", - "indexed": true, - "internalType": "uint256" - }, - { - "name": "owner", - "type": "bytes", - "indexed": false, - "internalType": "bytes" - } - ], - "anonymous": false - }, - { - "type": "event", - "name": "RemoveOwner", - "inputs": [ - { - "name": "index", - "type": "uint256", - "indexed": true, - "internalType": "uint256" - }, - { - "name": "owner", - "type": "bytes", - "indexed": false, - "internalType": "bytes" - } - ], - "anonymous": false - }, - { - "type": "event", - "name": "Upgraded", - "inputs": [ - { - "name": "implementation", - "type": "address", - "indexed": true, - "internalType": "address" - } - ], - "anonymous": false - }, - { - "type": "error", - "name": "AlreadyOwner", - "inputs": [ - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } - ] - }, - { - "type": "error", - "name": "Initialized", - "inputs": [] - }, - { - "type": "error", - "name": "InvalidEthereumAddressOwner", - "inputs": [ - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } - ] - }, - { - "type": "error", - "name": "InvalidNonceKey", - "inputs": [ - { - "name": "key", - "type": "uint256", - "internalType": "uint256" - } - ] - }, - { - "type": "error", - "name": "InvalidOwnerBytesLength", - "inputs": [ - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } - ] - }, - { - "type": "error", - "name": "LastOwner", - "inputs": [] - }, - { - "type": "error", - "name": "NoOwnerAtIndex", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - } - ] - }, - { - "type": "error", - "name": "NotLastOwner", - "inputs": [ - { - "name": "ownersRemaining", - "type": "uint256", - "internalType": "uint256" - } - ] - }, - { - "type": "error", - "name": "SelectorNotAllowed", - "inputs": [ - { - "name": "selector", - "type": "bytes4", - "internalType": "bytes4" - } - ] - }, - { - "type": "error", - "name": "Unauthorized", - "inputs": [] - }, - { - "type": "error", - "name": "UnauthorizedCallContext", - "inputs": [] - }, - { - "type": "error", - "name": "UpgradeFailed", - "inputs": [] - }, - { - "type": "error", - "name": "WrongOwnerAtIndex", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "expectedOwner", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "actualOwner", - "type": "bytes", - "internalType": "bytes" - } - ] - } -] \ No newline at end of file diff --git a/constants/abis/SmartWallet.ts b/constants/abis/SmartWallet.ts new file mode 100644 index 0000000..ea744f9 --- /dev/null +++ b/constants/abis/SmartWallet.ts @@ -0,0 +1,71 @@ +export const smartWalletABI = [ + { + type: 'constructor', + inputs: [], + stateMutability: 'nonpayable', + }, + { + type: 'fallback', + stateMutability: 'payable', + }, + { + type: 'receive', + stateMutability: 'payable', + }, + { + type: 'function', + name: 'REPLAYABLE_NONCE_KEY', + inputs: [], + outputs: [ + { + name: '', + type: 'uint256', + internalType: 'uint256', + }, + ], + stateMutability: 'view', + }, + { + type: 'function', + name: 'executeBatch', + inputs: [ + { + name: 'calls', + type: 'tuple[]', + internalType: 'struct CoinbaseSmartWallet.Call[]', + components: [ + { + name: 'target', + type: 'address', + internalType: 'address', + }, + { + name: 'value', + type: 'uint256', + internalType: 'uint256', + }, + { + name: 'data', + type: 'bytes', + internalType: 'bytes', + }, + ], + }, + ], + outputs: [], + stateMutability: 'payable', + }, + { + type: 'function', + name: 'initialize', + inputs: [ + { + name: 'owners', + type: 'bytes[]', + internalType: 'bytes[]', + }, + ], + outputs: [], + stateMutability: 'payable', + }, +] as const; diff --git a/constants/abis/SmartWalletFactory.json b/constants/abis/SmartWalletFactory.json deleted file mode 100644 index c01f976..0000000 --- a/constants/abis/SmartWalletFactory.json +++ /dev/null @@ -1,92 +0,0 @@ -[ - { - "type": "constructor", - "inputs": [ - { - "name": "implementation_", - "type": "address", - "internalType": "address" - } - ], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "createAccount", - "inputs": [ - { - "name": "owners", - "type": "bytes[]", - "internalType": "bytes[]" - }, - { - "name": "nonce", - "type": "uint256", - "internalType": "uint256" - } - ], - "outputs": [ - { - "name": "account", - "type": "address", - "internalType": "contract CoinbaseSmartWallet" - } - ], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "getAddress", - "inputs": [ - { - "name": "owners", - "type": "bytes[]", - "internalType": "bytes[]" - }, - { - "name": "nonce", - "type": "uint256", - "internalType": "uint256" - } - ], - "outputs": [ - { - "name": "", - "type": "address", - "internalType": "address" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "implementation", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "address", - "internalType": "address" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "initCodeHash", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "error", - "name": "OwnerRequired", - "inputs": [] - } -] \ No newline at end of file diff --git a/constants/abis/SmartWalletFactory.ts b/constants/abis/SmartWalletFactory.ts new file mode 100644 index 0000000..2be93e6 --- /dev/null +++ b/constants/abis/SmartWalletFactory.ts @@ -0,0 +1,92 @@ +export const smartWalletFactoryAbi = [ + { + type: 'constructor', + inputs: [ + { + name: 'implementation_', + type: 'address', + internalType: 'address', + }, + ], + stateMutability: 'payable', + }, + { + type: 'function', + name: 'createAccount', + inputs: [ + { + name: 'owners', + type: 'bytes[]', + internalType: 'bytes[]', + }, + { + name: 'nonce', + type: 'uint256', + internalType: 'uint256', + }, + ], + outputs: [ + { + name: 'account', + type: 'address', + internalType: 'address', + }, + ], + stateMutability: 'payable', + }, + { + type: 'function', + name: 'getAddress', + inputs: [ + { + name: 'owners', + type: 'bytes[]', + internalType: 'bytes[]', + }, + { + name: 'nonce', + type: 'uint256', + internalType: 'uint256', + }, + ], + outputs: [ + { + name: '', + type: 'address', + internalType: 'address', + }, + ], + stateMutability: 'view', + }, + { + type: 'function', + name: 'implementation', + inputs: [], + outputs: [ + { + name: '', + type: 'address', + internalType: 'address', + }, + ], + stateMutability: 'view', + }, + { + type: 'function', + name: 'initCodeHash', + inputs: [], + outputs: [ + { + name: '', + type: 'bytes32', + internalType: 'bytes32', + }, + ], + stateMutability: 'view', + }, + { + type: 'error', + name: 'OwnerRequired', + inputs: [], + }, +] as const; diff --git a/constants/abis/index.ts b/constants/abis/index.ts index 097c92e..bb0deef 100644 --- a/constants/abis/index.ts +++ b/constants/abis/index.ts @@ -1,8 +1,7 @@ import * as AerodromeFactoryABI from './AerodromeFactoryABI.json'; import * as OffchainOracleABI from './OffchainOracle'; import * as EntryPointABI from './EntryPoint.json'; -import * as SmartWalletABI from './SmartWallet.json'; -import * as SmartWalletFactoryABI from './SmartWalletFactory.json'; +import * as SmartWalletABI from './SmartWallet'; import * as AerodromeConnectorABI from './AerodromeConnector.json'; import * as ConnectorPluginABI from './ConnectorPlugin.json'; import * as AerodromePoolABI from './AerodromePoolABI.json'; @@ -14,7 +13,6 @@ export { AerodromeFactoryABI, OffchainOracleABI, SmartWalletABI, - SmartWalletFactoryABI, EntryPointABI, AerodromeConnectorABI, ConnectorPluginABI, diff --git a/constants/addresses.ts b/constants/addresses.ts index edcc050..6cb6020 100644 --- a/constants/addresses.ts +++ b/constants/addresses.ts @@ -9,6 +9,8 @@ export const WETH_ADDRESS: Address = '0x4200000000000000000000000000000000000006 export const ACCOUNT_FACTORY_ADDRESS: Address = '0x0BA5ED0c6AA8c49038F819E587E2633c4A9F428a' as Address; export const ENTRYPOINT_V06_ADDRESS: Address = '0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789' as Address; +export const TEST_USER: Address = '0x78815067c3926cc33F7790d87460BEC779F42d4D' as Address; + // Liquid connectors export const AERODROME_CONNECTOR: Address = '0x10e1aC384A4Fb3e0Bc4724D097B0d7F4e99143E6' as Address; export const CONNECTOR_PLUGIN: Address = '0x96281563A06a8D3319C9822B58d8808FaC7EA14D' as Address; diff --git a/constants/env.ts b/constants/env.ts index dcd72d6..85dcf64 100644 --- a/constants/env.ts +++ b/constants/env.ts @@ -3,6 +3,9 @@ export const isDev = !isProd; export const rpcUrl = process.env.EXPO_PUBLIC_BASE_RPC_URL; export const bundlerUrl = process.env.EXPO_PUBLIC_BUNDLER_RPC_URL; +export const pimilcoApiKey = process.env.EXPO_PUBLIC_PIMILCO_API_KEY; + +export const pimilcoRPCURL = `https://api.pimlico.io/v2/8453/rpc?apikey=${pimilcoApiKey}`; export const rpId = 'api.useliquid.xyz'; diff --git a/hooks/useCalls.ts b/hooks/useCalls.ts new file mode 100644 index 0000000..12cf984 --- /dev/null +++ b/hooks/useCalls.ts @@ -0,0 +1,111 @@ +import { Address, encodeFunctionData, Hex } from 'viem'; +import { buildUserOp, getPaymasterData, getUserOpHash } from '@/utils/wallet'; +import { Call } from '@/utils/types'; +import { entryPoint06Address } from 'viem/account-abstraction'; +import { useClients } from '@/init/useViem'; +import { useSmartAccountActions } from '@/store/smartAccount/actions'; +import { SmartWalletABI } from '@/constants/abis'; +import { ENTRYPOINT_V06_ADDRESS } from '@/constants/addresses'; +import { useCallback } from 'react'; +import { getPersistedSmartAccountInfo } from '@/store/smartAccount/persist'; +import { getPublicKeyHex } from '@/utils/base64'; + +export function useMakeCalls() { + const { signTransaction } = useSmartAccountActions(); + const { paymaster, smartAccountClient } = useClients(); + + const makeCalls = useCallback( + async ({ calls, account }: { calls: Call[]; account: Address }) => { + const { publicKey, credentialID } = await getPersistedSmartAccountInfo(); + + // Build the user operation + const op = await buildUserOp(account, smartAccountClient!, { + calls, + signers: [getPublicKeyHex(publicKey) as Hex], + paymasterAndData: '0x', // Initialize with empty paymaster data + }); + + // Set verification gas limit + op.verificationGasLimit = 800000n; + + // Get paymaster data + const paymasterResult = await getPaymasterData({ + paymasterClient: paymaster, + callData: op.callData, + sender: op.sender, + nonce: op.nonce, + initCode: op.initCode, + maxFeePerGas: op.maxFeePerGas, + maxPriorityFeePerGas: op.maxPriorityFeePerGas, + callGasLimit: op.callGasLimit, + verificationGasLimit: op.verificationGasLimit, + preVerificationGas: op.preVerificationGas, + }); + + // Update operation with paymaster data + op.paymasterAndData = paymasterResult.paymasterAndData; + + // Get the operation hash + const hash = getUserOpHash({ + userOperation: { + sender: op.sender, + nonce: op.nonce, + initCode: op.initCode, + callData: op.callData, + callGasLimit: op.callGasLimit, + verificationGasLimit: op.verificationGasLimit, + preVerificationGas: op.preVerificationGas, + maxFeePerGas: op.maxFeePerGas, + maxPriorityFeePerGas: op.maxPriorityFeePerGas, + paymasterAndData: op.paymasterAndData, + signature: '0x', + }, + chainId: 8543n, + }); + + const signature = await signTransaction(hash); + + // Create new operation object with signature + const signedOp = { + ...op, + signature: signature!, + }; + + // Send the user operation + const opHash = await smartAccountClient?.sendUserOperation({ + account: smartAccountClient.account, + callData: op.callData, + initCode: op.initCode, + nonce: op.nonce, + maxFeePerGas: op.maxFeePerGas, + maxPriorityFeePerGas: op.maxPriorityFeePerGas, + callGasLimit: op.callGasLimit, + verificationGasLimit: op.verificationGasLimit, + preVerificationGas: op.preVerificationGas, + paymasterAndData: op.paymasterAndData, + signature: signedOp.signature, + }); + + return { + opHash, + userOpHash: hash, + }; + }, + [signTransaction] + ); + + const buildUserOperationCalldata = useCallback(({ calls }: { calls: Call[] }): Hex => { + // sort ascending order, 0 first + const _calls = calls.sort((a, b) => a.index - b.index); + return encodeFunctionData({ + abi: SmartWalletABI.smartWalletABI, + functionName: 'executeBatch', + args: [_calls], + }); + }, []); + + return { + makeCalls, + buildUserOperationCalldata, + }; +} diff --git a/hooks/useContract.ts b/hooks/useContract.ts index a2b8643..917d05e 100644 --- a/hooks/useContract.ts +++ b/hooks/useContract.ts @@ -1,12 +1,13 @@ import { Address, formatUnits, PublicClient } from 'viem'; import { AerodromePoolABI, LPSugarABI, OffchainOracleABI } from '@/constants/abis'; -import { USDC_ADDRESS, WETH_ADDRESS } from '@/constants/addresses'; +import { LP_SUGAR_ADDRESS, USDC_ADDRESS, WETH_ADDRESS } from '@/constants/addresses'; +import { publicClient } from '@/init/client'; const { LpSugar } = LPSugarABI; const { OffchainOracle } = OffchainOracleABI; -export function useLpSugarContract(address: Address, publicClient: PublicClient) { - if (!LpSugar || !address || !publicClient) { +export function useLpSugarContract(address: Address) { + if (!LpSugar || !LP_SUGAR_ADDRESS || !publicClient) { throw new Error('Required parameters not provided to useLpSugarContract'); } @@ -25,12 +26,12 @@ export function useLpSugarContract(address: Address, publicClient: PublicClient) }); }, - async getPositions(limit: number, offset: number, account: Address) { + async getPositions(account: Address) { return publicClient.readContract({ address, abi: LpSugar.abi, functionName: 'positions', - args: [BigInt(limit), BigInt(offset), account], + args: [BigInt(200), BigInt(0), account], }); }, diff --git a/hooks/useLiquid.ts b/hooks/useLiquid.ts index 7b40fc5..8f452c9 100644 --- a/hooks/useLiquid.ts +++ b/hooks/useLiquid.ts @@ -1,6 +1,5 @@ import { useCallback } from 'react'; -import { Address, parseUnits, erc20Abi, Hex, PublicClient, WaitForTransactionReceiptParameters } from 'viem'; -import { makeCalls } from '@/utils/calls'; +import { Address, parseUnits, erc20Abi, Hex, PublicClient } from 'viem'; import { encodePluginExecute, encodeAddLiquidity, encodeRemoveLiquidity, encodeSwap, encodeStake, encodeApprove } from '@/utils/encoders'; import { AERODROME_CONNECTOR, AERODROME_FACTORY_ADDRESS, CONNECTOR_PLUGIN } from '@/constants/addresses'; import { @@ -14,6 +13,8 @@ import { } from './types'; import { Call } from '@/utils/types'; import { AerodromeConnectorABI } from '@/constants/abis'; +import useSystemFunctions from './useSystemFunctions'; +import { useMakeCalls } from './useCalls'; async function handleTransaction(client: PublicClient, { hash, waitForReceipt = true }: TransactionConfig) { if (!waitForReceipt) return { hash }; @@ -28,7 +29,11 @@ async function handleTransaction(client: PublicClient, { hash, waitForReceipt = }; } -export function useLiquidity(publicClient: PublicClient, account: Address) { +export function useLiquidity(publicClient: PublicClient) { + const { smartAccountState } = useSystemFunctions(); + const { makeCalls, buildUserOperationCalldata } = useMakeCalls(); + const account = smartAccountState.address as Address; + const createPluginCall = useCallback( (connectorData: Hex, index: number) => { const pluginCalldata = encodePluginExecute(AERODROME_CONNECTOR, connectorData); @@ -47,10 +52,19 @@ export function useLiquidity(publicClient: PublicClient, account: Address) { const calls: Call[] = []; let currentIndex = 0; + // Validate input amounts + if (!params.amountAIn || !params.amountBIn) { + throw new Error('Invalid input amounts'); + } + // Handle pre-swap if configured if (params.preSwap?.enabled) { + if (!params.preSwap.params.amountIn) { + throw new Error('Invalid swap amount'); + } + // Approve token for swap - const swapApproveAmount = parseUnits(params.preSwap.params.amountIn, params.preSwap.params.tokenA.decimals); + const swapApproveAmount = parseUnits(params.preSwap.params.amountIn.toString(), params.preSwap.params.tokenA.decimals); const approveSwapTokenData = encodeApprove({ amount: swapApproveAmount, @@ -77,32 +91,43 @@ export function useLiquidity(publicClient: PublicClient, account: Address) { // Add swap call const swapData = encodeSwap({ amountIn: swapApproveAmount, - minReturnAmount: parseUnits(params.preSwap.params.minReturnAmount, params.preSwap.params.tokenB.decimals), + minReturnAmount: parseUnits(params.preSwap.params.minReturnAmount?.toString() || '0', params.preSwap.params.tokenB.decimals), routes, to: params.preSwap.params.to, deadline: BigInt(Math.floor(Date.now() / 1000) + 3600), + caller: account, }); calls.push(createPluginCall(swapData, currentIndex++)); } + console.log('Add Liquidity Params:', { + tokenA: params.tokenA.address, + tokenB: params.tokenB.address, + decimalsA: params.tokenA.decimals, + decimalsB: params.tokenB.decimals, + amountAIn: params.amountAIn, + amountBIn: params.amountBIn, + stable: params.stable, + }); + // Get quotes for liquidity deposit const quotes = await quoteDepositLiquidity( params.tokenA.address, params.tokenB.address, params.stable, - parseUnits(params.amountAIn, params.tokenA.decimals), - parseUnits(params.amountBIn, params.tokenB.decimals) + parseUnits(params.amountAIn.toString(), params.tokenA.decimals), + parseUnits(params.amountBIn.toString(), params.tokenB.decimals) ); // Add approvals for liquidity tokens const approveTokenAData = encodeApprove({ - amount: parseUnits(params.amountAIn, params.tokenA.decimals), + amount: parseUnits(params.amountAIn.toString(), params.tokenA.decimals), spender: AERODROME_CONNECTOR, }); const approveTokenBData = encodeApprove({ - amount: parseUnits(params.amountBIn, params.tokenB.decimals), + amount: parseUnits(params.amountBIn.toString(), params.tokenB.decimals), spender: AERODROME_CONNECTOR, }); @@ -122,55 +147,60 @@ export function useLiquidity(publicClient: PublicClient, account: Address) { ); // Add liquidity call - const refactoredParams = { - ...params, - amountAIn: parseUnits(params.amountAIn, params.tokenA.decimals), - amountBIn: parseUnits(params.amountBIn, params.tokenB.decimals), - amountAMin: parseUnits(quotes.amountAOut, params.tokenA.decimals), - amountBMin: parseUnits(quotes.amountBOut, params.tokenB.decimals), + const addLiquidityData = encodeAddLiquidity({ + tokenA: params.tokenA.address, + tokenB: params.tokenB.address, + stable: params.stable, + amountAIn: parseUnits(params.amountAIn.toString(), params.tokenA.decimals), + amountBIn: parseUnits(params.amountBIn.toString(), params.tokenB.decimals), + amountAMin: quotes?.amountAOut ?? 0n, + amountBMin: quotes?.amountBOut ?? 0n, balanceTokenRatio: false, + to: account, deadline: BigInt(Math.floor(Date.now() / 1000) + 3600), - }; + caller: account, + }); - const addLiquidityData = encodeAddLiquidity(refactoredParams); calls.push(createPluginCall(addLiquidityData, currentIndex)); const { opHash } = await makeCalls({ calls, account, }); - return handleTransaction(publicClient, { - hash: opHash, + hash: opHash as `0x${string}`, ...txConfig, }); }, - [publicClient, createPluginCall] + [publicClient, createPluginCall, account] ); const removeLiquidity = useCallback( async (params: RemoveLiquidityParams, txConfig?: Partial) => { - const refactoredParams = { - ...params, + const connectorData = encodeRemoveLiquidity({ + tokenA: params.tokenA.address, + tokenB: params.tokenB.address, + stable: params.stable, liquidity: BigInt(params.liquidity), amountAMin: parseUnits(params.amountAMin.toString(), params.tokenA.decimals), amountBMin: parseUnits(params.amountBMin.toString(), params.tokenB.decimals), + to: account, deadline: BigInt(Math.floor(Date.now() / 1000) + 3600), - }; - const connectorData = encodeRemoveLiquidity(refactoredParams); + caller: account, + }); + const call = createPluginCall(connectorData, 0); const { opHash } = await makeCalls({ calls: [call], account, }); - return handleTransaction(publicClient, { - hash: opHash, + hash: opHash as `0x${string}`, ...txConfig, }); }, - [publicClient, createPluginCall] + [publicClient, createPluginCall, account] ); const swap = useCallback( @@ -190,20 +220,21 @@ export function useLiquidity(publicClient: PublicClient, account: Address) { routes, to: params.to, deadline: BigInt(Math.floor(Date.now() / 1000) + 3600), + caller: account, }); + const call = createPluginCall(connectorData, 0); const { opHash } = await makeCalls({ calls: [call], account, }); - return handleTransaction(publicClient, { - hash: opHash, + hash: opHash as `0x${string}`, ...txConfig, }); }, - [publicClient, createPluginCall] + [publicClient, createPluginCall, account] ); const stake = useCallback( @@ -211,32 +242,64 @@ export function useLiquidity(publicClient: PublicClient, account: Address) { const connectorData = encodeStake({ gaugeAddress: params.gauge.address, amount: parseUnits(params.amount.toString(), params.gauge.decimals), + caller: account, }); + const call = createPluginCall(connectorData, 0); const { opHash } = await makeCalls({ calls: [call], account, }); - return handleTransaction(publicClient, { - hash: opHash, + hash: opHash as `0x${string}`, ...txConfig, }); }, - [publicClient, createPluginCall] + [publicClient, createPluginCall, account] ); - const quoteDepositLiquidity = async (tokenA: string, tokenB: Address, stable: boolean, amountA: bigint, amountB: bigint) => { - const balanceTokenRatio = stable; - const result: any = await publicClient.readContract({ - address: AERODROME_CONNECTOR, - abi: AerodromeConnectorABI.abi, - functionName: 'quoteDepositLiquidity', - args: [tokenA, tokenB, stable, amountA, amountB, balanceTokenRatio], - }); + const quoteDepositLiquidity: any = async (tokenA: Address, tokenB: Address, stable: boolean, amountA: bigint, amountB: bigint) => { + try { + console.log('Quote Deposit Params:', { + tokenA, + tokenB, + stable, + amountA: amountA.toString(), + amountB: amountB.toString(), + balanceTokenRatio: stable, + }); + + // Ensure amounts are not zero + if (amountA <= 0n || amountB <= 0n) { + throw new Error('Invalid amounts for quote'); + } + + const result = await publicClient.readContract({ + address: AERODROME_CONNECTOR, + abi: AerodromeConnectorABI.abi, + functionName: 'quoteDepositLiquidity', + args: [tokenA, tokenB, stable, amountA, amountB, stable], + }); + + console.log('Quote Result:', result); - return result; + if (!result) { + return { + amountAOut: 0n, + amountBOut: 0n, + }; + } + + return result; + } catch (error) { + console.error('Quote Deposit Error:', error); + // Return minimum amounts as fallback + return { + amountAOut: (amountA * BigInt(95)) / BigInt(100), // 95% of input as minimum + amountBOut: (amountB * BigInt(95)) / BigInt(100), + }; + } }; return { diff --git a/hooks/usePosition.ts b/hooks/usePosition.ts new file mode 100644 index 0000000..e69de29 diff --git a/hooks/useToken.ts b/hooks/useToken.ts index bc7069c..5f5efa4 100644 --- a/hooks/useToken.ts +++ b/hooks/useToken.ts @@ -4,7 +4,6 @@ import { CONNECTORS_BASE, LP_SUGAR_ADDRESS, OFFCHAIN_ORACLE_ADDRESS, WETH_ADDRES import { useLpSugarContract, useOffchainOracleContract } from './useContract'; import { LPSugarToken, LPSugarTokenResponse, Token } from './types'; import useSystemFunctions from './useSystemFunctions'; -import { OffchainOracleABI } from '@/constants/abis'; export function useToken(publicClient: PublicClient) { const { smartAccountState } = useSystemFunctions(); @@ -13,7 +12,7 @@ export function useToken(publicClient: PublicClient) { const [tokens, setTokens] = useState([]); const [tokenMap, setTokenMap] = useState>(new Map()); - const lpSugar = useLpSugarContract(LP_SUGAR_ADDRESS, publicClient); + const lpSugar = useLpSugarContract(LP_SUGAR_ADDRESS); const oracle = useOffchainOracleContract(OFFCHAIN_ORACLE_ADDRESS, publicClient); const fetchTokens = async (BATCH_SIZE: number, offset: number): Promise => { @@ -40,7 +39,7 @@ export function useToken(publicClient: PublicClient) { balance: formatUnits(token.account_balance, token.decimals), isListed: token.listed, usdPrice: prices[index], - logoUrl: `https://assets.smold.app/api/token/8453/${token.token_address}/logo-32.png`, + logoUrl: `https://assets.smold.app/api/token/8453/${token.token_address}/logo-128.png`, }; }); @@ -52,7 +51,7 @@ export function useToken(publicClient: PublicClient) { balance: formatUnits(ethBalance, 18), isListed: true, usdPrice: wethPrice[0], - logoUrl: `https://assets.smold.app/api/token/8453/${WETH_ADDRESS}/logo-32.png`, // Using WETH logo for ETH + logoUrl: `https://assets.smold.app/api/token/8453/${WETH_ADDRESS}/logo-128.png`, // Using WETH logo for ETH }; allTokens = [ethToken, ...allTokens, ...tokensWithPrice]; diff --git a/init/api.ts b/init/api.ts index 3cec414..db1cd7e 100644 --- a/init/api.ts +++ b/init/api.ts @@ -1,8 +1,18 @@ import { PoolResponse } from '@/store/pools/types'; -import { CreatePassKeyCredentialOptions, Address, PoolType, VerifyRegistration, AuthCredentialOptions } from './types'; +import { + CreatePassKeyCredentialOptions, + Address, + PoolType, + VerifyRegistration, + AuthCredentialOptions, + AuthVerificationResult, + RegistrationVerificationResult, + VerifyAuthResponse, +} from './types'; import { AuthenticationResponseJSON } from 'react-native-passkeys/build/ReactNativePasskeys.types'; import { apiKey, apiUrl } from '@/constants/env'; +import { TokenResponse } from '@/store/account/types'; class LiquidAPI { private apiBaseUrl: string; @@ -14,7 +24,6 @@ class LiquidAPI { } private async fetchWithErrorHandling(url: string, options: RequestInit) { - console.log('fetchWithErrorHandling', url); const response = await fetch(url, options); if (!response.ok || response.status !== 200) { @@ -43,7 +52,7 @@ class LiquidAPI { }); } - async verifyRegistration(data: VerifyRegistration): Promise<{ verified: boolean; publicKey: string }> { + async verifyRegistration(data: VerifyRegistration): Promise { return this.fetchWithErrorHandling(`${this.apiBaseUrl}/registration/verify`, { method: 'POST', headers: { @@ -53,15 +62,13 @@ class LiquidAPI { }); } - async verifyAuthentication( - data: AuthenticationResponseJSON - ): Promise<{ verified: boolean; userName: string; publicKey: string; userAddress: string }> { + async verifyAuthentication(username: string, data: VerifyAuthResponse): Promise { return this.fetchWithErrorHandling(`${this.apiBaseUrl}/authentication/verify`, { method: 'POST', headers: { 'Content-Type': 'application/json', }, - body: JSON.stringify(data), + body: JSON.stringify({ username, authenticationResponse: data }), }); } @@ -77,7 +84,16 @@ class LiquidAPI { } async getPools(type: PoolType, query?: string): Promise { - return this.fetchWithErrorHandling(`${this.apiBaseUrl}/pools/${type}${query || ''}`, { + return this.fetchWithErrorHandling(`${this.apiBaseUrl}/pools${type}${query || ''}`, { + method: 'GET', + headers: { + 'Content-Type': 'application/json', + }, + }); + } + + async searchPools(searchQuery: string, paginationQuery?: string): Promise { + return this.fetchWithErrorHandling(`${this.apiBaseUrl}/pools/search?query=${searchQuery}${paginationQuery || ''}`, { method: 'GET', headers: { 'Content-Type': 'application/json', @@ -85,8 +101,8 @@ class LiquidAPI { }); } - async searchPools(query: string): Promise { - return this.fetchWithErrorHandling(`${this.apiBaseUrl}/pools/search?symbol=${query}`, { + async getTokens(query?: string): Promise { + return this.fetchWithErrorHandling(`${this.apiBaseUrl}/tokens${query || ''}`, { method: 'GET', headers: { 'Content-Type': 'application/json', diff --git a/init/client.ts b/init/client.ts new file mode 100644 index 0000000..135aafa --- /dev/null +++ b/init/client.ts @@ -0,0 +1,13 @@ +import { pimilcoRPCURL, rpcUrl } from '@/constants/env'; +import { createPublicClient, http } from 'viem'; +import { createBundlerClient, createPaymasterClient, paymasterActions } from 'viem/account-abstraction'; +import { base } from 'viem/chains'; + +export const publicClient = createPublicClient({ + chain: base, + transport: http(rpcUrl), +}); + +export const bundlerClient = createBundlerClient({ + transport: http(pimilcoRPCURL), +}).extend(paymasterActions); diff --git a/init/types.ts b/init/types.ts index 090c9a6..b8085dd 100644 --- a/init/types.ts +++ b/init/types.ts @@ -1,4 +1,4 @@ -import { Address as EthereumAddress } from 'viem'; +import { Address as EthereumAddress, Hex } from 'viem'; import { ToCoinbaseSmartAccountReturnType } from 'viem/account-abstraction'; import { PublicKeyCredentialCreationOptionsJSON, @@ -24,11 +24,11 @@ export type PasskeyRegistrationResult = { }; export enum PoolType { - v2 = 'v2', - hot = 'hot', - trending = 'trending', - gainers = 'gainers', - search = 'search', + v2 = '', + hot = '/hot', + trending = '/trending', + gainers = '/gainers', + search = '/search', } export type SmartAccount = ToCoinbaseSmartAccountReturnType; @@ -37,7 +37,7 @@ export type SmartAccount = ToCoinbaseSmartAccountReturnType; * Info about the smart account that is persisted to secure store, used to re-initialize the smart account */ export type SmartAccountPersistedInfo = { - publicKey: string; + publicKey: string | Hex; credentialID: string; }; @@ -52,3 +52,32 @@ export type VerifyRegistration = { type: string; authenticatorAttachment: string; }; + +export type VerifyAuthResponse = { + id: string; + rawId: string; + response: { + authenticatorData: string; + clientDataJSON: string; + signature: string; + userHandle: string; + }; + type: string; + authenticatorAttachment: string; +}; + +export type AuthVerificationResult = { + data: { + publicKey: string; + userAddress: string; + username: string; + verified: boolean; + }; +}; + +export type RegistrationVerificationResult = { + data: { + publicKey: string; + verified: boolean; + }; +}; diff --git a/init/useViem.ts b/init/useViem.ts new file mode 100644 index 0000000..f8f449c --- /dev/null +++ b/init/useViem.ts @@ -0,0 +1,45 @@ +import { useMemo } from 'react'; +import { Address, createPublicClient, http } from 'viem'; +import { createBundlerClient, createPaymasterClient, entryPoint06Address, paymasterActions } from 'viem/account-abstraction'; +import { createSmartAccountClient } from 'permissionless'; +import { base } from 'viem/chains'; +import { rpcUrl, pimilcoRPCURL, bundlerUrl } from '@/constants/env'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { useSmartAccountActions } from '@/store/smartAccount/actions'; +import { useAuth } from '@/providers'; + +export function useClients() { + const { smartAccountState } = useSystemFunctions(); + const { session } = useAuth(); + + const account = smartAccountState.address as Address; + + const publicClient = useMemo( + () => + createPublicClient({ + chain: base, + transport: http(rpcUrl), + }), + [] + ); + + const paymaster = createPaymasterClient({ + transport: http(pimilcoRPCURL), + }).extend(paymasterActions); + + const smartAccountClient = useMemo(() => { + if (!account) return null; + return createSmartAccountClient({ + account: session!, + chain: base, + bundlerTransport: http(pimilcoRPCURL), + paymaster, + }); + }, [account, paymaster]); + + return { + publicClient, + paymaster, + smartAccountClient, + }; +} diff --git a/init/viem.ts b/init/viem.ts deleted file mode 100644 index f86ca77..0000000 --- a/init/viem.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { createPublicClient, http } from 'viem'; -import { createPaymasterClient } from 'viem/account-abstraction'; -import { estimateUserOperationGas, UserOperation, createBundlerClient } from 'permissionless'; -import { base } from 'viem/chains'; - -import { rpcUrl, bundlerUrl } from '@/constants/env'; - -export const publicClient = createPublicClient({ - chain: base, - transport: http(rpcUrl), -}); - -export const bundlerClient = createBundlerClient({ - chain: base, - transport: http(bundlerUrl), -}); - -export const paymasterClient = createPaymasterClient({ - transport: http(bundlerUrl), -}); diff --git a/package.json b/package.json index d4be964..3a9c60f 100644 --- a/package.json +++ b/package.json @@ -54,7 +54,7 @@ "fast-text-encoding": "^1.0.6", "lodash": "^4.17.21", "moment": "^2.30.1", - "permissionless": "^0.0.34", + "permissionless": "^0.2.17", "react": "18.2.0", "react-dom": "18.2.0", "react-hook-form": "^7.53.0", @@ -94,4 +94,4 @@ "reactotron-react-native": "^5.1.9", "typescript": "~5.3.3" } -} +} \ No newline at end of file diff --git a/providers/AuthProvider.tsx b/providers/AuthProvider.tsx index c26dc7c..d912d59 100644 --- a/providers/AuthProvider.tsx +++ b/providers/AuthProvider.tsx @@ -7,7 +7,7 @@ import { getPersistedSmartAccountInfo } from '@/store/smartAccount/persist'; import { SmartAccountInfoNotPersistedError } from '@/store/smartAccount/errors'; import { rpId } from '@/constants/env'; import { toCoinbaseSmartAccount, toWebAuthnAccount } from 'viem/account-abstraction'; -import { publicClient } from '@/init/viem'; +import { publicClient } from '@/init/client'; import { getPublicKeyHex } from '@/utils/base64'; import { getFn } from '@/store/smartAccount/getFn'; import useSystemFunctions from '@/hooks/useSystemFunctions'; diff --git a/screens/holdings/assets/index.tsx b/screens/holdings/assets/index.tsx index a4afb7b..d4b1a91 100644 --- a/screens/holdings/assets/index.tsx +++ b/screens/holdings/assets/index.tsx @@ -31,11 +31,12 @@ const Assets = () => { }, ]; - const assets: IAssetPaper[] = tokens.map((token) => ({ + const tokensUserHas = tokens.data?.filter?.((token) => token.isListed && Number(token.balance) > 0); + const assets: IAssetPaper[] = tokensUserHas?.map?.((token) => ({ iconUrl: token.logoUrl, name: token.symbol, value: Number(token.balance), - usdValue: Number(token.balance) * Number(token.usdPrice), + usdValue: Number(token.usdBalance), })); return ( diff --git a/screens/holdings/card.tsx b/screens/holdings/card.tsx index 010d525..eacd0c9 100644 --- a/screens/holdings/card.tsx +++ b/screens/holdings/card.tsx @@ -27,26 +27,26 @@ const Card = ({ details, subtitle, title, variant }: IItem) => { label: 'LP balance', action: () => router.navigate('/(tabs)/holdings/pools'), }, - tertiary: { - primaryColor: '#EEEBFF', - secondaryColor: '#2B1664', - label: 'Aero rewards', - action: () => - router.navigate({ - pathname: '/(tabs)/holdings/rewards', - params: { type: 'aero' }, - }), - }, - quaternary: { - primaryColor: '#EBFAFF', - secondaryColor: '#164564', - label: 'Fees earned', - action: () => - router.navigate({ - pathname: '/(tabs)/holdings/rewards', - params: { type: 'fees' }, - }), - }, + // tertiary: { + // primaryColor: '#EEEBFF', + // secondaryColor: '#2B1664', + // label: 'Aero rewards', + // action: () => + // router.navigate({ + // pathname: '/(tabs)/holdings/rewards', + // params: { type: 'aero' }, + // }), + // }, + // quaternary: { + // primaryColor: '#EBFAFF', + // secondaryColor: '#164564', + // label: 'Fees earned', + // action: () => + // router.navigate({ + // pathname: '/(tabs)/holdings/rewards', + // params: { type: 'fees' }, + // }), + // }, }; return ( @@ -194,7 +194,6 @@ const styles = StyleSheet.create({ titleAndSubtitle: { flexDirection: 'row', - justifyContent: 'center', alignItems: 'center', gap: 8, }, diff --git a/screens/holdings/dummy.ts b/screens/holdings/dummy.ts index 7c14c27..e28b6da 100644 --- a/screens/holdings/dummy.ts +++ b/screens/holdings/dummy.ts @@ -12,18 +12,6 @@ const emptyData: IEmptyData = { subtitle: 'Deposit Liquidity into a pool and your balances will show up here', actionIcon: 'right-caret', }, - - tertiary: { - icon: 'coins', - title: 'No AERO rewards yet', - subtitle: 'Stake your LP tokens to start earning AERO emissions', - }, - - quaternary: { - icon: 'dollar', - title: 'No Fees earned yet', - subtitle: 'Stake your LP tokens to start earning Fees', - }, }; export { emptyData }; diff --git a/screens/holdings/index.tsx b/screens/holdings/index.tsx index 28679e3..98f6ccf 100644 --- a/screens/holdings/index.tsx +++ b/screens/holdings/index.tsx @@ -33,11 +33,12 @@ const Holdings = () => { ]; const visibleActions = actions.filter((action) => !action.hide); + const tokensUserHas = tokens.data?.filter?.((token) => token.isListed && Number(token.balance) > 0); const items: Array = [ { variant: 'primary', - details: [{ title: 'Assets', value: `${tokens?.length} assets` }], + details: [{ title: 'Assets', value: `${tokensUserHas?.length || 0} assets` }], subtitle: '', title: `$${tokenBalance.toLocaleString()}`, empty: { @@ -47,7 +48,7 @@ const Holdings = () => { onPress: () => console.log('Deposit'), }, }, - isEmpty: tokens?.length === 0, + isEmpty: tokensUserHas?.length === 0, }, { variant: 'secondary', @@ -66,22 +67,6 @@ const Holdings = () => { }, isEmpty: positions?.length === 0, }, - { - variant: 'tertiary', - details: [{ title: 'Unclaimed in:', value: `${13} pools` }], - subtitle: `${(3104).toLocaleString()} AERO`, - title: `$${(5_643.44).toLocaleString()}`, - empty: emptyData.tertiary, - isEmpty: true, - }, - { - variant: 'quaternary', - details: [{ title: 'Your Pools', value: `${13} pools` }], - subtitle: `$${(12_506).toLocaleString()}`, - title: `$${(12_506).toLocaleString()}`, - empty: emptyData.quaternary, - isEmpty: true, - }, ]; const nonEmptyItems = items.filter((item) => !item.isEmpty); diff --git a/screens/holdings/pools/index.tsx b/screens/holdings/pools/index.tsx index 72148db..8266b46 100644 --- a/screens/holdings/pools/index.tsx +++ b/screens/holdings/pools/index.tsx @@ -2,6 +2,7 @@ import { View, Text, StyleSheet, ScrollView } from 'react-native'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import PoolCard from './card'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; const Pools = () => { const pools: Array = [ diff --git a/screens/holdings/types.ts b/screens/holdings/types.ts index 390e1ef..9536c69 100644 --- a/screens/holdings/types.ts +++ b/screens/holdings/types.ts @@ -10,7 +10,7 @@ interface IEmpty { isLast?: boolean; } -type Variants = 'primary' | 'secondary' | 'tertiary' | 'quaternary'; +type Variants = 'primary' | 'secondary'; interface IItem { variant: Variants; diff --git a/screens/home/index.tsx b/screens/home/index.tsx index 1b0b255..7804b44 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -15,7 +15,7 @@ import { useOnMount } from '@/hooks/useOnMount'; const Home = () => { const { router, poolsState, smartAccountState, accountState, appState } = useSystemFunctions(); - const { getTokens, getPositions } = useAccountActions(); + const { getTokens } = useAccountActions(); const { getPools } = usePoolActions(); const { logout } = useSmartAccountActions(); const { searchIsFocused: focusSearch, showSearch } = useAppActions(); @@ -24,11 +24,13 @@ const Home = () => { const { whole, decimal } = formatAmountWithWholeAndDecimal(accountState.tokenBalance.toFixed(2)); - const top10TrendingPools = trendingPools.data.slice(0, 10); + const hotPoolsArray = Object.values(hotPools.data); + const trendingPoolsArray = Object.values(trendingPools.data); + const top7GainersArray = Object.values(topGainers.data); - const top10HotPools = hotPools.data.slice(0, 10); - - const top7Gainers = topGainers.data.slice(0, 7); + const top10TrendingPools = trendingPoolsArray?.slice(0, 10); + const top10HotPools = hotPoolsArray.slice(0, 10) ?? []; + const top7Gainers = top7GainersArray.slice(0, 7); const focusInput = () => { focusSearch(true); @@ -108,13 +110,8 @@ const Home = () => { const signature = await session.signMessage({ message: JSON.stringify(messageToSign) }); - console.log('Signature successful:', signature); - Alert.alert('Signing Successful', 'Signature: ' + signature); } catch (error: any) { - console.log('Error signing message:', error); - console.log('Error cause:', error.cause); - Alert.alert('Signing Failed', error.message + '\n' + error.cause); } }; @@ -122,7 +119,7 @@ const Home = () => { useEffect( function fetchBalances() { getTokens(); - getPositions(); + //getPositions(); }, [smartAccountState.address] ); diff --git a/screens/liquidity-actions/add/coin-selector-input.tsx b/screens/liquidity-actions/add/coin-selector-input.tsx index 907c4da..768e9ce 100644 --- a/screens/liquidity-actions/add/coin-selector-input.tsx +++ b/screens/liquidity-actions/add/coin-selector-input.tsx @@ -1,23 +1,37 @@ -import { useState } from 'react'; +import { useEffect, useState } from 'react'; import { View, Text, Image, TextInput, TouchableOpacity } from 'react-native'; -import { assets as tokens } from '@/screens/withdraw/dummy'; -import { removeCommasFromNumber } from '@/utils/helpers'; +import { formatAmount, removeCommasFromNumber } from '@/utils/helpers'; import { LQDAssetSelection } from '@/components'; import { CaretDownIcon } from '@/assets/icons'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { TokenItem } from '@/store/account/types'; import { coinSelectorInputStyles as styles } from './styles'; -const CoinSelectorInput = ({ onChange, setTokenId, value, disabled, tokenId }: ICoinSelectorInput) => { - const [token, setToken] = useState(tokens.find((t) => t.id === tokenId) || tokens[0]); +const CoinSelectorInput = ({ onChange, selectedToken, value, disabled, address }: ICoinSelectorInput) => { + const { accountState } = useSystemFunctions(); + const { tokens } = accountState; + + const [token, setToken] = useState(); const [showBottomSheet, setShowBottomSheet] = useState(false); - const invalidAmount = parseFloat(removeCommasFromNumber(value)) > token?.balance!; + const invalidAmount = parseFloat(removeCommasFromNumber(value)) > Number(token?.balance || 0); - const setAsset = (asset: IAsset) => { + const setAsset = (asset: TokenItem) => { setToken(asset); - setTokenId(asset.id); + selectedToken(asset.address); }; + useEffect( + function initToken() { + if (!tokens?.data) return; + + const initialToken = tokens?.data.find((t) => t.address === address) || tokens?.data[0]; + setToken(initialToken); + }, + [tokens, address] + ); + return ( <> @@ -27,12 +41,13 @@ const CoinSelectorInput = ({ onChange, setTokenId, value, disabled, tokenId }: I style={[styles.input, invalidAmount && styles.invalidText]} onChangeText={onChange} pointerEvents={disabled ? 'none' : 'auto'} + placeholder="0.0" /> setShowBottomSheet(true)}> - + {token?.symbol} @@ -45,20 +60,19 @@ const CoinSelectorInput = ({ onChange, setTokenId, value, disabled, tokenId }: I {invalidAmount ? 'Not enough balance:' : 'Available:'} - {token?.balance.toLocaleString()} {token?.symbol} + {formatAmount(token?.balance).toLocaleString()} {token?.symbol} - - setShowBottomSheet(false)} - setAsset={setAsset} - show={showBottomSheet} - title="Select token" - asset={token} - /> + + setShowBottomSheet(false)} + setAsset={setAsset} + show={showBottomSheet} + title="Select token" + selectedAsset={token} + /> ); }; diff --git a/screens/liquidity-actions/add/index.tsx b/screens/liquidity-actions/add/index.tsx index 980bfd4..ef13a9b 100644 --- a/screens/liquidity-actions/add/index.tsx +++ b/screens/liquidity-actions/add/index.tsx @@ -1,69 +1,81 @@ -import { useEffect, useState } from 'react'; +import { useEffect, useMemo, useState } from 'react'; import { View, Text, ScrollView } from 'react-native'; import Animated, { useAnimatedStyle, withTiming } from 'react-native-reanimated'; +import { publicClient } from '@/init/client'; +import { PublicClient } from 'viem'; import { LQDButton } from '@/components'; -import { removeCommasFromNumber } from '@/utils/helpers'; -import { assets } from '@/screens/withdraw/dummy'; +import { formatInputAmount, removeCommasFromNumber } from '@/utils/helpers'; +import { CircleAddIcon } from '@/assets/icons'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { defaultToken } from '@/store/account/types'; +import { AddLiquidityWithSwapParams, Token } from '@/hooks/types'; +import { useLiquidity } from '@/hooks/useLiquid'; import PaymentMethodSelection from './method-selection'; import CoinSelectorInput from './coin-selector-input'; -import ErrorMessage from './error'; import Info from './info'; import { styles } from './styles'; import Loading from './loading'; -import { CircleAddIcon } from '@/assets/icons'; +import ErrorMessage from './error'; +import SelectPool from './pool-selector'; +import { Pool } from '@/store/pools/types'; const AddLiquidity = () => { + const { accountState, smartAccountState, poolsState } = useSystemFunctions(); + const { addLiquidity } = useLiquidity(publicClient as PublicClient); + const [method, setMethod] = useState('liquid'); - const [primary, setPrimary] = useState({ - asset: assets[0], - value: '0', + const [defaultTokens, setDefaultTokens] = useState<{ tokenA: TokenItem; tokenB: TokenItem }>(); + + const [pools, setPools] = useState([]); + const [tokenA, setTokenA] = useState({ + asset: undefined, + value: '', }); - const [secondary, setSecondary] = useState({ - asset: assets[1], - value: '0', + const [tokenB, setTokenB] = useState({ + asset: undefined, + value: '', }); const [error, setError] = useState(undefined); - const [showInfo, setShowInfo] = useState(true); const [loading, setLoading] = useState(false); - const errors: ErrorsArray = { - primary: { - title: `Swap ${primary.asset?.symbol} to ${secondary.asset?.symbol}?`, - description: ( - - You don’t have enough cbBTC. We’d balance the pool by swapping half of the{' '} - {primary?.asset?.symbol} value to{' '} - {secondary?.asset?.symbol}. - - ), - swap: { - from: `(${1500}) ${primary?.asset?.symbol}`, - for: `(${0.1}) ${secondary?.asset?.symbol}`, + const { tokens } = accountState; + const { selectedPool } = poolsState; + + const errors: ErrorsArray = useMemo(() => { + return { + insufficientBalance: { + title: `Swap ${tokenA.asset?.symbol} to ${tokenB.asset?.symbol}?`, + description: ( + + You don’t have enough value. We’d balance the pool by swapping half of the{' '} + {tokenA?.asset?.symbol} value to{' '} + {tokenB?.asset?.symbol}. + + ), + swap: { + from: `(${1500}) ${tokenA?.asset?.symbol}`, + for: `(${0.1}) ${tokenB?.asset?.symbol}`, + }, }, - }, - secondary: { - title: 'Proceed with debit card?', - description: 'You don’t have enough balances in your Liquid account, you can proceed to pay with your debit card', - }, - }; + insufficientLiquidBalance: { + title: 'Proceed with debit card?', + description: 'You don’t have enough balances in your Liquid account, you can proceed to pay with your debit card', + }, + + noMatchingPools: { + title: 'No matching pools', + description: `There's no available pool for ${tokenA.asset?.symbol} / ${tokenB.asset?.symbol}. Try selecting ${tokenB.asset?.symbol} as the first token and ${tokenA.asset?.symbol} as the second.`, + }, + }; + }, []); const infos: Array = [ { icon: 'primary', - title: `1 ${primary.asset?.symbol} to ${secondary.asset?.symbol}`, - value: `${0.805} ${secondary.asset?.symbol}`, - }, - { - icon: 'secondary', - title: "You'll pay:", - value: `$${6000}`, - }, - { - icon: 'secondary', - title: "You'll get:", - value: `${6000} ${primary.asset?.symbol}`, + title: `1 ${tokenA.asset?.symbol} to ${tokenB.asset?.symbol}`, + value: `${0.805} ${tokenB.asset?.symbol}`, }, { icon: 'tertiary', @@ -72,99 +84,188 @@ const AddLiquidity = () => { }, ]; - const disableButton = !parseFloat(removeCommasFromNumber(primary.value)) || !parseFloat(removeCommasFromNumber(secondary.value)); + const disableButton = !parseFloat(removeCommasFromNumber(tokenA.value)) || !parseFloat(removeCommasFromNumber(tokenB.value)); const loadingViewStyle = useAnimatedStyle(() => ({ opacity: withTiming(loading ? 1 : 0, { duration: 500 }), })); - const handleTokenChange = (id: string, token: 'primary' | 'secondary') => { - const asset = assets.find((asset) => asset.id === id); - if (asset) { - if (token === 'primary') setPrimary({ ...primary, asset }); - if (token === 'secondary') setSecondary({ ...secondary, asset }); - } - }; + const didUserChangeToken = !defaultToken + ? false + : tokenA.asset?.address !== defaultTokens?.tokenA?.address || tokenB.asset?.address !== defaultTokens?.tokenB?.address; + + const handleTokenChange = async (address: string, token: 'tokenA' | 'tokenB') => { + const asset = tokens?.data?.find((asset) => asset.address === address); - const handleValueChange = (value: string, token: 'primary' | 'secondary') => { - const sanitizedValue = removeCommasFromNumber(value); - const numberValue = parseFloat(sanitizedValue); - let newValue = numberValue.toLocaleString(undefined, { - maximumFractionDigits: 5, - }); + if (!asset) return; - if (isNaN(numberValue)) newValue = ''; + if (token === 'tokenA') setTokenA({ ...tokenA, asset: { ...tokenA.asset, ...asset } }); + if (token === 'tokenB') setTokenB({ ...tokenB, asset: { ...tokenB.asset, ...asset } }); + }; + + const handleValueChange = (value: string, token: 'tokenA' | 'tokenB') => { + const formatedValue = formatInputAmount(value); - if (token === 'primary') { - return setPrimary({ ...primary, value: newValue }); - } else { - return setSecondary({ ...secondary, value: newValue }); + if (token === 'tokenA') { + return setTokenA({ ...tokenA, value: formatedValue }); } + + return setTokenB({ ...tokenB, value: formatedValue }); }; - const onSubmit = () => { + const onSubmit = async () => { + if (!smartAccountState.address) return; + + const tokenAParams: Token = { + address: tokenA.asset?.address!, + balance: tokenA.asset?.balance!, + decimals: tokenA.asset?.decimals!, + isListed: tokenA.asset?.isListed!, + logoUrl: tokenA.asset?.logoUrl!, + symbol: tokenA.asset?.symbol!, + usdPrice: tokenA.asset?.usdPrice!, + }; + + const tokenBParams: Token = { + address: tokenB.asset?.address!, + balance: tokenB.asset?.balance!, + decimals: tokenB.asset?.decimals!, + isListed: tokenB.asset?.isListed!, + logoUrl: tokenB.asset?.logoUrl!, + symbol: tokenB.asset?.symbol!, + usdPrice: tokenB.asset?.usdPrice!, + }; + + const param: AddLiquidityWithSwapParams = { + tokenA: tokenAParams, + tokenB: tokenBParams, + amountAIn: tokenA.value, + amountBIn: tokenB.value, + deadline: BigInt(Math.floor(Date.now() / 1000) + 3600), + stable: selectedPool?.isStable!, + to: smartAccountState.address, + }; + setLoading(true); - console.log('Submitting liquidity request', { primary, secondary }); + + if (method === 'liquid') { + const response = await addLiquidity(param, { waitForReceipt: true }); + + console.log(selectedPool, 'selected pool'); + + console.log('Submitting liquidity request', { tokenA, tokenB }); + } + + if (method === 'coinbase') { + console.log('Submitting coinbase request', { tokenA, tokenB }); + } + + if (method === 'debit') { + console.log('Submitting debit request', { tokenA, tokenB }); + } }; - useEffect(() => { - const primaryIsInvalid = parseFloat(removeCommasFromNumber(primary.value)) > primary.asset?.balance!; - const secondaryIsInvalid = parseFloat(removeCommasFromNumber(secondary.value)) > secondary.asset?.balance!; + useEffect( + function initializeTokenData() { + if (!tokens.data || !selectedPool) return; + + const tokenAData = tokens.data.find((token) => token.address === selectedPool.token0.address); + const tokenBData = tokens.data.find((token) => token.address === selectedPool.token1.address); + + if (!tokenAData || !tokenBData) return; + + setTokenA({ ...tokenA, asset: { ...tokenAData } }); + setTokenB({ ...tokenB, asset: { ...tokenBData } }); + + if (!defaultTokens) setDefaultTokens({ tokenA: { ...tokenAData }, tokenB: { ...tokenBData } }); + }, + [tokens, selectedPool] + ); + + useEffect( + function listenForErrors() { + const tokenAAmountInIsInvalid = parseFloat(removeCommasFromNumber(tokenA.value)) > Number(tokenA.asset?.balance)!; + const tokenBAmountInIsInvalid = parseFloat(removeCommasFromNumber(tokenB.value)) > Number(tokenB.asset?.balance)!; + + if (tokenAAmountInIsInvalid && tokenBAmountInIsInvalid) return setError('insufficientLiquidBalance'); + + if (tokenBAmountInIsInvalid) return setError('insufficientBalance'); + + return setError(undefined); + }, + [tokenA.value, tokenB.value, tokenA.asset?.balance, tokenB.asset?.balance] + ); - if (primaryIsInvalid && secondaryIsInvalid) return setError('secondary'); + useEffect( + function checkMatchingPools() { + if (!tokens.data) return setPools([]); - if (secondaryIsInvalid) return setError('primary'); - }, [primary.value, secondary.value, primary.asset?.balance, secondary.asset?.balance]); + if (!tokenA.asset || !tokenB.asset || !didUserChangeToken) return setPools([]); + + const response = poolsState.pools.data.filter((pool) => { + const tokenHasCl = pool.symbol.toLowerCase().includes('cl'); + const tokenAAddress = tokenA.asset?.address; + const tokenBAddress = tokenB.asset?.address; + + return pool.token0.address === tokenAAddress && pool.token1.address === tokenBAddress && !tokenHasCl; + }); + + if (response.length === 0) setError('noMatchingPools'); + + return setPools(response); + }, + [tokenA.asset, tokenB.asset] + ); + + if (loading) { + return ( + + + + ); + } return ( - <> - {!loading && ( - - - - Add Liquidity - Deposit liquidity to Earn trading fees - - - - - - handleTokenChange(id, 'primary')} - value={primary.value} - onChange={(value) => handleValueChange(value, 'primary')} - /> - - - - - - handleTokenChange(id, 'secondary')} - value={secondary.value} - onChange={(value) => handleValueChange(value, 'secondary')} - /> - - - {error && } - - {showInfo && } - + + + + Add Liquidity + Deposit liquidity to Earn trading fees + - - + + + + handleTokenChange(address, 'tokenA')} + value={tokenA.value} + onChange={(value) => handleValueChange(value, 'tokenA')} + /> + + + - - )} - - {loading && ( - - - - )} - + + handleTokenChange(address, 'tokenB')} + value={tokenB.value} + onChange={(value) => handleValueChange(value, 'tokenB')} + /> + + + {error && } + + {} + + {didUserChangeToken && pools.length > 0 && } + + + + + + ); }; diff --git a/screens/liquidity-actions/add/pool-selector.tsx b/screens/liquidity-actions/add/pool-selector.tsx new file mode 100644 index 0000000..e779323 --- /dev/null +++ b/screens/liquidity-actions/add/pool-selector.tsx @@ -0,0 +1,49 @@ +import { StyleSheet, Text, TouchableOpacity, View } from 'react-native'; +import { Pool } from '@/store/pools/types'; +import { LQDPoolPairPaper } from '@/components'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { memo } from 'react'; + +const SelectPool = ({ pools }: { pools: Pool[] }) => { + return ( + + Select Pools + + + {pools.map((pool, index) => ( + {}} key={index} style={styles.wrapper}> + + + ))} + + + ); +}; + +const styles = StyleSheet.create({ + container: { + alignSelf: 'stretch', + paddingTop: 20, + }, + + innerContainer: { + gap: 20, + }, + + wrapper: { + borderRadius: 8, + borderColor: '#EAEEF4', + borderWidth: 1, + padding: 16, + }, + + title: { + color: '#0F172A', + fontSize: adjustFontSizeForIOS(20, 3), + fontWeight: '500', + fontFamily: 'AeonikMedium', + paddingBottom: 14, + }, +}); + +export default memo(SelectPool); diff --git a/screens/liquidity-actions/add/styles.ts b/screens/liquidity-actions/add/styles.ts index 34f78f1..b075964 100644 --- a/screens/liquidity-actions/add/styles.ts +++ b/screens/liquidity-actions/add/styles.ts @@ -6,13 +6,13 @@ const styles = StyleSheet.create({ root: { paddingHorizontal: 16, paddingTop: 70, - paddingBottom: 34, backgroundColor: '#FFF', }, contentStyle: { - flex: 1, + flexGrow: 1, justifyContent: 'space-between', + paddingBottom: 130, }, container: { @@ -58,8 +58,7 @@ const styles = StyleSheet.create({ bottomContainer: { paddingHorizontal: 8, - paddingVertical: 12, - alignItems: 'stretch', + paddingTop: 50, }, errorText: { @@ -91,7 +90,7 @@ const coinSelectorInputStyles = StyleSheet.create({ lineHeight: 26.88, letterSpacing: -0.6, fontWeight: '500', - maxWidth: '35%', + maxWidth: '40%', fontFamily: 'AeonikMedium', }, diff --git a/screens/liquidity-actions/add/types.ts b/screens/liquidity-actions/add/types.ts index 55fcca8..a3c23cc 100644 --- a/screens/liquidity-actions/add/types.ts +++ b/screens/liquidity-actions/add/types.ts @@ -12,19 +12,19 @@ type Methods = { }; interface ICoinSelectorInput { - tokenId?: string; - setTokenId: (tokenId: string) => void; + address?: string; + selectedToken: (address: string) => void; value: string; onChange: (value: string) => void; disabled?: boolean; } type TokenValue = { - asset?: IAsset; + asset?: TokenItem; value: string; }; -type ErrorState = undefined | 'primary' | 'secondary'; +type ErrorState = undefined | 'insufficientBalance' | 'insufficientLiquidBalance' | 'noMatchingPools'; interface IErrorMessage { title: string; @@ -36,8 +36,9 @@ interface IErrorMessage { } type ErrorsArray = { - primary: IErrorMessage; - secondary: IErrorMessage; + insufficientBalance: IErrorMessage; + insufficientLiquidBalance: IErrorMessage; + noMatchingPools: IErrorMessage; }; type Info = { @@ -54,3 +55,15 @@ interface ILoading { primaryTitle: string; secondaryTitle: string; } + +type TokenItem = { + address: `0x${string}`; + symbol: string; + decimals: number; + balance: string; + isListed: boolean; + usdPrice: string; + logoUrl: string; + lastUpdated: string; + createdAt: string; +}; diff --git a/screens/liquidity-management/index.tsx b/screens/liquidity-management/index.tsx index f6e0c60..12bb215 100644 --- a/screens/liquidity-management/index.tsx +++ b/screens/liquidity-management/index.tsx @@ -76,10 +76,10 @@ const LiquidityManagement = ({ id, type }: ILiquidityManagement) => { useEffect(() => { setPairDetails({ - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - primaryTitle: 'USDC', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - secondaryTitle: 'ETH', + tokenAIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', + tokenATitle: 'USDC', + tokenBIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', + tokenBTitle: 'ETH', condition: 'stable', }); }, [id]); @@ -119,7 +119,7 @@ const LiquidityManagement = ({ id, type }: ILiquidityManagement) => { - {[pairDetails?.primaryIconURL, pairDetails?.secondaryIconURL]?.map((iconURL, index) => ( + {[pairDetails?.tokenAIconURL, pairDetails?.tokenBIconURL]?.map((iconURL, index) => ( @@ -127,7 +127,7 @@ const LiquidityManagement = ({ id, type }: ILiquidityManagement) => { - {pairDetails?.condition.charAt(0)}AMM - {pairDetails?.primaryTitle} / {pairDetails?.secondaryTitle} + {pairDetails?.condition.charAt(0)}AMM - {pairDetails?.tokenATitle} / {pairDetails?.tokenBTitle} diff --git a/screens/liquidity-management/types.ts b/screens/liquidity-management/types.ts index 7474b5f..6bc0185 100644 --- a/screens/liquidity-management/types.ts +++ b/screens/liquidity-management/types.ts @@ -5,8 +5,8 @@ interface ILiquidityManagement { interface IPairDetails { condition: 'stable' | 'volatile'; - primaryIconURL: string; - secondaryIconURL: string; - primaryTitle: string; - secondaryTitle: string; + tokenAIconURL: string; + tokenBIconURL: string; + tokenATitle: string; + tokenBTitle: string; } diff --git a/screens/pool-detail/balance.tsx b/screens/pool-detail/balance.tsx index 19c7894..0e069e6 100644 --- a/screens/pool-detail/balance.tsx +++ b/screens/pool-detail/balance.tsx @@ -2,15 +2,15 @@ import { View, StyleSheet, Text, Image } from 'react-native'; import { adjustFontSizeForIOS } from '@/utils/helpers'; -const Balance = ({ primaryBalance, primaryIconURL, primaryTitle, secondaryBalance, secondaryIconURL, secondaryTitle, aero }: IPool) => { +const Balance = ({ tokenABalance, tokenAIconURL, tokenATitle, tokenBBalance, tokenBIconURL, tokenBTitle }: any) => { const values = [ { - iconURL: primaryIconURL, - title: `${primaryBalance.toLocaleString()} ${primaryTitle}`, + iconURL: tokenAIconURL, + title: `${tokenABalance.toLocaleString()} ${tokenATitle}`, }, { - iconURL: secondaryIconURL, - title: `${secondaryBalance.toLocaleString()} ${secondaryTitle}`, + iconURL: tokenBIconURL, + title: `${tokenBBalance.toLocaleString()} ${tokenBTitle}`, }, ]; @@ -31,11 +31,6 @@ const Balance = ({ primaryBalance, primaryIconURL, primaryTitle, secondaryBalanc ), }, - - { - title: 'Quantity', - children: {aero.toLocaleString()} AERO-LP, - }, ]; return ( diff --git a/screens/pool-detail/header.tsx b/screens/pool-detail/header.tsx index 0253fbf..965b304 100644 --- a/screens/pool-detail/header.tsx +++ b/screens/pool-detail/header.tsx @@ -3,10 +3,10 @@ import { View, Text, StyleSheet, Image, TouchableOpacity } from 'react-native'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import { BoxSearchIcon, SendIcon } from '@/assets/icons'; -const Header = ({ condition, fee, primaryIconURL, symbol, secondaryIconURL }: PoolDetails) => { +const Header = ({ condition, poolFee, tokenAIconURL, symbol, tokenBIconURL }: PoolDetails) => { const flagColors = { - stable: '#B47818', - volatile: '#AF1D38', + stable: '#156146', + volatile: '#B47818', }; const actions = [ @@ -24,9 +24,9 @@ const Header = ({ condition, fee, primaryIconURL, symbol, secondaryIconURL }: Po - {[primaryIconURL, secondaryIconURL].map((iconURL, index) => ( + {[tokenAIconURL, tokenBIconURL].map((iconURL, index) => ( - + ))} @@ -41,7 +41,7 @@ const Header = ({ condition, fee, primaryIconURL, symbol, secondaryIconURL }: Po - {fee}% Fee + {poolFee}% Fee @@ -156,4 +156,10 @@ const styles = StyleSheet.create({ justifyContent: 'center', alignItems: 'center', }, + + image: { + width: 34.9, + height: 34.9, + borderRadius: 34, + }, }); diff --git a/screens/pool-detail/index.tsx b/screens/pool-detail/index.tsx index fdda7f6..af2e8fe 100644 --- a/screens/pool-detail/index.tsx +++ b/screens/pool-detail/index.tsx @@ -7,6 +7,7 @@ import PoolLiquidity from './pool-liquidity'; import PoolStats from './stats'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { Address, formatEther } from 'viem'; +import { roundUp } from '@/utils/helpers'; const PoolDetail = ({ poolId }: PoolID) => { const { poolsState, accountState } = useSystemFunctions(); @@ -16,33 +17,37 @@ const PoolDetail = ({ poolId }: PoolID) => { const title = symbol?.split('/'); const getTokenBalance = (address?: Address) => { - const balance = accountState.tokens.find((token) => token.address === address)?.balance || 0; + const balance = accountState.tokens?.data?.find((token) => token.address === address)?.balance || 0; return Number(balance); }; const getTokenUSDValue = (address?: Address) => { - const token = accountState.tokens.find((token) => token.address === address); + const token = accountState.tokens?.data?.find((token) => token.address === address); const balance = Number(token?.balance || 0) * Number(token?.usdPrice || 0); return balance; }; const POOL: PoolDetails = { - primaryIconURL: pool?.token0.logoUrl || '', - primaryBalance: getTokenBalance(pool?.token0.address), - primaryUSDValue: getTokenUSDValue(pool?.token0.address), - secondaryIconURL: pool?.token1.logoUrl || '', - secondaryBalance: getTokenBalance(pool?.token1.address), - secondaryUSDValue: getTokenUSDValue(pool?.token1.address), + tokenAIconURL: pool?.token0.logoUrl || '', + tokenABalance: getTokenBalance(pool?.token0.address), + tokenAUSDValue: getTokenUSDValue(pool?.token0.address), + tokenBIconURL: pool?.token1.logoUrl || '', + tokenBBalance: getTokenBalance(pool?.token1.address), + tokenBUSDValue: getTokenUSDValue(pool?.token1.address), condition: pool?.isStable ? 'stable' : 'volatile', - fee: 0, - aero: 10, - stakedAero: 300, - availableAero: 4_090, - primaryTitle: title ? title[0] : '', - secondaryTitle: title ? title[1] : '', + fee: Number(pool?.totalFeesUSD).toFixed(2), + poolFee: roundUp(Number(pool?.poolFee)), + tokenATitle: title ? title[0] : '', + tokenBTitle: title ? title[1] : '', symbol: pool?.symbol.split('-')[1].replace('/', ' / ') || '', - volume: Number(formatEther(BigInt(pool?.totalVolumeUSD || 0))), + volume: Number(pool?.totalVolumeUSD || 0), tvl: Number(pool?.tvl || 0), + tx: Number(pool?.txCount), + reserveA: Number(pool?.token0.reserve), + reserveB: Number(pool?.token1.reserve), + reserveAUSD: Number(pool?.token0.reserveUSD), + reserveBUSD: Number(pool?.token1.reserveUSD), + poolAddress: pool?.address!, }; if (!pool) return null; @@ -62,7 +67,7 @@ const PoolDetail = ({ poolId }: PoolID) => { - + ); diff --git a/screens/pool-detail/pool-liquidity.tsx b/screens/pool-detail/pool-liquidity.tsx index 8c9099a..7ceea20 100644 --- a/screens/pool-detail/pool-liquidity.tsx +++ b/screens/pool-detail/pool-liquidity.tsx @@ -3,64 +3,64 @@ import { View, Text, StyleSheet, Image } from 'react-native'; import Animated, { useAnimatedStyle, withTiming } from 'react-native-reanimated'; import ImageColors from 'react-native-image-colors'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { adjustFontSizeForIOS, formatNumberWithSuffix } from '@/utils/helpers'; const PoolLiquidity = ({ - primaryIconURL, - primaryBalance, - primaryTitle, - primaryUSDValue, - secondaryBalance, - secondaryIconURL, - secondaryTitle, - secondaryUSDValue, + tokenAIconURL, + reserveA, + tokenATitle, + reserveAUSD, + reserveB, + tokenBIconURL, + tokenBTitle, + reserveBUSD, }: PoolDetails) => { - const [primaryColor, setPrimaryColor] = useState('#375DFB'); - const [secondaryColor, setSecondaryColor] = useState('#F2AE40'); - const [primaryProgress, setPrimaryProgress] = useState(0.5); + const [tokenAColor, settokenAColor] = useState('#375DFB'); + const [tokenBColor, settokenBColor] = useState('#F2AE40'); + const [tokenAProgress, settokenAProgress] = useState(0.5); const values = [ { - iconURL: primaryIconURL, - primaryText: `${primaryBalance.toLocaleString()}`, - title: primaryTitle, - secondaryText: `${primaryUSDValue.toLocaleString()}`, + iconURL: tokenAIconURL, + tokenBalance: `${formatNumberWithSuffix(reserveA)}`, + title: tokenATitle, + tokenUSDValue: `${formatNumberWithSuffix(reserveAUSD)}`, }, { - iconURL: secondaryIconURL, - primaryText: `${secondaryBalance.toLocaleString()}`, - title: secondaryTitle, - secondaryText: `${secondaryUSDValue.toLocaleString()}`, + iconURL: tokenBIconURL, + tokenBalance: `${formatNumberWithSuffix(reserveB)}`, + title: tokenBTitle, + tokenUSDValue: `${formatNumberWithSuffix(reserveBUSD)}`, }, ]; const progressStyle = useAnimatedStyle(() => { return { - width: withTiming(`${primaryProgress * 100}%`, { duration: 500 }), + width: withTiming(`${tokenAProgress * 100}%`, { duration: 500 }), }; }); useEffect(() => { const extractColors = async () => { - const primaryColors = await ImageColors.getColors(primaryIconURL, { + const tokenAColors = await ImageColors.getColors(tokenAIconURL, { fallback: '#375DFB', }); - const secondaryColors = await ImageColors.getColors(secondaryIconURL, { + const tokenBColors = await ImageColors.getColors(tokenBIconURL, { fallback: '#F2AE40', }); - if (primaryColors.platform === 'android') setPrimaryColor(primaryColors.vibrant || '#375DFB'); - if (primaryColors.platform === 'ios') setPrimaryColor(primaryColors.background || '#375DFB'); + if (tokenAColors.platform === 'android') settokenAColor(tokenAColors.vibrant || '#375DFB'); + if (tokenAColors.platform === 'ios') settokenAColor(tokenAColors.background || '#375DFB'); - if (secondaryColors.platform === 'android') setSecondaryColor(secondaryColors.vibrant || '#F2AE40'); - if (secondaryColors.platform === 'ios') setSecondaryColor(secondaryColors.background || '#F2AE40'); + if (tokenBColors.platform === 'android') settokenBColor(tokenBColors.vibrant || '#F2AE40'); + if (tokenBColors.platform === 'ios') settokenBColor(tokenBColors.background || '#F2AE40'); }; extractColors(); - const totalBalance = primaryBalance + secondaryBalance; - setPrimaryProgress(primaryBalance / totalBalance); - }, [primaryIconURL, secondaryIconURL, primaryBalance, secondaryBalance]); + const totalBalance = reserveAUSD! + reserveBUSD!; + settokenAProgress(reserveAUSD! / totalBalance); + }, [tokenAIconURL, tokenBIconURL, reserveA, reserveB]); return ( @@ -68,25 +68,25 @@ const PoolLiquidity = ({ - {values.map(({ iconURL, primaryText, secondaryText, title }, index) => ( + {values.map(({ iconURL, tokenBalance, tokenUSDValue, title }, index) => ( - - {primaryText} - {title} + + {tokenBalance} + {title} - {`($${secondaryText})`} + {`($${tokenUSDValue})`} ))} - - + + @@ -143,9 +143,9 @@ const styles = StyleSheet.create({ gap: 8, }, - primaryText: { + tokenAText: { color: '#0A0D14', - fontSize: adjustFontSizeForIOS(16, 2), + fontSize: adjustFontSizeForIOS(14, 2), lineHeight: 19.84, fontWeight: '500', fontFamily: 'AeonikMedium', @@ -156,9 +156,9 @@ const styles = StyleSheet.create({ color: '#868C98', }, - secondaryText: { + tokenBText: { color: '#525866', - fontSize: adjustFontSizeForIOS(14, 2), + fontSize: adjustFontSizeForIOS(10, 2), lineHeight: 18.48, textAlign: 'center', }, diff --git a/screens/pool-detail/stats.tsx b/screens/pool-detail/stats.tsx index 27bd984..23d8353 100644 --- a/screens/pool-detail/stats.tsx +++ b/screens/pool-detail/stats.tsx @@ -3,10 +3,10 @@ import { View, Text, StyleSheet } from 'react-native'; import { adjustFontSizeForIOS, formatNumberWithSuffix } from '@/utils/helpers'; import { Chart2AltIcon, CoinsLGIcon, MoneyTickIcon, SwapHorizontalIcon } from '@/assets/icons'; -const PoolStats = ({ volume, fee, tvl }: Stat) => { +const PoolStats = ({ volume, fee, tvl, tx }: Stat) => { const stats = [ { - title: 'Volume', + title: 'Volume (24hrs)', value: `$${formatNumberWithSuffix(volume)}`, icon: , }, @@ -17,12 +17,12 @@ const PoolStats = ({ volume, fee, tvl }: Stat) => { }, { title: 'Fees', - value: `$${formatNumberWithSuffix(fee)}`, + value: `$${formatNumberWithSuffix(Number(fee))}`, icon: , }, { title: 'Transactions', - value: `${(194).toLocaleString()} TX`, + value: `${tx.toLocaleString()} TX`, icon: , }, ]; @@ -36,7 +36,7 @@ const PoolStats = ({ volume, fee, tvl }: Stat) => { {icon} - {title} (24hrs) + {title} {value} diff --git a/screens/pool-detail/types.ts b/screens/pool-detail/types.ts index 7b9a6a9..dcbc293 100644 --- a/screens/pool-detail/types.ts +++ b/screens/pool-detail/types.ts @@ -3,28 +3,33 @@ interface PoolID { } interface PoolDetails { - primaryIconURL: string; - secondaryIconURL: string; - primaryTitle: string; - secondaryTitle: string; - primaryBalance: number; - secondaryBalance: number; - primaryUSDValue: number; - secondaryUSDValue: number; + tokenAIconURL: string; + tokenBIconURL: string; + tokenATitle: string; + tokenBTitle: string; + tokenABalance: number; + tokenBBalance: number; + tokenAUSDValue: number; + tokenBUSDValue: number; condition: 'stable' | 'volatile'; - fee: number; - aero: number; - stakedAero: number; - availableAero: number; + fee: number | string; symbol: string; volume: number; tvl: number; + tx: number; + reserveA: number; + reserveB: number; + reserveAUSD: number; + reserveBUSD: number; + poolFee: number | string; + poolAddress: `0x${string}`; } interface Stat { - fee: number; + fee: number | string; volume: number; tvl: number; + tx: number; } type Metric = 'tvl' | 'volume' | 'fees'; diff --git a/store/account/actions.ts b/store/account/actions.ts index 6cbd506..5bcfb1c 100644 --- a/store/account/actions.ts +++ b/store/account/actions.ts @@ -1,48 +1,68 @@ import { PublicClient } from 'viem'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { useToken } from '@/hooks/useToken'; -import { publicClient } from '@/init/viem'; +import { publicClient } from '@/init/client'; import { setLoading, setLpBalance, setPositions, setRefreshing, setTokenBalance, setTokens } from '.'; -import { Position, Token } from '@/hooks/types'; -import { usePool } from '@/hooks/usePool'; +import { Position } from '@/hooks/types'; +import api from '@/init/api'; +import { TokenItem } from './types'; export function useAccountActions() { - const { dispatch } = useSystemFunctions(); - const { fetchTokens } = useToken(publicClient as PublicClient); - const { fetchPositions } = usePool(publicClient as PublicClient); + const { dispatch, accountState, smartAccountState } = useSystemFunctions(); - const getTokens = async (refresh?: boolean) => { + const getTokens = async () => { try { - if (refresh) { - dispatch(setRefreshing(true)); - const tokens = await fetchTokens(15, 0); - return _setValidTokens(tokens); - } - dispatch(setLoading(true)); - const tokens = await fetchTokens(15, 0); - return _setValidTokens(tokens); + const query = smartAccountState.address ? `?address=${smartAccountState.address}` : ''; + const tokens = await api.getTokens(query); + + const totalBalance = tokens.data.reduce((acc, token) => acc + parseFloat(token.usdBalance || '0'), 0); + const sortedTokens = await _sortTokensByBalance(tokens.data); + + tokens.data = [...sortedTokens]; + + dispatch(setTokens(tokens)); + dispatch(setTokenBalance(totalBalance)); } catch (error: any) { // } finally { dispatch(setLoading(false)); - dispatch(setRefreshing(false)); } }; - const getPositions = async (refresh?: boolean) => { + const getPaginatedTokens = async (refresh?: boolean) => { try { if (refresh) { dispatch(setRefreshing(true)); - const positions = await fetchPositions(15, 0); - return _setValidPositions(positions || []); + + const query = smartAccountState.address ? `?address=${smartAccountState.address}` : ''; + const tokens = await api.getTokens(query); + + return dispatch(setTokens(tokens)); } + const { tokens: currentTokens } = accountState; + + if (!currentTokens?.pagination?.hasMore) return; + dispatch(setLoading(true)); - const positions = await fetchPositions(15, 0); - return _setValidPositions(positions || []); + const nextPage = currentTokens?.pagination.page + 1; + + const addressQuery = smartAccountState.address ? `address=${smartAccountState.address}` : ''; + const query = `?page=${nextPage}&address=${addressQuery}`; + + const tokens = await api.getTokens(query); + const sortedTokens = await _sortTokensByBalance(tokens.data); + tokens.data = [...sortedTokens]; + + const newData = { ...currentTokens.data, ...tokens.data }; + tokens.data = newData; + + const totalBalance = tokens.data.reduce((acc, token) => acc + parseFloat(token.balance) * parseFloat(token.usdPrice), 0); + + dispatch(setTokens(tokens)); + dispatch(setTokenBalance(totalBalance)); } catch (error: any) { // } finally { @@ -51,13 +71,28 @@ export function useAccountActions() { } }; - const _setValidTokens = async (tokens: Token[]) => { - const validTokens = await tokens.filter((token) => token.isListed && token.balance !== '0'); - const totalBalance = validTokens.reduce((acc, token) => acc + parseFloat(token.balance) * parseFloat(token.usdPrice), 0); + // const getPositions = async (refresh?: boolean) => { + // try { + // if (refresh) { + // dispatch(setRefreshing(true)); + // console.log('got here'); + // const returnedPosition = await lpSugar.getPositions(TEST_USER); - dispatch(setTokens(validTokens)); - dispatch(setTokenBalance(totalBalance)); - }; + // console.log(returnedPosition, 'returned position'); + // return _setValidPositions(positions || []); + // } + + // dispatch(setLoading(true)); + // const returnedPosition = await lpSugar.getPositions(TEST_USER); + + // return _setValidPositions(positions || []); + // } catch (error: any) { + // // + // } finally { + // dispatch(setLoading(false)); + // dispatch(setRefreshing(false)); + // } + // }; const _setValidPositions = async (positions: Position[]) => { const validPositions = await positions.filter((po) => po.balance !== '0'); @@ -67,8 +102,20 @@ export function useAccountActions() { dispatch(setLpBalance(lpBalance)); }; + const _sortTokensByBalance = async (tokens: TokenItem[]) => { + const sortedTokens = tokens.sort((a, b) => { + const balanceA = parseFloat(a.balance); + const balanceB = parseFloat(b.balance); + + return balanceB - balanceA; + }); + + return sortedTokens; + }; + return { getTokens, - getPositions, + //getPositions, + getPaginatedTokens, }; } diff --git a/store/account/index.ts b/store/account/index.ts index 7579119..f0f9724 100644 --- a/store/account/index.ts +++ b/store/account/index.ts @@ -1,9 +1,10 @@ -import { Position, Token } from '@/hooks/types'; +import { Position } from '@/hooks/types'; import { createSlice } from '@reduxjs/toolkit'; import type { PayloadAction } from '@reduxjs/toolkit'; +import { TokenResponse } from './types'; export interface AccountState { - tokens: Token[]; + tokens: TokenResponse; positions: Position[]; lpBalance: number; tokenBalance: number; @@ -12,7 +13,14 @@ export interface AccountState { } const initialState: AccountState = { - tokens: [], + tokens: { + data: [], + pagination: { + hasMore: true, + page: 0, + limit: 0, + }, + }, positions: [], lpBalance: 0, tokenBalance: 0, @@ -40,11 +48,18 @@ export const accountReducer = createSlice({ } }, - setTokens: (state, action: PayloadAction) => { + setTokens: (state, action: PayloadAction) => { if (action.payload) { - state.tokens = [...action.payload]; + state.tokens = { ...action.payload }; } else { - state.tokens = []; + state.tokens = { + data: [], + pagination: { + hasMore: true, + page: 0, + limit: 0, + }, + }; } }, diff --git a/store/account/types.ts b/store/account/types.ts new file mode 100644 index 0000000..2341536 --- /dev/null +++ b/store/account/types.ts @@ -0,0 +1,47 @@ +import { Address } from 'viem'; + +export type TokenResponse = { + data: TokenItem[]; + pagination: { + limit: number; + page: number; + hasMore: boolean; + }; +}; + +export type TokenItem = { + formattedBalance: string; + usdBalance: string; + address: Address; + symbol: string; + decimals: number; + balance: string; + isListed: boolean; + usdPrice: string; + logoUrl: string; + lastUpdated: string; + createdAt: string; +}; + +export const defaultToken: TokenResponse = { + data: [ + { + address: '0x', + symbol: '', + decimals: 0, + balance: '0', + isListed: false, + usdPrice: '0', + logoUrl: '', + lastUpdated: '', + createdAt: '', + formattedBalance: '0', + usdBalance: '0', + }, + ], + pagination: { + limit: 10, + page: 0, + hasMore: true, + }, +}; diff --git a/store/index.ts b/store/index.ts index acae75d..6aa78a7 100644 --- a/store/index.ts +++ b/store/index.ts @@ -25,7 +25,7 @@ const rootReducer = combineReducers({ const persistConfig = { key: 'root', storage: AsyncStorage, - whitelist: ['user', 'pools', 'smartAccount', 'account'], + whitelist: ['user', 'smartAccount'], }; const persistedReducer = persistReducer(persistConfig, rootReducer); diff --git a/store/pools/actions.ts b/store/pools/actions.ts index dd09608..45e394b 100644 --- a/store/pools/actions.ts +++ b/store/pools/actions.ts @@ -1,12 +1,21 @@ import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { setHotPools, setLoadingPools, setRefreshing, setSearchedPools, setSearchingPools, setTopGainers, setTrendingPools } from '.'; +import { + setHotPools, + setLoadingPools, + setpools, + setRefreshing, + setSearchedPools, + setSearchingPools, + setTopGainers, + setTrendingPools, +} from '.'; import api from '@/init/api'; import { PoolType } from '@/init/types'; export function usePoolActions() { const { dispatch, poolsState } = useSystemFunctions(); - const { hotPools, topGainers, trendingPools } = poolsState; + const { hotPools, topGainers, trendingPools, searchedPools } = poolsState; const getPools = async () => { try { @@ -16,11 +25,15 @@ export function usePoolActions() { dispatch(setHotPools(hotPools)); + const topGainers = await api.getPools(PoolType.gainers); + + dispatch(setTopGainers(topGainers)); + const trendingPools = await api.getPools(PoolType.trending); dispatch(setTrendingPools(trendingPools)); - const topGainers = await api.getPools(PoolType.gainers); - dispatch(setTopGainers(topGainers)); + const allPools = await api.getPools(PoolType.v2); + dispatch(setpools(allPools)); } catch (error: any) { // } finally { @@ -37,7 +50,7 @@ export function usePoolActions() { return dispatch(setHotPools(pools)); } - if (hotPools.pagination.page == hotPools.pagination.totalPages) return; + if (!hotPools.pagination.hasMore) return; dispatch(setLoadingPools(true)); @@ -67,7 +80,7 @@ export function usePoolActions() { return dispatch(setTrendingPools(pools)); } - if (trendingPools.pagination.page == trendingPools.pagination.totalPages) return; + if (!trendingPools.pagination.hasMore) return; dispatch(setLoadingPools(true)); @@ -97,7 +110,7 @@ export function usePoolActions() { return dispatch(setTopGainers(pools)); } - if (topGainers.pagination.page == topGainers.pagination.totalPages) return; + if (!topGainers.pagination.hasMore) return; dispatch(setLoadingPools(true)); @@ -119,11 +132,13 @@ export function usePoolActions() { } }; - const searchPools = async (query: string) => { + const searchPools = async (searchQuery: string) => { try { + if (!searchQuery) return dispatch(setSearchedPools(undefined)); + dispatch(setSearchingPools(true)); - const pools = await api.searchPools(query); + const pools = await api.searchPools(encodeURIComponent(searchQuery)); dispatch(setSearchedPools(pools)); } catch (error: any) { @@ -134,11 +149,35 @@ export function usePoolActions() { } }; + const getPaginatedSearchPools = async (searchQuery: string) => { + try { + if (!searchedPools.pagination.hasMore || !searchQuery) return; + + dispatch(setSearchingPools(true)); + + const nextPage = searchedPools.pagination.page + 1; + + const query = `&page=${nextPage}`; + + const pools = await api.searchPools(encodeURIComponent(searchQuery), query); + + const newData = { ...topGainers.data, ...pools.data }; + pools.data = newData; + + dispatch(setSearchedPools(pools)); + } catch (error: any) { + // + } finally { + dispatch(setSearchingPools(false)); + } + }; + return { getPools, getPaginatedHotPools, getPaginatedTrendingPools, getPaginatedTopGainers, searchPools, + getPaginatedSearchPools, }; } diff --git a/store/pools/index.ts b/store/pools/index.ts index e28db4d..8ebba18 100644 --- a/store/pools/index.ts +++ b/store/pools/index.ts @@ -55,7 +55,7 @@ export const poolReducer = createSlice({ if (action.payload) { state.hotPools = { ...action.payload }; } else { - state.hotPools = defaultPoolResponse; + state.hotPools = { ...defaultPoolResponse }; } }, @@ -67,7 +67,7 @@ export const poolReducer = createSlice({ if (action.payload) { state.topGainers = { ...action.payload }; } else { - state.topGainers = defaultPoolResponse; + state.topGainers = { ...defaultPoolResponse }; } }, @@ -75,7 +75,7 @@ export const poolReducer = createSlice({ if (action.payload) { state.trendingPools = { ...action.payload }; } else { - state.trendingPools = defaultPoolResponse; + state.trendingPools = { ...defaultPoolResponse }; } }, @@ -83,7 +83,7 @@ export const poolReducer = createSlice({ if (action.payload) { state.searchedPools = { ...action.payload }; } else { - state.searchedPools = defaultPoolResponse; + state.searchedPools = { ...defaultPoolResponse }; } }, }, diff --git a/store/pools/types.ts b/store/pools/types.ts index 3b16543..e0f230b 100644 --- a/store/pools/types.ts +++ b/store/pools/types.ts @@ -5,8 +5,7 @@ export type PoolResponse = { pagination: { limit: number; page: number; - total: number; - totalPages: number; + hasMore: boolean; }; }; @@ -15,8 +14,7 @@ export const defaultPoolResponse = { pagination: { limit: 10, page: 0, - total: 0, - totalPages: 1, + hasMore: true, }, }; @@ -27,6 +25,9 @@ export type Pool = { apr: string; tvl: string; totalVolumeUSD: string; + totalFeesUSD: string; + poolFee: string; + txCount: number | string; isStable: boolean; factory: Address; token0: { @@ -34,6 +35,7 @@ export type Pool = { logoUrl: string; price: string; reserve: string; + reserveUSD: string; volume: string; }; token1: { @@ -41,6 +43,7 @@ export type Pool = { logoUrl: string; price: string; reserve: string; + reserveUSD: string; volume: string; }; }; diff --git a/store/smartAccount/actions.ts b/store/smartAccount/actions.ts index d8cc529..01e9528 100644 --- a/store/smartAccount/actions.ts +++ b/store/smartAccount/actions.ts @@ -2,8 +2,8 @@ import { toCoinbaseSmartAccount, toWebAuthnAccount } from 'viem/account-abstract import * as Passkeys from 'react-native-passkeys'; import { setAddress, setRegistrationOptions } from '@/store/smartAccount'; -import { CreatePassKeyCredentialOptions } from '@/init/types'; -import { publicClient } from '@/init/viem'; +import { CreatePassKeyCredentialOptions, VerifyAuthResponse } from '@/init/types'; +import { publicClient } from '@/init/client'; import { rpId } from '@/constants/env'; import { getPublicKeyHex } from '@/utils/base64'; import useSystemFunctions from '@/hooks/useSystemFunctions'; @@ -16,6 +16,7 @@ import { setLpBalance, setPositions, setTokenBalance, setTokens } from '../accou import api from '@/init/api'; import { useAuth } from '@/providers'; import { Hex } from 'viem'; +import { AuthenticationResponseJSON } from 'react-native-passkeys/build/ReactNativePasskeys.types'; export function useSmartAccountActions() { const { dispatch, router, smartAccountState } = useSystemFunctions(); @@ -67,12 +68,26 @@ export function useSmartAccountActions() { if (!passkeyResult) { throw new Error('No passkey found'); } - const verification = await api.verifyAuthentication(passkeyResult); + + const authenticationResponse: VerifyAuthResponse = { + id: passkeyResult.id, + rawId: passkeyResult.rawId, + response: { + authenticatorData: passkeyResult.response.authenticatorData, + clientDataJSON: passkeyResult.response.clientDataJSON, + signature: passkeyResult.response.signature, + userHandle: passkeyResult.response.userHandle!, + }, + type: 'public-key', + authenticatorAttachment: 'platform', + }; + + const verification = await api.verifyAuthentication(userName, authenticationResponse); const webAuthnAccount = toWebAuthnAccount({ credential: { id: passkeyResult.id, - publicKey: getPublicKeyHex(verification.publicKey), + publicKey: getPublicKeyHex(verification.data.publicKey), }, getFn, rpId, @@ -82,7 +97,7 @@ export function useSmartAccountActions() { owners: [webAuthnAccount], }); const smartAccountInfo = { - publicKey: getPublicKeyHex(passkeyResult.response.signature), + publicKey: verification.data.publicKey, credentialID: passkeyResult.id, }; @@ -103,9 +118,9 @@ export function useSmartAccountActions() { const logout = async () => { try { dispatch(setAddress(null)); - dispatch(setTokens([])); + dispatch(setTokens(undefined)); dispatch(setTokenBalance(0)); - dispatch(setPositions([])); + dispatch(setPositions(undefined)); dispatch(setLpBalance(0)); await clearPersistedSmartAccountInfo(); diff --git a/store/smartAccount/create.ts b/store/smartAccount/create.ts index 4a76f43..54f7e75 100644 --- a/store/smartAccount/create.ts +++ b/store/smartAccount/create.ts @@ -3,7 +3,7 @@ import * as Passkeys from 'react-native-passkeys'; import { toCoinbaseSmartAccount, toWebAuthnAccount } from 'viem/account-abstraction'; import api from '@/init/api'; -import { publicClient } from '@/init/viem'; +import { publicClient } from '@/init/client'; import { isDev, rpId } from '@/constants/env'; import { SmartAccount, Address, SmartAccountPersistedInfo, VerifyRegistration } from '@/init/types'; import { getPublicKeyHex } from '@/utils/base64'; @@ -37,10 +37,24 @@ export async function createSmartAccount(registrationOptions: PublicKeyCredentia clientDataJSON, }; + const smartAccountInfo: VerifyRegistration = { + username: registrationOptions.user.name, + id: registrationResponse.credentialId, + rawId: registrationResponse.credentialId, + response: { + attestationObject: registrationResponse.attestationObject, + clientDataJSON: registrationResponse.clientDataJSON, + }, + type: 'public-key', + authenticatorAttachment: 'platform', + }; + + const verificationResult = await api.verifyRegistration(smartAccountInfo); + const webAuthnAccount = toWebAuthnAccount({ credential: { id: registrationResponse.credentialId, - publicKey: getPublicKeyHex(publicKey), + publicKey: getPublicKeyHex(verificationResult.data.publicKey), }, getFn, rpId, @@ -54,20 +68,6 @@ export async function createSmartAccount(registrationOptions: PublicKeyCredentia const address = await smartAccount.getAddress(); const username = registrationOptions.user.name; - const smartAccountInfo: VerifyRegistration = { - username: registrationOptions.user.name, - id: registrationResponse.credentialId, - rawId: registrationResponse.credentialId, - response: { - attestationObject: registrationResponse.attestationObject, - clientDataJSON: registrationResponse.clientDataJSON, - }, - type: 'public-key', - authenticatorAttachment: 'platform', - }; - - await api.verifyRegistration(smartAccountInfo); - const updateUserAddressResponse = await api.updateUserAddress(username, address); if (!updateUserAddressResponse.success) { throw new FailedToUpdateUserAddressError(); diff --git a/utils/calls.ts b/utils/calls.ts deleted file mode 100644 index fe1e4cb..0000000 --- a/utils/calls.ts +++ /dev/null @@ -1,69 +0,0 @@ -import { Address, encodeFunctionData, Hex } from 'viem'; -import { buildUserOp, getPaymasterData, getUserOpHash } from './wallet'; -import { Call } from './types'; -import { entryPoint06Address } from 'viem/_types/account-abstraction'; -import { paymasterClient, bundlerClient } from '@/init/viem'; -import { useSmartAccountActions } from '@/store/smartAccount/actions'; -import { smartAccountAbi } from 'viem/_types/constants/abis'; -import { SmartWalletABI } from '@/constants/abis'; - -// Main function to execute calls -export async function makeCalls({ calls, account }: { calls: Call[]; account: Address }) { - const { signTransaction } = useSmartAccountActions(); - // Build the user operation - const op = await buildUserOp(account, bundlerClient, { - calls, - paymasterAndData: '0x', // Initialize with empty paymaster data - }); - - // Set verification gas limit - op.verificationGasLimit = 800000n; - - // Get paymaster data - const paymasterResult = await getPaymasterData({ - paymasterClient: paymasterClient, - callData: op.callData, - sender: op.sender, - nonce: op.nonce, - initCode: op.initCode, - maxFeePerGas: op.maxFeePerGas, - maxPriorityFeePerGas: op.maxPriorityFeePerGas, - callGasLimit: op.callGasLimit, - verificationGasLimit: op.verificationGasLimit, - preVerificationGas: op.preVerificationGas, - }); - - // Update operation with paymaster data - op.paymasterAndData = paymasterResult.paymasterAndData; - - // Get the operation hash - const hash = getUserOpHash({ - userOperation: op, - chainId: 8543n, - }); - - const signature = await signTransaction(hash); - - op.signature = signature!; - - // Send the user operation - const opHash = await bundlerClient.sendUserOperation({ - userOperation: op, - entryPoint: entryPoint06Address, - }); - - return { - opHash, - userOpHash: hash, - }; -} - -export function buildUserOperationCalldata({ calls }: { calls: Call[] }): Hex { - // sort ascending order, 0 first - const _calls = calls.sort((a, b) => a.index - b.index); - return encodeFunctionData({ - abi: SmartWalletABI, - functionName: 'executeBatch', - args: [_calls], - }); -} diff --git a/utils/encoders.ts b/utils/encoders.ts index 597cbec..38a5616 100644 --- a/utils/encoders.ts +++ b/utils/encoders.ts @@ -1,6 +1,12 @@ -import { Address, Hex, encodeFunctionData, erc20Abi } from 'viem'; +import { Address, Hex, encodeFunctionData, encodeAbiParameters, parseAbiParameters, erc20Abi } from 'viem'; import { AerodromeConnectorABI, ConnectorPluginABI } from '@/constants/abis'; -import { IRouter, Token } from '@/hooks/types'; + +interface RouteStruct { + from: Address; + to: Address; + stable: boolean; + factory: Address; +} export function encodePluginExecute(connector: Address, data: Hex) { return encodeFunctionData({ @@ -21,9 +27,10 @@ export function encodeAddLiquidity({ balanceTokenRatio, to, deadline, + caller, }: { - tokenA: Token; - tokenB: Token; + tokenA: Address; + tokenB: Address; stable: boolean; amountAIn: bigint; amountBIn: bigint; @@ -32,11 +39,28 @@ export function encodeAddLiquidity({ balanceTokenRatio: boolean; to: Address; deadline: bigint; + caller: Address; }) { + const params = encodeAbiParameters(parseAbiParameters('bytes, address'), [ + encodeAbiParameters(parseAbiParameters('address, address, bool, uint256, uint256, uint256, uint256, bool, address, uint256'), [ + tokenA, + tokenB, + stable, + amountAIn, + amountBIn, + amountAMin, + amountBMin, + balanceTokenRatio, + to, + deadline, + ]), + caller, + ]); + return encodeFunctionData({ abi: AerodromeConnectorABI.abi, - functionName: 'addLiquidity', - args: [tokenA, tokenB, stable, amountAIn, amountBIn, amountAMin, amountBMin, balanceTokenRatio, to, deadline], + functionName: 'execute', + args: [params], }); } @@ -49,20 +73,36 @@ export function encodeRemoveLiquidity({ amountBMin, to, deadline, + caller, }: { - tokenA: Token; - tokenB: Token; + tokenA: Address; + tokenB: Address; stable: boolean; liquidity: bigint; amountAMin: bigint; amountBMin: bigint; to: Address; deadline: bigint; + caller: Address; }) { + const params = encodeAbiParameters(parseAbiParameters('bytes, address'), [ + encodeAbiParameters(parseAbiParameters('address, address, bool, uint256, uint256, uint256, address, uint256'), [ + tokenA, + tokenB, + stable, + liquidity, + amountAMin, + amountBMin, + to, + deadline, + ]), + caller, + ]); + return encodeFunctionData({ abi: AerodromeConnectorABI.abi, - functionName: 'removeLiquidity', - args: [tokenA, tokenB, stable, liquidity, amountAMin, amountBMin, to, deadline], + functionName: 'execute', + args: [params], }); } @@ -72,27 +112,57 @@ export function encodeSwap({ routes, to, deadline, + caller, }: { amountIn: bigint; minReturnAmount: bigint; - routes: IRouter.RouteStruct[]; + routes: RouteStruct[]; to: Address; deadline: bigint; + caller: Address; }) { + const params = encodeAbiParameters(parseAbiParameters('bytes, address'), [ + encodeAbiParameters( + [ + { type: 'uint256' }, + { type: 'uint256' }, + { + type: 'tuple[]', + components: [ + { name: 'from', type: 'address' }, + { name: 'to', type: 'address' }, + { name: 'stable', type: 'bool' }, + { name: 'factory', type: 'address' }, + ], + }, + { type: 'address' }, + { type: 'uint256' }, + ], + [amountIn, minReturnAmount, routes, to, deadline] + ), + caller, + ]); + return encodeFunctionData({ abi: AerodromeConnectorABI.abi, - functionName: 'swapExactTokensForTokens', - args: [amountIn, minReturnAmount, routes, to, deadline], + functionName: 'execute', + args: [params], }); } -export function encodeStake({ gaugeAddress, amount }: { gaugeAddress: Address; amount: bigint }) { +export function encodeStake({ gaugeAddress, amount, caller }: { gaugeAddress: Address; amount: bigint; caller: Address }) { + const params = encodeAbiParameters(parseAbiParameters('bytes, address'), [ + encodeAbiParameters(parseAbiParameters('address, uint256'), [gaugeAddress, amount]), + caller, + ]); + return encodeFunctionData({ abi: AerodromeConnectorABI.abi, - functionName: 'deposit', - args: [gaugeAddress, amount], + functionName: 'execute', + args: [params], }); } + export function encodeApprove({ amount, spender }: { amount: bigint; spender: Address }) { return encodeFunctionData({ abi: erc20Abi, diff --git a/utils/helpers.ts b/utils/helpers.ts index b4af4fe..78ea348 100644 --- a/utils/helpers.ts +++ b/utils/helpers.ts @@ -9,24 +9,30 @@ const formatAmount = (amount?: number | string, decimals = 4): number => { return truncatedValue; }; -const formatNumberWithSuffix = (num: number): string => { +const formatNumberWithSuffix = (num: number | string | undefined): string => { + if (!num) return '0'; + + const numValue = typeof num === 'string' ? Number(num) : num; + + if (isNaN(numValue)) return '0'; + const formatWithPrecision = (value: number) => { return value % 1 === 0 ? value.toFixed(0) : value.toFixed(2).replace(/\.?0+$/, ''); }; - if (num >= 1e12) { - return formatWithPrecision(num / 1e12) + 't'; + if (numValue >= 1e12) { + return formatWithPrecision(numValue / 1e12) + 't'; } - if (num >= 1e9) { - return formatWithPrecision(num / 1e9) + 'b'; + if (numValue >= 1e9) { + return formatWithPrecision(numValue / 1e9) + 'b'; } - if (num >= 1e6) { - return formatWithPrecision(num / 1e6) + 'm'; + if (numValue >= 1e6) { + return formatWithPrecision(numValue / 1e6) + 'm'; } - if (num >= 1e3) { - return formatWithPrecision(num / 1e3) + 'k'; + if (numValue >= 1e3) { + return formatWithPrecision(numValue / 1e3) + 'k'; } - return num?.toString(); + return numValue.toFixed(2).toString(); }; const truncateDecimal = (amount?: number | string, decimals = 4): number => { @@ -89,6 +95,44 @@ const truncate = (text: string, startChars = 5, endChars = 5) => { return `${text.substring(0, startChars)}...${text.substring(text.length - endChars)}`; }; +const roundUp = (num: number, decimals: number = 1): number => { + if (num >= 1) { + return Math.ceil(num); + } + + if (num <= 0) return 0; + + // For decimals, find next significant value + if (num < 0.5) return 0.3; + return 1; +}; + +const formatInputAmount = (value: string): string => { + let newValue = ''; + const valueWithoutComma = value.replace(/,/g, ''); + + if (valueWithoutComma.length === 0) { + newValue = ''; + } else { + // Check if the input is a valid number (including decimals) + const isMatch = valueWithoutComma.match(/^(\d+\.?\d*|\.\d+)$/); + + if (!isMatch) return; + + if (isNaN(Number(valueWithoutComma))) return; + + // Format the number with local thousand separators + // Temporarily remove the decimal part to format the integer part + const parts = valueWithoutComma.split('.'); + const integerFormatted = parseInt(parts[0]).toLocaleString(); + + // Reconstruct the number including the decimal part if it exists + newValue = parts.length > 1 ? `${integerFormatted}.${parts[1]}` : integerFormatted; + } + + return newValue; +}; + export { formatNumberWithSuffix, truncateDecimal, @@ -103,4 +147,6 @@ export { formatAmount, emailIsValid, truncate, + roundUp, + formatInputAmount, }; diff --git a/utils/wallet.ts b/utils/wallet.ts index bb43950..481aa16 100644 --- a/utils/wallet.ts +++ b/utils/wallet.ts @@ -1,48 +1,64 @@ -import { EntryPointABI, SmartWalletABI, SmartWalletFactoryABI } from '@/constants/abis'; -import { ACCOUNT_FACTORY_ADDRESS } from '@/constants/addresses'; -import { estimateUserOperationGas, UserOperation, BundlerClient } from 'permissionless'; +import { EntryPointABI, SmartWalletABI } from '@/constants/abis'; +import { ACCOUNT_FACTORY_ADDRESS, ENTRYPOINT_V06_ADDRESS } from '@/constants/addresses'; import { Address, Chain, encodeAbiParameters, encodeFunctionData, Hex, keccak256, PublicClient, Transport } from 'viem'; -import { entryPoint06Abi, entryPoint06Address, PaymasterClient } from 'viem/_types/account-abstraction'; -import { estimateFeesPerGas, getBytecode, readContract } from 'viem/actions'; +import { entryPoint06Abi, entryPoint06Address, estimateUserOperationGas, PaymasterClient, UserOperation } from 'viem/account-abstraction'; +import { estimateFeesPerGas, getCode, readContract } from 'viem/actions'; import { Call, PaymasterResult } from './types'; +import { SmartAccountClient } from 'permissionless'; +import { bundlerClient, publicClient } from '@/init/client'; +import { smartWalletFactoryAbi } from '@/constants/abis/SmartWalletFactory'; -export const PASSKEY_OWNER_DUMMY_SIGNATURE: Hex = - '0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000170000000000000000000000000000000000000000000000000000000000000001949fc7c88032b9fcb5f6efc7a7b8c63668eae9871b765e23123bb473ff57aa831a7c0d9276168ebcc29f2875a0239cffdf2a9cd1c2007c5c77c071db9264df1d000000000000000000000000000000000000000000000000000000000000002549960de5880e8c687434170f6476605b8fe4aeb9a28632c7995cf3ba831d97630500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a7b2274797065223a22776562617574686e2e676574222c226368616c6c656e6765223a2273496a396e6164474850596759334b7156384f7a4a666c726275504b474f716d59576f4d57516869467773222c226f726967696e223a2268747470733a2f2f7369676e2e636f696e626173652e636f6d222c2263726f73734f726967696e223a66616c73657d00000000000000000000000000000000000000000000'; +export const PASSKEY_OWNER_DUMMY_SIGNATURE: Hex = '0x'; // https://github.com/wilsoncusack/scw-tx/blob/5ff88a10e928b5df9ec12bce2ef64caa0b35afcd/utils/smartWallet.ts#L10 export async function buildUserOp( smartWalletAddress: Address, - client: BundlerClient, + client: SmartAccountClient, { calls, + signers, // If you want to sponsor user operations with a paymaster, pass in the response of the `pm_sponsorUserOperation` RPC // to your paymaster to the `paymasterAndData` param here: https://docs.pimlico.io/infra/paymaster/verifying-paymaster/endpoints#entrypoint-v06 paymasterAndData = '0x', }: { calls: Call[]; + signers: Hex[]; paymasterAndData: Hex; } ) { let initCode: Hex = '0x'; + console.log(initCode, 'got here'); // `getBytecode` is imported from 'viem/actions' // Check if the smart wallet has been deployed by seeing if there's code at that address - const code = await getBytecode(client, { address: smartWalletAddress }); + const code = await getCode(publicClient, { address: smartWalletAddress }); + // If not, set `initCode` to deploy the smart wallet using the helpers above - if (!code) { - initCode = getInitCode({ owners: [smartWalletAddress], index: 0n }); + if (!code || code === '0x') { + console.log('Wallet not deployed, generating initCode'); + + initCode = getInitCode({ owners: signers, index: 0n }); + console.log('Generated initCode:', initCode); + console.log('Factory address used:', ACCOUNT_FACTORY_ADDRESS); } // Pass the transactions you want into the `buildUserOperationCalldata` helper from above to build the `callData` param for the user op const callData = buildUserOperationCalldata({ calls }); // Get the smart wallet's `nonce` by calling the `getNonce` method on the entrypoint contract - const nonce = await readContract(client, { - address: entryPoint06Address, + const nonce = await readContract(publicClient, { + address: ENTRYPOINT_V06_ADDRESS, abi: entryPoint06Abi, functionName: 'getNonce', args: [smartWalletAddress, 0n], }); // Get the current gas fees from the network - let maxFeesPerGas = await estimateFeesPerGas(client); + let maxFeesPerGas = await estimateFeesPerGas(publicClient); + console.log('Max fees:', { + maxFeePerGas: maxFeesPerGas.maxFeePerGas.toString(), + maxPriorityFeePerGas: maxFeesPerGas.maxPriorityFeePerGas.toString(), + }); + // Increase gas limits for deployment + const baseGasLimit = 1_000_000n; + const deploymentBuffer = !code ? 3n : 1n; // Double gas limits for deployment // Put all the fields together in a user op const op = { @@ -51,17 +67,25 @@ export async function buildUserOp( initCode, callData, paymasterAndData, - signature: PASSKEY_OWNER_DUMMY_SIGNATURE, - preVerificationGas: 1_000_000n, - verificationGasLimit: 1_000_000n, - callGasLimit: 1_000_000n, + preVerificationGas: baseGasLimit * deploymentBuffer, + verificationGasLimit: baseGasLimit * deploymentBuffer, + callGasLimit: baseGasLimit * deploymentBuffer, ...maxFeesPerGas, }; // Update user op specific gas limits like `preVerificationGas` etc. const gasLimits = await estimateUserOperationGas(client, { - userOperation: { ...op }, - entryPoint: entryPoint06Address, + sender: op.sender, + nonce: op.nonce, + initCode: op.initCode, + callData: op.callData, + paymasterAndData: op.paymasterAndData, + preVerificationGas: op.preVerificationGas, + verificationGasLimit: op.verificationGasLimit, + callGasLimit: op.callGasLimit, + maxFeePerGas: op.maxFeePerGas, + maxPriorityFeePerGas: op.maxPriorityFeePerGas, + entryPointAddress: entryPoint06Address, }); return { @@ -79,7 +103,7 @@ export function getInitCode({ owners, index }: { owners: Hex[]; index: bigint }) export function createAccountCalldata({ owners, nonce }: { owners: Hex[]; nonce: bigint }) { return encodeFunctionData({ - abi: SmartWalletFactoryABI, + abi: smartWalletFactoryAbi, functionName: 'createAccount', args: [owners, nonce], }); @@ -89,7 +113,7 @@ export function buildUserOperationCalldata({ calls }: { calls: Call[] }): Hex { // sort ascending order, 0 first const _calls = calls.sort((a, b) => a.index - b.index); return encodeFunctionData({ - abi: SmartWalletABI, + abi: SmartWalletABI.smartWalletABI, functionName: 'executeBatch', args: [_calls], }); @@ -121,14 +145,14 @@ export function getUserOpHash({ userOperation, chainId }: { userOperation: UserO [ userOperation.sender, userOperation.nonce, - keccak256(userOperation.initCode), + keccak256(userOperation.initCode ?? '0x'), keccak256(userOperation.callData), userOperation.callGasLimit, userOperation.verificationGasLimit, userOperation.preVerificationGas, userOperation.maxFeePerGas, userOperation.maxPriorityFeePerGas, - keccak256(userOperation.paymasterAndData), + keccak256(userOperation.paymasterAndData ?? '0x'), ] ); const hashedUserOp = keccak256(encodedUserOp); diff --git a/yarn.lock b/yarn.lock index 82d87e6..a69f987 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7791,10 +7791,10 @@ peek-readable@^4.1.0: resolved "https://registry.yarnpkg.com/peek-readable/-/peek-readable-4.1.0.tgz#4ece1111bf5c2ad8867c314c81356847e8a62e72" integrity sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg== -permissionless@^0.0.34: - version "0.0.34" - resolved "https://registry.yarnpkg.com/permissionless/-/permissionless-0.0.34.tgz#479ee4c02068c6982a308df7a64351eea626a00d" - integrity sha512-lP59+7VmjLO7dPctH69kgcJ8evxGkrjQ9hruOA+7ymWvUMiuXAfVxvXSWCV+lg67N2TGs1JneEuhwK+iI3kPvA== +permissionless@^0.2.17: + version "0.2.17" + resolved "https://registry.yarnpkg.com/permissionless/-/permissionless-0.2.17.tgz#fca70dededbd4a7006de08988003042c184dc6f3" + integrity sha512-M2+8qXNWTo2mmiriBhCFtNUOKd8UDJ1AXNnLflJw9VePIv5PNR1QqkTa76wWb1mzoZyc1hVObmA0pi7puCBj3A== phin@^2.9.1: version "2.9.3" @@ -9045,16 +9045,7 @@ string-length@^5.0.1: char-regex "^2.0.0" strip-ansi "^7.0.1" -"string-width-cjs@npm:string-width@^4.2.0": - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -9114,7 +9105,7 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1": +"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -9128,13 +9119,6 @@ strip-ansi@^5.0.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" -strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - strip-ansi@^7.0.1: version "7.1.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" @@ -10312,7 +10296,7 @@ wonka@^6.3.2: resolved "https://registry.yarnpkg.com/wonka/-/wonka-6.3.4.tgz#76eb9316e3d67d7febf4945202b5bdb2db534594" integrity sha512-CjpbqNtBGNAeyNS/9W6q3kSkKE52+FjIj7AkFlLr11s/VWGUu6a2CdYSdGxocIhIVjaW/zchesBQUKPVU69Cqg== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -10330,15 +10314,6 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" From 23e32ad794a8e195a728f995191309d6bb586293 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Sun, 17 Nov 2024 14:07:13 +0100 Subject: [PATCH 49/95] add settings screens - add settings page - add privacy page - add support page --- app/(settings)/index.tsx | 7 ++ app/(settings)/legal-privacy.tsx | 20 +++++ app/(settings)/support.tsx | 20 +++++ app/_layout.tsx | 26 ++++++ assets/icons/index.ts | 8 ++ assets/icons/legal-icon.tsx | 28 ++++++ assets/icons/settings-icon.tsx | 24 +++++ assets/icons/sign-out-icon.tsx | 32 +++++++ assets/icons/support-icon.tsx | 26 ++++++ components/pool-pair-paper/index.tsx | 4 +- screens/home/index.tsx | 54 +++--------- screens/pool-detail/index.tsx | 18 ++-- screens/settings/index.tsx | 127 +++++++++++++++++++++++++++ store/index.ts | 9 +- store/pools/actions.ts | 9 ++ store/pools/types.ts | 26 +++--- 16 files changed, 369 insertions(+), 69 deletions(-) create mode 100644 app/(settings)/index.tsx create mode 100644 app/(settings)/legal-privacy.tsx create mode 100644 app/(settings)/support.tsx create mode 100644 assets/icons/legal-icon.tsx create mode 100644 assets/icons/settings-icon.tsx create mode 100644 assets/icons/sign-out-icon.tsx create mode 100644 assets/icons/support-icon.tsx create mode 100644 screens/settings/index.tsx diff --git a/app/(settings)/index.tsx b/app/(settings)/index.tsx new file mode 100644 index 0000000..351a0c8 --- /dev/null +++ b/app/(settings)/index.tsx @@ -0,0 +1,7 @@ +import Settings from '@/screens/settings'; + +const Settingscreen = () => { + return ; +}; + +export default Settingscreen; diff --git a/app/(settings)/legal-privacy.tsx b/app/(settings)/legal-privacy.tsx new file mode 100644 index 0000000..20883b8 --- /dev/null +++ b/app/(settings)/legal-privacy.tsx @@ -0,0 +1,20 @@ +import { StyleSheet, Text, View } from 'react-native'; + +const LegalAndPrivacy = () => { + return ( + + Legal and Privacy + + ); +}; + +export default LegalAndPrivacy; + +const styles = StyleSheet.create({ + container: { + flex: 1, + justifyContent: 'center', + alignItems: 'center', + backgroundColor: '#fff', + }, +}); diff --git a/app/(settings)/support.tsx b/app/(settings)/support.tsx new file mode 100644 index 0000000..7a7ee52 --- /dev/null +++ b/app/(settings)/support.tsx @@ -0,0 +1,20 @@ +import { StyleSheet, Text, View } from 'react-native'; + +const Support = () => { + return ( + + Support + + ); +}; + +export default Support; + +const styles = StyleSheet.create({ + container: { + flex: 1, + justifyContent: 'center', + alignItems: 'center', + backgroundColor: '#fff', + }, +}); diff --git a/app/_layout.tsx b/app/_layout.tsx index 85c0757..43a4f56 100644 --- a/app/_layout.tsx +++ b/app/_layout.tsx @@ -55,6 +55,32 @@ function RootStack() { headerShown: true, }} /> + , + headerTitle: 'Settings', + headerShown: true, + }} + /> + + , + headerTitle: 'Legal & Privacy', + headerShown: true, + }} + /> + + , + headerTitle: 'Support', + headerShown: true, + }} + /> {/* Common routes */} diff --git a/assets/icons/index.ts b/assets/icons/index.ts index 7376eca..bb72cbd 100644 --- a/assets/icons/index.ts +++ b/assets/icons/index.ts @@ -44,6 +44,10 @@ import WalletMoneyIcon from './wallet-money-icon'; import DollarCoinSMIcon from './dollar-coin-sm-icon'; import FavoriteChartIcon from './favorite-chart-icon'; import ChartSquareIcon from './chart-square-icon'; +import SettingsIcon from './settings-icon'; +import SignoutIcon from './sign-out-icon'; +import LegalIcon from './legal-icon'; +import SupportIcon from './support-icon'; export { SwatchIcon, @@ -92,4 +96,8 @@ export { DollarCoinSMIcon, FavoriteChartIcon, ChartSquareIcon, + SettingsIcon, + SignoutIcon, + LegalIcon, + SupportIcon, }; diff --git a/assets/icons/legal-icon.tsx b/assets/icons/legal-icon.tsx new file mode 100644 index 0000000..02107ff --- /dev/null +++ b/assets/icons/legal-icon.tsx @@ -0,0 +1,28 @@ +import Svg, { Path } from 'react-native-svg'; + +const LegalIcon = () => { + return ( + + + + + + + ); +}; + +export default LegalIcon; diff --git a/assets/icons/settings-icon.tsx b/assets/icons/settings-icon.tsx new file mode 100644 index 0000000..8fcf116 --- /dev/null +++ b/assets/icons/settings-icon.tsx @@ -0,0 +1,24 @@ +import Svg, { Path } from 'react-native-svg'; + +const SettingsIcon = ({ fill = '#0F172A', height = 24, width = 24 }: IconProps) => ( + + + + +); + +export default SettingsIcon; diff --git a/assets/icons/sign-out-icon.tsx b/assets/icons/sign-out-icon.tsx new file mode 100644 index 0000000..3fb33e3 --- /dev/null +++ b/assets/icons/sign-out-icon.tsx @@ -0,0 +1,32 @@ +import Svg, { Path } from 'react-native-svg'; + +const SignoutIcon = () => ( + + + + + +); + +export default SignoutIcon; diff --git a/assets/icons/support-icon.tsx b/assets/icons/support-icon.tsx new file mode 100644 index 0000000..0fc7d0b --- /dev/null +++ b/assets/icons/support-icon.tsx @@ -0,0 +1,26 @@ +import Svg, { Path } from 'react-native-svg'; + +const SupportIcon = () => { + return ( + + + + + + ); +}; + +export default SupportIcon; diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index 3a0632b..49cef10 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -35,13 +35,13 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol router.push(paths[navigationVariant]); }; - const vol = Number(Number(pool.totalVolumeUSD).toFixed(4)); + const vol = Number(pool.totalVolumeUSD.toFixed(4)); const primaryIconURL = pool.token0.logoUrl; const secondaryIconURL = pool.token1.logoUrl; const symbol = formatSymbol(pool.symbol, showFullSymbol); const apr = formatAmount(pool.apr, 2); - const fees = Number(pool.poolFee) > 1000 ? formatNumberWithSuffix(pool.poolFee) : roundUp(Number(pool.poolFee)); + const fees = pool.poolFee > 1000 ? formatNumberWithSuffix(pool.poolFee) : roundUp(pool.poolFee); const volume = formatNumberWithSuffix(vol); const tvl = pool.tvl; const isStable = pool.isStable; diff --git a/screens/home/index.tsx b/screens/home/index.tsx index 7804b44..6007fa4 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -3,21 +3,18 @@ import { StyleSheet, View, Text, FlatList, ScrollView, TouchableOpacity, Alert, import useSystemFunctions from '@/hooks/useSystemFunctions'; import { adjustFontSizeForIOS, formatAmountWithWholeAndDecimal } from '@/utils/helpers'; -import { LQDButton, LQDPoolPairCard, LQDPoolPairPaper, LQDSearch, SearchUI } from '@/components'; -import { CaretRightIcon, DirectUpIcon, DollarSquareIcon, SearchIcon, TrendUpIcon } from '@/assets/icons'; +import { LQDButton, LQDPoolPairCard, LQDPoolPairPaper, SearchUI } from '@/components'; +import { CaretRightIcon, DirectUpIcon, DollarSquareIcon, SearchIcon, SettingsIcon, TrendUpIcon } from '@/assets/icons'; import { useAccountActions } from '@/store/account/actions'; -import Section from './section'; -import { useAuth } from '@/providers'; -import { useSmartAccountActions } from '@/store/smartAccount/actions'; import useAppActions from '@/store/app/actions'; import { usePoolActions } from '@/store/pools/actions'; import { useOnMount } from '@/hooks/useOnMount'; +import Section from './section'; const Home = () => { const { router, poolsState, smartAccountState, accountState, appState } = useSystemFunctions(); const { getTokens } = useAccountActions(); - const { getPools } = usePoolActions(); - const { logout } = useSmartAccountActions(); + const { getPools, getAllPools } = usePoolActions(); const { searchIsFocused: focusSearch, showSearch } = useAppActions(); const { trendingPools, hotPools, topGainers } = poolsState; @@ -84,38 +81,6 @@ const Home = () => { }, ]; - const handleSignOut = () => { - Alert.alert('Sign out', 'Are you sure you want to sign out?', [ - { text: 'Cancel', style: 'cancel' }, - { - text: 'Sign out', - style: 'destructive', - onPress: logout, - }, - ]); - }; - - const { session } = useAuth(); - - const handleSmartAccountSign = async () => { - if (!session) { - throw new Error('No smart account found'); - } - - try { - const messageToSign = { - message: 'Hello, world!', - timestamp: Date.now(), - }; - - const signature = await session.signMessage({ message: JSON.stringify(messageToSign) }); - - Alert.alert('Signing Successful', 'Signature: ' + signature); - } catch (error: any) { - Alert.alert('Signing Failed', error.message + '\n' + error.cause); - } - }; - useEffect( function fetchBalances() { getTokens(); @@ -126,6 +91,7 @@ const Home = () => { useOnMount(function loadData() { getPools(); + getAllPools(); }); if (appState.showSearch) { @@ -148,6 +114,10 @@ const Home = () => { + + router.navigate('/(settings)')}> + + @@ -172,9 +142,6 @@ const Home = () => { iconColor="#334155" style={{ alignSelf: 'stretch' }} /> - - - {sections.map((section, index) => ( @@ -266,12 +233,15 @@ const styles = StyleSheet.create({ backgroundColor: '#fff', paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, + flexDirection: 'row', + alignItems: 'center', }, inputWrapper: { paddingHorizontal: 16, paddingVertical: 10, backgroundColor: '#fff', + width: '90%', }, inputContainer: { diff --git a/screens/pool-detail/index.tsx b/screens/pool-detail/index.tsx index af2e8fe..4c90966 100644 --- a/screens/pool-detail/index.tsx +++ b/screens/pool-detail/index.tsx @@ -35,18 +35,18 @@ const PoolDetail = ({ poolId }: PoolID) => { tokenBBalance: getTokenBalance(pool?.token1.address), tokenBUSDValue: getTokenUSDValue(pool?.token1.address), condition: pool?.isStable ? 'stable' : 'volatile', - fee: Number(pool?.totalFeesUSD).toFixed(2), - poolFee: roundUp(Number(pool?.poolFee)), + fee: pool?.totalFeesUSD?.toFixed(2) || '0', + poolFee: roundUp(pool?.poolFee || 0), tokenATitle: title ? title[0] : '', tokenBTitle: title ? title[1] : '', symbol: pool?.symbol.split('-')[1].replace('/', ' / ') || '', - volume: Number(pool?.totalVolumeUSD || 0), - tvl: Number(pool?.tvl || 0), - tx: Number(pool?.txCount), - reserveA: Number(pool?.token0.reserve), - reserveB: Number(pool?.token1.reserve), - reserveAUSD: Number(pool?.token0.reserveUSD), - reserveBUSD: Number(pool?.token1.reserveUSD), + volume: pool?.totalVolumeUSD || 0, + tvl: pool?.tvl || 0, + tx: pool?.txCount || 0, + reserveA: pool?.token0.reserve || 0, + reserveB: pool?.token1.reserve || 0, + reserveAUSD: pool?.token0.reserveUSD || 0, + reserveBUSD: pool?.token1.reserveUSD || 0, poolAddress: pool?.address!, }; diff --git a/screens/settings/index.tsx b/screens/settings/index.tsx new file mode 100644 index 0000000..6158c12 --- /dev/null +++ b/screens/settings/index.tsx @@ -0,0 +1,127 @@ +import { CaretRightIcon, LegalIcon, SignoutIcon, SupportIcon } from '@/assets/icons'; +import { isDev } from '@/constants/env'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { useAuth } from '@/providers'; +import { useSmartAccountActions } from '@/store/smartAccount/actions'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { useEffect, useState } from 'react'; +import { Alert, StyleSheet, Text, TouchableOpacity, View } from 'react-native'; + +const Settings = () => { + const { router } = useSystemFunctions(); + const { logout } = useSmartAccountActions(); + const { session } = useAuth(); + + const handleSignOut = () => { + Alert.alert('Sign out', 'Are you sure you want to sign out?', [ + { text: 'Cancel', style: 'cancel' }, + { + text: 'Sign out', + style: 'destructive', + onPress: logout, + }, + ]); + }; + + const handleSmartAccountSign = async () => { + if (!session) { + throw new Error('No smart account found'); + } + + try { + const messageToSign = { + message: 'Hello, world!', + timestamp: Date.now(), + }; + + const signature = await session.signMessage({ message: JSON.stringify(messageToSign) }); + + Alert.alert('Signing Successful', 'Signature: ' + signature); + } catch (error: any) { + Alert.alert('Signing Failed', error.message + '\n' + error.cause); + } + }; + + const [actions, setActions] = useState([ + { + title: 'Legal & Privacy', + icon: , + onClick: () => router.push('/(settings)/legal-privacy'), + isNavigable: true, + }, + { + title: 'Support', + icon: , + onClick: () => router.push('/(settings)/support'), + isNavigable: true, + }, + { + title: 'Sign Out', + icon: , + onClick: handleSignOut, + isNavigable: false, + }, + ]); + + useEffect(function addSignDebugOptionOnDev() { + if (isDev) { + setActions([ + ...actions, + { + title: 'Sign Message', + icon: , + onClick: handleSmartAccountSign, + isNavigable: false, + }, + ]); + } + }, []); + + return ( + + + {actions.map((action, index) => ( + + + {action.icon} + {action.title} + + + {action.isNavigable && } + + ))} + + + ); +}; + +export default Settings; + +const styles = StyleSheet.create({ + container: { + flex: 1, + justifyContent: 'space-between', + backgroundColor: '#fff', + padding: 20, + }, + listWrapper: { + marginTop: 60, + gap: 42, + }, + listInnerWrapper: { + flexDirection: 'row', + alignItems: 'center', + justifyContent: 'space-between', + }, + titleWrapper: { + flexDirection: 'row', + alignItems: 'center', + gap: 10, + }, + title: { + fontSize: adjustFontSizeForIOS(14, 2), + color: '#1E293B', + fontWeight: '500', + fontFamily: 'AeonikMedium', + }, +}); diff --git a/store/index.ts b/store/index.ts index 6aa78a7..f561b20 100644 --- a/store/index.ts +++ b/store/index.ts @@ -34,10 +34,11 @@ export const store = configureStore({ reducer: persistedReducer, middleware: (getDefaultMiddleware) => getDefaultMiddleware({ - serializableCheck: { - // Ignore redux-persist actions - ignoredActions: [FLUSH, REHYDRATE, PAUSE, PERSIST, PURGE, REGISTER], - }, + serializableCheck: false, + // serializableCheck: { + // // Ignore redux-persist actions + // ignoredActions: [FLUSH, REHYDRATE, PAUSE, PERSIST, PURGE, REGISTER], + // }, }), }); diff --git a/store/pools/actions.ts b/store/pools/actions.ts index 45e394b..aa4265f 100644 --- a/store/pools/actions.ts +++ b/store/pools/actions.ts @@ -31,7 +31,15 @@ export function usePoolActions() { const trendingPools = await api.getPools(PoolType.trending); dispatch(setTrendingPools(trendingPools)); + } catch (error: any) { + // + } finally { + dispatch(setLoadingPools(false)); + } + }; + const getAllPools = async () => { + try { const allPools = await api.getPools(PoolType.v2); dispatch(setpools(allPools)); } catch (error: any) { @@ -179,5 +187,6 @@ export function usePoolActions() { getPaginatedTopGainers, searchPools, getPaginatedSearchPools, + getAllPools, }; } diff --git a/store/pools/types.ts b/store/pools/types.ts index e0f230b..0a56e35 100644 --- a/store/pools/types.ts +++ b/store/pools/types.ts @@ -22,28 +22,30 @@ export type Pool = { address: Address; decimals: number; symbol: string; - apr: string; - tvl: string; - totalVolumeUSD: string; - totalFeesUSD: string; - poolFee: string; - txCount: number | string; + apr: number; + tvl: number; + totalVolumeUSD: number; + totalFeesUSD: number; + poolFee: number; + txCount: number; isStable: boolean; factory: Address; + quoteTokenPriceBaseToken: number; + baseTokenPriceQuoteToken: number; token0: { address: Address; logoUrl: string; - price: string; - reserve: string; - reserveUSD: string; + price: number; + reserve: number; + reserveUSD: number; volume: string; }; token1: { address: Address; logoUrl: string; - price: string; - reserve: string; - reserveUSD: string; + price: number; + reserve: number; + reserveUSD: number; volume: string; }; }; From c477409a6b012d219abc305f782b2978db62f068 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Sun, 17 Nov 2024 14:13:17 +0100 Subject: [PATCH 50/95] update env --- .env.example | 5 +++-- constants/env.ts | 4 ++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index e992363..dfcd5eb 100644 --- a/.env.example +++ b/.env.example @@ -1,6 +1,7 @@ EXPO_PUBLIC_BASE_RPC_URL=https://mainnet.base.org EXPO_PUBLIC_BUNDLER_RPC_URL=https://public.pimlico.io/v2/1/rpc -EXPO_PUBLIC_API_URL=https://api.useliquid.xyz +EXPO_PUBLIC_API_URL=https://development.useliquid.xyz EXPO_PUBLIC_API_KEY= EXPO_PUBLIC_PRIVY_APP_ID= -EXPO_PUBLIC_PRIVY_CLIENT_ID= \ No newline at end of file +EXPO_PUBLIC_PRIVY_CLIENT_ID= +EXPO_PUBLIC_PIMILCO_API_KEY= \ No newline at end of file diff --git a/constants/env.ts b/constants/env.ts index 85dcf64..394164f 100644 --- a/constants/env.ts +++ b/constants/env.ts @@ -24,3 +24,7 @@ export const apiKey = process.env.EXPO_PUBLIC_API_KEY as string; if (!apiUrl || !apiKey) { throw new Error('EXPO_PUBLIC_API_URL and EXPO_PUBLIC_API_KEY are required'); } + +if (!pimilcoApiKey) { + throw new Error('EXPO_PUBLIC_PIMILCO_API_KEY is required'); +} From 1aa86f2501dbf545e7a72ec3d0a711e54d7092d0 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Sun, 17 Nov 2024 14:38:40 +0100 Subject: [PATCH 51/95] add socials --- assets/icons/discord-icon.tsx | 16 +++++++++++++++ assets/icons/index.ts | 4 ++++ assets/icons/x-ixon.tsx | 15 ++++++++++++++ screens/settings/index.tsx | 37 +++++++++++++++++++++++++++++++---- 4 files changed, 68 insertions(+), 4 deletions(-) create mode 100644 assets/icons/discord-icon.tsx create mode 100644 assets/icons/x-ixon.tsx diff --git a/assets/icons/discord-icon.tsx b/assets/icons/discord-icon.tsx new file mode 100644 index 0000000..6356dc0 --- /dev/null +++ b/assets/icons/discord-icon.tsx @@ -0,0 +1,16 @@ +import Svg, { Path } from 'react-native-svg'; + +const DiscordIcon = () => ( + + + + +); +export default DiscordIcon; diff --git a/assets/icons/index.ts b/assets/icons/index.ts index bb72cbd..5bcd791 100644 --- a/assets/icons/index.ts +++ b/assets/icons/index.ts @@ -48,6 +48,8 @@ import SettingsIcon from './settings-icon'; import SignoutIcon from './sign-out-icon'; import LegalIcon from './legal-icon'; import SupportIcon from './support-icon'; +import XIcon from './x-ixon'; +import DiscordIcon from './discord-icon'; export { SwatchIcon, @@ -100,4 +102,6 @@ export { SignoutIcon, LegalIcon, SupportIcon, + XIcon, + DiscordIcon, }; diff --git a/assets/icons/x-ixon.tsx b/assets/icons/x-ixon.tsx new file mode 100644 index 0000000..299bdd3 --- /dev/null +++ b/assets/icons/x-ixon.tsx @@ -0,0 +1,15 @@ +import Svg, { Path } from 'react-native-svg'; + +const XIcon = () => ( + + + + +); +export default XIcon; diff --git a/screens/settings/index.tsx b/screens/settings/index.tsx index 6158c12..e75b9b4 100644 --- a/screens/settings/index.tsx +++ b/screens/settings/index.tsx @@ -1,11 +1,12 @@ -import { CaretRightIcon, LegalIcon, SignoutIcon, SupportIcon } from '@/assets/icons'; +import { useEffect, useState } from 'react'; +import { Alert, StyleSheet, Text, TouchableOpacity, View, Linking } from 'react-native'; + +import { CaretRightIcon, DiscordIcon, LegalIcon, SignoutIcon, SupportIcon, XIcon } from '@/assets/icons'; import { isDev } from '@/constants/env'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { useAuth } from '@/providers'; import { useSmartAccountActions } from '@/store/smartAccount/actions'; import { adjustFontSizeForIOS } from '@/utils/helpers'; -import { useEffect, useState } from 'react'; -import { Alert, StyleSheet, Text, TouchableOpacity, View } from 'react-native'; const Settings = () => { const { router } = useSystemFunctions(); @@ -63,8 +64,18 @@ const Settings = () => { }, ]); + const handleURLPress = async (url: string) => { + const supported = await Linking.canOpenURL(url); + + if (supported) { + await Linking.openURL(url); + } else { + Alert.alert('Error', 'Unable to open the Twitter page.'); + } + }; + useEffect(function addSignDebugOptionOnDev() { - if (isDev) { + if (isDev && actions.length < 4) { setActions([ ...actions, { @@ -91,6 +102,16 @@ const Settings = () => { ))} + + + handleURLPress('https://x.com/getliquidapp')}> + + + + handleURLPress('https://discord.gg/getliquid')}> + + + ); }; @@ -124,4 +145,12 @@ const styles = StyleSheet.create({ fontWeight: '500', fontFamily: 'AeonikMedium', }, + + socialsWrapper: { + flexDirection: 'row', + gap: 16, + alignItems: 'center', + justifyContent: 'center', + paddingBottom: 50, + }, }); From fe4b4db70e262233e8fadd92b726d4042570332d Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Sun, 17 Nov 2024 14:40:33 +0100 Subject: [PATCH 52/95] chore: update onboarding text --- app/(onboarding)/step1.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/(onboarding)/step1.tsx b/app/(onboarding)/step1.tsx index a67d764..6eddfb8 100644 --- a/app/(onboarding)/step1.tsx +++ b/app/(onboarding)/step1.tsx @@ -13,7 +13,7 @@ const Step1 = () => { firstArc={arc} secondArc={arc1} title="DeFi made easy" - subtitle="Deposit Liquidity on Aerodrome pools in 3 seconds" + subtitle="Earn more with your money, securely" containerStyle={{ backgroundColor: '#4691FE' }} imageStyle={{ left: 6 }} firstArcStyle={styles.firstArc} From dffe67e79c6a0f1f8e312ef24e88570a7efef2a7 Mon Sep 17 00:00:00 2001 From: Justice Eziefule Date: Tue, 19 Nov 2024 12:08:00 +0100 Subject: [PATCH 53/95] ui changes (#67) * ui changes - update status bar style - add search ui to holdings page * update status bar --- app/(liquidity-actions)/_layout.tsx | 2 +- app/(onboarding)/_layout.tsx | 2 +- app/(tabs)/_layout.tsx | 2 +- app/liquidity-management.tsx | 2 +- components/enter-email/index.tsx | 2 +- components/search-ui/search-placeholder.tsx | 78 ++++++++++++++++++++ components/verify-email/index.tsx | 2 +- screens/holdings/index.tsx | 81 +++++++++++++-------- screens/home/index.tsx | 65 +---------------- screens/setup/index.tsx | 2 +- 10 files changed, 138 insertions(+), 100 deletions(-) create mode 100644 components/search-ui/search-placeholder.tsx diff --git a/app/(liquidity-actions)/_layout.tsx b/app/(liquidity-actions)/_layout.tsx index 3d41e88..f224251 100644 --- a/app/(liquidity-actions)/_layout.tsx +++ b/app/(liquidity-actions)/_layout.tsx @@ -4,7 +4,7 @@ import { StatusBar } from 'expo-status-bar'; const LiquidityActionsStack = () => { return ( <> - + diff --git a/app/(onboarding)/_layout.tsx b/app/(onboarding)/_layout.tsx index 240acfe..760fd9c 100644 --- a/app/(onboarding)/_layout.tsx +++ b/app/(onboarding)/_layout.tsx @@ -86,7 +86,7 @@ export default function OnboardingTabLayout() { return ( <> - + - + { return ( <> - + diff --git a/components/enter-email/index.tsx b/components/enter-email/index.tsx index e67c25c..45d7120 100644 --- a/components/enter-email/index.tsx +++ b/components/enter-email/index.tsx @@ -80,7 +80,7 @@ const EnterEmail = ({ isSignup }: Props) => { return ( - + diff --git a/components/search-ui/search-placeholder.tsx b/components/search-ui/search-placeholder.tsx new file mode 100644 index 0000000..e0dae29 --- /dev/null +++ b/components/search-ui/search-placeholder.tsx @@ -0,0 +1,78 @@ +import { SearchIcon, SettingsIcon } from '@/assets/icons'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import useAppActions from '@/store/app/actions'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { Platform, StyleSheet, Text, TouchableOpacity, View, StatusBar as RNStatusBar } from 'react-native'; + +const SearchPlaceholder = () => { + const { router } = useSystemFunctions(); + const { searchIsFocused: focusSearch, showSearch } = useAppActions(); + + const focusInput = () => { + focusSearch(true); + showSearch(true); + }; + + return ( + + + + + + + Search... + + + + + router.navigate('/(settings)')}> + + + + ); +}; + +export default SearchPlaceholder; + +const styles = StyleSheet.create({ + searchInnerWrapper: { + paddingHorizontal: 16, + backgroundColor: '#fff', + paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, + paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, + flexDirection: 'row', + alignItems: 'center', + }, + + inputWrapper: { + paddingHorizontal: 16, + paddingVertical: 10, + backgroundColor: '#fff', + width: '90%', + }, + + inputContainer: { + paddingHorizontal: 16, + paddingVertical: 10, + flexDirection: 'row', + alignItems: 'center', + gap: 8, + borderRadius: 13, + borderColor: '#EAEEF4', + borderWidth: 1, + shadowColor: 'rgba(15, 23, 42, 0.04)', + shadowOffset: { width: 0, height: 1 }, + shadowOpacity: 0.3, + shadowRadius: 3, + elevation: 1, + backgroundColor: '#fff', + width: '100%', + }, + + inputPlaceholderText: { + fontSize: adjustFontSizeForIOS(14, 2), + lineHeight: 18.48, + color: '#94A3B8', + fontFamily: 'AeonikRegular', + }, +}); diff --git a/components/verify-email/index.tsx b/components/verify-email/index.tsx index c95a141..bde57c2 100644 --- a/components/verify-email/index.tsx +++ b/components/verify-email/index.tsx @@ -83,7 +83,7 @@ const VerifyEmail = ({ email, isSignup }: { email: string; isSignup?: boolean }) return ( - + diff --git a/screens/holdings/index.tsx b/screens/holdings/index.tsx index 98f6ccf..1510df7 100644 --- a/screens/holdings/index.tsx +++ b/screens/holdings/index.tsx @@ -1,15 +1,16 @@ -import { View, Text, StyleSheet, ScrollView } from 'react-native'; +import { View, Text, StyleSheet, ScrollView, Platform, StatusBar as RNStatusBar } from 'react-native'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { LQDButton } from '@/components'; +import { LQDButton, SearchUI } from '@/components'; import { ILQDButton } from '@/components/button/types'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import Card from './card'; import Empty from './empty'; import { emptyData } from './dummy'; +import SearchPlaceholder from '@/components/search-ui/search-placeholder'; const Holdings = () => { - const { router, accountState } = useSystemFunctions(); + const { router, accountState, appState } = useSystemFunctions(); const { tokens, tokenBalance, positions, lpBalance } = accountState; const actions: Array = [ @@ -73,37 +74,49 @@ const Holdings = () => { const emptyItems = items.filter((item) => item.isEmpty && item.empty).map((item) => item.empty); - return ( - - - - Total Holdings - ${(tokenBalance + lpBalance).toLocaleString()} - - - - {visibleActions.map((action, index) => ( - - ))} - + if (appState.showSearch) { + return ( + + + ); + } - {Boolean(items.length) && ( - - {nonEmptyItems.map((item, index) => ( - - ))} + return ( + <> + + + + + + Total Holdings + ${(tokenBalance + lpBalance).toLocaleString()} + + + + {visibleActions.map((action, index) => ( + + ))} + - )} - {Boolean(emptyItems.length) && ( - - {emptyItems.map((item, index) => ( - - ))} - - )} - + {Boolean(items.length) && ( + + {nonEmptyItems.map((item, index) => ( + + ))} + + )} + + {Boolean(emptyItems.length) && ( + + {emptyItems.map((item, index) => ( + + ))} + + )} + + ); }; @@ -163,4 +176,12 @@ const styles = StyleSheet.create({ action: { flex: 1, }, + + searchWrapper: { + flex: 1, + paddingHorizontal: 16, + backgroundColor: '#fff', + paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, + paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, + }, }); diff --git a/screens/home/index.tsx b/screens/home/index.tsx index 6007fa4..a587083 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -6,16 +6,15 @@ import { adjustFontSizeForIOS, formatAmountWithWholeAndDecimal } from '@/utils/h import { LQDButton, LQDPoolPairCard, LQDPoolPairPaper, SearchUI } from '@/components'; import { CaretRightIcon, DirectUpIcon, DollarSquareIcon, SearchIcon, SettingsIcon, TrendUpIcon } from '@/assets/icons'; import { useAccountActions } from '@/store/account/actions'; -import useAppActions from '@/store/app/actions'; import { usePoolActions } from '@/store/pools/actions'; import { useOnMount } from '@/hooks/useOnMount'; import Section from './section'; +import SearchPlaceholder from '@/components/search-ui/search-placeholder'; const Home = () => { const { router, poolsState, smartAccountState, accountState, appState } = useSystemFunctions(); const { getTokens } = useAccountActions(); const { getPools, getAllPools } = usePoolActions(); - const { searchIsFocused: focusSearch, showSearch } = useAppActions(); const { trendingPools, hotPools, topGainers } = poolsState; @@ -29,11 +28,6 @@ const Home = () => { const top10HotPools = hotPoolsArray.slice(0, 10) ?? []; const top7Gainers = top7GainersArray.slice(0, 7); - const focusInput = () => { - focusSearch(true); - showSearch(true); - }; - const sections = [ { title: 'Top gainers', @@ -104,21 +98,7 @@ const Home = () => { return ( <> - - - - - - - Search... - - - - - router.navigate('/(settings)')}> - - - + @@ -227,45 +207,4 @@ const styles = StyleSheet.create({ paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, }, - - searchInnerWrapper: { - paddingHorizontal: 16, - backgroundColor: '#fff', - paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, - paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, - flexDirection: 'row', - alignItems: 'center', - }, - - inputWrapper: { - paddingHorizontal: 16, - paddingVertical: 10, - backgroundColor: '#fff', - width: '90%', - }, - - inputContainer: { - paddingHorizontal: 16, - paddingVertical: 10, - flexDirection: 'row', - alignItems: 'center', - gap: 8, - borderRadius: 13, - borderColor: '#EAEEF4', - borderWidth: 1, - shadowColor: 'rgba(15, 23, 42, 0.04)', - shadowOffset: { width: 0, height: 1 }, - shadowOpacity: 0.3, - shadowRadius: 3, - elevation: 1, - backgroundColor: '#fff', - width: '100%', - }, - - inputPlaceholderText: { - fontSize: adjustFontSizeForIOS(14, 2), - lineHeight: 18.48, - color: '#94A3B8', - fontFamily: 'AeonikRegular', - }, }); diff --git a/screens/setup/index.tsx b/screens/setup/index.tsx index 51cae84..7bcdb67 100644 --- a/screens/setup/index.tsx +++ b/screens/setup/index.tsx @@ -94,7 +94,7 @@ const Setup = () => { return ( - + From ca2df519ee2164740cbb533f8acb111462aae372 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Wed, 20 Nov 2024 11:42:07 +0100 Subject: [PATCH 54/95] remove unnecessary balance --- screens/deposit/debit/index.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/screens/deposit/debit/index.tsx b/screens/deposit/debit/index.tsx index 7d54c1f..50dcacd 100644 --- a/screens/deposit/debit/index.tsx +++ b/screens/deposit/debit/index.tsx @@ -27,7 +27,6 @@ const getMaxWidth = (amount: string) => { const DebitDeposit = () => { const [amount, setAmount] = useState(''); - const [balance, setBalance] = useState(999); const [showCursor, setShowCursor] = useState(true); const [showBottomSheet, setShowBottomSheet] = useState(false); @@ -67,8 +66,6 @@ const DebitDeposit = () => { - Bal: ${balance.toLocaleString()} - {amount && ( Date: Wed, 20 Nov 2024 11:47:21 +0100 Subject: [PATCH 55/95] update button action --- screens/holdings/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/screens/holdings/index.tsx b/screens/holdings/index.tsx index 1510df7..5a09b34 100644 --- a/screens/holdings/index.tsx +++ b/screens/holdings/index.tsx @@ -46,7 +46,7 @@ const Holdings = () => { ...emptyData.primary, action: { title: 'Add money', - onPress: () => console.log('Deposit'), + onPress: () => router.navigate('/deposit/debit'), }, }, isEmpty: tokensUserHas?.length === 0, @@ -63,7 +63,7 @@ const Holdings = () => { ...emptyData.secondary, action: { title: 'Explore pools', - onPress: () => console.log('explore'), + onPress: () => router.navigate('/(tabs)/home'), }, }, isEmpty: positions?.length === 0, From f5c6bae80090852f793b225de9e0fe6c2770ee94 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Wed, 20 Nov 2024 14:56:30 +0100 Subject: [PATCH 56/95] create image component - check if image url can be loaded, if not, show default image --- components/asset-selection/index.tsx | 23 ++--------- components/index.ts | 4 ++ components/pool-images/index.tsx | 55 ++++++++++++++++++++++++++ components/pool-images/token-image.tsx | 36 +++++++++++++++++ components/pool-images/types.ts | 8 ++++ components/pool-pair-card/index.tsx | 38 +++--------------- components/pool-pair-paper/index.tsx | 38 +++--------------- screens/holdings/assets/index.tsx | 4 +- screens/holdings/assets/paper.tsx | 17 ++------ 9 files changed, 121 insertions(+), 102 deletions(-) create mode 100644 components/pool-images/index.tsx create mode 100644 components/pool-images/token-image.tsx create mode 100644 components/pool-images/types.ts diff --git a/components/asset-selection/index.tsx b/components/asset-selection/index.tsx index b2b2e1e..8c34636 100644 --- a/components/asset-selection/index.tsx +++ b/components/asset-selection/index.tsx @@ -1,5 +1,5 @@ import { useMemo } from 'react'; -import { View, Text, StyleSheet, TouchableOpacity, Image, ScrollView } from 'react-native'; +import { View, Text, StyleSheet, TouchableOpacity, ScrollView } from 'react-native'; import { useForm } from 'react-hook-form'; import { CheckIcon } from '@/assets/icons'; @@ -9,6 +9,7 @@ import LQDInput from '../input'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { AssetSelection } from './types'; import { TokenItem } from '@/store/account/types'; +import LQDTokenImage from '../pool-images/token-image'; const LQDAssetSelection = ({ close, setAsset, show, title, selectedAsset }: AssetSelection) => { const { accountState } = useSystemFunctions(); @@ -54,9 +55,7 @@ const LQDAssetSelection = ({ close, setAsset, show, title, selectedAsset }: Asse return ( action(active, _asset)} disabled={active}> - - - + {_asset?.symbol} @@ -108,22 +107,6 @@ const styles = StyleSheet.create({ gap: 10, }, - iconContainer: { - width: 24, - height: 24, - borderWidth: 1, - borderColor: '#EAEEF4', - alignItems: 'center', - justifyContent: 'center', - borderRadius: 9999, - }, - - icon: { - width: 24, - height: 24, - objectFit: 'contain', - }, - textContainer: { justifyContent: 'center', gap: 4, diff --git a/components/index.ts b/components/index.ts index 6a6b41b..e94fc3e 100644 --- a/components/index.ts +++ b/components/index.ts @@ -14,6 +14,8 @@ import EnterEmail from './enter-email'; import VerifyEmail from './verify-email'; import LQDKeyboardWrapper from './keyboard-wrapper'; import SearchUI from './search-ui'; +import LQDPoolImages from './pool-images'; +import LQDTokenImage from './pool-images/token-image'; export { LQDButton, @@ -31,4 +33,6 @@ export { VerifyEmail, LQDKeyboardWrapper, SearchUI, + LQDPoolImages, + LQDTokenImage, }; diff --git a/components/pool-images/index.tsx b/components/pool-images/index.tsx new file mode 100644 index 0000000..d698bc6 --- /dev/null +++ b/components/pool-images/index.tsx @@ -0,0 +1,55 @@ +import { Image, StyleSheet, View } from 'react-native'; +import { useState } from 'react'; + +const defaultAIconUrl = 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png'; +const defaultBIconUrl = 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png'; + +const LQDPoolImages = ({ tokenAIconURL, tokenBIconURL }: PoolImages) => { + const [tokenAIconError, setTokenAIconError] = useState(false); + const [tokenBIconError, setTokenBIconError] = useState(false); + + const iconA = tokenAIconError ? defaultAIconUrl : tokenAIconURL || defaultAIconUrl; + + const iconB = tokenBIconError ? defaultBIconUrl : tokenBIconURL || defaultBIconUrl; + + return ( + + {[iconA, iconB].map((iconURL, index) => ( + + (index === 0 ? setTokenAIconError(true) : setTokenBIconError(true))} + /> + + ))} + + ); +}; + +export default LQDPoolImages; + +const styles = StyleSheet.create({ + iconContainer: { + flexDirection: 'row', + alignItems: 'center', + justifyContent: 'center', + }, + + icon: { + width: 24, + height: 24, + alignItems: 'center', + justifyContent: 'center', + borderRadius: 9999, + borderWidth: 1, + borderColor: '#EAEEF4', + marginRight: -6, + }, + + image: { + width: 24, + height: 24, + borderRadius: 24, + }, +}); diff --git a/components/pool-images/token-image.tsx b/components/pool-images/token-image.tsx new file mode 100644 index 0000000..19e45bb --- /dev/null +++ b/components/pool-images/token-image.tsx @@ -0,0 +1,36 @@ +import { Image, StyleSheet, View } from 'react-native'; +import { useState } from 'react'; + +const defaultIconUrl = 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png'; + +const LQDTokenImage = ({ iconURL }: TokenImage) => { + const [iconError, setIconError] = useState(false); + + const icon = iconError ? defaultIconUrl : iconURL || defaultIconUrl; + + return ( + + setIconError(true)} /> + + ); +}; + +export default LQDTokenImage; + +const styles = StyleSheet.create({ + iconContainer: { + width: 24, + height: 24, + borderWidth: 1, + borderColor: '#EAEEF4', + alignItems: 'center', + justifyContent: 'center', + borderRadius: 9999, + }, + + icon: { + width: 24, + height: 24, + objectFit: 'contain', + }, +}); diff --git a/components/pool-images/types.ts b/components/pool-images/types.ts new file mode 100644 index 0000000..211529e --- /dev/null +++ b/components/pool-images/types.ts @@ -0,0 +1,8 @@ +type PoolImages = { + tokenAIconURL: string; + tokenBIconURL: string; +}; + +type TokenImage = { + iconURL: string; +}; diff --git a/components/pool-pair-card/index.tsx b/components/pool-pair-card/index.tsx index 5bbfe9b..1b2e295 100644 --- a/components/pool-pair-card/index.tsx +++ b/components/pool-pair-card/index.tsx @@ -1,4 +1,4 @@ -import { Image, View, Text, StyleSheet, TouchableOpacity } from 'react-native'; +import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; import { Href } from 'expo-router'; import useSystemFunctions from '@/hooks/useSystemFunctions'; @@ -6,6 +6,7 @@ import { adjustFontSizeForIOS } from '@/utils/helpers'; import { ArrowDownIcon, ArrowUpAltIcon } from '@/assets/icons'; import { setSelectedPool } from '@/store/pools'; import { PoolPairCard } from './types'; +import LQDPoolImages from '../pool-images'; const backgroundColors = ['#FDEAEA', '#EFFAF6']; const textColors = ['#A4262C', '#156146']; @@ -23,8 +24,8 @@ const LQDPoolPairCard = ({ pool, navigationVariant = 'primary' }: PoolPairCard) router.push(paths[navigationVariant]); }; - const primaryIconURL = pool.token0.logoUrl; - const secondaryIconURL = pool.token1.logoUrl; + const tokenAIconURL = pool.token0.logoUrl; + const tokenBIconURL = pool.token1.logoUrl; const symbol = pool.symbol.split('-')[1].replace('/', ' / '); const increased = true; const change = pool.apr; @@ -32,13 +33,7 @@ const LQDPoolPairCard = ({ pool, navigationVariant = 'primary' }: PoolPairCard) return ( - - {[primaryIconURL, secondaryIconURL].map((iconURL, index) => ( - - - - ))} - + {increased ? ( @@ -73,23 +68,6 @@ const styles = StyleSheet.create({ gap: 18 + 6, }, - iconContainer: { - flexDirection: 'row', - alignItems: 'center', - justifyContent: 'center', - }, - - icon: { - width: 24, - height: 24, - alignItems: 'center', - justifyContent: 'center', - borderRadius: 12, - borderWidth: 1, - borderColor: '#EAEEF4', - marginRight: -6, - }, - title: { color: '#1E293B', fontSize: adjustFontSizeForIOS(13, 2), @@ -113,10 +91,4 @@ const styles = StyleSheet.create({ fontWeight: '500', fontFamily: 'AeonikMedium', }, - - image: { - width: 24, - height: 24, - borderRadius: 24, - }, }); diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index 3a0632b..40da6b1 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -1,10 +1,11 @@ -import { StyleSheet, View, Text, Image, TouchableOpacity } from 'react-native'; +import { StyleSheet, View, Text, TouchableOpacity } from 'react-native'; import { Href } from 'expo-router'; import { adjustFontSizeForIOS, formatAmount, formatNumberWithSuffix, roundUp } from '@/utils/helpers'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { setSelectedPool } from '@/store/pools'; import { PoolPairPaper } from './types'; +import LQDPoolImages from '../pool-images'; const formatSymbol = (symbol: string, showFullSymbol?: boolean) => { if (!showFullSymbol) { @@ -37,8 +38,8 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol const vol = Number(Number(pool.totalVolumeUSD).toFixed(4)); - const primaryIconURL = pool.token0.logoUrl; - const secondaryIconURL = pool.token1.logoUrl; + const tokenAIconURL = pool.token0.logoUrl; + const tokenBIconURL = pool.token1.logoUrl; const symbol = formatSymbol(pool.symbol, showFullSymbol); const apr = formatAmount(pool.apr, 2); const fees = Number(pool.poolFee) > 1000 ? formatNumberWithSuffix(pool.poolFee) : roundUp(Number(pool.poolFee)); @@ -49,13 +50,7 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol return ( - - {[primaryIconURL, secondaryIconURL].map((iconURL, index) => ( - - - - ))} - + {symbol} @@ -99,23 +94,6 @@ const styles = StyleSheet.create({ maxWidth: '70%', }, - iconContainer: { - flexDirection: 'row', - alignItems: 'center', - justifyContent: 'center', - }, - - icon: { - width: 24, - height: 24, - alignItems: 'center', - justifyContent: 'center', - borderRadius: 9999, - borderWidth: 1, - borderColor: '#EAEEF4', - marginRight: -6, - }, - detailContainer: { justifyContent: 'center', gap: 4, @@ -195,10 +173,4 @@ const styles = StyleSheet.create({ textTransform: 'uppercase', fontFamily: 'AeonikRegular', }, - - image: { - width: 24, - height: 24, - borderRadius: 24, - }, }); diff --git a/screens/holdings/assets/index.tsx b/screens/holdings/assets/index.tsx index d4b1a91..a5afa45 100644 --- a/screens/holdings/assets/index.tsx +++ b/screens/holdings/assets/index.tsx @@ -9,7 +9,7 @@ import { useAccountActions } from '@/store/account/actions'; const Assets = () => { const { router, accountState } = useSystemFunctions(); - const { getPositions } = useAccountActions(); + const { getTokens } = useAccountActions(); const { tokens, tokenBalance, refreshing } = accountState; const actions: Array = [ @@ -62,7 +62,7 @@ const Assets = () => { keyExtractor={(_, index) => index.toString()} contentContainerStyle={{ gap: 24 }} refreshing={refreshing} - onRefresh={() => getPositions(true)} + onRefresh={getTokens} bounces={true} showsVerticalScrollIndicator={false} /> diff --git a/screens/holdings/assets/paper.tsx b/screens/holdings/assets/paper.tsx index d6bde77..3e0928d 100644 --- a/screens/holdings/assets/paper.tsx +++ b/screens/holdings/assets/paper.tsx @@ -1,14 +1,13 @@ -import { View, Text, StyleSheet, Image } from 'react-native'; +import { View, Text, StyleSheet } from 'react-native'; import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { LQDTokenImage } from '@/components'; const AssetPaper = ({ iconUrl, name, usdValue, value }: IAssetPaper) => { return ( - - - + {name} @@ -41,16 +40,6 @@ const styles = StyleSheet.create({ gap: 10, }, - iconWrapper: { - width: 24, - height: 24, - alignItems: 'center', - justifyContent: 'center', - borderRadius: 9999, - borderWidth: 1, - borderColor: '#EAEEF4', - }, - nameAndValueContainer: { justifyContent: 'center', gap: 4, From 85c2c80141e22fc71770c4aabdddc3a16c9a7302 Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Thu, 21 Nov 2024 11:52:18 +0100 Subject: [PATCH 57/95] fix: tap to go to next and prev / fix progress pause on press next or prev (#72) * fix: tap to go to next and prev / fit progress pause on press next or prev * chores: removed unused imports --- app/(onboarding)/_layout.tsx | 44 ++++++++++++++++++++++- components/onboarding/indicator/index.tsx | 36 ++++++++++--------- 2 files changed, 63 insertions(+), 17 deletions(-) diff --git a/app/(onboarding)/_layout.tsx b/app/(onboarding)/_layout.tsx index 760fd9c..617c829 100644 --- a/app/(onboarding)/_layout.tsx +++ b/app/(onboarding)/_layout.tsx @@ -1,5 +1,5 @@ import { useState, useEffect, useRef } from 'react'; -import { StyleSheet, Dimensions, Platform, View, StatusBar as RNStatusBar } from 'react-native'; +import { StyleSheet, Dimensions, Platform, View, StatusBar as RNStatusBar, Pressable } from 'react-native'; import { createMaterialTopTabNavigator } from '@react-navigation/material-top-tabs'; import { StatusBar } from 'expo-status-bar'; @@ -56,6 +56,17 @@ export default function OnboardingTabLayout() { } }; + const navigateToPreviousScreen = () => { + switch (pathname) { + case '/step2': + router.push('/(onboarding)/step1'); + break; + case '/step3': + router.push('/(onboarding)/step2'); + break; + } + }; + useEffect(() => { if (!isPaused) { intervalRef.current = setInterval(() => { @@ -130,6 +141,23 @@ export default function OnboardingTabLayout() { /> + { + if (currentStep > 0) { + navigateToPreviousScreen(); + } + }} + style={styles.prev} + /> + { + if (currentStep < 2) { + navigateToNextScreen(); + } + }} + style={styles.next} + /> + router.replace('/(signup)')} title="Let's go!" /> @@ -155,4 +183,18 @@ const styles = StyleSheet.create({ paddingBottom: Platform.OS === 'ios' ? 33 : 16, width: Dimensions.get('window').width, }, + prev: { + flex: 1, + position: 'absolute', + height: Dimensions.get('window').height, + left: 0, + width: 65, + }, + next: { + flex: 1, + position: 'absolute', + height: Dimensions.get('window').height, + right: 0, + width: 65, + }, }); diff --git a/components/onboarding/indicator/index.tsx b/components/onboarding/indicator/index.tsx index 3fd9eb0..c570945 100644 --- a/components/onboarding/indicator/index.tsx +++ b/components/onboarding/indicator/index.tsx @@ -1,14 +1,14 @@ -import React, { useEffect } from 'react'; +import React, { useEffect, useState } from 'react'; import { View, Text, Image, StyleSheet, TouchableOpacity } from 'react-native'; import Animated, { useSharedValue, withTiming, useAnimatedStyle, Easing } from 'react-native-reanimated'; - import { adjustFontSizeForIOS } from '@/utils/helpers'; const LQDOnboardingIndicator = ({ currentStep, isPaused, timer, totalSteps, finished, togglePause }: ILQDOnboardingIndicator) => { const actions = [require('../../../assets/images/pause.png'), require('../../../assets/images/play.png')]; + const [progressValues, setProgressValues] = useState(new Array(totalSteps).fill(0)); const animatedWidthStyle = (index: number) => { - const progress = useSharedValue(0); + const progress = useSharedValue(progressValues[index]); useEffect(() => { if (index === currentStep && !isPaused) { @@ -21,21 +21,25 @@ const LQDOnboardingIndicator = ({ currentStep, isPaused, timer, totalSteps, fini }); } } - }, [timer, isPaused, currentStep, finished]); - return useAnimatedStyle(() => { - if (index === 0 && currentStep === 0) { - return { width: `${progress.value * 100}%` }; - } else if (index === 0 && currentStep > 0) { - return { width: '100%' }; - } else if (index === currentStep) { - return { width: `${progress.value * 100}%` }; - } else if (index < currentStep) { - return { width: '100%' }; - } else { - return { width: '0%' }; + if (index === currentStep && progress.value !== progressValues[index]) { + setProgressValues((prevValues) => { + const newValues = [...prevValues]; + newValues[index] = progress.value; + return newValues; + }); + } + + if (index < currentStep) { + progress.value = 1; + } else if (index > currentStep) { + progress.value = 0; } - }); + }, [timer, isPaused, currentStep, finished]); + + return useAnimatedStyle(() => ({ + width: `${progress.value * 100}%`, + })); }; return ( From 11802ce789b5a2595ba050b6c9688890f3ec46e0 Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Thu, 21 Nov 2024 15:26:13 +0100 Subject: [PATCH 58/95] Fix/button loading state (#75) * fix: tap to go to next and prev / fit progress pause on press next or prev * pulling update from remote staging * fix: LQDButton loading state --- components/button/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/button/index.tsx b/components/button/index.tsx index d398865..fdd1f9b 100644 --- a/components/button/index.tsx +++ b/components/button/index.tsx @@ -1,4 +1,4 @@ -import { View, StyleSheet, Text, TouchableOpacity } from 'react-native'; +import { View, StyleSheet, Text, TouchableOpacity, ActivityIndicator } from 'react-native'; import { ArrowUpIcon, DollarCoinIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; @@ -33,8 +33,8 @@ const LQDButton = ({ disabled || loading ? styles.disabledStyle : null, ]} > - {title} - + {loading && } + {!loading && {title}} {icon && icons[icon](iconColor)} From ce2e8f7c4a144ff9e1566a2cb09304b9c2073936 Mon Sep 17 00:00:00 2001 From: Justice Eziefule Date: Thu, 21 Nov 2024 15:26:45 +0100 Subject: [PATCH 59/95] update remove liquidity ui (#73) - use selected pool - use correct token values --- components/pool-images/index.tsx | 2 +- components/pool-images/token-image.tsx | 1 + components/pool-images/types.ts | 6 +- components/pool-pair-paper/index.tsx | 18 +---- screens/liquidity-actions/remove/index.tsx | 85 +++++++++++++--------- utils/helpers.ts | 17 +++++ 6 files changed, 74 insertions(+), 55 deletions(-) diff --git a/components/pool-images/index.tsx b/components/pool-images/index.tsx index d698bc6..75efaea 100644 --- a/components/pool-images/index.tsx +++ b/components/pool-images/index.tsx @@ -50,6 +50,6 @@ const styles = StyleSheet.create({ image: { width: 24, height: 24, - borderRadius: 24, + borderRadius: 9999, }, }); diff --git a/components/pool-images/token-image.tsx b/components/pool-images/token-image.tsx index 19e45bb..cd34621 100644 --- a/components/pool-images/token-image.tsx +++ b/components/pool-images/token-image.tsx @@ -32,5 +32,6 @@ const styles = StyleSheet.create({ width: 24, height: 24, objectFit: 'contain', + borderRadius: 9999, }, }); diff --git a/components/pool-images/types.ts b/components/pool-images/types.ts index 211529e..e6787cf 100644 --- a/components/pool-images/types.ts +++ b/components/pool-images/types.ts @@ -1,8 +1,8 @@ type PoolImages = { - tokenAIconURL: string; - tokenBIconURL: string; + tokenAIconURL?: string; + tokenBIconURL?: string; }; type TokenImage = { - iconURL: string; + iconURL?: string; }; diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index 40da6b1..34afef1 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -1,28 +1,12 @@ import { StyleSheet, View, Text, TouchableOpacity } from 'react-native'; import { Href } from 'expo-router'; -import { adjustFontSizeForIOS, formatAmount, formatNumberWithSuffix, roundUp } from '@/utils/helpers'; +import { adjustFontSizeForIOS, formatAmount, formatNumberWithSuffix, formatSymbol, roundUp } from '@/utils/helpers'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { setSelectedPool } from '@/store/pools'; import { PoolPairPaper } from './types'; import LQDPoolImages from '../pool-images'; -const formatSymbol = (symbol: string, showFullSymbol?: boolean) => { - if (!showFullSymbol) { - return symbol.split('-')[1].replace('/', ' / '); - } - - if (symbol.toLowerCase().includes('volatile')) { - return `vAMM - ${symbol.split('-')[1].replace('/', ' / ')}`; - } - - if (symbol.toLowerCase().includes('stable')) { - return `sAMM - ${symbol.split('-')[1].replace('/', ' / ')}`; - } - - return symbol; -}; - const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol }: PoolPairPaper) => { const { router, dispatch } = useSystemFunctions(); diff --git a/screens/liquidity-actions/remove/index.tsx b/screens/liquidity-actions/remove/index.tsx index 1c4364b..e372d0e 100644 --- a/screens/liquidity-actions/remove/index.tsx +++ b/screens/liquidity-actions/remove/index.tsx @@ -1,10 +1,12 @@ import { useEffect, useState } from 'react'; import { View, Text, ScrollView, Image } from 'react-native'; -import { LQDButton } from '@/components'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { LQDButton, LQDPoolImages, LQDTokenImage } from '@/components'; +import { adjustFontSizeForIOS, formatSymbol } from '@/utils/helpers'; import { styles } from './styles'; import PercentageSetter from './percentage-setter'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { TokenItem } from '@/store/account/types'; const ICON_PLACEHOLDER = 'https://res.cloudinary.com/dxnd4k222/image/upload/v1717871583/Avatar_1.0_npmw4c.png'; @@ -17,39 +19,66 @@ const dummy = { }; const RemoveLiquidity = () => { + const { poolsState, accountState } = useSystemFunctions(); + const [percentage, setPercentage] = useState(25); + const [tokenA, setTokenA] = useState(); + const [tokenB, setTokenB] = useState(); + + const { selectedPool } = poolsState; + const { tokens } = accountState; + + const tokenAIconUrl = selectedPool?.token0?.logoUrl; + const tokenBIconUrl = selectedPool?.token1?.logoUrl; + const symbol = formatSymbol(selectedPool?.symbol || '', true); + const onSubmit = () => { console.log('Submitting liquidity request'); }; const depositions = [ { - iconURL: dummy.primaryIconURL, - title: dummy.primaryTitle, - value: 3_600, + iconURL: tokenA?.logoUrl, + title: tokenA?.symbol, + value: 0, }, { - iconURL: dummy.secondaryIconURL, - title: dummy.secondaryTitle, - value: 1, + iconURL: tokenB?.logoUrl, + title: tokenB?.symbol, + value: 0, }, ]; const receive = [ { - iconURL: dummy.primaryIconURL, - title: dummy.primaryTitle, - primaryValue: 600, - secondaryValue: 601, + iconURL: tokenA?.logoUrl, + title: tokenA?.symbol, + nativeValue: 0, + usdValue: 0, }, { - iconURL: dummy.secondaryIconURL, - title: dummy.secondaryTitle, - primaryValue: 0.4, - secondaryValue: 601, + iconURL: tokenB?.logoUrl, + title: tokenB?.symbol, + nativeValue: 0, + usdValue: 0, }, ]; + useEffect( + function initializeTokenData() { + if (!tokens.data || !selectedPool) return; + + const tokenAData = tokens.data.find((token) => token.address === selectedPool.token0.address); + const tokenBData = tokens.data.find((token) => token.address === selectedPool.token1.address); + + if (!tokenAData || !tokenBData) return; + + setTokenA({ ...tokenAData }); + setTokenB({ ...tokenBData }); + }, + [tokens, selectedPool] + ); + return ( @@ -59,17 +88,9 @@ const RemoveLiquidity = () => { - - {[dummy?.primaryIconURL, dummy?.secondaryIconURL]?.map((iconURL, index) => ( - - - - ))} - + - - {dummy?.condition.charAt(0)}AMM - {dummy?.primaryTitle} / {dummy?.secondaryTitle} - + {symbol} @@ -79,9 +100,7 @@ const RemoveLiquidity = () => { {depositions.map(({ iconURL, title, value }, index) => ( - - - + {title} @@ -100,18 +119,16 @@ const RemoveLiquidity = () => { You’ll receive at least: - {receive.map(({ iconURL, primaryValue, secondaryValue, title }, index) => ( + {receive.map(({ iconURL, nativeValue, usdValue, title }, index) => ( - - - + {title} - {primaryValue.toLocaleString()} {title} ${secondaryValue.toLocaleString()} + {nativeValue.toLocaleString()} {title} ${usdValue.toLocaleString()} ))} diff --git a/utils/helpers.ts b/utils/helpers.ts index 78ea348..3e36fa7 100644 --- a/utils/helpers.ts +++ b/utils/helpers.ts @@ -133,6 +133,22 @@ const formatInputAmount = (value: string): string => { return newValue; }; +export const formatSymbol = (symbol: string, showFullSymbol?: boolean) => { + if (!showFullSymbol) { + return symbol.split('-')[1].replace('/', ' / '); + } + + if (symbol.toLowerCase().includes('volatile')) { + return `vAMM - ${symbol.split('-')[1].replace('/', ' / ')}`; + } + + if (symbol.toLowerCase().includes('stable')) { + return `sAMM - ${symbol.split('-')[1].replace('/', ' / ')}`; + } + + return symbol; +}; + export { formatNumberWithSuffix, truncateDecimal, @@ -149,4 +165,5 @@ export { truncate, roundUp, formatInputAmount, + formatSymbol, }; From 5b3481575a688ce421fa92b8feca94dc082dde96 Mon Sep 17 00:00:00 2001 From: Justice Eziefule Date: Thu, 21 Nov 2024 15:26:57 +0100 Subject: [PATCH 60/95] update subtitle width (#74) --- screens/holdings/empty.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/screens/holdings/empty.tsx b/screens/holdings/empty.tsx index 861d103..6d991ee 100644 --- a/screens/holdings/empty.tsx +++ b/screens/holdings/empty.tsx @@ -75,6 +75,7 @@ const styles = StyleSheet.create({ fontSize: adjustFontSizeForIOS(14, 2), lineHeight: 18.48, textAlign: 'center', + width: '80%', }, action: { From 8109dd0bab3067dd8d9767f1bba71dccbbb427b7 Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Thu, 21 Nov 2024 23:59:07 +0100 Subject: [PATCH 61/95] Feat/refresh control (#77) * fix: tap to go to next and prev / fit progress pause on press next or prev * pulling update from remote staging * feat: pull to refresh token on home and holdings screen * feat: renamed component * update get pools --------- Co-authored-by: meisterjustice --- components/index.ts | 2 ++ components/scrollview/index.tsx | 28 ++++++++++++++++++++++++++++ components/scrollview/types.ts | 10 ++++++++++ screens/holdings/index.tsx | 12 +++++++----- screens/home/index.tsx | 15 +++++---------- store/account/actions.ts | 9 +++++++-- 6 files changed, 59 insertions(+), 17 deletions(-) create mode 100644 components/scrollview/index.tsx create mode 100644 components/scrollview/types.ts diff --git a/components/index.ts b/components/index.ts index e94fc3e..8a7f01e 100644 --- a/components/index.ts +++ b/components/index.ts @@ -2,6 +2,7 @@ import LQDButton from './button'; import LQDNavigation from './navigation'; import LQDInput from './input'; import LQDSearch from './search'; +import LQDScrollView from './scrollview'; import LQDStackHeader from './stack-header'; import LQDPoolPairCard from './pool-pair-card'; import LQDPoolPairPaper from './pool-pair-paper'; @@ -22,6 +23,7 @@ export { LQDNavigation, LQDInput, LQDSearch, + LQDScrollView, LQDStackHeader, LQDPoolPairCard, LQDPoolPairPaper, diff --git a/components/scrollview/index.tsx b/components/scrollview/index.tsx new file mode 100644 index 0000000..3979117 --- /dev/null +++ b/components/scrollview/index.tsx @@ -0,0 +1,28 @@ +import React from 'react'; +import { RefreshControl, ScrollView } from 'react-native'; +import { ILQDScrollView } from './types'; + +const LQDScrollView: React.FC = ({ children, onRefresh, refreshing, style }) => { + return ( + + } + style={[style, { flex: 1 }]} + showsVerticalScrollIndicator={false} + contentContainerStyle={{ + rowGap: 24, + }} + > + {children} + + ); +}; + +export default LQDScrollView; diff --git a/components/scrollview/types.ts b/components/scrollview/types.ts new file mode 100644 index 0000000..59bfab5 --- /dev/null +++ b/components/scrollview/types.ts @@ -0,0 +1,10 @@ +import { StyleProp, ViewStyle } from 'react-native'; + +interface ILQDScrollView { + children?: React.ReactNode; + refreshing: boolean; + onRefresh: () => void; + style?: StyleProp; +} + +export type { ILQDScrollView }; diff --git a/screens/holdings/index.tsx b/screens/holdings/index.tsx index 5a09b34..bb7e323 100644 --- a/screens/holdings/index.tsx +++ b/screens/holdings/index.tsx @@ -1,17 +1,20 @@ import { View, Text, StyleSheet, ScrollView, Platform, StatusBar as RNStatusBar } from 'react-native'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { LQDButton, SearchUI } from '@/components'; +import { LQDScrollView, LQDButton, SearchUI } from '@/components'; import { ILQDButton } from '@/components/button/types'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import Card from './card'; import Empty from './empty'; import { emptyData } from './dummy'; import SearchPlaceholder from '@/components/search-ui/search-placeholder'; +import { useState } from 'react'; +import { useAccountActions } from '@/store/account/actions'; const Holdings = () => { const { router, accountState, appState } = useSystemFunctions(); - const { tokens, tokenBalance, positions, lpBalance } = accountState; + const { getTokens } = useAccountActions(); + const { tokens, tokenBalance, positions, lpBalance, refreshing } = accountState; const actions: Array = [ { @@ -86,7 +89,7 @@ const Holdings = () => { <> - + getTokens(true)} style={styles.container}> Total Holdings @@ -115,7 +118,7 @@ const Holdings = () => { ))} )} - + ); }; @@ -124,7 +127,6 @@ export default Holdings; const styles = StyleSheet.create({ container: { - flex: 1, paddingTop: 34, paddingHorizontal: 16, backgroundColor: '#fff', diff --git a/screens/home/index.tsx b/screens/home/index.tsx index a587083..a203771 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -1,10 +1,10 @@ import { useEffect } from 'react'; -import { StyleSheet, View, Text, FlatList, ScrollView, TouchableOpacity, Alert, Platform, StatusBar as RNStatusBar } from 'react-native'; +import { StyleSheet, View, Text, FlatList, TouchableOpacity, Platform, StatusBar as RNStatusBar } from 'react-native'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { adjustFontSizeForIOS, formatAmountWithWholeAndDecimal } from '@/utils/helpers'; -import { LQDButton, LQDPoolPairCard, LQDPoolPairPaper, SearchUI } from '@/components'; -import { CaretRightIcon, DirectUpIcon, DollarSquareIcon, SearchIcon, SettingsIcon, TrendUpIcon } from '@/assets/icons'; +import { LQDButton, LQDPoolPairCard, LQDPoolPairPaper, LQDScrollView, SearchUI } from '@/components'; +import { CaretRightIcon, DirectUpIcon, DollarSquareIcon, TrendUpIcon } from '@/assets/icons'; import { useAccountActions } from '@/store/account/actions'; import { usePoolActions } from '@/store/pools/actions'; import { useOnMount } from '@/hooks/useOnMount'; @@ -100,7 +100,7 @@ const Home = () => { <> - + getTokens(true)} style={styles.container}> Total Balance @@ -127,7 +127,7 @@ const Home = () => { {sections.map((section, index) => (
))} - + ); }; @@ -142,11 +142,6 @@ const styles = StyleSheet.create({ backgroundColor: '#fff', }, - contentContainer: { - paddingBottom: 175, - gap: 40, - }, - balanceAndActionContainer: { alignSelf: 'stretch', gap: 24, diff --git a/store/account/actions.ts b/store/account/actions.ts index 5bcfb1c..6492bde 100644 --- a/store/account/actions.ts +++ b/store/account/actions.ts @@ -9,9 +9,13 @@ import { TokenItem } from './types'; export function useAccountActions() { const { dispatch, accountState, smartAccountState } = useSystemFunctions(); - const getTokens = async () => { + const getTokens = async (refresh?: boolean) => { try { - dispatch(setLoading(true)); + if (refresh) { + dispatch(setRefreshing(true)); + } else { + dispatch(setLoading(true)); + } const query = smartAccountState.address ? `?address=${smartAccountState.address}` : ''; const tokens = await api.getTokens(query); @@ -27,6 +31,7 @@ export function useAccountActions() { // } finally { dispatch(setLoading(false)); + dispatch(setRefreshing(false)); } }; From ef1b3216757eb1e562737fbb3216f3859f905fe3 Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Fri, 22 Nov 2024 00:13:46 +0100 Subject: [PATCH 62/95] Feat/shrime loader component (#76) * fix: tap to go to next and prev / fit progress pause on press next or prev * pulling update from remote staging * feat: shrime loader component / added loader to home and search for leading pools * fix: merge conflict --- components/index.ts | 2 + components/loader/index.tsx | 35 +++++++++++ components/loader/types.ts | 8 +++ components/pool-pair-card/index.tsx | 11 +++- components/pool-pair-card/types.ts | 1 + components/pool-pair-paper/index.tsx | 31 +++++++++- components/pool-pair-paper/types.ts | 1 + components/search-ui/index.tsx | 3 +- components/search-ui/search-placeholder.tsx | 24 +++++++- screens/home/index.tsx | 67 ++++++++++++--------- screens/home/section.tsx | 25 +++++--- screens/home/types.ts | 1 + 12 files changed, 169 insertions(+), 40 deletions(-) create mode 100644 components/loader/index.tsx create mode 100644 components/loader/types.ts diff --git a/components/index.ts b/components/index.ts index 8a7f01e..a6672c4 100644 --- a/components/index.ts +++ b/components/index.ts @@ -17,9 +17,11 @@ import LQDKeyboardWrapper from './keyboard-wrapper'; import SearchUI from './search-ui'; import LQDPoolImages from './pool-images'; import LQDTokenImage from './pool-images/token-image'; +import LQShrimeLoader from './loader'; export { LQDButton, + LQShrimeLoader, LQDNavigation, LQDInput, LQDSearch, diff --git a/components/loader/index.tsx b/components/loader/index.tsx new file mode 100644 index 0000000..022ae3f --- /dev/null +++ b/components/loader/index.tsx @@ -0,0 +1,35 @@ +import { useEffect } from 'react'; +import { Animated, Easing } from 'react-native'; +import { ILQShrimeLoader } from './types'; + +const LQShrimeLoader = ({ style, bg = '#EAEEF4' }: ILQShrimeLoader) => { + const animatedOpacity = new Animated.Value(0); + + useEffect(() => { + Animated.loop( + Animated.sequence([ + Animated.timing(animatedOpacity, { + toValue: 1, + duration: 500, + easing: Easing.linear, + useNativeDriver: true, + }), + Animated.timing(animatedOpacity, { + toValue: 0, + duration: 1800, + easing: Easing.linear, + useNativeDriver: true, + }), + ]) + ).start(); + }); + + const opacity = animatedOpacity.interpolate({ + inputRange: [0, 1], + outputRange: [0.4, 1], + }); + + return ; +}; + +export default LQShrimeLoader; diff --git a/components/loader/types.ts b/components/loader/types.ts new file mode 100644 index 0000000..ed9b5ff --- /dev/null +++ b/components/loader/types.ts @@ -0,0 +1,8 @@ +import { StyleProp, ViewStyle } from 'react-native'; + +interface ILQShrimeLoader { + bg?: string; + style?: StyleProp; +} + +export type { ILQShrimeLoader }; diff --git a/components/pool-pair-card/index.tsx b/components/pool-pair-card/index.tsx index 1b2e295..62b4fdc 100644 --- a/components/pool-pair-card/index.tsx +++ b/components/pool-pair-card/index.tsx @@ -7,11 +7,12 @@ import { ArrowDownIcon, ArrowUpAltIcon } from '@/assets/icons'; import { setSelectedPool } from '@/store/pools'; import { PoolPairCard } from './types'; import LQDPoolImages from '../pool-images'; +import LQShrimeLoader from '../loader'; const backgroundColors = ['#FDEAEA', '#EFFAF6']; const textColors = ['#A4262C', '#156146']; -const LQDPoolPairCard = ({ pool, navigationVariant = 'primary' }: PoolPairCard) => { +const LQDPoolPairCard = ({ pool, navigationVariant = 'primary', loading = false }: PoolPairCard) => { const { router, dispatch } = useSystemFunctions(); const paths = { @@ -30,6 +31,10 @@ const LQDPoolPairCard = ({ pool, navigationVariant = 'primary' }: PoolPairCard) const increased = true; const change = pool.apr; + if (loading) { + return ; + } + return ( @@ -44,7 +49,6 @@ const LQDPoolPairCard = ({ pool, navigationVariant = 'primary' }: PoolPairCard) {change}% - {symbol} ); @@ -91,4 +95,7 @@ const styles = StyleSheet.create({ fontWeight: '500', fontFamily: 'AeonikMedium', }, + + // loader + loader: { height: 90, width: 140, borderRadius: 6 }, }); diff --git a/components/pool-pair-card/types.ts b/components/pool-pair-card/types.ts index d5ed5e1..1d5068b 100644 --- a/components/pool-pair-card/types.ts +++ b/components/pool-pair-card/types.ts @@ -2,5 +2,6 @@ import { Pool } from '@/store/pools/types'; export interface PoolPairCard { pool: Pool; + loading: boolean; navigationVariant?: 'primary' | 'secondary'; } diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index 34afef1..34d0f22 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -6,8 +6,9 @@ import useSystemFunctions from '@/hooks/useSystemFunctions'; import { setSelectedPool } from '@/store/pools'; import { PoolPairPaper } from './types'; import LQDPoolImages from '../pool-images'; +import LQShrimeLoader from '../loader'; -const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol }: PoolPairPaper) => { +const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol, loading = false }: PoolPairPaper) => { const { router, dispatch } = useSystemFunctions(); const paths = { @@ -31,6 +32,19 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol const tvl = pool.tvl; const isStable = pool.isStable; + if (loading) { + return ( + + + + + + + + + ); + } + return ( @@ -157,4 +171,19 @@ const styles = StyleSheet.create({ textTransform: 'uppercase', fontFamily: 'AeonikRegular', }, + + // loader + loaderContainer: { + flex: 1, + flexDirection: 'row', + alignItems: 'center', + gap: 10, + }, + + loaderCenterContainer: { flex: 1, gap: 5 }, + + loaderOne: { height: 45, width: 45, borderRadius: 100 }, + loaderTwo: { height: 20, width: '40%', borderRadius: 6 }, + loaderThree: { height: 20, width: '50%', borderRadius: 6 }, + loaderFour: { height: 20, width: 56, borderRadius: 6 }, }); diff --git a/components/pool-pair-paper/types.ts b/components/pool-pair-paper/types.ts index ccf6975..042ba02 100644 --- a/components/pool-pair-paper/types.ts +++ b/components/pool-pair-paper/types.ts @@ -4,4 +4,5 @@ export interface PoolPairPaper { pool: Pool; navigationVariant?: 'primary' | 'secondary'; showFullSymbol?: boolean; + loading?: boolean; } diff --git a/components/search-ui/index.tsx b/components/search-ui/index.tsx index 8ee5160..293965f 100644 --- a/components/search-ui/index.tsx +++ b/components/search-ui/index.tsx @@ -19,6 +19,7 @@ const SearchUI = () => { const trendingPools = poolsState.trendingPools.data.slice(0, 10); const searchedPools = poolsState.searchedPools.data; + const loading = poolsState.loadingPools; const sections: Array> = [ { @@ -49,7 +50,7 @@ const SearchUI = () => { children: ( {trendingPools.map((pool, index) => ( - + ))} ), diff --git a/components/search-ui/search-placeholder.tsx b/components/search-ui/search-placeholder.tsx index e0dae29..6303ea9 100644 --- a/components/search-ui/search-placeholder.tsx +++ b/components/search-ui/search-placeholder.tsx @@ -3,8 +3,9 @@ import useSystemFunctions from '@/hooks/useSystemFunctions'; import useAppActions from '@/store/app/actions'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import { Platform, StyleSheet, Text, TouchableOpacity, View, StatusBar as RNStatusBar } from 'react-native'; +import LQShrimeLoader from '../loader'; -const SearchPlaceholder = () => { +const SearchPlaceholder = ({ loading }: { loading?: boolean }) => { const { router } = useSystemFunctions(); const { searchIsFocused: focusSearch, showSearch } = useAppActions(); @@ -13,6 +14,16 @@ const SearchPlaceholder = () => { showSearch(true); }; + if (loading) { + return ( + + + + + + ); + } + return ( @@ -75,4 +86,15 @@ const styles = StyleSheet.create({ color: '#94A3B8', fontFamily: 'AeonikRegular', }, + searchLoader: { + flexDirection: 'row', + gap: 30, + alignItems: 'center', + backgroundColor: '#fff', + paddingHorizontal: 16, + paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, + paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, + }, + loaderOne: { height: 24, width: 24, borderRadius: 16 }, + loaderTwo: { height: 35, width: 50, borderRadius: 6, flex: 1 }, }); diff --git a/screens/home/index.tsx b/screens/home/index.tsx index a203771..33792a0 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -3,7 +3,7 @@ import { StyleSheet, View, Text, FlatList, TouchableOpacity, Platform, StatusBar import useSystemFunctions from '@/hooks/useSystemFunctions'; import { adjustFontSizeForIOS, formatAmountWithWholeAndDecimal } from '@/utils/helpers'; -import { LQDButton, LQDPoolPairCard, LQDPoolPairPaper, LQDScrollView, SearchUI } from '@/components'; +import { LQDButton, LQDPoolPairCard, LQDPoolPairPaper, LQDScrollView, LQShrimeLoader, SearchUI } from '@/components'; import { CaretRightIcon, DirectUpIcon, DollarSquareIcon, TrendUpIcon } from '@/assets/icons'; import { useAccountActions } from '@/store/account/actions'; import { usePoolActions } from '@/store/pools/actions'; @@ -16,7 +16,8 @@ const Home = () => { const { getTokens } = useAccountActions(); const { getPools, getAllPools } = usePoolActions(); - const { trendingPools, hotPools, topGainers } = poolsState; + const { trendingPools, hotPools, topGainers, loadingPools } = poolsState; + const { loading: loadingAccounts } = accountState; const { whole, decimal } = formatAmountWithWholeAndDecimal(accountState.tokenBalance.toFixed(2)); @@ -28,6 +29,8 @@ const Home = () => { const top10HotPools = hotPoolsArray.slice(0, 10) ?? []; const top7Gainers = top7GainersArray.slice(0, 7); + const globalLoading = loadingPools || loadingAccounts; + const sections = [ { title: 'Top gainers', @@ -38,7 +41,7 @@ const Home = () => { } + renderItem={({ item }) => } keyExtractor={(_, index) => index.toString()} showsHorizontalScrollIndicator={false} contentContainerStyle={{ gap: 10 }} @@ -54,12 +57,11 @@ const Home = () => { children: ( {top10TrendingPools.map((pool, index) => ( - + ))} ), }, - { title: 'Hot', subtitle: 'by TVL', @@ -68,7 +70,7 @@ const Home = () => { children: ( {top10HotPools.map((pool, index) => ( - + ))} ), @@ -98,34 +100,40 @@ const Home = () => { return ( <> - + getTokens(true)} style={styles.container}> - - Total Balance - - router.push('/(tabs)/holdings')} style={styles.balanceValueContainer}> - - ${whole}.{decimal} - - - - - - - router.push('/deposit/debit')} - variant="tertiaryOutline" - icon="money" - iconColor="#334155" - style={{ alignSelf: 'stretch' }} - /> + {!globalLoading && ( + + Total Balance + router.push('/(tabs)/holdings')} style={styles.balanceValueContainer}> + + ${whole}.{decimal} + + + + + + )} + {globalLoading && } + + {!globalLoading && ( + router.push('/deposit/debit')} + variant="tertiaryOutline" + icon="money" + iconColor="#334155" + style={{ alignSelf: 'stretch' }} + /> + )} + + {globalLoading && } {sections.map((section, index) => ( -
+
))} @@ -202,4 +210,7 @@ const styles = StyleSheet.create({ paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, }, + + loaderButton: { height: 40, borderRadius: 16 }, + loaderBalance: { height: 98, borderRadius: 16 }, }); diff --git a/screens/home/section.tsx b/screens/home/section.tsx index 8f595a5..09bdbd8 100644 --- a/screens/home/section.tsx +++ b/screens/home/section.tsx @@ -2,18 +2,24 @@ import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import { CaretRightAltIcon } from '@/assets/icons'; +import { LQShrimeLoader } from '@/components'; -const Section = ({ children, icon, subtitle, title, action, isShowingAll }: ISection) => { +const Section = ({ children, icon, subtitle, title, action, isShowingAll, loading }: ISection) => { return ( - - {icon} - {title} - {subtitle} - + {!loading && ( + + {icon} + {title} + {subtitle} + + )} + + {loading && } + {loading && } - {!isShowingAll && ( + {!isShowingAll && !loading && ( See all @@ -75,4 +81,9 @@ const styles = StyleSheet.create({ lineHeight: 16.12, fontFamily: 'AeonikRegular', }, + + // loader + + loaderOne: { height: 16, width: '40%', borderRadius: 6 }, + loaderTwo: { height: 16, width: 56, borderRadius: 6 }, }); diff --git a/screens/home/types.ts b/screens/home/types.ts index b00c434..3f4792d 100644 --- a/screens/home/types.ts +++ b/screens/home/types.ts @@ -5,4 +5,5 @@ interface ISection { icon: React.ReactElement; action?: () => void; isShowingAll?: boolean; + loading?: boolean; } From ece6dedefc3b5d687082a7d5f3c54b68a5f5ef17 Mon Sep 17 00:00:00 2001 From: Justice Eziefule Date: Fri, 22 Nov 2024 15:35:03 +0100 Subject: [PATCH 63/95] align onboarding images (#78) --- app/index.tsx | 2 +- components/onboarding/step/index.tsx | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/app/index.tsx b/app/index.tsx index 3763a24..eaa6597 100644 --- a/app/index.tsx +++ b/app/index.tsx @@ -20,5 +20,5 @@ export default function AuthGate() { return ; } - return session ? : ; + return !session ? : ; } diff --git a/components/onboarding/step/index.tsx b/components/onboarding/step/index.tsx index 3c9a688..d63f067 100644 --- a/components/onboarding/step/index.tsx +++ b/components/onboarding/step/index.tsx @@ -20,11 +20,13 @@ const LQDOnboardingStep = ({ {subtitle} - + + - + - + + ); }; @@ -58,6 +60,6 @@ const styles = StyleSheet.create({ image: { position: 'absolute', - bottom: 136, + bottom: '27%', }, }); From 1211ff31ca6ce745abf955b7da087e62cfdaadca Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Fri, 22 Nov 2024 16:20:48 +0100 Subject: [PATCH 64/95] update auth --- app/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/index.tsx b/app/index.tsx index eaa6597..3763a24 100644 --- a/app/index.tsx +++ b/app/index.tsx @@ -20,5 +20,5 @@ export default function AuthGate() { return ; } - return !session ? : ; + return session ? : ; } From 196baf63b95c59a8035d5084acd709657de2daf5 Mon Sep 17 00:00:00 2001 From: Njoku Emmanuel Date: Sat, 23 Nov 2024 00:11:50 +0100 Subject: [PATCH 65/95] Improve passkey auth (#79) * chore: update verify registration endpoint * chore: clear console --- hooks/useCalls.ts | 3 +- init/types.ts | 3 +- providers/AuthProvider.tsx | 3 +- store/smartAccount/actions.ts | 17 ++++--- store/smartAccount/create.ts | 13 ++--- store/smartAccount/getFn.ts | 8 +-- utils/base64.ts | 93 ++++++++++++++++++----------------- 7 files changed, 73 insertions(+), 67 deletions(-) diff --git a/hooks/useCalls.ts b/hooks/useCalls.ts index 12cf984..62e0ff6 100644 --- a/hooks/useCalls.ts +++ b/hooks/useCalls.ts @@ -8,7 +8,6 @@ import { SmartWalletABI } from '@/constants/abis'; import { ENTRYPOINT_V06_ADDRESS } from '@/constants/addresses'; import { useCallback } from 'react'; import { getPersistedSmartAccountInfo } from '@/store/smartAccount/persist'; -import { getPublicKeyHex } from '@/utils/base64'; export function useMakeCalls() { const { signTransaction } = useSmartAccountActions(); @@ -21,7 +20,7 @@ export function useMakeCalls() { // Build the user operation const op = await buildUserOp(account, smartAccountClient!, { calls, - signers: [getPublicKeyHex(publicKey) as Hex], + signers: [publicKey as Hex], paymasterAndData: '0x', // Initialize with empty paymaster data }); diff --git a/init/types.ts b/init/types.ts index b8085dd..f65c183 100644 --- a/init/types.ts +++ b/init/types.ts @@ -37,12 +37,13 @@ export type SmartAccount = ToCoinbaseSmartAccountReturnType; * Info about the smart account that is persisted to secure store, used to re-initialize the smart account */ export type SmartAccountPersistedInfo = { - publicKey: string | Hex; + publicKey: Hex; credentialID: string; }; export type VerifyRegistration = { username: string; + pubKey: Hex | string; id: string; rawId: string; response: { diff --git a/providers/AuthProvider.tsx b/providers/AuthProvider.tsx index d912d59..cb4663d 100644 --- a/providers/AuthProvider.tsx +++ b/providers/AuthProvider.tsx @@ -8,7 +8,6 @@ import { SmartAccountInfoNotPersistedError } from '@/store/smartAccount/errors'; import { rpId } from '@/constants/env'; import { toCoinbaseSmartAccount, toWebAuthnAccount } from 'viem/account-abstraction'; import { publicClient } from '@/init/client'; -import { getPublicKeyHex } from '@/utils/base64'; import { getFn } from '@/store/smartAccount/getFn'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { setAddress } from '@/store/smartAccount'; @@ -41,7 +40,7 @@ export function AuthProvider({ children }: PropsWithChildren) { const webAuthnAccount = toWebAuthnAccount({ credential: { id: credentialID, - publicKey: getPublicKeyHex(publicKey), + publicKey, }, getFn, rpId, diff --git a/store/smartAccount/actions.ts b/store/smartAccount/actions.ts index 01e9528..811ff3e 100644 --- a/store/smartAccount/actions.ts +++ b/store/smartAccount/actions.ts @@ -5,7 +5,6 @@ import { setAddress, setRegistrationOptions } from '@/store/smartAccount'; import { CreatePassKeyCredentialOptions, VerifyAuthResponse } from '@/init/types'; import { publicClient } from '@/init/client'; import { rpId } from '@/constants/env'; -import { getPublicKeyHex } from '@/utils/base64'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { createSmartAccount } from './create'; @@ -17,6 +16,7 @@ import api from '@/init/api'; import { useAuth } from '@/providers'; import { Hex } from 'viem'; import { AuthenticationResponseJSON } from 'react-native-passkeys/build/ReactNativePasskeys.types'; +import { base64URLStringToHex } from '@/utils/base64'; export function useSmartAccountActions() { const { dispatch, router, smartAccountState } = useSystemFunctions(); @@ -46,7 +46,7 @@ export function useSmartAccountActions() { const webAuthnAccount = toWebAuthnAccount({ credential: { id: credentialID, - publicKey: getPublicKeyHex(publicKey), + publicKey, }, getFn, rpId, @@ -84,10 +84,12 @@ export function useSmartAccountActions() { const verification = await api.verifyAuthentication(userName, authenticationResponse); + console.log(verification.data.publicKey, 'update'); + const webAuthnAccount = toWebAuthnAccount({ credential: { id: passkeyResult.id, - publicKey: getPublicKeyHex(verification.data.publicKey), + publicKey: verification.data.publicKey as `0x${string}`, }, getFn, rpId, @@ -96,12 +98,11 @@ export function useSmartAccountActions() { client: publicClient, owners: [webAuthnAccount], }); - const smartAccountInfo = { - publicKey: verification.data.publicKey, - credentialID: passkeyResult.id, - }; - await persistSmartAccountInfo(smartAccountInfo); + await persistSmartAccountInfo({ + publicKey: verification.data.publicKey as `0x${string}`, + credentialID: passkeyResult.id, + }); setSession(smartAccount); dispatch(setAddress(smartAccount.address)); diff --git a/store/smartAccount/create.ts b/store/smartAccount/create.ts index 54f7e75..bfbd129 100644 --- a/store/smartAccount/create.ts +++ b/store/smartAccount/create.ts @@ -6,7 +6,7 @@ import api from '@/init/api'; import { publicClient } from '@/init/client'; import { isDev, rpId } from '@/constants/env'; import { SmartAccount, Address, SmartAccountPersistedInfo, VerifyRegistration } from '@/init/types'; -import { getPublicKeyHex } from '@/utils/base64'; +import { base64URLStringToHex } from '@/utils/base64'; import { getFn } from './getFn'; import { FailedToCreatePasskeyCredentialError, FailedToUpdateUserAddressError, PasskeyNotSupportedError } from './errors'; @@ -29,16 +29,17 @@ export async function createSmartAccount(registrationOptions: PublicKeyCredentia } const credentialId = credential.id; - const { attestationObject, clientDataJSON, publicKey } = credential.response; + const { attestationObject, clientDataJSON } = credential.response; const registrationResponse = { credentialId, attestationObject, clientDataJSON, }; - + const publicKeyHex = base64URLStringToHex(credential.response.getPublicKey()); const smartAccountInfo: VerifyRegistration = { username: registrationOptions.user.name, + pubKey: publicKeyHex.toString(), id: registrationResponse.credentialId, rawId: registrationResponse.credentialId, response: { @@ -49,12 +50,12 @@ export async function createSmartAccount(registrationOptions: PublicKeyCredentia authenticatorAttachment: 'platform', }; - const verificationResult = await api.verifyRegistration(smartAccountInfo); + await api.verifyRegistration(smartAccountInfo); const webAuthnAccount = toWebAuthnAccount({ credential: { id: registrationResponse.credentialId, - publicKey: getPublicKeyHex(verificationResult.data.publicKey), + publicKey: publicKeyHex, }, getFn, rpId, @@ -77,7 +78,7 @@ export async function createSmartAccount(registrationOptions: PublicKeyCredentia smartAccount, address, smartAccountInfo: { - publicKey, + publicKey: publicKeyHex, credentialID: smartAccountInfo.id, }, }; diff --git a/store/smartAccount/getFn.ts b/store/smartAccount/getFn.ts index fb6bf27..a9cdc74 100644 --- a/store/smartAccount/getFn.ts +++ b/store/smartAccount/getFn.ts @@ -1,7 +1,7 @@ import * as Passkeys from 'react-native-passkeys'; import type { SignParameters } from 'webauthn-p256'; -import { base64ToBytes, bufferToBase64URLString } from '@/utils/base64'; +import { base64URLStringToBuffer, bufferToBase64URLString } from '@/utils/base64'; import { CredentialRequestOptionsNotAvailableError, FailedToGetPasskeyCredentialError } from './errors'; @@ -35,9 +35,9 @@ export const getFn: GetFnType = async (options) => { id: result.id, type: 'public-key', response: { - authenticatorData: base64ToBytes(result.response.authenticatorData), - clientDataJSON: base64ToBytes(result.response.clientDataJSON), - signature: base64ToBytes(result.response.signature), + authenticatorData: base64URLStringToBuffer(result.response.authenticatorData), + clientDataJSON: base64URLStringToBuffer(result.response.clientDataJSON), + signature: base64URLStringToBuffer(result.response.signature), }, }; diff --git a/utils/base64.ts b/utils/base64.ts index 767b86c..1d1d0ff 100644 --- a/utils/base64.ts +++ b/utils/base64.ts @@ -1,5 +1,39 @@ -import base64 from '@hexagon/base64'; -import { Hex } from 'viem'; +import type { Hex } from 'viem'; + +// ! taken from https://github.com/MasterKale/SimpleWebAuthn/blob/e02dce6f2f83d8923f3a549f84e0b7b3d44fa3da/packages/browser/src/helpers/base64URLStringToBuffer.ts +/** + * Convert from a Base64URL-encoded string to an Array Buffer. Best used when converting a + * credential ID from a JSON string to an ArrayBuffer, like in allowCredentials or + * excludeCredentials + * + * Helper method to compliment `bufferToBase64URLString` + */ +export function base64URLStringToBuffer(base64URLString: string): ArrayBuffer { + // Convert from Base64URL to Base64 + const base64 = base64URLString.replace(/-/g, '+').replace(/_/g, '/'); + /** + * Pad with '=' until it's a multiple of four + * (4 - (85 % 4 = 1) = 3) % 4 = 3 padding + * (4 - (86 % 4 = 2) = 2) % 4 = 2 padding + * (4 - (87 % 4 = 3) = 1) % 4 = 1 padding + * (4 - (88 % 4 = 0) = 4) % 4 = 0 padding + */ + const padLength = (4 - (base64.length % 4)) % 4; + const padded = base64.padEnd(base64.length + padLength, '='); + + // Convert to a binary string + const binary = atob(padded); + + // Convert binary string to buffer + const buffer = new ArrayBuffer(binary.length); + const bytes = new Uint8Array(buffer); + + for (let i = 0; i < binary.length; i++) { + bytes[i] = binary.charCodeAt(i); + } + + return buffer; +} // ! taken from https://github.com/MasterKale/SimpleWebAuthn/blob/e02dce6f2f83d8923f3a549f84e0b7b3d44fa3da/packages/browser/src/helpers/bufferToBase64URLString.ts /** @@ -21,47 +55,25 @@ export function bufferToBase64URLString(buffer: ArrayBuffer): string { return base64String.replace(/\+/g, '-').replace(/\//g, '_').replace(/=/g, ''); } -// ! taken from https://github.com/MasterKale/SimpleWebAuthn/blob/e02dce6f2f83d8923f3a549f84e0b7b3d44fa3da/packages/browser/src/helpers/utf8StringToBuffer.ts -/** - * A helper method to convert an arbitrary string sent from the server to an ArrayBuffer the - * authenticator will expect. - */ -export function utf8StringToBuffer(value: string): ArrayBuffer { - return new TextEncoder().encode(value); +export function hexToBuffer(hexString: Hex): ArrayBuffer { + const bytes = + hexString + .slice(2) + .match(/.{1,2}/g) + ?.map((byte) => parseInt(byte, 16)) ?? []; + return Uint8Array.from(bytes); } -/** - * Decode a base64url string into its original string - */ -export function base64UrlToString(base64UrlString: string): string { - return base64.toString(base64UrlString, true); +export function bufferToHex(buffer: ArrayBuffer): Hex { + return `0x${[...new Uint8Array(buffer)].map((x) => x.toString(16).padStart(2, '0')).join('')}`; } -// Base64 strings typically have a length that is a multiple of 4 and may end with one or two = characters for padding -function isBase64(str: string): boolean { - const base64Regex = /^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/; - return base64Regex.test(str); +export function base64URLStringToHex(base64URLString: string): Hex { + return bufferToHex(base64URLStringToBuffer(base64URLString)); } -export function base64URLStringToBuffer(base64URLString: string): ArrayBuffer { - if (!isBase64(base64URLString)) { - throw new Error('Invalid base64URLString'); - } - - // Convert base64url to standard base64 - const base64String = base64URLString.replace(/-/g, '+').replace(/_/g, '/'); - - // Decode base64 to a string - const decodedString = base64.toString(base64String); - - // Convert the string to an ArrayBuffer - const buffer = new ArrayBuffer(decodedString.length); - const view = new Uint8Array(buffer); - for (let i = 0; i < decodedString.length; i++) { - view[i] = decodedString.charCodeAt(i); - } - - return buffer; +export function hexToBase64URLString(hexString: Hex): string { + return bufferToBase64URLString(hexToBuffer(hexString)); } /** @@ -86,10 +98,3 @@ export function base64ToBytes(base64String: string): Uint8Array { return bytes; } - -export function getPublicKeyHex(publicKey: string): Hex { - const publicKeyBuffer = utf8StringToBuffer(publicKey); - return `0x${Array.from(new Uint8Array(publicKeyBuffer)) - .map((byte) => byte.toString(16).padStart(2, '0')) - .join('')}` as Hex; -} From e953325aa989f76d3d11180e411be678d2abf601 Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Sat, 23 Nov 2024 03:36:15 +0100 Subject: [PATCH 66/95] =?UTF-8?q?fix:=20fixed=20recent=20search,=20cleaned?= =?UTF-8?q?=20up=20modal=20loader=20and=20empty=20search=20re=E2=80=A6=20(?= =?UTF-8?q?#81)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: fixed recent search, cleaned up modal loader and empty search result ui * fix: moved loader to loader file --- assets/icons/index.ts | 2 + assets/icons/search-empty-state-icon.tsx | 17 +++ components/pool-pair-card/index.tsx | 10 +- components/pool-pair-card/types.ts | 1 - components/pool-pair-paper/index.tsx | 33 +----- components/pool-pair-paper/types.ts | 1 - components/search-ui/index.tsx | 122 +++++++++++++++----- components/search-ui/recent-card.tsx | 21 ++-- components/search-ui/search-placeholder.tsx | 23 +--- components/search-ui/types.ts | 13 +-- screens/home/index.tsx | 67 +++++------ screens/home/loader.tsx | 102 ++++++++++++++++ screens/home/section.tsx | 33 ++---- screens/home/types.ts | 1 - store/index.ts | 2 +- store/pools/actions.ts | 1 + store/pools/index.ts | 20 ++++ utils/helpers.ts | 5 + 18 files changed, 305 insertions(+), 169 deletions(-) create mode 100644 assets/icons/search-empty-state-icon.tsx create mode 100644 screens/home/loader.tsx diff --git a/assets/icons/index.ts b/assets/icons/index.ts index 5bcd791..272e20f 100644 --- a/assets/icons/index.ts +++ b/assets/icons/index.ts @@ -50,9 +50,11 @@ import LegalIcon from './legal-icon'; import SupportIcon from './support-icon'; import XIcon from './x-ixon'; import DiscordIcon from './discord-icon'; +import SearchEmptyStateIcon from './search-empty-state-icon'; export { SwatchIcon, + SearchEmptyStateIcon, ChartIcon, ShieldTickIcon, MoneysIcon, diff --git a/assets/icons/search-empty-state-icon.tsx b/assets/icons/search-empty-state-icon.tsx new file mode 100644 index 0000000..8f8170a --- /dev/null +++ b/assets/icons/search-empty-state-icon.tsx @@ -0,0 +1,17 @@ +import Svg, { Path, Rect } from 'react-native-svg'; + +const SearchEmptyStateIcon = ({ fill = '#fff', height = 14, width = 14 }: IconProps) => ( + + + + + + +); +export default SearchEmptyStateIcon; diff --git a/components/pool-pair-card/index.tsx b/components/pool-pair-card/index.tsx index 62b4fdc..1a26b82 100644 --- a/components/pool-pair-card/index.tsx +++ b/components/pool-pair-card/index.tsx @@ -7,12 +7,11 @@ import { ArrowDownIcon, ArrowUpAltIcon } from '@/assets/icons'; import { setSelectedPool } from '@/store/pools'; import { PoolPairCard } from './types'; import LQDPoolImages from '../pool-images'; -import LQShrimeLoader from '../loader'; const backgroundColors = ['#FDEAEA', '#EFFAF6']; const textColors = ['#A4262C', '#156146']; -const LQDPoolPairCard = ({ pool, navigationVariant = 'primary', loading = false }: PoolPairCard) => { +const LQDPoolPairCard = ({ pool, navigationVariant = 'primary' }: PoolPairCard) => { const { router, dispatch } = useSystemFunctions(); const paths = { @@ -31,10 +30,6 @@ const LQDPoolPairCard = ({ pool, navigationVariant = 'primary', loading = false const increased = true; const change = pool.apr; - if (loading) { - return ; - } - return ( @@ -95,7 +90,4 @@ const styles = StyleSheet.create({ fontWeight: '500', fontFamily: 'AeonikMedium', }, - - // loader - loader: { height: 90, width: 140, borderRadius: 6 }, }); diff --git a/components/pool-pair-card/types.ts b/components/pool-pair-card/types.ts index 1d5068b..d5ed5e1 100644 --- a/components/pool-pair-card/types.ts +++ b/components/pool-pair-card/types.ts @@ -2,6 +2,5 @@ import { Pool } from '@/store/pools/types'; export interface PoolPairCard { pool: Pool; - loading: boolean; navigationVariant?: 'primary' | 'secondary'; } diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index 34d0f22..59b0ffa 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -3,12 +3,12 @@ import { Href } from 'expo-router'; import { adjustFontSizeForIOS, formatAmount, formatNumberWithSuffix, formatSymbol, roundUp } from '@/utils/helpers'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { setSelectedPool } from '@/store/pools'; +import { setRecentSearchedPool, setSelectedPool } from '@/store/pools'; import { PoolPairPaper } from './types'; import LQDPoolImages from '../pool-images'; import LQShrimeLoader from '../loader'; -const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol, loading = false }: PoolPairPaper) => { +const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol }: PoolPairPaper) => { const { router, dispatch } = useSystemFunctions(); const paths = { @@ -18,6 +18,7 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol, const handlePress = () => { dispatch(setSelectedPool(pool)); + dispatch(setRecentSearchedPool(pool)); router.push(paths[navigationVariant]); }; @@ -32,19 +33,6 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol, const tvl = pool.tvl; const isStable = pool.isStable; - if (loading) { - return ( - - - - - - - - - ); - } - return ( @@ -171,19 +159,4 @@ const styles = StyleSheet.create({ textTransform: 'uppercase', fontFamily: 'AeonikRegular', }, - - // loader - loaderContainer: { - flex: 1, - flexDirection: 'row', - alignItems: 'center', - gap: 10, - }, - - loaderCenterContainer: { flex: 1, gap: 5 }, - - loaderOne: { height: 45, width: 45, borderRadius: 100 }, - loaderTwo: { height: 20, width: '40%', borderRadius: 6 }, - loaderThree: { height: 20, width: '50%', borderRadius: 6 }, - loaderFour: { height: 20, width: 56, borderRadius: 6 }, }); diff --git a/components/pool-pair-paper/types.ts b/components/pool-pair-paper/types.ts index 042ba02..ccf6975 100644 --- a/components/pool-pair-paper/types.ts +++ b/components/pool-pair-paper/types.ts @@ -4,5 +4,4 @@ export interface PoolPairPaper { pool: Pool; navigationVariant?: 'primary' | 'secondary'; showFullSymbol?: boolean; - loading?: boolean; } diff --git a/components/search-ui/index.tsx b/components/search-ui/index.tsx index 293965f..85b4897 100644 --- a/components/search-ui/index.tsx +++ b/components/search-ui/index.tsx @@ -1,56 +1,58 @@ -import { useState } from 'react'; -import { View, StyleSheet, ScrollView, FlatList } from 'react-native'; +import { useEffect, useState } from 'react'; +import { View, StyleSheet, ScrollView, FlatList, Text } from 'react-native'; import SearchSection from './sections'; -import { recents, explore } from './dummy'; import RecentCard from './recent-card'; -import ExploreCard from './explore-card'; import LQDSearch from '../search'; import LQDPoolPairPaper from '../pool-pair-paper'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { usePoolActions } from '@/store/pools/actions'; +import { SearchEmptyStateIcon } from '@/assets/icons'; +import { ISearchSection } from './types'; +import LQShrimeLoader from '../loader'; +import { createArrayWithIndexes } from '@/utils/helpers'; +import { clearRecentSearchedPools } from '@/store/pools'; const SearchUI = () => { - const { router, poolsState } = useSystemFunctions(); + const { router, poolsState, dispatch } = useSystemFunctions(); const { searchPools, getPaginatedSearchPools } = usePoolActions(); const [searchText, setSearchText] = useState(''); - const [showRecents, setShowRecents] = useState(true); - const trendingPools = poolsState.trendingPools.data.slice(0, 10); const searchedPools = poolsState.searchedPools.data; - const loading = poolsState.loadingPools; + const loading = poolsState.searchingPools; + const recentSearch = poolsState.recentSearchedPools; + + const [showRecents, setShowRecents] = useState(true); + + const emptysearch = createArrayWithIndexes(10); + + useEffect(() => { + if (poolsState.recentSearchedPools.length > 0) { + setShowRecents(true); + } else { + setShowRecents(false); + } + }, [poolsState.recentSearchedPools]); const sections: Array> = [ { title: 'Recents', children: ( - {recents.map((recent) => ( - - ))} - - ), - onClear: () => setShowRecents(false), - }, - - { - title: 'Explore', - children: ( - - {explore.map((explore) => ( - - ))} + {recentSearch.map((recent, index) => { + return ; + })} ), + onClear: () => dispatch(clearRecentSearchedPools()), }, - { title: 'Trending Pools', children: ( {trendingPools.map((pool, index) => ( - + ))} ), @@ -84,11 +86,37 @@ const SearchUI = () => { setSearchText(value); }; + const EmptyState = () => ( + + + Can’t find this pool + + We can’t find that pool, make sure it’s not a typo or you can explore other pools on Liquid + + + ); + + const Loader = () => + emptysearch.map((_, index) => ( + + + + + + + + + )); + return ( <> - {searchedPools.length == 0 && ( + {loading && } + + {searchedPools.length === 0 && searchText && !loading && } + + {searchedPools.length === 0 && !searchText && !loading && ( {sectionsToShow.map((section, index) => ( @@ -96,7 +124,7 @@ const SearchUI = () => { )} - {searchedPools.length > 0 && ( + {searchedPools.length > 0 && !loading && ( {sectionsToShow.map((section, index) => ( @@ -119,8 +147,48 @@ const styles = StyleSheet.create({ gap: 40, }, + emptyContainer: { + paddingHorizontal: 16, + paddingTop: 34, + alignItems: 'center', + gap: 10, + }, + + emptyTitle: { + textAlign: 'center', + color: '#334155', + fontSize: 17, + fontFamily: 'AeonikBold', + fontWeight: '700', + marginTop: 10, + }, + emptyDescription: { + textAlign: 'center', + color: '#64748B', + fontSize: 15, + fontFamily: 'AeonikRegular', + }, + mapContainer: { gap: 24, alignItems: 'stretch', }, + + // loader + loaderContainer: { + flex: 1, + flexDirection: 'row', + alignItems: 'center', + marginTop: 15, + marginBottom: 15, + paddingHorizontal: 16, + gap: 10, + }, + + loaderCenterContainer: { flex: 1, gap: 5 }, + + loaderOne: { height: 45, width: 45, borderRadius: 100 }, + loaderTwo: { height: 20, width: '40%', borderRadius: 6 }, + loaderThree: { height: 20, width: '50%', borderRadius: 6 }, + loaderFour: { height: 20, width: 56, borderRadius: 6 }, }); diff --git a/components/search-ui/recent-card.tsx b/components/search-ui/recent-card.tsx index 1aaf096..309d144 100644 --- a/components/search-ui/recent-card.tsx +++ b/components/search-ui/recent-card.tsx @@ -3,28 +3,28 @@ import { View, StyleSheet, Text, Image, TouchableOpacity } from 'react-native'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import useAppActions from '@/store/app/actions'; +import { IRecentCard } from './types'; +import LQDPoolImages from '../pool-images'; -const RecentCard = ({ id, primaryIconURL, primaryTitle, secondaryIconURL, secondaryTitle }: IRecentCard) => { +const RecentCard = ({ pool, navigationVariant = 'primary' }: IRecentCard) => { const { router, pathname } = useSystemFunctions(); const { searchIsFocused } = useAppActions(); const onPress = () => { searchIsFocused(false); - router.push(`/(tabs)/home/${id}`); + router.push(`/(tabs)/home/${pool.address}`); }; + const tokenAIconURL = pool.token0.logoUrl; + const tokenBIconURL = pool.token1.logoUrl; + const symbol = pool.symbol.split('-')[1].replace('/', ' / '); + return ( - {[primaryIconURL, secondaryIconURL].map((iconURL, index) => ( - - - - ))} + - - {primaryTitle} / {secondaryTitle} - + {symbol} ); }; @@ -44,6 +44,7 @@ const styles = StyleSheet.create({ borderWidth: 1, borderColor: '#EAEEF4', backgroundColor: '#fff', + marginBottom: 20, }, iconContainer: { diff --git a/components/search-ui/search-placeholder.tsx b/components/search-ui/search-placeholder.tsx index 6303ea9..92ddfea 100644 --- a/components/search-ui/search-placeholder.tsx +++ b/components/search-ui/search-placeholder.tsx @@ -5,7 +5,7 @@ import { adjustFontSizeForIOS } from '@/utils/helpers'; import { Platform, StyleSheet, Text, TouchableOpacity, View, StatusBar as RNStatusBar } from 'react-native'; import LQShrimeLoader from '../loader'; -const SearchPlaceholder = ({ loading }: { loading?: boolean }) => { +const SearchPlaceholder = () => { const { router } = useSystemFunctions(); const { searchIsFocused: focusSearch, showSearch } = useAppActions(); @@ -14,16 +14,6 @@ const SearchPlaceholder = ({ loading }: { loading?: boolean }) => { showSearch(true); }; - if (loading) { - return ( - - - - - - ); - } - return ( @@ -86,15 +76,4 @@ const styles = StyleSheet.create({ color: '#94A3B8', fontFamily: 'AeonikRegular', }, - searchLoader: { - flexDirection: 'row', - gap: 30, - alignItems: 'center', - backgroundColor: '#fff', - paddingHorizontal: 16, - paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, - paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, - }, - loaderOne: { height: 24, width: 24, borderRadius: 16 }, - loaderTwo: { height: 35, width: 50, borderRadius: 6, flex: 1 }, }); diff --git a/components/search-ui/types.ts b/components/search-ui/types.ts index a939164..143ab1d 100644 --- a/components/search-ui/types.ts +++ b/components/search-ui/types.ts @@ -1,6 +1,8 @@ +import { Pool } from '@/store/pools/types'; + type SectionQuery = 'vol' | 'fees' | 'tvl'; -interface ISearchSection { +export interface ISearchSection { title: string; children: React.ReactElement; onClear?: () => void; @@ -9,12 +11,9 @@ interface ISearchSection { index: number; } -interface IRecentCard { - id: string; - primaryIconURL: string; - secondaryIconURL: string; - primaryTitle: string; - secondaryTitle: string; +export interface IRecentCard { + pool: Pool; + navigationVariant?: 'primary' | 'secondary'; } interface IExploreCard { diff --git a/screens/home/index.tsx b/screens/home/index.tsx index 33792a0..47952ac 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -1,8 +1,8 @@ import { useEffect } from 'react'; -import { StyleSheet, View, Text, FlatList, TouchableOpacity, Platform, StatusBar as RNStatusBar } from 'react-native'; +import { StyleSheet, View, Text, FlatList, TouchableOpacity, Platform, StatusBar as RNStatusBar, ScrollView } from 'react-native'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { adjustFontSizeForIOS, formatAmountWithWholeAndDecimal } from '@/utils/helpers'; +import { adjustFontSizeForIOS, createArrayWithIndexes, formatAmountWithWholeAndDecimal } from '@/utils/helpers'; import { LQDButton, LQDPoolPairCard, LQDPoolPairPaper, LQDScrollView, LQShrimeLoader, SearchUI } from '@/components'; import { CaretRightIcon, DirectUpIcon, DollarSquareIcon, TrendUpIcon } from '@/assets/icons'; import { useAccountActions } from '@/store/account/actions'; @@ -10,6 +10,7 @@ import { usePoolActions } from '@/store/pools/actions'; import { useOnMount } from '@/hooks/useOnMount'; import Section from './section'; import SearchPlaceholder from '@/components/search-ui/search-placeholder'; +import Loader from './loader'; const Home = () => { const { router, poolsState, smartAccountState, accountState, appState } = useSystemFunctions(); @@ -28,8 +29,9 @@ const Home = () => { const top10TrendingPools = trendingPoolsArray?.slice(0, 10); const top10HotPools = hotPoolsArray.slice(0, 10) ?? []; const top7Gainers = top7GainersArray.slice(0, 7); - const globalLoading = loadingPools || loadingAccounts; + const emptyArryTopGainers = createArrayWithIndexes(3); + const emptyArryTrending = createArrayWithIndexes(5); const sections = [ { @@ -41,7 +43,7 @@ const Home = () => { } + renderItem={({ item }) => } keyExtractor={(_, index) => index.toString()} showsHorizontalScrollIndicator={false} contentContainerStyle={{ gap: 10 }} @@ -57,7 +59,7 @@ const Home = () => { children: ( {top10TrendingPools.map((pool, index) => ( - + ))} ), @@ -70,7 +72,7 @@ const Home = () => { children: ( {top10HotPools.map((pool, index) => ( - + ))} ), @@ -97,43 +99,37 @@ const Home = () => { ); } + if (globalLoading) return ; return ( <> - + getTokens(true)} style={styles.container}> - {!globalLoading && ( - - Total Balance - router.push('/(tabs)/holdings')} style={styles.balanceValueContainer}> - - ${whole}.{decimal} - - - - - - )} - {globalLoading && } - - {!globalLoading && ( - router.push('/deposit/debit')} - variant="tertiaryOutline" - icon="money" - iconColor="#334155" - style={{ alignSelf: 'stretch' }} - /> - )} - - {globalLoading && } + + Total Balance + router.push('/(tabs)/holdings')} style={styles.balanceValueContainer}> + + ${whole}.{decimal} + + + + + + + router.push('/deposit/debit')} + variant="tertiaryOutline" + icon="money" + iconColor="#334155" + style={{ alignSelf: 'stretch' }} + /> {sections.map((section, index) => ( -
+
))} @@ -210,7 +206,4 @@ const styles = StyleSheet.create({ paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, }, - - loaderButton: { height: 40, borderRadius: 16 }, - loaderBalance: { height: 98, borderRadius: 16 }, }); diff --git a/screens/home/loader.tsx b/screens/home/loader.tsx new file mode 100644 index 0000000..c6927fa --- /dev/null +++ b/screens/home/loader.tsx @@ -0,0 +1,102 @@ +import { View, Text, StyleSheet, Platform, StatusBar as RNStatusBar } from 'react-native'; +import React from 'react'; +import { LQShrimeLoader } from '@/components'; +import { createArrayWithIndexes } from '@/utils/helpers'; + +const Loader = () => { + const emptyArryTopGainers = createArrayWithIndexes(3); + const emptyArryTrending = createArrayWithIndexes(5); + return ( + + {/* search */} + + + + + + + {/* total balance */} + + + {/* button */} + + + {/* section */} + + + + + + {/* gainers */} + + {emptyArryTopGainers.map((_, index) => ( + + ))} + + + {/* section */} + + + + + + {/* trending */} + {emptyArryTrending.map((_, index) => ( + + + + + + + + + ))} + + ); +}; + +export default Loader; + +const styles = StyleSheet.create({ + loaderButton: { height: 40, borderRadius: 10, marginTop: 20 }, + loaderBalance: { height: 98, borderRadius: 10, marginTop: 30 }, + searchLoader: { + flexDirection: 'row', + gap: 30, + alignItems: 'center', + backgroundColor: '#fff', + paddingHorizontal: 16, + paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, + paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, + }, + loaderOne: { height: 24, width: 24, borderRadius: 16 }, + loaderTwo: { height: 35, width: 50, borderRadius: 6, flex: 1 }, + header: { + flexDirection: 'row', + alignSelf: 'stretch', + alignItems: 'center', + justifyContent: 'space-between', + }, + + sectionLoaderOne: { height: 20, width: '40%', borderRadius: 6 }, + sectionLoaderTwo: { height: 20, width: 56, borderRadius: 6 }, + gainerLoader: { height: 90, width: 140, borderRadius: 6, marginBottom: 20 }, + + // loader + loaderContainer: { + flexDirection: 'row', + alignItems: 'center', + gap: 10, + marginTop: 30, + }, + + loaderCenterContainer: { flex: 1, gap: 5 }, + + topGainerLoaderOne: { height: 45, width: 45, borderRadius: 100 }, + topGainerLoaderTwo: { height: 15, width: '40%', borderRadius: 6 }, + topGainerLoaderThree: { height: 15, width: '50%', borderRadius: 6 }, + topGainerLoaderFour: { height: 15, width: 56, borderRadius: 6 }, + gainerLoaderContainer: { flexDirection: 'row', gap: 20, marginTop: 20 }, + sectionContainer: { flexDirection: 'row', justifyContent: 'space-between', marginTop: 30 }, + loaderBody: { backgroundColor: '#fff', flex: 1, paddingHorizontal: 16 }, +}); diff --git a/screens/home/section.tsx b/screens/home/section.tsx index 09bdbd8..39698ff 100644 --- a/screens/home/section.tsx +++ b/screens/home/section.tsx @@ -2,29 +2,21 @@ import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import { CaretRightAltIcon } from '@/assets/icons'; -import { LQShrimeLoader } from '@/components'; -const Section = ({ children, icon, subtitle, title, action, isShowingAll, loading }: ISection) => { +const Section = ({ children, icon, subtitle, title, action, isShowingAll }: ISection) => { return ( - {!loading && ( - - {icon} - {title} - {subtitle} - - )} + + {icon} + {title} + {subtitle} + - {loading && } - {loading && } - - {!isShowingAll && !loading && ( - - See all - - - )} + + See all + + {children} @@ -81,9 +73,4 @@ const styles = StyleSheet.create({ lineHeight: 16.12, fontFamily: 'AeonikRegular', }, - - // loader - - loaderOne: { height: 16, width: '40%', borderRadius: 6 }, - loaderTwo: { height: 16, width: 56, borderRadius: 6 }, }); diff --git a/screens/home/types.ts b/screens/home/types.ts index 3f4792d..b00c434 100644 --- a/screens/home/types.ts +++ b/screens/home/types.ts @@ -5,5 +5,4 @@ interface ISection { icon: React.ReactElement; action?: () => void; isShowingAll?: boolean; - loading?: boolean; } diff --git a/store/index.ts b/store/index.ts index f561b20..48ba20d 100644 --- a/store/index.ts +++ b/store/index.ts @@ -25,7 +25,7 @@ const rootReducer = combineReducers({ const persistConfig = { key: 'root', storage: AsyncStorage, - whitelist: ['user', 'smartAccount'], + whitelist: ['user', 'smartAccount', 'pools'], }; const persistedReducer = persistReducer(persistConfig, rootReducer); diff --git a/store/pools/actions.ts b/store/pools/actions.ts index aa4265f..d1e4bc0 100644 --- a/store/pools/actions.ts +++ b/store/pools/actions.ts @@ -11,6 +11,7 @@ import { } from '.'; import api from '@/init/api'; import { PoolType } from '@/init/types'; +import { Pool } from './types'; export function usePoolActions() { const { dispatch, poolsState } = useSystemFunctions(); diff --git a/store/pools/index.ts b/store/pools/index.ts index 8ebba18..9154401 100644 --- a/store/pools/index.ts +++ b/store/pools/index.ts @@ -13,6 +13,7 @@ export interface PoolsState { loadingPools: boolean; refreshingPools: boolean; searchingPools: boolean; + recentSearchedPools: Pool[]; } const initialState: PoolsState = { @@ -25,6 +26,7 @@ const initialState: PoolsState = { loadingPools: false, refreshingPools: false, searchingPools: false, + recentSearchedPools: [], }; export const poolReducer = createSlice({ @@ -86,6 +88,22 @@ export const poolReducer = createSlice({ state.searchedPools = { ...defaultPoolResponse }; } }, + + setRecentSearchedPool: (state, action: PayloadAction) => { + const newPool = action.payload; + + if (!state.recentSearchedPools.some((pool) => pool.address === newPool.address)) { + state.recentSearchedPools = [newPool, ...state.recentSearchedPools]; + + if (state.recentSearchedPools.length > 10) { + state.recentSearchedPools.pop(); + } + } + }, + + clearRecentSearchedPools: (state) => { + state.recentSearchedPools = []; + }, }, }); @@ -99,6 +117,8 @@ export const { setSelectedPool, setSearchingPools, setSearchedPools, + setRecentSearchedPool, + clearRecentSearchedPools, } = poolReducer.actions; export default poolReducer.reducer; diff --git a/utils/helpers.ts b/utils/helpers.ts index 3e36fa7..ecd3ed1 100644 --- a/utils/helpers.ts +++ b/utils/helpers.ts @@ -149,6 +149,10 @@ export const formatSymbol = (symbol: string, showFullSymbol?: boolean) => { return symbol; }; +const createArrayWithIndexes = (length: number): number[] => { + return Array.from({ length }, (_, index) => index); +}; + export { formatNumberWithSuffix, truncateDecimal, @@ -166,4 +170,5 @@ export { roundUp, formatInputAmount, formatSymbol, + createArrayWithIndexes, }; From f817cf6b15cfce0b291fe446452d3def0628b0a4 Mon Sep 17 00:00:00 2001 From: Justice Eziefule Date: Sat, 23 Nov 2024 03:37:15 +0100 Subject: [PATCH 67/95] ui cleanup (#80) - update images to use fastimage api - update splash screen to home screen to be smoother --- app/index.tsx | 18 +++++--- components/pool-images/index.tsx | 11 +++-- components/pool-images/token-image.tsx | 13 +++++- components/scrollview/index.tsx | 11 +++-- components/scrollview/types.ts | 1 + package.json | 3 +- screens/holdings/pools/card.tsx | 12 +++++- screens/home/hot/index.tsx | 8 +++- screens/home/index.tsx | 14 +++++- screens/home/topGainers/index.tsx | 8 +++- screens/home/trending/index.tsx | 8 +++- .../add/coin-selector-input.tsx | 9 +++- screens/liquidity-management/index.tsx | 9 +++- screens/pool-detail/balance.tsx | 9 +++- screens/pool-detail/header.tsx | 9 +++- screens/pool-detail/pool-liquidity.tsx | 12 +++++- screens/withdraw/index.tsx | 43 +++++++++++-------- yarn.lock | 36 ++++++++++++++-- 18 files changed, 180 insertions(+), 54 deletions(-) diff --git a/app/index.tsx b/app/index.tsx index 3763a24..af810fe 100644 --- a/app/index.tsx +++ b/app/index.tsx @@ -9,16 +9,22 @@ if (__DEV__) { require('@/init/reactotron'); } -import { Redirect } from 'expo-router'; +import FastImage from 'react-native-fast-image'; import { useAuth } from '@/providers/AuthProvider'; -import Step1 from './(onboarding)/step1'; +import { useEffect } from 'react'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; export default function AuthGate() { + const { router } = useSystemFunctions(); const { isLoading, session } = useAuth(); - if (isLoading) { - return ; - } + useEffect(() => { + if (!isLoading) { + const target = session ? '/(tabs)/home' : '/(onboarding)/step1'; - return session ? : ; + router.replace(target); + } + }, [isLoading, session]); + + return ; } diff --git a/components/pool-images/index.tsx b/components/pool-images/index.tsx index 75efaea..9815bb7 100644 --- a/components/pool-images/index.tsx +++ b/components/pool-images/index.tsx @@ -1,4 +1,5 @@ -import { Image, StyleSheet, View } from 'react-native'; +import { StyleSheet, View } from 'react-native'; +import FastImage from 'react-native-fast-image'; import { useState } from 'react'; const defaultAIconUrl = 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png'; @@ -16,9 +17,13 @@ const LQDPoolImages = ({ tokenAIconURL, tokenBIconURL }: PoolImages) => { {[iconA, iconB].map((iconURL, index) => ( - (index === 0 ? setTokenAIconError(true) : setTokenBIconError(true))} /> diff --git a/components/pool-images/token-image.tsx b/components/pool-images/token-image.tsx index cd34621..489132d 100644 --- a/components/pool-images/token-image.tsx +++ b/components/pool-images/token-image.tsx @@ -1,4 +1,5 @@ -import { Image, StyleSheet, View } from 'react-native'; +import { StyleSheet, View } from 'react-native'; +import FastImage from 'react-native-fast-image'; import { useState } from 'react'; const defaultIconUrl = 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png'; @@ -10,7 +11,15 @@ const LQDTokenImage = ({ iconURL }: TokenImage) => { return ( - setIconError(true)} /> + setIconError(true)} + /> ); }; diff --git a/components/scrollview/index.tsx b/components/scrollview/index.tsx index 3979117..1f66eca 100644 --- a/components/scrollview/index.tsx +++ b/components/scrollview/index.tsx @@ -2,7 +2,7 @@ import React from 'react'; import { RefreshControl, ScrollView } from 'react-native'; import { ILQDScrollView } from './types'; -const LQDScrollView: React.FC = ({ children, onRefresh, refreshing, style }) => { +const LQDScrollView: React.FC = ({ children, onRefresh, refreshing, style, contentStyle }) => { return ( = ({ children, onRefresh, refreshi } style={[style, { flex: 1 }]} showsVerticalScrollIndicator={false} - contentContainerStyle={{ - rowGap: 24, - }} + contentContainerStyle={[ + { + rowGap: 24, + }, + contentStyle, + ]} > {children} diff --git a/components/scrollview/types.ts b/components/scrollview/types.ts index 59bfab5..0837370 100644 --- a/components/scrollview/types.ts +++ b/components/scrollview/types.ts @@ -5,6 +5,7 @@ interface ILQDScrollView { refreshing: boolean; onRefresh: () => void; style?: StyleProp; + contentStyle?: StyleProp; } export type { ILQDScrollView }; diff --git a/package.json b/package.json index 3a9c60f..b779e34 100644 --- a/package.json +++ b/package.json @@ -59,6 +59,7 @@ "react-dom": "18.2.0", "react-hook-form": "^7.53.0", "react-native": "0.74.5", + "react-native-fast-image": "^8.6.3", "react-native-gesture-handler": "~2.16.1", "react-native-get-random-values": "^1.11.0", "react-native-image-colors": "^2.4.0", @@ -94,4 +95,4 @@ "reactotron-react-native": "^5.1.9", "typescript": "~5.3.3" } -} \ No newline at end of file +} diff --git a/screens/holdings/pools/card.tsx b/screens/holdings/pools/card.tsx index 9868980..3b92005 100644 --- a/screens/holdings/pools/card.tsx +++ b/screens/holdings/pools/card.tsx @@ -1,4 +1,5 @@ -import { View, Text, StyleSheet, Image, Pressable } from 'react-native'; +import { View, Text, StyleSheet, Pressable } from 'react-native'; +import FastImage from 'react-native-fast-image'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { adjustFontSizeForIOS } from '@/utils/helpers'; @@ -33,7 +34,14 @@ const PoolCard = ({ {[primaryIconURL, secondaryIconURL].map((iconURL, index) => ( - + ))} diff --git a/screens/home/hot/index.tsx b/screens/home/hot/index.tsx index 7044479..040a5f9 100644 --- a/screens/home/hot/index.tsx +++ b/screens/home/hot/index.tsx @@ -19,7 +19,7 @@ const Hot = () => { data={hotPools.data} renderItem={({ item }) => } keyExtractor={(_, index) => index.toString()} - contentContainerStyle={{ gap: 24 }} + contentContainerStyle={styles.content} onEndReached={() => getPaginatedHotPools()} onEndReachedThreshold={0.1} refreshing={refreshingPools} @@ -43,4 +43,10 @@ const styles = StyleSheet.create({ backgroundColor: '#fff', gap: 46, }, + + content: { + gap: 24, + flexGrow: 1, + paddingBottom: 170, + }, }); diff --git a/screens/home/index.tsx b/screens/home/index.tsx index 47952ac..1c5d363 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -105,7 +105,12 @@ const Home = () => { <> - getTokens(true)} style={styles.container}> + getTokens(true)} + style={styles.container} + contentStyle={styles.contentContainer} + > Total Balance @@ -140,12 +145,17 @@ export default Home; const styles = StyleSheet.create({ container: { - flex: 1, paddingTop: 34, paddingHorizontal: 16, backgroundColor: '#fff', }, + contentContainer: { + flexGrow: 1, + justifyContent: 'space-between', + paddingBottom: 150, + }, + balanceAndActionContainer: { alignSelf: 'stretch', gap: 24, diff --git a/screens/home/topGainers/index.tsx b/screens/home/topGainers/index.tsx index 56887bf..aaee8ad 100644 --- a/screens/home/topGainers/index.tsx +++ b/screens/home/topGainers/index.tsx @@ -19,7 +19,7 @@ const TopGainers = () => { data={topGainers.data} renderItem={({ item }) => } keyExtractor={(_, index) => index.toString()} - contentContainerStyle={{ gap: 24 }} + contentContainerStyle={styles.content} onEndReached={() => getPaginatedTopGainers()} onEndReachedThreshold={0.1} refreshing={refreshingPools} @@ -43,4 +43,10 @@ const styles = StyleSheet.create({ backgroundColor: '#fff', gap: 46, }, + + content: { + gap: 24, + flexGrow: 1, + paddingBottom: 170, + }, }); diff --git a/screens/home/trending/index.tsx b/screens/home/trending/index.tsx index 0b08d7c..a5de963 100644 --- a/screens/home/trending/index.tsx +++ b/screens/home/trending/index.tsx @@ -19,7 +19,7 @@ const Trending = () => { data={trendingPools.data} renderItem={({ item }) => } keyExtractor={(_, index) => index.toString()} - contentContainerStyle={{ gap: 24 }} + contentContainerStyle={styles.content} onEndReached={() => { getPaginatedTrendingPools(); }} @@ -45,4 +45,10 @@ const styles = StyleSheet.create({ backgroundColor: '#fff', gap: 46, }, + + content: { + gap: 24, + flexGrow: 1, + paddingBottom: 170, + }, }); diff --git a/screens/liquidity-actions/add/coin-selector-input.tsx b/screens/liquidity-actions/add/coin-selector-input.tsx index 768e9ce..ef33c30 100644 --- a/screens/liquidity-actions/add/coin-selector-input.tsx +++ b/screens/liquidity-actions/add/coin-selector-input.tsx @@ -1,5 +1,6 @@ import { useEffect, useState } from 'react'; -import { View, Text, Image, TextInput, TouchableOpacity } from 'react-native'; +import { View, Text, TextInput, TouchableOpacity } from 'react-native'; +import FastImage from 'react-native-fast-image'; import { formatAmount, removeCommasFromNumber } from '@/utils/helpers'; import { LQDAssetSelection } from '@/components'; @@ -47,7 +48,11 @@ const CoinSelectorInput = ({ onChange, selectedToken, value, disabled, address } setShowBottomSheet(true)}> - + {token?.symbol} diff --git a/screens/liquidity-management/index.tsx b/screens/liquidity-management/index.tsx index 12bb215..0a12a70 100644 --- a/screens/liquidity-management/index.tsx +++ b/screens/liquidity-management/index.tsx @@ -1,5 +1,6 @@ import { useEffect, useState } from 'react'; -import { View, Text, TextInput, TouchableOpacity, ScrollView, Image } from 'react-native'; +import { View, Text, TextInput, TouchableOpacity, ScrollView } from 'react-native'; +import FastImage from 'react-native-fast-image'; import { LQDButton } from '@/components'; import { removeCommasFromNumber } from '@/utils/helpers'; @@ -121,7 +122,11 @@ const LiquidityManagement = ({ id, type }: ILiquidityManagement) => { {[pairDetails?.tokenAIconURL, pairDetails?.tokenBIconURL]?.map((iconURL, index) => ( - + ))} diff --git a/screens/pool-detail/balance.tsx b/screens/pool-detail/balance.tsx index 0e069e6..96c0bad 100644 --- a/screens/pool-detail/balance.tsx +++ b/screens/pool-detail/balance.tsx @@ -1,4 +1,5 @@ -import { View, StyleSheet, Text, Image } from 'react-native'; +import { View, StyleSheet, Text } from 'react-native'; +import FastImage from 'react-native-fast-image'; import { adjustFontSizeForIOS } from '@/utils/helpers'; @@ -22,7 +23,11 @@ const Balance = ({ tokenABalance, tokenAIconURL, tokenATitle, tokenBBalance, tok {values.map(({ iconURL, title }, index) => ( - + {title} diff --git a/screens/pool-detail/header.tsx b/screens/pool-detail/header.tsx index 965b304..dea0ba6 100644 --- a/screens/pool-detail/header.tsx +++ b/screens/pool-detail/header.tsx @@ -1,4 +1,5 @@ -import { View, Text, StyleSheet, Image, TouchableOpacity } from 'react-native'; +import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; +import FastImage from 'react-native-fast-image'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import { BoxSearchIcon, SendIcon } from '@/assets/icons'; @@ -26,7 +27,11 @@ const Header = ({ condition, poolFee, tokenAIconURL, symbol, tokenBIconURL }: Po {[tokenAIconURL, tokenBIconURL].map((iconURL, index) => ( - + ))} diff --git a/screens/pool-detail/pool-liquidity.tsx b/screens/pool-detail/pool-liquidity.tsx index 7ceea20..f249e8e 100644 --- a/screens/pool-detail/pool-liquidity.tsx +++ b/screens/pool-detail/pool-liquidity.tsx @@ -1,5 +1,6 @@ import React, { useEffect, useState } from 'react'; -import { View, Text, StyleSheet, Image } from 'react-native'; +import { View, Text, StyleSheet } from 'react-native'; +import FastImage from 'react-native-fast-image'; import Animated, { useAnimatedStyle, withTiming } from 'react-native-reanimated'; import ImageColors from 'react-native-image-colors'; @@ -71,7 +72,14 @@ const PoolLiquidity = ({ {values.map(({ iconURL, tokenBalance, tokenUSDValue, title }, index) => ( - + diff --git a/screens/withdraw/index.tsx b/screens/withdraw/index.tsx index b9091a9..e1cfe58 100644 --- a/screens/withdraw/index.tsx +++ b/screens/withdraw/index.tsx @@ -1,12 +1,13 @@ import { useEffect, useState } from 'react'; -import { View, Text, TouchableOpacity, TextInput, Platform, Image } from 'react-native'; +import { View, Text, TouchableOpacity, TextInput, Platform } from 'react-native'; +import FastImage from 'react-native-fast-image'; import { LQDAssetSelection, LQDButton, LQDNumericKeyboard } from '@/components'; -import { formatWithThousandSeparator, removeCommasFromNumber } from '@/utils/helpers'; +import { formatAmount, formatWithThousandSeparator, removeCommasFromNumber } from '@/utils/helpers'; import { CaretDownIcon } from '@/assets/icons'; +import { TokenItem } from '@/store/account/types'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; import styles from './styles'; -import { assets, defaultAsset } from './dummy'; -import { IAsset } from './types'; const getMaxWidth = (amount: string) => { const baseWidth = 27; @@ -27,8 +28,9 @@ const getMaxWidth = (amount: string) => { }; const Withdraw = () => { + const { accountState } = useSystemFunctions(); const [amount, setAmount] = useState(''); - const [asset, setAsset] = useState(); + const [asset, setAsset] = useState(); const [showCursor, setShowCursor] = useState(true); const [showBottomSheet, setShowBottomSheet] = useState(false); @@ -39,7 +41,7 @@ const Withdraw = () => { { text: '$500', action: () => setAmount('500') }, ]; - const disableButton = !parseFloat(removeCommasFromNumber(amount)) || parseFloat(removeCommasFromNumber(amount)) > asset?.balance!; + const disableButton = !parseFloat(removeCommasFromNumber(amount)) || parseFloat(removeCommasFromNumber(amount)) > Number(asset?.balance)!; const handleAmountChange = (key: string) => { if (key === '⌫') { @@ -56,15 +58,20 @@ const Withdraw = () => { console.log('submit', { amount: amountNumber }); }; + useEffect(() => { + if (!accountState.tokens?.data) return; + + setAsset(accountState.tokens?.data[0]); + }, [accountState.tokens]); + useEffect(() => { const cursorInterval = setInterval(() => { setShowCursor((prev) => !prev); }, 500); + return () => clearInterval(cursorInterval); }, []); - useEffect(() => setAsset(defaultAsset), []); - return ( <> @@ -73,7 +80,7 @@ const Withdraw = () => { - Bal: ${asset?.balance.toLocaleString()} {asset?.symbol} + Bal: ${formatAmount(asset?.balance).toLocaleString()} {asset?.symbol} @@ -96,7 +103,14 @@ const Withdraw = () => { setShowBottomSheet(true)}> - + {asset?.symbol} @@ -122,14 +136,7 @@ const Withdraw = () => { - setShowBottomSheet(false)} - assets={assets} - setAsset={setAsset} - show={showBottomSheet} - asset={asset!} - /> + setShowBottomSheet(false)} setAsset={setAsset} show={showBottomSheet} /> ); }; diff --git a/yarn.lock b/yarn.lock index a69f987..946aa4c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8124,6 +8124,11 @@ react-is@^17.0.1: resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== +react-native-fast-image@^8.6.3: + version "8.6.3" + resolved "https://registry.yarnpkg.com/react-native-fast-image/-/react-native-fast-image-8.6.3.tgz#6edc3f9190092a909d636d93eecbcc54a8822255" + integrity sha512-Sdw4ESidXCXOmQ9EcYguNY2swyoWmx53kym2zRsvi+VeFCHEdkO+WG1DK+6W81juot40bbfLNhkc63QnWtesNg== + react-native-flipper@^0.164.0: version "0.164.0" resolved "https://registry.yarnpkg.com/react-native-flipper/-/react-native-flipper-0.164.0.tgz#64f6269a86a13a72e30f53ba9f5281d2073a7697" @@ -9045,7 +9050,16 @@ string-length@^5.0.1: char-regex "^2.0.0" strip-ansi "^7.0.1" -"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0": + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -9105,7 +9119,7 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -9119,6 +9133,13 @@ strip-ansi@^5.0.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + strip-ansi@^7.0.1: version "7.1.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" @@ -10296,7 +10317,7 @@ wonka@^6.3.2: resolved "https://registry.yarnpkg.com/wonka/-/wonka-6.3.4.tgz#76eb9316e3d67d7febf4945202b5bdb2db534594" integrity sha512-CjpbqNtBGNAeyNS/9W6q3kSkKE52+FjIj7AkFlLr11s/VWGUu6a2CdYSdGxocIhIVjaW/zchesBQUKPVU69Cqg== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -10314,6 +10335,15 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" From 21ff770500220dddeb20d2ada7fc613bc0f0a873 Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Mon, 25 Nov 2024 06:48:11 +0100 Subject: [PATCH 68/95] fixed image and icon alignment on onboarding (#82) * fix: image and icon alignment on onboarding * fix: align icon to center --- components/onboarding/step/index.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/components/onboarding/step/index.tsx b/components/onboarding/step/index.tsx index d63f067..f51719d 100644 --- a/components/onboarding/step/index.tsx +++ b/components/onboarding/step/index.tsx @@ -20,13 +20,11 @@ const LQDOnboardingStep = ({ {subtitle} - - + - + - - + ); }; @@ -60,6 +58,6 @@ const styles = StyleSheet.create({ image: { position: 'absolute', - bottom: '27%', + bottom: '25%', }, }); From 17ebd82dfc567186b797316a0efb67b481fb6c78 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Mon, 25 Nov 2024 15:54:22 +0100 Subject: [PATCH 69/95] refactor chart - update Pool response type to have historicalVolumeUSD - use historicalVolumeUSD to populate the chart - update the chart implementation --- components/bar-chart/index.tsx | 18 ++---- components/bar-chart/types.ts | 2 + components/enter-email/index.tsx | 10 +-- components/verify-email/index.tsx | 6 +- screens/pool-detail/chart/dummy.ts | 84 ++++++++++---------------- screens/pool-detail/chart/index.tsx | 59 ++++-------------- screens/pool-detail/pool-liquidity.tsx | 22 ++++--- store/pools/types.ts | 6 ++ 8 files changed, 79 insertions(+), 128 deletions(-) diff --git a/components/bar-chart/index.tsx b/components/bar-chart/index.tsx index 86614c6..4f07b6e 100644 --- a/components/bar-chart/index.tsx +++ b/components/bar-chart/index.tsx @@ -1,27 +1,17 @@ import { View, StyleSheet } from 'react-native'; import { VictoryBar, VictoryChart, VictoryAxis, VictoryTheme } from 'victory-native'; -import moment from 'moment'; import { adjustFontSizeForIOS, formatNumberWithSuffix } from '@/utils/helpers'; -const LQDBarChart = ({ data, period }: ILQDBarChart) => { +const LQDBarChart = ({ data }: ILQDBarChart) => { const getXAxisLabels = () => { - const formatMap: Record = { - '1y': 'MMM', - '1m': 'MMM DD', - '1w': 'ddd', - '1d': 'HH:mm', - }; - - const format = formatMap[period]; - - return data.map((d) => moment(d.date).format(format)); + return data.map((d) => d.dateFormat); }; return ( { fontFamily: 'AeonikRegular', fill: '#475569', textAnchor: 'middle', - angle: period === '1d' || period === '1y' ? -45 : 0, + // angle: period === '1d' || period === '1y' ? -45 : 0, }, }} /> diff --git a/components/bar-chart/types.ts b/components/bar-chart/types.ts index 6ed1bbe..056ac76 100644 --- a/components/bar-chart/types.ts +++ b/components/bar-chart/types.ts @@ -1,6 +1,8 @@ type BarData = { date: string; + dateFormat: string; value: number; + type: 'm5' | 'h1' | 'h6' | 'h24'; }; interface ILQDBarChart { diff --git a/components/enter-email/index.tsx b/components/enter-email/index.tsx index 45d7120..3f9f1bb 100644 --- a/components/enter-email/index.tsx +++ b/components/enter-email/index.tsx @@ -24,7 +24,7 @@ const EnterEmail = ({ isSignup }: Props) => { const [loading, setLoading] = useState(false); const [emailError, setEmailError] = useState(false); - const isValid = emailIsValid(email) && !emailError; + const isValid = emailIsValid(email) && !emailError && !loading; const handleTagChange = (value: string) => { if (emailError) setEmailError(false); @@ -63,12 +63,12 @@ const EnterEmail = ({ isSignup }: Props) => { setLoading(true); if (isSignup) { - return handleRegistration(); + await handleRegistration(); + } else { + await handleLogin(); } - - return handleLogin(); } catch (error) { - setEmailError(true); + Alert.alert('An error occurred. Please check your email and try again.'); } finally { setLoading(false); } diff --git a/components/verify-email/index.tsx b/components/verify-email/index.tsx index bde57c2..f4ceb5e 100644 --- a/components/verify-email/index.tsx +++ b/components/verify-email/index.tsx @@ -39,7 +39,7 @@ const VerifyEmail = ({ email, isSignup }: { email: string; isSignup?: boolean }) const [countdownTimer, setCountdownTimer] = useState(30); const [resendDisabled, setResendDisabled] = useState(true); - const disableButton = !otp || otp.length < 6; + const disableButton = !otp || otp.length < 6 || loading; const onSubmit = async () => { try { @@ -47,7 +47,9 @@ const VerifyEmail = ({ email, isSignup }: { email: string; isSignup?: boolean }) await loginWithCode({ code: otp, email: email as string }); } catch (error) { - setError(true); + // + } finally { + setLoading(false); } }; diff --git a/screens/pool-detail/chart/dummy.ts b/screens/pool-detail/chart/dummy.ts index f2e983e..733a89b 100644 --- a/screens/pool-detail/chart/dummy.ts +++ b/screens/pool-detail/chart/dummy.ts @@ -1,64 +1,42 @@ -const metrics: Array = ['tvl', 'volume', 'fees']; -const periods: Array = [ - { text: 'past day', value: '1d' }, - { text: 'past week', value: '1w' }, - { text: 'past month', value: '1m' }, - { text: 'past year', value: '1y' }, -]; +import { Pool } from '@/store/pools/types'; -const generateData = (period: PeriodValue): Array => { - const data: BarData[] = []; - const today = new Date(); - let value = 1_200_000; - let startTime: Date; - let interval: number; - let totalIntervals: number; +type HistoricalData = 'm5' | 'h1' | 'h6' | 'h24'; - const varianceMap: Record = { - '1d': 100_000, - '1w': 200_000, - '1m': 500_000, - '1y': 1_000_000, - }; +const generateData = (selectedPool?: Pool): Array => { + if (!selectedPool?.historicalVolumeUSD) return []; - const variance = varianceMap[period]; + const data: BarData[] = []; + const historicalData = selectedPool?.historicalVolumeUSD; - switch (period) { - case '1d': - startTime = new Date(today.getTime() - 24 * 60 * 60 * 1000); - interval = 60 * 60 * 1000; - totalIntervals = 10; - break; - case '1w': - startTime = new Date(today.getTime() - 7 * 24 * 60 * 60 * 1000); - interval = 24 * 60 * 60 * 1000; - totalIntervals = 7; - break; - case '1m': - startTime = new Date(today.getTime() - 30 * 24 * 60 * 60 * 1000); - interval = 7 * 24 * 60 * 60 * 1000; - totalIntervals = 5; - break; - case '1y': - startTime = new Date(today.getTime() - 365 * 24 * 60 * 60 * 1000); - interval = 30 * 24 * 60 * 60 * 1000; - totalIntervals = 12; - break; - default: - throw new Error("Invalid period. Choose from '1d', '1w', '1m', or '1y'"); - } + const now = new Date(); + + // Time intervals in milliseconds + const intervals = { + m5: 5 * 60 * 1000, // 5 minutes + h1: 1 * 60 * 60 * 1000, // 1 hour + h6: 6 * 60 * 60 * 1000, // 6 hours + h24: 24 * 60 * 60 * 1000, // 24 hours + }; - for (let i = 0; i <= totalIntervals; i++) { - const date = new Date(startTime.getTime() + i * interval); - value += Math.random() * variance - variance / 2; + Object.keys(historicalData).forEach((key) => { + const value = historicalData[key as HistoricalData]; + const date = new Date(now.getTime() - intervals[key as HistoricalData]); + let dateFormat = ''; - // Ensure value is never negative - value = Math.max(value, 0); + if (key === 'm5') { + dateFormat = '5mins'; + } else if (key === 'h1') { + dateFormat = '1hr'; + } else if (key === 'h6') { + dateFormat = '6hrs'; + } else if (key === 'h24') { + dateFormat = '24hrs'; + } - data.push({ date: date.toISOString(), value: Math.round(value) }); - } + data.push({ date: date.toISOString(), value: Math.round(value), type: key as HistoricalData, dateFormat }); + }); return data; }; -export { metrics, periods, generateData }; +export { generateData, HistoricalData }; diff --git a/screens/pool-detail/chart/index.tsx b/screens/pool-detail/chart/index.tsx index 50cacd2..a5e445c 100644 --- a/screens/pool-detail/chart/index.tsx +++ b/screens/pool-detail/chart/index.tsx @@ -3,24 +3,21 @@ import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; import { adjustFontSizeForIOS, formatNumberWithSuffix } from '@/utils/helpers'; import { LQDBarChart } from '@/components'; -import { generateData, metrics, periods } from './dummy'; +import { generateData } from './dummy'; import { ArrowDownIcon } from '@/assets/icons'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; const adjustmentColors = ['#FF8896', '#88FF9C']; const Chart = () => { - const [metric, setMetric] = useState('tvl'); - const [period, setPeriod] = useState({ - text: 'past month', - value: '1m', - }); - const [data, setData] = useState(generateData(period.value)); + const { poolsState } = useSystemFunctions(); + const { selectedPool } = poolsState; - const value = 13_400_000; - const increased = false; - const change = 4.45; + const [data, setData] = useState(generateData(selectedPool)); - useEffect(() => setData(generateData(period.value)), [period.value]); + const value = selectedPool?.tvl || 0; + + useEffect(() => setData(generateData(selectedPool)), [selectedPool]); return ( @@ -29,46 +26,15 @@ const Chart = () => { ${formatNumberWithSuffix(value)} - - - - - - - {change.toFixed(2)}% - - - {period.text} - - - - {metrics.map((m, index) => { - const active = metric === m; - - return ( - setMetric(m)}> - - {m} - - - ); - })} + TVL - + - {periods.map(({ text, value }, index) => { - const active = period.value === value; - - return ( - setPeriod({ text, value })}> - {value} - - ); - })} + VOLUME ); @@ -80,7 +46,7 @@ const styles = StyleSheet.create({ root: { alignSelf: 'stretch', alignItems: 'center', - gap: 20, + gap: 16, }, container: { @@ -122,7 +88,6 @@ const styles = StyleSheet.create({ periodText: { color: '#64748B', - textTransform: 'capitalize', }, metrics: { diff --git a/screens/pool-detail/pool-liquidity.tsx b/screens/pool-detail/pool-liquidity.tsx index f249e8e..aee43f5 100644 --- a/screens/pool-detail/pool-liquidity.tsx +++ b/screens/pool-detail/pool-liquidity.tsx @@ -82,12 +82,15 @@ const PoolLiquidity = ({ /> - - - {tokenBalance} - {title} - - {`($${tokenUSDValue})`} + + + + {tokenBalance} + {title} + + + + {`$${tokenUSDValue}`} ))} @@ -131,7 +134,11 @@ const styles = StyleSheet.create({ value: { flexDirection: 'row', - alignItems: 'center', + gap: 6, + }, + + innerValue: { + alignItems: 'flex-start', gap: 4, }, @@ -143,6 +150,7 @@ const styles = StyleSheet.create({ borderRadius: 9999, borderWidth: 0.75, borderColor: '#EAEEF4', + paddingTop: 5, }, textContainer: { diff --git a/store/pools/types.ts b/store/pools/types.ts index 0a56e35..13eec23 100644 --- a/store/pools/types.ts +++ b/store/pools/types.ts @@ -48,4 +48,10 @@ export type Pool = { reserveUSD: number; volume: string; }; + historicalVolumeUSD: { + m5: number; + h1: number; + h6: number; + h24: number; + }; }; From 0a5c96f8caf20d786b954d25dde1b7596eabafa5 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Mon, 25 Nov 2024 15:54:52 +0100 Subject: [PATCH 70/95] clean up --- screens/pool-detail/chart/dummy.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/screens/pool-detail/chart/dummy.ts b/screens/pool-detail/chart/dummy.ts index 733a89b..e1d077a 100644 --- a/screens/pool-detail/chart/dummy.ts +++ b/screens/pool-detail/chart/dummy.ts @@ -10,7 +10,6 @@ const generateData = (selectedPool?: Pool): Array => { const now = new Date(); - // Time intervals in milliseconds const intervals = { m5: 5 * 60 * 1000, // 5 minutes h1: 1 * 60 * 60 * 1000, // 1 hour From 5ca28b31a226c6a92b95adbcdb69ef68a9331bd1 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Mon, 25 Nov 2024 16:03:52 +0100 Subject: [PATCH 71/95] make bars bigger --- components/bar-chart/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/bar-chart/index.tsx b/components/bar-chart/index.tsx index 4f07b6e..1c2ba7a 100644 --- a/components/bar-chart/index.tsx +++ b/components/bar-chart/index.tsx @@ -66,7 +66,7 @@ const LQDBarChart = ({ data }: ILQDBarChart) => { data={data} x="date" y="value" - barWidth={16} + barWidth={40} style={{ data: { fill: '#898B82', From 8209880cf7cbaa5439f81566925a5ba30430e15e Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Mon, 25 Nov 2024 21:08:10 +0100 Subject: [PATCH 72/95] fix button loading issue --- components/verify-email/index.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/verify-email/index.tsx b/components/verify-email/index.tsx index f4ceb5e..7acd652 100644 --- a/components/verify-email/index.tsx +++ b/components/verify-email/index.tsx @@ -47,7 +47,7 @@ const VerifyEmail = ({ email, isSignup }: { email: string; isSignup?: boolean }) await loginWithCode({ code: otp, email: email as string }); } catch (error) { - // + setLoading(false); } finally { setLoading(false); } @@ -61,6 +61,8 @@ const VerifyEmail = ({ email, isSignup }: { email: string; isSignup?: boolean }) } catch (error) { Alert.alert('An error occurred. Please check your email and try again.'); setResendDisabled(false); + } finally { + setResendDisabled(false); } }; From b47e5afc918125ee77ffbd83e7969e4ff1eb6b34 Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Mon, 25 Nov 2024 21:09:18 +0100 Subject: [PATCH 73/95] fix: convert non-strings to strings (#84) --- utils/helpers.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/utils/helpers.ts b/utils/helpers.ts index ecd3ed1..1e90347 100644 --- a/utils/helpers.ts +++ b/utils/helpers.ts @@ -53,6 +53,9 @@ const formatAmountWithWholeAndDecimal = (amount?: number | string, decimals = 4) }; function removeCommasFromNumber(text: string): string { + if (typeof text !== 'string') { + text = String(text); + } return text.replace(/,/g, ''); } From 42890fd7a3dae4e38cc5fc24bf256f222bf338a7 Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Tue, 26 Nov 2024 20:41:26 +0100 Subject: [PATCH 74/95] fix: no result component for no result search (#86) * fix: not result component for no result search * fix: search text check --- components/asset-selection/index.tsx | 7 +++++ components/index.ts | 2 ++ components/no-result/index.tsx | 40 ++++++++++++++++++++++++++++ components/no-result/types.ts | 8 ++++++ components/search-ui/index.tsx | 40 +++++----------------------- 5 files changed, 64 insertions(+), 33 deletions(-) create mode 100644 components/no-result/index.tsx create mode 100644 components/no-result/types.ts diff --git a/components/asset-selection/index.tsx b/components/asset-selection/index.tsx index 8c34636..ae63660 100644 --- a/components/asset-selection/index.tsx +++ b/components/asset-selection/index.tsx @@ -10,6 +10,7 @@ import useSystemFunctions from '@/hooks/useSystemFunctions'; import { AssetSelection } from './types'; import { TokenItem } from '@/store/account/types'; import LQDTokenImage from '../pool-images/token-image'; +import LQNoResult from '../no-result'; const LQDAssetSelection = ({ close, setAsset, show, title, selectedAsset }: AssetSelection) => { const { accountState } = useSystemFunctions(); @@ -49,6 +50,12 @@ const LQDAssetSelection = ({ close, setAsset, show, title, selectedAsset }: Asse /> + {searchedAssets.length === 0 && searchValue && ( + + )} {searchedAssets.map((_asset, index) => { const active = selectedAsset?.address === _asset?.address; diff --git a/components/index.ts b/components/index.ts index a6672c4..5da8031 100644 --- a/components/index.ts +++ b/components/index.ts @@ -18,6 +18,7 @@ import SearchUI from './search-ui'; import LQDPoolImages from './pool-images'; import LQDTokenImage from './pool-images/token-image'; import LQShrimeLoader from './loader'; +import LQNoResult from './no-result'; export { LQDButton, @@ -25,6 +26,7 @@ export { LQDNavigation, LQDInput, LQDSearch, + LQNoResult, LQDScrollView, LQDStackHeader, LQDPoolPairCard, diff --git a/components/no-result/index.tsx b/components/no-result/index.tsx new file mode 100644 index 0000000..881b4d4 --- /dev/null +++ b/components/no-result/index.tsx @@ -0,0 +1,40 @@ +import { View, Text, StyleSheet } from 'react-native'; +import React from 'react'; +import { SearchEmptyStateIcon } from '@/assets/icons'; +import { ILQNoResult } from './types'; + +const LQNoResult = ({ title, description }: ILQNoResult) => { + return ( + + + {title} + {description} + + ); +}; + +export default LQNoResult; + +const styles = StyleSheet.create({ + emptyContainer: { + paddingHorizontal: 16, + paddingTop: 34, + alignItems: 'center', + gap: 10, + }, + + emptyTitle: { + textAlign: 'center', + color: '#334155', + fontSize: 17, + fontFamily: 'AeonikBold', + fontWeight: '700', + marginTop: 10, + }, + emptyDescription: { + textAlign: 'center', + color: '#64748B', + fontSize: 15, + fontFamily: 'AeonikRegular', + }, +}); diff --git a/components/no-result/types.ts b/components/no-result/types.ts new file mode 100644 index 0000000..b6a5894 --- /dev/null +++ b/components/no-result/types.ts @@ -0,0 +1,8 @@ +import { StyleProp, ViewStyle } from 'react-native'; + +interface ILQNoResult { + title: string; + description: string; +} + +export type { ILQNoResult }; diff --git a/components/search-ui/index.tsx b/components/search-ui/index.tsx index 85b4897..61d806a 100644 --- a/components/search-ui/index.tsx +++ b/components/search-ui/index.tsx @@ -12,6 +12,7 @@ import { ISearchSection } from './types'; import LQShrimeLoader from '../loader'; import { createArrayWithIndexes } from '@/utils/helpers'; import { clearRecentSearchedPools } from '@/store/pools'; +import LQNoResult from '../no-result'; const SearchUI = () => { const { router, poolsState, dispatch } = useSystemFunctions(); @@ -86,16 +87,6 @@ const SearchUI = () => { setSearchText(value); }; - const EmptyState = () => ( - - - Can’t find this pool - - We can’t find that pool, make sure it’s not a typo or you can explore other pools on Liquid - - - ); - const Loader = () => emptysearch.map((_, index) => ( @@ -114,7 +105,12 @@ const SearchUI = () => { {loading && } - {searchedPools.length === 0 && searchText && !loading && } + {searchedPools.length === 0 && searchText && !loading && ( + + )} {searchedPools.length === 0 && !searchText && !loading && ( @@ -147,28 +143,6 @@ const styles = StyleSheet.create({ gap: 40, }, - emptyContainer: { - paddingHorizontal: 16, - paddingTop: 34, - alignItems: 'center', - gap: 10, - }, - - emptyTitle: { - textAlign: 'center', - color: '#334155', - fontSize: 17, - fontFamily: 'AeonikBold', - fontWeight: '700', - marginTop: 10, - }, - emptyDescription: { - textAlign: 'center', - color: '#64748B', - fontSize: 15, - fontFamily: 'AeonikRegular', - }, - mapContainer: { gap: 24, alignItems: 'stretch', From 9be8e53c6c57c11d1b16a62efaaed81b1086663a Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Tue, 26 Nov 2024 20:43:11 +0100 Subject: [PATCH 75/95] Fix/toast resend otp (#87) * fix: toast alert * fix: cleaning up ui and animation * fix: cleaning up ui and animation * fix: used mapping object on variant check --------- Co-authored-by: Justice Eziefule --- app/_layout.tsx | 4 +- assets/icons/close-toast-icon.tsx | 11 ++++ assets/icons/index.ts | 4 ++ assets/icons/search-empty-state-icon.tsx | 2 +- assets/icons/toast-varient-icon.tsx | 29 +++++++++ components/index.ts | 2 + components/toast/index.tsx | 75 ++++++++++++++++++++++++ components/toast/types.ts | 7 +++ components/verify-email/index.tsx | 23 ++++++-- hooks/useSystemFunctions.tsx | 2 + store/index.ts | 3 + store/toast/actions.ts | 24 ++++++++ store/toast/index.ts | 33 +++++++++++ store/toast/types.ts | 6 ++ 14 files changed, 219 insertions(+), 6 deletions(-) create mode 100644 assets/icons/close-toast-icon.tsx create mode 100644 assets/icons/toast-varient-icon.tsx create mode 100644 components/toast/index.tsx create mode 100644 components/toast/types.ts create mode 100644 store/toast/actions.ts create mode 100644 store/toast/index.ts create mode 100644 store/toast/types.ts diff --git a/app/_layout.tsx b/app/_layout.tsx index 43a4f56..3375076 100644 --- a/app/_layout.tsx +++ b/app/_layout.tsx @@ -8,12 +8,14 @@ import '@/init/client'; import '@/init/api'; import { AllProviders } from '@/providers'; -import { LQDStackHeader } from '@/components'; +import { LQDStackHeader, LQToast } from '@/components'; +import { View } from 'react-native'; export default function RootLayout() { return ( + ); } diff --git a/assets/icons/close-toast-icon.tsx b/assets/icons/close-toast-icon.tsx new file mode 100644 index 0000000..1a62792 --- /dev/null +++ b/assets/icons/close-toast-icon.tsx @@ -0,0 +1,11 @@ +import Svg, { Path } from 'react-native-svg'; + +const CloseToastIcon = () => ( + + + +); +export default CloseToastIcon; diff --git a/assets/icons/index.ts b/assets/icons/index.ts index 272e20f..32bfb03 100644 --- a/assets/icons/index.ts +++ b/assets/icons/index.ts @@ -51,10 +51,14 @@ import SupportIcon from './support-icon'; import XIcon from './x-ixon'; import DiscordIcon from './discord-icon'; import SearchEmptyStateIcon from './search-empty-state-icon'; +import CloseToastIcon from './close-toast-icon'; +import ToastVarintIcon from './toast-varient-icon'; export { SwatchIcon, SearchEmptyStateIcon, + CloseToastIcon, + ToastVarintIcon, ChartIcon, ShieldTickIcon, MoneysIcon, diff --git a/assets/icons/search-empty-state-icon.tsx b/assets/icons/search-empty-state-icon.tsx index 8f8170a..4e53121 100644 --- a/assets/icons/search-empty-state-icon.tsx +++ b/assets/icons/search-empty-state-icon.tsx @@ -1,6 +1,6 @@ import Svg, { Path, Rect } from 'react-native-svg'; -const SearchEmptyStateIcon = ({ fill = '#fff', height = 14, width = 14 }: IconProps) => ( +const SearchEmptyStateIcon = () => ( diff --git a/assets/icons/toast-varient-icon.tsx b/assets/icons/toast-varient-icon.tsx new file mode 100644 index 0000000..635008d --- /dev/null +++ b/assets/icons/toast-varient-icon.tsx @@ -0,0 +1,29 @@ +import React from 'react'; +import Svg, { Path } from 'react-native-svg'; + +const ToastVarintIcon = ({ variant }: { variant: string }) => { + switch (variant) { + case 'success': + return ( + + + + ); + case 'error': + return ( + + + + ); + default: + return null; + } +}; + +export default ToastVarintIcon; diff --git a/components/index.ts b/components/index.ts index 5da8031..25a75ff 100644 --- a/components/index.ts +++ b/components/index.ts @@ -18,6 +18,7 @@ import SearchUI from './search-ui'; import LQDPoolImages from './pool-images'; import LQDTokenImage from './pool-images/token-image'; import LQShrimeLoader from './loader'; +import LQToast from './toast'; import LQNoResult from './no-result'; export { @@ -26,6 +27,7 @@ export { LQDNavigation, LQDInput, LQDSearch, + LQToast, LQNoResult, LQDScrollView, LQDStackHeader, diff --git a/components/toast/index.tsx b/components/toast/index.tsx new file mode 100644 index 0000000..660d464 --- /dev/null +++ b/components/toast/index.tsx @@ -0,0 +1,75 @@ +import React, { useEffect, useRef } from 'react'; +import { Animated, Text, StyleSheet, View, TouchableOpacity } from 'react-native'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { useToastActions } from '@/store/toast/actions'; +import { CloseToastIcon, ToastVarintIcon } from '@/assets/icons'; + +const LQToast = () => { + const { toast } = useSystemFunctions(); + const { hideToast } = useToastActions(); + + const { title, description, variant, isVisible } = toast; + + const iconsMap = { + success: , + error: , + }; + + const icon = iconsMap[variant] || null; + + const slideAnim = useRef(new Animated.Value(-100)).current; + + useEffect(() => { + if (isVisible) { + Animated.timing(slideAnim, { + toValue: 60, + duration: 300, + useNativeDriver: true, + }).start(); + } else { + Animated.timing(slideAnim, { + toValue: -100, + duration: 300, + useNativeDriver: true, + }).start(); + } + }, [isVisible, slideAnim]); + + const handleDismiss = () => { + hideToast(); + }; + + return ( + + {icon} + + {title} + {description} + + + + + + ); +}; + +export default LQToast; + +const styles = StyleSheet.create({ + toastContainer: { + position: 'absolute', + paddingHorizontal: 10, + paddingVertical: 13, + right: 20, + left: 20, + borderRadius: 5, + zIndex: 23456789, + flexDirection: 'row', + gap: 10, + backgroundColor: 'red', + }, + success: { backgroundColor: '#EFFAF6', top: 10 }, + error: { backgroundColor: '#FDEDF0', top: 10 }, + title: { fontSize: 15, fontFamily: 'AeonikMedium', fontWeight: '700', color: '#0A0D14' }, + description: { color: '#64748B', fontSize: 15, fontFamily: 'AeonikRegular', fontWeight: '500' }, +}); diff --git a/components/toast/types.ts b/components/toast/types.ts new file mode 100644 index 0000000..cb31fb5 --- /dev/null +++ b/components/toast/types.ts @@ -0,0 +1,7 @@ +interface ILQToast { + title: string; + description: string; + variant: 'error' | 'success'; +} + +export type { ILQToast }; diff --git a/components/verify-email/index.tsx b/components/verify-email/index.tsx index 7acd652..a81c772 100644 --- a/components/verify-email/index.tsx +++ b/components/verify-email/index.tsx @@ -1,5 +1,5 @@ import { useState, useEffect } from 'react'; -import { View, Text, StyleSheet, Platform, StatusBar as RNStatusBar, ViewStyle, Alert, Touchable, TouchableOpacity } from 'react-native'; +import { View, Text, StyleSheet, Platform, StatusBar as RNStatusBar, ViewStyle, TouchableOpacity } from 'react-native'; import { StatusBar } from 'expo-status-bar'; import { OtpInput } from 'react-native-otp-entry'; import { useLoginWithEmail } from '@privy-io/expo'; @@ -9,16 +9,23 @@ import LQDKeyboardWrapper from '@/components/keyboard-wrapper'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import { useSmartAccountActions } from '@/store/smartAccount/actions'; +import { useToastActions } from '@/store/toast/actions'; const VerifyEmail = ({ email, isSignup }: { email: string; isSignup?: boolean }) => { const { router } = useSystemFunctions(); const { login } = useSmartAccountActions(); + const { showToast } = useToastActions(); const { loginWithCode, sendCode } = useLoginWithEmail({ onError: (error) => { console.log('error', error.message); setLoading(false); - Alert.alert('An error occurred. Please check your email and try again.'); + + showToast({ + title: 'Error', + description: 'An error occurred. Please check your email and try again.', + variant: 'error', + }); }, onLoginSuccess: async () => { if (isSignup) { @@ -28,6 +35,11 @@ const VerifyEmail = ({ email, isSignup }: { email: string; isSignup?: boolean }) }, onSendCodeSuccess: () => { setResendDisabled(true); + showToast({ + title: 'OTP sent.', + description: 'An OTP has been sent. Please check your email', + variant: 'success', + }); setCountdownTimer(30); startCountdown(); }, @@ -59,8 +71,11 @@ const VerifyEmail = ({ email, isSignup }: { email: string; isSignup?: boolean }) setResendDisabled(true); await sendCode({ email }); } catch (error) { - Alert.alert('An error occurred. Please check your email and try again.'); - setResendDisabled(false); + showToast({ + title: 'Error', + description: 'An error occurred. Please check your email and try again.', + variant: 'error', + }); } finally { setResendDisabled(false); } diff --git a/hooks/useSystemFunctions.tsx b/hooks/useSystemFunctions.tsx index 8d408c3..2e496e3 100644 --- a/hooks/useSystemFunctions.tsx +++ b/hooks/useSystemFunctions.tsx @@ -19,6 +19,7 @@ const useSystemFunctions = () => { const smartAccountState = useAppSelector((state) => state.smartAccount); const poolsState = useAppSelector((state) => state.pools); const accountState = useAppSelector((state) => state.account); + const toast = useAppSelector((state) => state.toast); return { dispatch, @@ -32,6 +33,7 @@ const useSystemFunctions = () => { smartAccountState, poolsState, accountState, + toast, }; }; diff --git a/store/index.ts b/store/index.ts index 48ba20d..2d995cc 100644 --- a/store/index.ts +++ b/store/index.ts @@ -8,6 +8,7 @@ import appReducer from './app'; import smartAccountReducer from './smartAccount'; import poolReducer from './pools'; import accountReducer from './account'; +import toastReducer from './toast'; export interface CallbackProps { onSuccess?: Function; @@ -20,6 +21,7 @@ const rootReducer = combineReducers({ smartAccount: smartAccountReducer, pools: poolReducer, account: accountReducer, + toast: toastReducer, }); const persistConfig = { @@ -35,6 +37,7 @@ export const store = configureStore({ middleware: (getDefaultMiddleware) => getDefaultMiddleware({ serializableCheck: false, + immutableCheck: false, // serializableCheck: { // // Ignore redux-persist actions // ignoredActions: [FLUSH, REHYDRATE, PAUSE, PERSIST, PURGE, REGISTER], diff --git a/store/toast/actions.ts b/store/toast/actions.ts new file mode 100644 index 0000000..5904d03 --- /dev/null +++ b/store/toast/actions.ts @@ -0,0 +1,24 @@ +import { useDispatch } from 'react-redux'; +import { hideToast, showToast } from './index'; +import { Toast } from './types'; + +export function useToastActions() { + const dispatch = useDispatch(); + + const showToastAction = ({ title, description, variant }: Toast) => { + dispatch(showToast({ title, description, variant })); + + setTimeout(() => { + dispatch(hideToast()); + }, 4000); + }; + + const hideToastAction = () => { + dispatch(hideToast()); + }; + + return { + showToast: showToastAction, + hideToast: hideToastAction, + }; +} diff --git a/store/toast/index.ts b/store/toast/index.ts new file mode 100644 index 0000000..f72fcc7 --- /dev/null +++ b/store/toast/index.ts @@ -0,0 +1,33 @@ +import { createSlice, PayloadAction } from '@reduxjs/toolkit'; +import { Toast } from './types'; + +const initialState: Toast = { + title: '', + description: '', + variant: 'success', + isVisible: false, +}; + +export const toastReducer = createSlice({ + name: 'toast', + initialState, + reducers: { + showToast: (state, action: PayloadAction) => { + const { title, description, variant } = action.payload; + state.title = title; + state.description = description; + state.variant = variant; + state.isVisible = true; + }, + + hideToast: (state) => { + state.isVisible = false; + state.title = ''; + state.description = ''; + }, + }, +}); + +export const { showToast, hideToast } = toastReducer.actions; + +export default toastReducer.reducer; diff --git a/store/toast/types.ts b/store/toast/types.ts new file mode 100644 index 0000000..2939804 --- /dev/null +++ b/store/toast/types.ts @@ -0,0 +1,6 @@ +export type Toast = { + title: string; + description: string; + variant: 'success' | 'error'; + isVisible?: boolean; +}; From 3ecfc4a377cb8c4e0d75bd7bf9ddc5a7c173c7d0 Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Thu, 28 Nov 2024 22:33:03 +0100 Subject: [PATCH 76/95] chores: hook and state update optimization (#85) * chores: hook and state update optimization * chores: state update if the token already matches --- screens/liquidity-actions/add/index.tsx | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/screens/liquidity-actions/add/index.tsx b/screens/liquidity-actions/add/index.tsx index ef13a9b..2e13c8e 100644 --- a/screens/liquidity-actions/add/index.tsx +++ b/screens/liquidity-actions/add/index.tsx @@ -69,7 +69,7 @@ const AddLiquidity = () => { description: `There's no available pool for ${tokenA.asset?.symbol} / ${tokenB.asset?.symbol}. Try selecting ${tokenB.asset?.symbol} as the first token and ${tokenA.asset?.symbol} as the second.`, }, }; - }, []); + }, [tokenA.asset, tokenB.asset]); const infos: Array = [ { @@ -84,7 +84,9 @@ const AddLiquidity = () => { }, ]; - const disableButton = !parseFloat(removeCommasFromNumber(tokenA.value)) || !parseFloat(removeCommasFromNumber(tokenB.value)); + const disableButton = useMemo(() => { + return !parseFloat(removeCommasFromNumber(tokenA.value)) || !parseFloat(removeCommasFromNumber(tokenB.value)); + }, [tokenA.value, tokenB.value]); const loadingViewStyle = useAnimatedStyle(() => ({ opacity: withTiming(loading ? 1 : 0, { duration: 500 }), @@ -99,18 +101,24 @@ const AddLiquidity = () => { if (!asset) return; - if (token === 'tokenA') setTokenA({ ...tokenA, asset: { ...tokenA.asset, ...asset } }); - if (token === 'tokenB') setTokenB({ ...tokenB, asset: { ...tokenB.asset, ...asset } }); + if (token === 'tokenA' && tokenA.asset?.address !== asset.address) { + setTokenA({ ...tokenA, asset: { ...asset } }); + } + if (token === 'tokenB' && tokenB.asset?.address !== asset.address) { + setTokenB({ ...tokenB, asset: { ...asset } }); + } }; const handleValueChange = (value: string, token: 'tokenA' | 'tokenB') => { const formatedValue = formatInputAmount(value); - if (token === 'tokenA') { - return setTokenA({ ...tokenA, value: formatedValue }); + if (token === 'tokenA' && tokenA.value !== formatedValue) { + setTokenA({ ...tokenA, value: formatedValue }); } - return setTokenB({ ...tokenB, value: formatedValue }); + if (token === 'tokenB' && tokenB.value !== formatedValue) { + setTokenB({ ...tokenB, value: formatedValue }); + } }; const onSubmit = async () => { @@ -214,7 +222,7 @@ const AddLiquidity = () => { return setPools(response); }, - [tokenA.asset, tokenB.asset] + [tokenA.asset, tokenB.asset, didUserChangeToken, poolsState.pools.data] ); if (loading) { From 8076bb3a65ac3fb248e173d6bd3051d1ba70c559 Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Thu, 5 Dec 2024 16:37:20 +0100 Subject: [PATCH 77/95] Feature/eng 26 implement home feed main view (#97) * chore: loader ui update * feature: feed card component * chore: updated tab ui and added add strategy icon * chores: flatlist component that handle pull to refresh and dynamic props * chores: clean ui * chores: clean ui * chores: clean ui * fix: modal animation --- app/(tabs)/_layout.tsx | 21 +- app/(tabs)/{holdings => discover}/_layout.tsx | 18 +- app/(tabs)/discover/index.tsx | 5 + app/(tabs)/holdings/[poolId]/_layout.tsx | 70 ----- app/(tabs)/holdings/[poolId]/index.tsx | 12 - app/(tabs)/holdings/assets.tsx | 5 - app/(tabs)/holdings/index.tsx | 5 - app/(tabs)/holdings/pools.tsx | 5 - app/(tabs)/holdings/rewards.tsx | 12 - app/(tabs)/profile/_layout.tsx | 22 ++ app/(tabs)/profile/index.tsx | 5 + assets/icons/borrow-icon.tsx | 22 ++ assets/icons/comment-icon.tsx | 23 ++ assets/icons/connector-icon.tsx | 8 + assets/icons/deposit-icon.tsx | 15 + assets/icons/discover-tab-icon.tsx | 35 +++ assets/icons/flash-icon.tsx | 15 + assets/icons/header-menu-icon.tsx | 10 + assets/icons/header-wallet-icon.tsx | 29 ++ assets/icons/home-icon.tsx | 12 +- assets/icons/index.ts | 28 ++ assets/icons/more-icon.tsx | 18 ++ assets/icons/plus-icon.tsx | 9 + assets/icons/re-tweet-icon.tsx | 39 +++ assets/icons/share-icon.tsx | 22 ++ assets/icons/stake-icon.tsx | 25 ++ assets/icons/supply-icon.tsx | 22 ++ assets/images/connector.png | Bin 0 -> 251 bytes components/bottom-sheet/index.tsx | 18 +- components/feed-card/feed-step.tsx | 126 +++++++++ components/feed-card/index.tsx | 203 ++++++++++++++ components/feed-card/types.ts | 14 + components/flatlist/index.tsx | 80 ++++++ components/flatlist/types.ts | 9 + components/index.ts | 4 + components/navigation/TabBarIcon.tsx | 2 - components/navigation/action.tsx | 21 +- components/pool-images/index.tsx | 6 +- package.json | 1 + screens/discover/index.tsx | 15 + screens/holdings/assets/index.tsx | 127 --------- screens/holdings/assets/paper.tsx | 70 ----- screens/holdings/assets/types.ts | 6 - screens/holdings/card.tsx | 258 ------------------ screens/holdings/dummy.ts | 17 -- screens/holdings/empty.tsx | 106 ------- screens/holdings/index.tsx | 189 ------------- screens/holdings/pools/action.tsx | 69 ----- screens/holdings/pools/card.tsx | 214 --------------- screens/holdings/pools/index.tsx | 95 ------- screens/holdings/pools/types.ts | 19 -- screens/holdings/rewards/card.tsx | 238 ---------------- screens/holdings/rewards/dummy.ts | 169 ------------ screens/holdings/rewards/index.tsx | 61 ----- screens/holdings/rewards/types.ts | 20 -- screens/holdings/types.ts | 38 --- screens/home/header.tsx | 39 +++ screens/home/index.tsx | 238 ++++++++-------- screens/home/loader.tsx | 77 ++---- screens/home/types.ts | 5 + screens/index.ts | 14 +- screens/profile/index.tsx | 15 + yarn.lock | 17 +- 63 files changed, 1089 insertions(+), 2023 deletions(-) rename app/(tabs)/{holdings => discover}/_layout.tsx (53%) create mode 100644 app/(tabs)/discover/index.tsx delete mode 100644 app/(tabs)/holdings/[poolId]/_layout.tsx delete mode 100644 app/(tabs)/holdings/[poolId]/index.tsx delete mode 100644 app/(tabs)/holdings/assets.tsx delete mode 100644 app/(tabs)/holdings/index.tsx delete mode 100644 app/(tabs)/holdings/pools.tsx delete mode 100644 app/(tabs)/holdings/rewards.tsx create mode 100644 app/(tabs)/profile/_layout.tsx create mode 100644 app/(tabs)/profile/index.tsx create mode 100644 assets/icons/borrow-icon.tsx create mode 100644 assets/icons/comment-icon.tsx create mode 100644 assets/icons/connector-icon.tsx create mode 100644 assets/icons/deposit-icon.tsx create mode 100644 assets/icons/discover-tab-icon.tsx create mode 100644 assets/icons/flash-icon.tsx create mode 100644 assets/icons/header-menu-icon.tsx create mode 100644 assets/icons/header-wallet-icon.tsx create mode 100644 assets/icons/more-icon.tsx create mode 100644 assets/icons/plus-icon.tsx create mode 100644 assets/icons/re-tweet-icon.tsx create mode 100644 assets/icons/share-icon.tsx create mode 100644 assets/icons/stake-icon.tsx create mode 100644 assets/icons/supply-icon.tsx create mode 100644 assets/images/connector.png create mode 100644 components/feed-card/feed-step.tsx create mode 100644 components/feed-card/index.tsx create mode 100644 components/feed-card/types.ts create mode 100644 components/flatlist/index.tsx create mode 100644 components/flatlist/types.ts create mode 100644 screens/discover/index.tsx delete mode 100644 screens/holdings/assets/index.tsx delete mode 100644 screens/holdings/assets/paper.tsx delete mode 100644 screens/holdings/assets/types.ts delete mode 100644 screens/holdings/card.tsx delete mode 100644 screens/holdings/dummy.ts delete mode 100644 screens/holdings/empty.tsx delete mode 100644 screens/holdings/index.tsx delete mode 100644 screens/holdings/pools/action.tsx delete mode 100644 screens/holdings/pools/card.tsx delete mode 100644 screens/holdings/pools/index.tsx delete mode 100644 screens/holdings/pools/types.ts delete mode 100644 screens/holdings/rewards/card.tsx delete mode 100644 screens/holdings/rewards/dummy.ts delete mode 100644 screens/holdings/rewards/index.tsx delete mode 100644 screens/holdings/rewards/types.ts delete mode 100644 screens/holdings/types.ts create mode 100644 screens/home/header.tsx create mode 100644 screens/profile/index.tsx diff --git a/app/(tabs)/_layout.tsx b/app/(tabs)/_layout.tsx index cda871f..d90597f 100644 --- a/app/(tabs)/_layout.tsx +++ b/app/(tabs)/_layout.tsx @@ -4,15 +4,20 @@ import { StatusBar } from 'expo-status-bar'; import { TabBarIcon } from '@/components/navigation/TabBarIcon'; import { Colors } from '@/constants/Colors'; -import { LQDNavigation } from '@/components'; +import { LQDBottomSheet, LQDNavigation } from '@/components'; +import Header from '@/screens/home/header'; +import { useState } from 'react'; export default function TabLayout() { const colorScheme = useColorScheme(); + const [show, setShow] = useState(false); return ( <> +
setShow((prev) => !prev)} /> + setShow((prev) => !prev)}> } @@ -24,15 +29,23 @@ export default function TabLayout() { , }} /> , + }} + /> + + , }} /> diff --git a/app/(tabs)/holdings/_layout.tsx b/app/(tabs)/discover/_layout.tsx similarity index 53% rename from app/(tabs)/holdings/_layout.tsx rename to app/(tabs)/discover/_layout.tsx index f3740af..3f2e6fe 100644 --- a/app/(tabs)/holdings/_layout.tsx +++ b/app/(tabs)/discover/_layout.tsx @@ -1,7 +1,7 @@ import { Stack } from 'expo-router'; import { LQDStackHeader } from '@/components'; -const HoldingsStack = () => { +const DiscoverStack = () => { return ( { headerShown: false, }} /> - - , - }} - /> - - ); }; -export default HoldingsStack; +export default DiscoverStack; diff --git a/app/(tabs)/discover/index.tsx b/app/(tabs)/discover/index.tsx new file mode 100644 index 0000000..28df840 --- /dev/null +++ b/app/(tabs)/discover/index.tsx @@ -0,0 +1,5 @@ +import { Discover } from '@/screens'; + +const DiscoverScreen = () => ; + +export default DiscoverScreen; diff --git a/app/(tabs)/holdings/[poolId]/_layout.tsx b/app/(tabs)/holdings/[poolId]/_layout.tsx deleted file mode 100644 index 1f21bb1..0000000 --- a/app/(tabs)/holdings/[poolId]/_layout.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import { StyleSheet, View } from 'react-native'; -import { Stack } from 'expo-router'; - -import { LQDButton, LQDStackHeader } from '@/components'; -import { ILQDButton } from '@/components/button/types'; -import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { useEffect } from 'react'; -import useAppActions from '@/store/app/actions'; - -const PoolDetailLayout = () => { - const { router } = useSystemFunctions(); - const { hideSearch } = useAppActions(); - - const actions: Array = [ - { - title: 'Add Liquidity', - onPress: () => router.push('/(liquidity-actions)/add'), - variant: 'tertiary', - }, - { - title: 'Remove Liquidity', - onPress: () => router.push('/(liquidity-actions)/remove'), - variant: 'tertiaryOutline', - }, - ]; - - useEffect(() => { - hideSearch(true); - - return () => hideSearch(false); - }, []); - - return ( - <> - , - headerShown: true, - }} - > - - - - - {actions.map((action) => ( - - ))} - - - ); -}; - -export default PoolDetailLayout; - -const styles = StyleSheet.create({ - actionsContainer: { - position: 'absolute', - bottom: 85, - paddingHorizontal: 16, - paddingTop: 32, - paddingBottom: 22, - flexDirection: 'row', - gap: 11, - backgroundColor: '#FFF', - }, - - action: { - flex: 1, - }, -}); diff --git a/app/(tabs)/holdings/[poolId]/index.tsx b/app/(tabs)/holdings/[poolId]/index.tsx deleted file mode 100644 index a72c84a..0000000 --- a/app/(tabs)/holdings/[poolId]/index.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { PoolDetail } from '@/screens'; - -const PoolDetailScreen = () => { - const { params } = useSystemFunctions(); - - const { poolId } = params; - - return ; -}; - -export default PoolDetailScreen; diff --git a/app/(tabs)/holdings/assets.tsx b/app/(tabs)/holdings/assets.tsx deleted file mode 100644 index 62dc847..0000000 --- a/app/(tabs)/holdings/assets.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import { Assets } from '@/screens'; - -const AssetsScreen = () => ; - -export default AssetsScreen; diff --git a/app/(tabs)/holdings/index.tsx b/app/(tabs)/holdings/index.tsx deleted file mode 100644 index 226c1b8..0000000 --- a/app/(tabs)/holdings/index.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import { Holdings } from '@/screens'; - -const HoldingsScreen = () => ; - -export default HoldingsScreen; diff --git a/app/(tabs)/holdings/pools.tsx b/app/(tabs)/holdings/pools.tsx deleted file mode 100644 index ae52b44..0000000 --- a/app/(tabs)/holdings/pools.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import { Pools } from '@/screens'; - -const PoolsScreen = () => ; - -export default PoolsScreen; diff --git a/app/(tabs)/holdings/rewards.tsx b/app/(tabs)/holdings/rewards.tsx deleted file mode 100644 index 29e49d6..0000000 --- a/app/(tabs)/holdings/rewards.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import { Rewards } from '@/screens'; -import useSystemFunctions from '@/hooks/useSystemFunctions'; - -const RewardsScreen = () => { - const { params } = useSystemFunctions(); - - const { type } = params; - - return ; -}; - -export default RewardsScreen; diff --git a/app/(tabs)/profile/_layout.tsx b/app/(tabs)/profile/_layout.tsx new file mode 100644 index 0000000..98cb016 --- /dev/null +++ b/app/(tabs)/profile/_layout.tsx @@ -0,0 +1,22 @@ +import { Stack } from 'expo-router'; +import { LQDStackHeader } from '@/components'; + +const ProfileStack = () => { + return ( + , + headerShown: true, + }} + > + + + ); +}; + +export default ProfileStack; diff --git a/app/(tabs)/profile/index.tsx b/app/(tabs)/profile/index.tsx new file mode 100644 index 0000000..31cb301 --- /dev/null +++ b/app/(tabs)/profile/index.tsx @@ -0,0 +1,5 @@ +import { Profile } from '@/screens'; + +const ProfileScreen = () => ; + +export default ProfileScreen; diff --git a/assets/icons/borrow-icon.tsx b/assets/icons/borrow-icon.tsx new file mode 100644 index 0000000..4c0c43a --- /dev/null +++ b/assets/icons/borrow-icon.tsx @@ -0,0 +1,22 @@ +import Svg, { Path } from 'react-native-svg'; + +const BorrowIcon = () => ( + + + + + + + +); +export default BorrowIcon; diff --git a/assets/icons/comment-icon.tsx b/assets/icons/comment-icon.tsx new file mode 100644 index 0000000..bd926e0 --- /dev/null +++ b/assets/icons/comment-icon.tsx @@ -0,0 +1,23 @@ +import Svg, { Path } from 'react-native-svg'; + +const CommentIcon = ({ fill = '#fff', height = 19, width = 18 }: IconProps) => ( + + + + +); +export default CommentIcon; diff --git a/assets/icons/connector-icon.tsx b/assets/icons/connector-icon.tsx new file mode 100644 index 0000000..98b07a0 --- /dev/null +++ b/assets/icons/connector-icon.tsx @@ -0,0 +1,8 @@ +import Svg, { Rect } from 'react-native-svg'; + +const ConnectorIcon = ({ fill = '#fff', height = 19, width = 18 }: IconProps) => ( + + + +); +export default ConnectorIcon; diff --git a/assets/icons/deposit-icon.tsx b/assets/icons/deposit-icon.tsx new file mode 100644 index 0000000..eb8587d --- /dev/null +++ b/assets/icons/deposit-icon.tsx @@ -0,0 +1,15 @@ +import Svg, { Path } from 'react-native-svg'; + +const DepositIcon = ({ fill = '#fff', height = 14, width = 14 }: IconProps) => ( + + + + + +); +export default DepositIcon; diff --git a/assets/icons/discover-tab-icon.tsx b/assets/icons/discover-tab-icon.tsx new file mode 100644 index 0000000..4647267 --- /dev/null +++ b/assets/icons/discover-tab-icon.tsx @@ -0,0 +1,35 @@ +import Svg, { Path } from 'react-native-svg'; + +const DiscordTabIcon = ({ fill = '#64748B', height = 24, width = 25 }: IconProps) => ( + + + + + + +); +export default DiscordTabIcon; diff --git a/assets/icons/flash-icon.tsx b/assets/icons/flash-icon.tsx new file mode 100644 index 0000000..783dcf2 --- /dev/null +++ b/assets/icons/flash-icon.tsx @@ -0,0 +1,15 @@ +import Svg, { Path } from 'react-native-svg'; + +const FlashIcon = ({ fill = '#fff', height = 19, width = 18 }: IconProps) => ( + + + +); +export default FlashIcon; diff --git a/assets/icons/header-menu-icon.tsx b/assets/icons/header-menu-icon.tsx new file mode 100644 index 0000000..7ffd29f --- /dev/null +++ b/assets/icons/header-menu-icon.tsx @@ -0,0 +1,10 @@ +import Svg, { Path } from 'react-native-svg'; + +const HeaderMenuIcon = ({ fill = '#020617', height = 24, width = 25 }: IconProps) => ( + + + + + +); +export default HeaderMenuIcon; diff --git a/assets/icons/header-wallet-icon.tsx b/assets/icons/header-wallet-icon.tsx new file mode 100644 index 0000000..d1c0860 --- /dev/null +++ b/assets/icons/header-wallet-icon.tsx @@ -0,0 +1,29 @@ +import Svg, { Path } from 'react-native-svg'; + +const HeaderWalletIcon = ({ fill = '#020617', height = 24, width = 25 }: IconProps) => ( + + + + + + +); +export default HeaderWalletIcon; diff --git a/assets/icons/home-icon.tsx b/assets/icons/home-icon.tsx index 76e895a..3d72d22 100644 --- a/assets/icons/home-icon.tsx +++ b/assets/icons/home-icon.tsx @@ -1,14 +1,10 @@ import Svg, { Path } from 'react-native-svg'; -const HomeIcon = ({ fill = '#020617', height = 24, width = 25 }: IconProps) => ( - - +const HomeIcon = ({ fill = '#0C0507', height = 24, width = 25 }: IconProps) => ( + ); diff --git a/assets/icons/index.ts b/assets/icons/index.ts index 32bfb03..28267ba 100644 --- a/assets/icons/index.ts +++ b/assets/icons/index.ts @@ -53,12 +53,40 @@ import DiscordIcon from './discord-icon'; import SearchEmptyStateIcon from './search-empty-state-icon'; import CloseToastIcon from './close-toast-icon'; import ToastVarintIcon from './toast-varient-icon'; +import HeaderMenuIcon from './header-menu-icon'; +import HeaderWalletIcon from './header-wallet-icon'; +import MoreIcon from './more-icon'; +import ReTweetIcon from './re-tweet-icon'; +import CommentIcon from './comment-icon'; +import FlashIcon from './flash-icon'; +import ShareIcon from './share-icon'; +import ConnectorIcon from './connector-icon'; +import BorrowIcon from './borrow-icon'; +import StakeIcon from './stake-icon'; +import DepositIcon from './deposit-icon'; +import SupplyIcon from './supply-icon'; +import PlusIcon from './plus-icon'; +import DiscordTabIcon from './discover-tab-icon'; export { SwatchIcon, + ConnectorIcon, + PlusIcon, + DiscordTabIcon, + MoreIcon, + HeaderMenuIcon, + HeaderWalletIcon, SearchEmptyStateIcon, + BorrowIcon, + StakeIcon, + DepositIcon, + SupplyIcon, CloseToastIcon, + ShareIcon, ToastVarintIcon, + ReTweetIcon, + CommentIcon, + FlashIcon, ChartIcon, ShieldTickIcon, MoneysIcon, diff --git a/assets/icons/more-icon.tsx b/assets/icons/more-icon.tsx new file mode 100644 index 0000000..c35af4a --- /dev/null +++ b/assets/icons/more-icon.tsx @@ -0,0 +1,18 @@ +import Svg, { Path } from 'react-native-svg'; + +const MoreIcon = ({ fill = '#fff', height = 19, width = 18 }: IconProps) => ( + + + + + +); +export default MoreIcon; diff --git a/assets/icons/plus-icon.tsx b/assets/icons/plus-icon.tsx new file mode 100644 index 0000000..69df8a6 --- /dev/null +++ b/assets/icons/plus-icon.tsx @@ -0,0 +1,9 @@ +import Svg, { Path } from 'react-native-svg'; + +const PlusIcon = ({ fill = '#fff' }) => ( + + + + +); +export default PlusIcon; diff --git a/assets/icons/re-tweet-icon.tsx b/assets/icons/re-tweet-icon.tsx new file mode 100644 index 0000000..7948a27 --- /dev/null +++ b/assets/icons/re-tweet-icon.tsx @@ -0,0 +1,39 @@ +import Svg, { Path } from 'react-native-svg'; + +const ReTweetIcon = ({ fill = '#fff', height = 19, width = 18 }: IconProps) => ( + + + + + + +); +export default ReTweetIcon; diff --git a/assets/icons/share-icon.tsx b/assets/icons/share-icon.tsx new file mode 100644 index 0000000..1775492 --- /dev/null +++ b/assets/icons/share-icon.tsx @@ -0,0 +1,22 @@ +import Svg, { Path } from 'react-native-svg'; + +const ShareIcon = ({ fill = '#fff', height = 19, width = 18 }: IconProps) => ( + + + + + +); +export default ShareIcon; diff --git a/assets/icons/stake-icon.tsx b/assets/icons/stake-icon.tsx new file mode 100644 index 0000000..4333be6 --- /dev/null +++ b/assets/icons/stake-icon.tsx @@ -0,0 +1,25 @@ +import Svg, { Path } from 'react-native-svg'; + +const StakeIcon = () => ( + + + + + +); +export default StakeIcon; diff --git a/assets/icons/supply-icon.tsx b/assets/icons/supply-icon.tsx new file mode 100644 index 0000000..ba75a5f --- /dev/null +++ b/assets/icons/supply-icon.tsx @@ -0,0 +1,22 @@ +import Svg, { Path } from 'react-native-svg'; + +const SupplyIcon = () => ( + + + + + + + +); +export default SupplyIcon; diff --git a/assets/images/connector.png b/assets/images/connector.png new file mode 100644 index 0000000000000000000000000000000000000000..a14d849c79369fdfe3b890dbe420fdc432408e17 GIT binary patch literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^EI=&B!3HF`_v~*5Qk(@Ik;M!QiWVTu=sL|X0Vv2= z9OUlAu=qM{tbo?v_f8nO$3A-W*x7 v= = ({ title, variant = 'primary', }; return ( - - - + + = ({ title, variant = 'primary', > {title} - + @@ -46,8 +46,8 @@ const LQDBottomSheet: React.FC = ({ title, variant = 'primary', const styles = StyleSheet.create({ overlay: { flex: 1, - backgroundColor: '#2125506B', justifyContent: 'flex-end', + width: '100%', }, bottomSheet: { @@ -56,7 +56,7 @@ const styles = StyleSheet.create({ zIndex: 30, width: '100%', paddingBottom: 62.45, - paddingTop: 27.55, + paddingTop: 17, paddingHorizontal: 16, backgroundColor: '#fff', borderTopLeftRadius: 20, @@ -66,13 +66,13 @@ const styles = StyleSheet.create({ header: { flexDirection: 'row', - justifyContent: 'space-between', + justifyContent: 'center', alignItems: 'center', }, title: { color: '#0F172A', - fontSize: adjustFontSizeForIOS(20, 3), + fontSize: adjustFontSizeForIOS(17, 3), lineHeight: 23.2, fontWeight: '500', fontFamily: 'AeonikMedium', diff --git a/components/feed-card/feed-step.tsx b/components/feed-card/feed-step.tsx new file mode 100644 index 0000000..7072711 --- /dev/null +++ b/components/feed-card/feed-step.tsx @@ -0,0 +1,126 @@ +import React, { useState } from 'react'; +import { View, Text, StyleSheet } from 'react-native'; +import FastImage from 'react-native-fast-image'; +import Animated from 'react-native-reanimated'; +import { BorrowIcon, DepositIcon, StakeIcon, SupplyIcon, SwatchIcon } from '@/assets/icons'; // Replace icons as needed +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import LQDPoolImages from '../pool-images'; + +const defaultAIconUrl = 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png'; +const defaultBIconUrl = 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png'; +const connector = require('../../assets/images/connector.png'); + +const FeedStep = ({ variant, tokenAIconURL, tokenBIconURL, tokenA, tokenB, isLast }: IFeedStep) => { + const [tokenAIconError, setTokenAIconError] = useState(false); + const [tokenBIconError, setTokenBIconError] = useState(false); + + const iconA = tokenAIconError ? defaultAIconUrl : tokenAIconURL || defaultAIconUrl; + const iconB = tokenBIconError ? defaultBIconUrl : tokenBIconURL || defaultBIconUrl; + const deposite = variant === 'deposit'; + + const icons = { + stake: , + deposit: , + borrow: , + supply: , + }; + + const depositVariant = () => ( + + {variant} + into + + + {tokenA}/{tokenB} + + + + + ); + + const otherVariant = () => ( + + {variant} + setTokenAIconError(true)} /> + {tokenA} + into + setTokenBIconError(true)} /> + {tokenB} + + ); + + return ( + + + {icons[variant]} + {!isLast && } + + {deposite && depositVariant()} + {!deposite && otherVariant()} + + ); +}; + +export default FeedStep; + +const styles = StyleSheet.create({ + container: { + flexDirection: 'row', + alignItems: 'flex-start', + gap: 2, + }, + + connectorWrap: { + alignItems: 'center', + width: 32, + }, + + iconContainer: { + width: 24, + height: 24, + justifyContent: 'center', + alignItems: 'center', + }, + + connector: { + width: 2, + height: 20, + flex: 1, + marginBottom: 5, + }, + + details: { + flex: 1, + flexDirection: 'row', + alignItems: 'center', + flexWrap: 'wrap', + gap: 2, + }, + + variantText: { + fontSize: adjustFontSizeForIOS(11, 3), + fontWeight: '400', + color: '#64748B', + fontFamily: 'AeonikRegular', + textTransform: 'capitalize', + }, + actionText: { + fontSize: adjustFontSizeForIOS(11, 2), + fontWeight: '600', + color: '#0F172A', + fontFamily: 'AeonikMedium', + }, + + tokenText: { + fontSize: adjustFontSizeForIOS(11, 2), + fontWeight: '400', + color: '#64748B', + fontFamily: 'AeonikBold', + }, + + tokenIcon: { + width: 16, + height: 16, + marginHorizontal: 4, + }, +}); diff --git a/components/feed-card/index.tsx b/components/feed-card/index.tsx new file mode 100644 index 0000000..64e036a --- /dev/null +++ b/components/feed-card/index.tsx @@ -0,0 +1,203 @@ +import { Pressable, StyleSheet, Text, View } from 'react-native'; +import React from 'react'; +import FastImage from 'react-native-fast-image'; +import { CommentIcon, FlashIcon, MoreIcon, ReTweetIcon, ShareIcon, SwatchIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import FeedStep from './feed-step'; + +const LQDFeedCard = ({ feed, showInvest = true }: FeedCard) => { + const { steps, photo, username, address, date, percentage, estimate, title, description, commentCount, shareCount, flashCount } = feed; + return ( + + + {/* top */} + + + {/* */} + + + + + {username} + {date} + + + {address} + + + + + + + {/* top */} + {/* second */} + + {steps.map((step: IFeedStep, index: number) => ( + + ))} + + {/* second */} + {/* third */} + + {title} + + {estimate} + {percentage}% + + {description} + + See more... + + + {/* third */} + {/* fouth */} + + + {showInvest && ( + + Invest + + )} + + + + {commentCount} + + + + {shareCount} + + + + {flashCount} + + + + + {/* fouth */} + + + ); +}; + +export default LQDFeedCard; + +const styles = StyleSheet.create({ + container: { + paddingHorizontal: 16, + paddingVertical: 25, + backgroundColor: '#fff', + borderBottomWidth: 1, + borderColor: '#F1F5F9', + gap: 20, + }, + image: { + width: 40, + height: 40, + borderRadius: 9999, + borderWidth: 1, + borderColor: '#F1F5F9', + }, + username: { + fontSize: adjustFontSizeForIOS(14, 3), + fontFamily: 'ClashDisplayBold', + fontWeight: '500', + color: '#1E293B', + }, + title: { + fontSize: adjustFontSizeForIOS(15, 3), + fontFamily: 'AeonikBold', + fontWeight: '500', + color: '#1E293B', + }, + address: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(12, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 16.8, + }, + time: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(12, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 15.84, + }, + estimate: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(12, 2), + fontFamily: 'AeonikRegular', + fontWeight: '500', + lineHeight: 15.84, + }, + actionText: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(12, 2), + fontFamily: 'AeonikRegular', + fontWeight: '500', + lineHeight: 15.84, + }, + percentage: { + color: '#4691FE', + fontSize: adjustFontSizeForIOS(14, 3), + fontFamily: 'AeonikRegular', + fontWeight: '500', + lineHeight: 15.84, + }, + description: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(15, 2), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 25, + }, + seeMore: { + color: '#375DFB', + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 15.84, + borderColor: 'red', + }, + invest: { + color: '#fff', + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikMedium', + fontWeight: '500', + lineHeight: 15.84, + borderColor: 'red', + }, + feedStep: { + borderColor: '#F1F5F9', + borderWidth: 1, + borderRadius: 10, + overflow: 'hidden', + paddingHorizontal: 12, + paddingVertical: 12, + marginTop: 20, + }, + + actionFlex: { flexDirection: 'row', alignItems: 'center', gap: 5 }, + investBtn: { backgroundColor: '#4691FE', paddingHorizontal: 15, borderRadius: 10, paddingVertical: 5 }, + bottomActionContainer: { flexDirection: 'row', gap: 20, alignItems: 'center' }, + bottomActionInnerContainer: { flex: 1, flexDirection: 'row', gap: 20 }, + rightContentFlex: { flexDirection: 'row', justifyContent: 'space-between' }, + usernameFlex: { flexDirection: 'row', gap: 10, alignItems: 'center', marginBottom: 5 }, +}); diff --git a/components/feed-card/types.ts b/components/feed-card/types.ts new file mode 100644 index 0000000..c442f8a --- /dev/null +++ b/components/feed-card/types.ts @@ -0,0 +1,14 @@ +interface FeedCard { + feed: any; + showInvest?: boolean; +} + +interface IFeedStep { + title: string; + variant: 'supply' | 'borrow' | 'deposit' | 'stake'; + tokenA: string; + tokenB: string; + tokenAIconURL: string; + tokenBIconURL: string; + isLast?: boolean; +} diff --git a/components/flatlist/index.tsx b/components/flatlist/index.tsx new file mode 100644 index 0000000..8ac4a1d --- /dev/null +++ b/components/flatlist/index.tsx @@ -0,0 +1,80 @@ +import React from 'react'; +import { FlatList, View, ActivityIndicator, StyleSheet, ListRenderItem, RefreshControl } from 'react-native'; +import { LQDFlatlistProps } from './types'; + +const LQDFlatlist = ({ + data = [], + renderItem, + keyExtractor = (item, index) => index.toString(), + ListHeaderComponent, + ListFooterComponent, + ListEmptyComponent, + refreshing = false, + onRefresh, + onEndReached, + onEndReachedThreshold = 0.1, + showsVerticalScrollIndicator = false, + contentContainerStyle, + style, + loader = false, +}: LQDFlatlistProps) => { + const DefaultFooterLoader = () => ( + + + + ); + + const IsRefresh = () => { + if (onRefresh) { + return ( + + ); + } + + return null; + }; + + return ( + } + keyExtractor={keyExtractor} + ListHeaderComponent={ListHeaderComponent} + ListFooterComponent={loader ? : ListFooterComponent} + ListEmptyComponent={ListEmptyComponent} + refreshing={refreshing} + refreshControl={} + onRefresh={onRefresh} + onEndReached={onEndReached} + onEndReachedThreshold={onEndReachedThreshold} + showsVerticalScrollIndicator={showsVerticalScrollIndicator} + contentContainerStyle={[{ flexGrow: 1, paddingBottom: loader ? 16 : 0 }, contentContainerStyle]} + style={[styles.list, style]} + /> + ); +}; + +export default LQDFlatlist; + +const styles = StyleSheet.create({ + list: { + flex: 1, + }, + emptyContainer: { + flex: 1, + justifyContent: 'center', + alignItems: 'center', + padding: 20, + }, + loaderContainer: { + paddingVertical: 16, + justifyContent: 'center', + alignItems: 'center', + }, +}); diff --git a/components/flatlist/types.ts b/components/flatlist/types.ts new file mode 100644 index 0000000..e0843a4 --- /dev/null +++ b/components/flatlist/types.ts @@ -0,0 +1,9 @@ +import { FlatListProps } from 'react-native'; + +export interface LQDFlatlistProps extends FlatListProps { + loader?: boolean; + ListEmptyComponent?: React.ComponentType | React.ReactElement | null; + ListFooterComponent?: React.ComponentType | React.ReactElement | null; + refreshing?: boolean; + onRefresh?: () => void; +} diff --git a/components/index.ts b/components/index.ts index 25a75ff..12124e1 100644 --- a/components/index.ts +++ b/components/index.ts @@ -20,13 +20,17 @@ import LQDTokenImage from './pool-images/token-image'; import LQShrimeLoader from './loader'; import LQToast from './toast'; import LQNoResult from './no-result'; +import LQDFeedCard from './feed-card'; +import LQDFlatlist from './flatlist'; export { LQDButton, LQShrimeLoader, + LQDFlatlist, LQDNavigation, LQDInput, LQDSearch, + LQDFeedCard, LQToast, LQNoResult, LQDScrollView, diff --git a/components/navigation/TabBarIcon.tsx b/components/navigation/TabBarIcon.tsx index b7302c3..3c0b7b0 100644 --- a/components/navigation/TabBarIcon.tsx +++ b/components/navigation/TabBarIcon.tsx @@ -1,5 +1,3 @@ -// You can explore the built-in icon families and icons on the web at https://icons.expo.fyi/ - import Ionicons from '@expo/vector-icons/Ionicons'; import { type IconProps } from '@expo/vector-icons/build/createIconSet'; import { type ComponentProps } from 'react'; diff --git a/components/navigation/action.tsx b/components/navigation/action.tsx index 40901bf..57f4f5b 100644 --- a/components/navigation/action.tsx +++ b/components/navigation/action.tsx @@ -1,12 +1,16 @@ import { useEffect } from 'react'; -import { Pressable, StyleSheet } from 'react-native'; +import { Pressable, StyleSheet, Text } from 'react-native'; import Animated, { interpolateColor, useAnimatedStyle, useSharedValue, withTiming } from 'react-native-reanimated'; import { adjustFontSizeForIOS } from '@/utils/helpers'; -import { HomeIcon, WalletIcon } from '@/assets/icons'; +import { DiscordTabIcon, HomeIcon } from '@/assets/icons'; +import FastImage from 'react-native-fast-image'; + +const image = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; const icon: any = { home: (props: any) => , - holdings: (props: any) => , + discover: (props: any) => , + profile: (props: any) => , }; const LQDNavigationAction = ({ isFocused, label, onLongPress, onPress, routeName }: ILQDNavigationAction) => { @@ -29,9 +33,10 @@ const LQDNavigationAction = ({ isFocused, label, onLongPress, onPress, routeName fill: isFocused ? '#020617' : '#64748B', width: 24, height: 24, + focus: isFocused, })} - {label} + {label && {label}} ); }; @@ -44,10 +49,18 @@ const styles = StyleSheet.create({ justifyContent: 'center', alignItems: 'center', gap: 5, + paddingVertical: 8, }, text: { fontSize: adjustFontSizeForIOS(11, 2), lineHeight: 13.64, }, + + image: { + width: 24, + height: 24, + borderRadius: 100, + borderColor: '#000', + }, }); diff --git a/components/pool-images/index.tsx b/components/pool-images/index.tsx index 9815bb7..ef026f9 100644 --- a/components/pool-images/index.tsx +++ b/components/pool-images/index.tsx @@ -49,12 +49,12 @@ const styles = StyleSheet.create({ borderRadius: 9999, borderWidth: 1, borderColor: '#EAEEF4', - marginRight: -6, + marginRight: -12, }, image: { - width: 24, - height: 24, + width: 16, + height: 16, borderRadius: 9999, }, }); diff --git a/package.json b/package.json index b779e34..52cbd41 100644 --- a/package.json +++ b/package.json @@ -64,6 +64,7 @@ "react-native-get-random-values": "^1.11.0", "react-native-image-colors": "^2.4.0", "react-native-linear-gradient": "^2.8.3", + "react-native-modal": "^13.0.1", "react-native-otp-entry": "^1.7.3", "react-native-pager-view": "6.3.0", "react-native-passkeys": "^0.3.0", diff --git a/screens/discover/index.tsx b/screens/discover/index.tsx new file mode 100644 index 0000000..f0dd2d4 --- /dev/null +++ b/screens/discover/index.tsx @@ -0,0 +1,15 @@ +import { StyleSheet, View } from 'react-native'; +import React from 'react'; + +const Discover = () => { + return ; +}; + +export default Discover; + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#FFF', + }, +}); diff --git a/screens/holdings/assets/index.tsx b/screens/holdings/assets/index.tsx deleted file mode 100644 index a5afa45..0000000 --- a/screens/holdings/assets/index.tsx +++ /dev/null @@ -1,127 +0,0 @@ -import { View, Text, StyleSheet, FlatList } from 'react-native'; - -import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { LQDButton } from '@/components'; -import { ILQDButton } from '@/components/button/types'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; -import AssetPaper from './paper'; -import { useAccountActions } from '@/store/account/actions'; - -const Assets = () => { - const { router, accountState } = useSystemFunctions(); - const { getTokens } = useAccountActions(); - const { tokens, tokenBalance, refreshing } = accountState; - - const actions: Array = [ - { - title: 'Add money', - onPress: () => router.push('/deposit/debit'), - variant: 'tertiary', - fullWidth: false, - icon: 'money', - style: styles.action, - }, - { - title: 'Withdraw', - onPress: () => router.push('/withdraw'), - variant: 'tertiaryOutline', - fullWidth: false, - icon: 'arrow-up', - style: styles.action, - }, - ]; - - const tokensUserHas = tokens.data?.filter?.((token) => token.isListed && Number(token.balance) > 0); - const assets: IAssetPaper[] = tokensUserHas?.map?.((token) => ({ - iconUrl: token.logoUrl, - name: token.symbol, - value: Number(token.balance), - usdValue: Number(token.usdBalance), - })); - - return ( - - - - Total Holdings - ${tokenBalance.toLocaleString()} - - - - {actions.map((action, index) => ( - - ))} - - - - Assets - - } - keyExtractor={(_, index) => index.toString()} - contentContainerStyle={{ gap: 24 }} - refreshing={refreshing} - onRefresh={getTokens} - bounces={true} - showsVerticalScrollIndicator={false} - /> - - ); -}; - -export default Assets; - -const styles = StyleSheet.create({ - container: { - flex: 1, - paddingTop: 28, - paddingBottom: 80, - gap: 47, - paddingHorizontal: 16, - backgroundColor: '#fff', - }, - - balanceAndActionsContainer: { - alignSelf: 'stretch', - gap: 17, - alignItems: 'stretch', - }, - - balanceContainer: { - gap: 10, - }, - - balanceText: { - color: '#64748B', - fontSize: adjustFontSizeForIOS(13, 2), - lineHeight: 16.12, - fontFamily: 'AeonikRegular', - }, - - balanceValue: { - color: '#0F172A', - fontSize: adjustFontSizeForIOS(36, 4), - lineHeight: 40.32, - fontWeight: '700', - fontFamily: 'QuantaGroteskProBold', - }, - - actionsContainer: { - flexDirection: 'row', - gap: 11, - }, - - action: { - flex: 1, - }, - - assetLabel: { - color: '#0F172A', - fontSize: adjustFontSizeForIOS(20, 3), - lineHeight: 23.2, - fontWeight: '500', - fontFamily: 'AeonikMedium', - marginBottom: -20, - }, -}); diff --git a/screens/holdings/assets/paper.tsx b/screens/holdings/assets/paper.tsx deleted file mode 100644 index 3e0928d..0000000 --- a/screens/holdings/assets/paper.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import { View, Text, StyleSheet } from 'react-native'; - -import { adjustFontSizeForIOS } from '@/utils/helpers'; -import { LQDTokenImage } from '@/components'; - -const AssetPaper = ({ iconUrl, name, usdValue, value }: IAssetPaper) => { - return ( - - - - - - {name} - - {value.toLocaleString()} {name} - - - - - ${usdValue.toLocaleString()} - - ); -}; - -export default AssetPaper; - -const styles = StyleSheet.create({ - container: { - flexDirection: 'row', - paddingVertical: 2, - justifyContent: 'space-between', - alignItems: 'center', - borderRadius: 10, - }, - - leftContainer: { - alignSelf: 'stretch', - flexDirection: 'row', - alignItems: 'center', - gap: 10, - }, - - nameAndValueContainer: { - justifyContent: 'center', - gap: 4, - }, - - name: { - color: '#1E293B', - fontSize: adjustFontSizeForIOS(14, 2), - lineHeight: 18.48, - fontWeight: '500', - fontFamily: 'AeonikMedium', - }, - - value: { - color: '#64748B', - fontSize: adjustFontSizeForIOS(11, 2), - lineHeight: 13.64, - fontFamily: 'AeonikRegular', - }, - - usdValue: { - color: '#475569', - fontSize: adjustFontSizeForIOS(13, 2), - lineHeight: 16.12, - fontWeight: '500', - fontFamily: 'AeonikMedium', - }, -}); diff --git a/screens/holdings/assets/types.ts b/screens/holdings/assets/types.ts deleted file mode 100644 index d2b66d8..0000000 --- a/screens/holdings/assets/types.ts +++ /dev/null @@ -1,6 +0,0 @@ -interface IAssetPaper { - iconUrl: string; - name: string; - value: number; - usdValue: number; -} diff --git a/screens/holdings/card.tsx b/screens/holdings/card.tsx deleted file mode 100644 index eacd0c9..0000000 --- a/screens/holdings/card.tsx +++ /dev/null @@ -1,258 +0,0 @@ -import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; - -import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; -import { CaretRightAltIcon, CoinsAltIcon, DollarSquareIcon, InformationIcon, MoneysAltIcon } from '@/assets/icons'; - -const icons = { - primary: , - secondary: , - tertiary: , - quaternary: , -}; - -const Card = ({ details, subtitle, title, variant }: IItem) => { - const { router } = useSystemFunctions(); - - const config: ICardConfig = { - primary: { - primaryColor: '#EBF1FF', - secondaryColor: '#162664', - label: 'Liquid balance', - action: () => router.navigate('/(tabs)/holdings/assets'), - }, - secondary: { - primaryColor: '#FEF7EC', - secondaryColor: '#693D11', - label: 'LP balance', - action: () => router.navigate('/(tabs)/holdings/pools'), - }, - // tertiary: { - // primaryColor: '#EEEBFF', - // secondaryColor: '#2B1664', - // label: 'Aero rewards', - // action: () => - // router.navigate({ - // pathname: '/(tabs)/holdings/rewards', - // params: { type: 'aero' }, - // }), - // }, - // quaternary: { - // primaryColor: '#EBFAFF', - // secondaryColor: '#164564', - // label: 'Fees earned', - // action: () => - // router.navigate({ - // pathname: '/(tabs)/holdings/rewards', - // params: { type: 'fees' }, - // }), - // }, - }; - - return ( - - - - - - {icons[variant]} - - - - - {config[variant].label} - - - - - {title} - - - - {subtitle} - - - - - - - - - - - {details.map((detail, index) => ( - - - {detail.title} - - - - {detail.value} - - - ))} - - - - - {variant === 'primary' ? 'View assets' : 'See all'} - - - - - - - - ); -}; - -export default Card; - -const styles = StyleSheet.create({ - container: { - width: '100%', - alignSelf: 'stretch', - padding: 16, - gap: 16, - borderRadius: 12, - borderWidth: 1, - }, - - top: { - alignSelf: 'stretch', - paddingVertical: 2, - flexDirection: 'row', - justifyContent: 'space-between', - }, - - topLeft: { - flexDirection: 'row', - alignItems: 'center', - gap: 10, - }, - - iconContainer: { - width: 30, - height: 30, - padding: 6, - justifyContent: 'center', - alignItems: 'center', - borderRadius: 9, - }, - - labelAndHeader: { - alignSelf: 'stretch', - gap: 4, - }, - - label: { - fontSize: adjustFontSizeForIOS(14, 2), - lineHeight: 18.48, - fontFamily: 'AeonikRegular', - }, - - titleAndSubtitle: { - flexDirection: 'row', - alignItems: 'center', - gap: 8, - }, - - title: { - fontSize: adjustFontSizeForIOS(18, 2), - lineHeight: 27, - letterSpacing: -0.36, - fontFamily: 'ClashDisplaySemibold', - fontWeight: '600', - }, - - subtitle: { - fontSize: adjustFontSizeForIOS(12, 2), - lineHeight: 15.84, - fontFamily: 'AeonikRegular', - }, - - bottom: { - flexDirection: 'row', - alignSelf: 'stretch', - justifyContent: 'space-between', - alignItems: 'flex-end', - }, - - details: { - flexDirection: 'row', - alignItems: 'center', - gap: 24, - }, - - detail: { - justifyContent: 'center', - gap: 4, - }, - - detailTitle: { - fontSize: adjustFontSizeForIOS(11, 2), - lineHeight: 13.64, - fontFamily: 'AeonikRegular', - }, - - detailValue: { - fontSize: adjustFontSizeForIOS(14, 2), - lineHeight: 18.48, - fontWeight: '500', - fontFamily: 'AeonikMedium', - }, - - actionContainer: { - flexDirection: 'row', - gap: 4, - alignItems: 'flex-end', - justifyContent: 'flex-end', - }, - - actionText: { - fontSize: adjustFontSizeForIOS(13, 2), - lineHeight: 16.12, - fontFamily: 'AeonikRegular', - }, -}); diff --git a/screens/holdings/dummy.ts b/screens/holdings/dummy.ts deleted file mode 100644 index e28b6da..0000000 --- a/screens/holdings/dummy.ts +++ /dev/null @@ -1,17 +0,0 @@ -const emptyData: IEmptyData = { - primary: { - icon: 'wallet', - title: 'Make your first Deposit', - subtitle: 'Click “Add money” and Deposit cash easily with the payment method of your choice', - actionIcon: 'plus', - }, - - secondary: { - icon: 'radio', - title: 'No Liquidity Pools yet', - subtitle: 'Deposit Liquidity into a pool and your balances will show up here', - actionIcon: 'right-caret', - }, -}; - -export { emptyData }; diff --git a/screens/holdings/empty.tsx b/screens/holdings/empty.tsx deleted file mode 100644 index 6d991ee..0000000 --- a/screens/holdings/empty.tsx +++ /dev/null @@ -1,106 +0,0 @@ -import { StyleSheet, View, Text, TouchableOpacity } from 'react-native'; - -import { adjustFontSizeForIOS } from '@/utils/helpers'; -import { AddIcon, CaretRightAltIcon, CoinsAltIcon, DollarSquareIcon, MoneysIcon, WalletMoneyIcon } from '@/assets/icons'; - -const icons = { - wallet: , - radio: , - coins: , - dollar: , -}; - -const actionIcons = { - plus: , - 'right-caret': , -}; - -const Empty = ({ icon, subtitle, title, action, actionIcon, isLast }: IEmpty) => { - return ( - - {icons[icon]} - - - {title} - {subtitle} - - - {action && ( - - {action.title} - {actionIcon && actionIcons[actionIcon]} - - )} - - ); -}; - -export default Empty; - -const styles = StyleSheet.create({ - container: { - alignItems: 'center', - justifyContent: 'center', - paddingVertical: 24, - alignSelf: 'stretch', - gap: 20, - }, - - iconContainer: { - padding: 8, - width: 40, - height: 40, - backgroundColor: '#334155', - borderRadius: 12, - alignItems: 'center', - justifyContent: 'center', - }, - - textContainer: { - alignSelf: 'stretch', - alignItems: 'center', - justifyContent: 'center', - gap: 8, - }, - - title: { - color: '#334155', - fontSize: adjustFontSizeForIOS(16, 2), - lineHeight: 19.2, - fontWeight: '500', - }, - - subtile: { - color: '#64748B', - fontSize: adjustFontSizeForIOS(14, 2), - lineHeight: 18.48, - textAlign: 'center', - width: '80%', - }, - - action: { - flexDirection: 'row', - height: 32, - paddingVertical: 4, - paddingHorizontal: 12, - alignItems: 'center', - justifyContent: 'center', - gap: 5, - backgroundColor: '#334155', - borderRadius: 6, - }, - - actionText: { - color: '#FFF', - fontSize: adjustFontSizeForIOS(11, 2), - lineHeight: 13.64, - fontWeight: '500', - textAlign: 'center', - }, - - notLastStyle: { - borderBottomWidth: 1, - borderBottomColor: '#EAEEF4', - paddingBottom: 50, - }, -}); diff --git a/screens/holdings/index.tsx b/screens/holdings/index.tsx deleted file mode 100644 index bb7e323..0000000 --- a/screens/holdings/index.tsx +++ /dev/null @@ -1,189 +0,0 @@ -import { View, Text, StyleSheet, ScrollView, Platform, StatusBar as RNStatusBar } from 'react-native'; - -import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { LQDScrollView, LQDButton, SearchUI } from '@/components'; -import { ILQDButton } from '@/components/button/types'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; -import Card from './card'; -import Empty from './empty'; -import { emptyData } from './dummy'; -import SearchPlaceholder from '@/components/search-ui/search-placeholder'; -import { useState } from 'react'; -import { useAccountActions } from '@/store/account/actions'; - -const Holdings = () => { - const { router, accountState, appState } = useSystemFunctions(); - const { getTokens } = useAccountActions(); - const { tokens, tokenBalance, positions, lpBalance, refreshing } = accountState; - - const actions: Array = [ - { - title: 'Add money', - onPress: () => router.push('/deposit/debit'), - variant: 'tertiary', - fullWidth: false, - icon: 'money', - style: styles.action, - }, - { - title: 'Withdraw', - onPress: () => router.push('/withdraw'), - variant: 'tertiaryOutline', - fullWidth: false, - icon: 'arrow-up', - style: styles.action, - hide: tokenBalance <= 0, - }, - ]; - - const visibleActions = actions.filter((action) => !action.hide); - const tokensUserHas = tokens.data?.filter?.((token) => token.isListed && Number(token.balance) > 0); - - const items: Array = [ - { - variant: 'primary', - details: [{ title: 'Assets', value: `${tokensUserHas?.length || 0} assets` }], - subtitle: '', - title: `$${tokenBalance.toLocaleString()}`, - empty: { - ...emptyData.primary, - action: { - title: 'Add money', - onPress: () => router.navigate('/deposit/debit'), - }, - }, - isEmpty: tokensUserHas?.length === 0, - }, - { - variant: 'secondary', - details: [ - { title: 'Staked Balance:', value: `${100} AERO-LP` }, - { title: 'Your Pools', value: `${positions?.length} pools` }, - ], - subtitle: `$${(10_706).toLocaleString()}`, - title: `${lpBalance.toLocaleString()} AERO-LP`, - empty: { - ...emptyData.secondary, - action: { - title: 'Explore pools', - onPress: () => router.navigate('/(tabs)/home'), - }, - }, - isEmpty: positions?.length === 0, - }, - ]; - - const nonEmptyItems = items.filter((item) => !item.isEmpty); - - const emptyItems = items.filter((item) => item.isEmpty && item.empty).map((item) => item.empty); - - if (appState.showSearch) { - return ( - - - - ); - } - - return ( - <> - - - getTokens(true)} style={styles.container}> - - - Total Holdings - ${(tokenBalance + lpBalance).toLocaleString()} - - - - {visibleActions.map((action, index) => ( - - ))} - - - - {Boolean(items.length) && ( - - {nonEmptyItems.map((item, index) => ( - - ))} - - )} - - {Boolean(emptyItems.length) && ( - - {emptyItems.map((item, index) => ( - - ))} - - )} - - - ); -}; - -export default Holdings; - -const styles = StyleSheet.create({ - container: { - paddingTop: 34, - paddingHorizontal: 16, - backgroundColor: '#fff', - }, - - emptyContainer: { - gap: 26, - }, - - cardContainer: { - gap: 24, - }, - - contentContainer: { - paddingBottom: 175, - gap: 27, - }, - - balanceAndActionsContainer: { - alignSelf: 'stretch', - gap: 17, - alignItems: 'stretch', - }, - - balanceContainer: { - gap: 10, - }, - - balanceText: { - color: '#64748B', - fontSize: adjustFontSizeForIOS(13, 2), - lineHeight: 16.12, - fontFamily: 'AeonikRegular', - }, - - balanceValue: { - color: '#0F172A', - fontSize: adjustFontSizeForIOS(36, 4), - lineHeight: 40.32, - fontWeight: '700', - fontFamily: 'QuantaGroteskProBold', - }, - - actionsContainer: { - flexDirection: 'row', - gap: 11, - }, - - action: { - flex: 1, - }, - - searchWrapper: { - flex: 1, - paddingHorizontal: 16, - backgroundColor: '#fff', - paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, - paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, - }, -}); diff --git a/screens/holdings/pools/action.tsx b/screens/holdings/pools/action.tsx deleted file mode 100644 index a96b241..0000000 --- a/screens/holdings/pools/action.tsx +++ /dev/null @@ -1,69 +0,0 @@ -import { Text, StyleSheet, GestureResponderEvent, TouchableOpacity } from 'react-native'; - -import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; - -const PoolCardAction = ({ disabled, id, type }: IPoolCardAction) => { - const { router } = useSystemFunctions(); - - const action = (event: GestureResponderEvent) => { - event.stopPropagation(); - - router.push({ pathname: '/liquidity-management', params: { id, type } }); - }; - - return ( - - {type} - - ); -}; - -export default PoolCardAction; - -const styles = StyleSheet.create({ - container: { - height: '100%', - paddingVertical: 4, - justifyContent: 'center', - alignItems: 'center', - borderRadius: 10, - paddingHorizontal: 20, - }, - - stakeActive: { - backgroundColor: '#4691FE', - }, - - stakeDisabled: { - backgroundColor: '#CBD5E1', - }, - - unstakeActive: { - borderWidth: 1, - borderColor: '#E2E8F0', - backgroundColor: '#F8FAFC', - }, - - unstakeDisabled: { - opacity: 0.5, - }, - - title: { - fontSize: adjustFontSizeForIOS(11, 2), - lineHeight: 13.64, - textTransform: 'capitalize', - }, - - stakeTitle: { - color: '#FFF', - }, - - unstakeTitle: { - color: '#0F172A', - }, -}); diff --git a/screens/holdings/pools/card.tsx b/screens/holdings/pools/card.tsx deleted file mode 100644 index 3b92005..0000000 --- a/screens/holdings/pools/card.tsx +++ /dev/null @@ -1,214 +0,0 @@ -import { View, Text, StyleSheet, Pressable } from 'react-native'; -import FastImage from 'react-native-fast-image'; - -import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; -import PoolCardAction from './action'; - -const PoolCard = ({ - fees, - id, - lpBalance, - primaryIconURL, - primaryTitle, - secondaryIconURL, - secondaryTitle, - stakedBalance, - variant = 'stable', -}: IPoolCard) => { - const { router } = useSystemFunctions(); - const flagColors = { - stable: '#B47818', - volatile: '#AF1D38', - }; - - const actions: Array = [ - { disabled: lpBalance <= 0, id, type: 'stake' }, - { disabled: stakedBalance <= 0, id, type: 'unstake' }, - ]; - - return ( - router.push(`/holdings/${id}`)}> - - - - {[primaryIconURL, secondaryIconURL].map((iconURL, index) => ( - - - - ))} - - - - - {variant.charAt(0)}AMM - {primaryTitle} / {secondaryTitle} - - - - Basic {variant} - - - - - - {fees}% Fee - - - - - - LP Balance: - {lpBalance.toLocaleString()} AERO-LP - - - - - - {actions.map((action, index) => ( - - ))} - - - - Staked Balance: - {stakedBalance.toLocaleString()} AERO-LP - - - - ); -}; - -export default PoolCard; - -const styles = StyleSheet.create({ - container: { - padding: 16, - alignSelf: 'stretch', - gap: 16, - borderRadius: 12, - borderWidth: 1, - borderColor: '#EAEEF4', - }, - - topContainer: { - paddingVertical: 2, - alignSelf: 'stretch', - flexDirection: 'row', - justifyContent: 'space-between', - alignItems: 'center', - borderRadius: 10, - }, - - topLeftContainer: { - flexDirection: 'row', - alignSelf: 'stretch', - alignItems: 'center', - gap: 10 + 6, - }, - - iconContainer: { - flexDirection: 'row', - alignItems: 'center', - justifyContent: 'center', - }, - - icon: { - width: 24, - height: 24, - alignItems: 'center', - justifyContent: 'center', - borderRadius: 9999, - borderWidth: 1, - borderColor: '#EAEEF4', - marginRight: -6, - }, - - detailContainer: { - justifyContent: 'center', - gap: 4, - }, - - detailHeader: { - color: '#1E293B', - fontSize: adjustFontSizeForIOS(14, 2), - lineHeight: 18.48, - fontWeight: '500', - fontFamily: 'AeonikMedium', - }, - - details: { - flexDirection: 'row', - alignSelf: 'stretch', - alignItems: 'center', - gap: 4, - }, - - detailText: { - fontSize: adjustFontSizeForIOS(11, 2), - lineHeight: 13.64, - fontFamily: 'AeonikRegular', - }, - - fee: { - color: '#64748B', - fontFamily: 'AeonikRegular', - }, - - separator: { - position: 'relative', - width: 7, - height: 0.5, - backgroundColor: '#0C050766', - }, - - separatorCircle: { - width: 3, - height: 3, - borderRadius: 9999, - backgroundColor: '#0C0507', - position: 'absolute', - top: -1.35, - left: '26%', - }, - - balanceContainer: { - justifyContent: 'center', - alignItems: 'flex-end', - gap: 5, - }, - - balanceLabel: { - color: '#64748B', - fontSize: adjustFontSizeForIOS(11, 2), - lineHeight: 13.64, - fontFamily: 'AeonikRegular', - }, - - balanceValue: { - color: '#334155', - fontSize: adjustFontSizeForIOS(13, 2), - lineHeight: 16.12, - fontWeight: '500', - fontFamily: 'AeonikMedium', - }, - - bottomContainer: { - flexDirection: 'row', - alignSelf: 'stretch', - justifyContent: 'space-between', - alignItems: 'flex-end', - }, - - actions: { - flexDirection: 'row', - gap: 16, - height: 30, - }, -}); diff --git a/screens/holdings/pools/index.tsx b/screens/holdings/pools/index.tsx deleted file mode 100644 index 8266b46..0000000 --- a/screens/holdings/pools/index.tsx +++ /dev/null @@ -1,95 +0,0 @@ -import { View, Text, StyleSheet, ScrollView } from 'react-native'; - -import { adjustFontSizeForIOS } from '@/utils/helpers'; -import PoolCard from './card'; -import useSystemFunctions from '@/hooks/useSystemFunctions'; - -const Pools = () => { - const pools: Array = [ - { - fees: 0.3, - id: '1', - lpBalance: 2_000, - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - primaryTitle: 'USDC', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - secondaryTitle: 'ETH', - stakedBalance: 100, - variant: 'stable', - }, - { - fees: 0.3, - id: '2', - lpBalance: 0, - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - primaryTitle: 'USDC', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - secondaryTitle: 'ETH', - stakedBalance: 360, - variant: 'volatile', - }, - - { - fees: 0.3, - id: '1', - lpBalance: 2_000, - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - primaryTitle: 'USDC', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - secondaryTitle: 'ETH', - stakedBalance: 0, - variant: 'stable', - }, - { - fees: 0.3, - id: '2', - lpBalance: 200, - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - primaryTitle: 'USDC', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - secondaryTitle: 'ETH', - stakedBalance: 360, - variant: 'volatile', - }, - ]; - - return ( - - My Pools - - - {pools.map((pool, index) => ( - - ))} - - - ); -}; - -export default Pools; - -const styles = StyleSheet.create({ - container: { - flex: 1, - paddingTop: 32, - paddingHorizontal: 16, - backgroundColor: '#fff', - }, - - contentContainer: { - paddingBottom: 175, - gap: 20, - }, - - header: { - color: '#0F172A', - fontSize: adjustFontSizeForIOS(20, 3), - lineHeight: 23.2, - fontWeight: '500', - fontFamily: 'AeonikMedium', - }, - - poolsContainer: { - gap: 24, - }, -}); diff --git a/screens/holdings/pools/types.ts b/screens/holdings/pools/types.ts deleted file mode 100644 index 59e53a7..0000000 --- a/screens/holdings/pools/types.ts +++ /dev/null @@ -1,19 +0,0 @@ -type PoolCardVariant = 'stable' | 'volatile'; - -interface IPoolCard { - id: string; - variant: PoolCardVariant; - primaryIconURL: string; - secondaryIconURL: string; - primaryTitle: string; - secondaryTitle: string; - fees: number; - lpBalance: number; - stakedBalance: number; -} - -interface IPoolCardAction { - id: string; - type: 'stake' | 'unstake'; - disabled: boolean; -} diff --git a/screens/holdings/rewards/card.tsx b/screens/holdings/rewards/card.tsx deleted file mode 100644 index dca0e80..0000000 --- a/screens/holdings/rewards/card.tsx +++ /dev/null @@ -1,238 +0,0 @@ -import { adjustFontSizeForIOS } from '@/utils/helpers'; -import { View, Text, StyleSheet, TouchableOpacity, Image } from 'react-native'; - -const RewardCard = ({ - condition, - fee, - id, - primaryIconURL, - primaryTitle, - secondaryIconURL, - secondaryTitle, - variant, - aero, - fees, -}: IRewardCard) => { - const conditionColors = { - stable: '#B47818', - volatile: '#AF1D38', - }; - - const rewards = { - fees: { - label: 'Fees Earned', - render: ( - - - {fees?.primaryValue.toLocaleString()} {fees?.primaryName} - - - - - - {fees?.secondaryValue.toLocaleString()} {fees?.secondaryName} - - - ), - }, - aero: { - label: 'AERO rewards:', - render: {aero?.toLocaleString()} AERO, - }, - }; - - return ( - - - - {[primaryIconURL, secondaryIconURL].map((iconURL, index) => ( - - - - ))} - - - - - {condition.charAt(0)}AMM - {primaryTitle} / {secondaryTitle} - - - - - Basic {condition} - - - - - - - {fee}% Fee - - - - - - - {rewards[variant].label} - {rewards[variant].render} - - - - - Claim - - - - - ); -}; - -export default RewardCard; - -const styles = StyleSheet.create({ - container: { - padding: 16, - alignSelf: 'stretch', - gap: 16, - borderRadius: 12, - borderWidth: 1, - borderColor: '#EAEEF4', - }, - - topContainer: { - paddingVertical: 2, - alignSelf: 'stretch', - flexDirection: 'row', - alignItems: 'center', - gap: 10 + 6, - }, - - iconContainer: { - flexDirection: 'row', - alignItems: 'center', - justifyContent: 'center', - }, - - icon: { - width: 24, - height: 24, - alignItems: 'center', - justifyContent: 'center', - borderRadius: 9999, - borderWidth: 1, - borderColor: '#EAEEF4', - marginRight: -6, - }, - - detailContainer: { - justifyContent: 'center', - gap: 4, - }, - - detailHeader: { - color: '#1E293B', - fontSize: adjustFontSizeForIOS(14, 2), - lineHeight: 18.48, - fontWeight: '500', - }, - - details: { - flexDirection: 'row', - alignSelf: 'stretch', - alignItems: 'center', - gap: 4, - }, - - detailText: { - fontSize: adjustFontSizeForIOS(11, 2), - lineHeight: 13.64, - }, - - fee: { - color: '#64748B', - }, - - separator: { - position: 'relative', - width: 7, - height: 0.5, - backgroundColor: '#0C050766', - }, - - separatorCircle: { - width: 3, - height: 3, - borderRadius: 9999, - backgroundColor: '#0C0507', - position: 'absolute', - top: -1.35, - left: '26%', - }, - - bottomContainer: { - alignSelf: 'stretch', - flexDirection: 'row', - justifyContent: 'space-between', - alignItems: 'flex-end', - }, - - separatorAlt: { - position: 'relative', - width: 14, - height: 1, - backgroundColor: '#7FB3FE66', - }, - - separatorCircleAlt: { - width: 6, - height: 6, - borderRadius: 9999, - backgroundColor: '#7FB3FE', - position: 'absolute', - top: -2.5, - left: '26%', - }, - - rewardContainer: { - justifyContent: 'center', - gap: 5, - }, - - rewardLabel: { - color: '#64748B', - fontSize: adjustFontSizeForIOS(11, 2), - lineHeight: 13.64, - }, - - rewardValue: { - color: '#334155', - fontSize: adjustFontSizeForIOS(13, 2), - lineHeight: 16.12, - fontWeight: '500', - }, - - action: { - height: 30, - paddingVertical: 4, - justifyContent: 'center', - alignItems: 'center', - borderRadius: 10, - paddingHorizontal: 20, - backgroundColor: '#4691FE', - }, - - actionText: { - color: '#FFF', - fontSize: adjustFontSizeForIOS(11, 2), - lineHeight: 13.64, - textTransform: 'capitalize', - }, -}); diff --git a/screens/holdings/rewards/dummy.ts b/screens/holdings/rewards/dummy.ts deleted file mode 100644 index d85bd3d..0000000 --- a/screens/holdings/rewards/dummy.ts +++ /dev/null @@ -1,169 +0,0 @@ -const aeroRewards: Array = [ - { - id: '1', - condition: 'volatile', - variant: 'aero', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 0.05, - aero: 16, - }, - { - id: '2', - condition: 'stable', - variant: 'aero', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 0.1, - aero: 5, - }, - { - id: '3', - condition: 'stable', - variant: 'aero', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 1.34, - aero: 500, - }, - { - id: '4', - condition: 'volatile', - variant: 'aero', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 0.05, - aero: 16, - }, - { - id: '5', - condition: 'stable', - variant: 'aero', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 0.1, - aero: 5, - }, - { - id: '6', - condition: 'stable', - variant: 'aero', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 1.34, - aero: 500, - }, -]; - -const feesRewards: Array = [ - { - id: '1', - condition: 'volatile', - variant: 'fees', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 0.05, - fees: { - primaryValue: 16, - primaryName: 'USDT', - secondaryValue: 0.05, - secondaryName: 'ETH', - }, - }, - { - id: '2', - condition: 'stable', - variant: 'fees', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 0.1, - fees: { - primaryValue: 5, - primaryName: 'USDT', - secondaryValue: 0.1, - secondaryName: 'ETH', - }, - }, - { - id: '3', - condition: 'stable', - variant: 'fees', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 1.34, - fees: { - primaryValue: 500, - primaryName: 'USDT', - secondaryValue: 1.34, - secondaryName: 'ETH', - }, - }, - { - id: '4', - condition: 'volatile', - variant: 'fees', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 0.05, - fees: { - primaryValue: 16, - primaryName: 'USDT', - secondaryValue: 0.05, - secondaryName: 'ETH', - }, - }, - { - id: '5', - condition: 'stable', - variant: 'fees', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 0.1, - fees: { - primaryValue: 5, - primaryName: 'USDT', - secondaryValue: 0.1, - secondaryName: 'ETH', - }, - }, - { - id: '6', - condition: 'stable', - variant: 'fees', - primaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119033/is3tphz7tf06jpj5g7x3.png', - secondaryIconURL: 'https://res.cloudinary.com/dxnd4k222/image/upload/v1727119032/uwficdtvggd49apjfpt4.png', - primaryTitle: 'USDT', - secondaryTitle: 'ETH', - fee: 1.34, - fees: { - primaryValue: 500, - primaryName: 'USDT', - secondaryValue: 1.34, - secondaryName: 'ETH', - }, - }, -]; - -export { aeroRewards, feesRewards }; diff --git a/screens/holdings/rewards/index.tsx b/screens/holdings/rewards/index.tsx deleted file mode 100644 index 09877f9..0000000 --- a/screens/holdings/rewards/index.tsx +++ /dev/null @@ -1,61 +0,0 @@ -import { View, Text, StyleSheet, ScrollView } from 'react-native'; - -import { adjustFontSizeForIOS } from '@/utils/helpers'; -import RewardCard from './card'; -import { aeroRewards, feesRewards } from './dummy'; - -const Rewards = ({ type }: { type: RewardVariants }) => { - const rewards = { - fees: feesRewards, - aero: aeroRewards, - }[type]; - - const noOfRewards = rewards.length; - return ( - - - Rewards - ({noOfRewards} pools) - - - - {rewards.map((reward) => ( - - ))} - - - ); -}; - -export default Rewards; - -const styles = StyleSheet.create({ - container: { - flex: 1, - paddingTop: 32, - paddingHorizontal: 16, - backgroundColor: '#fff', - }, - - contentContainer: { - paddingBottom: 175, - gap: 20, - }, - - header: { - color: '#0F172A', - fontSize: adjustFontSizeForIOS(20, 3), - lineHeight: 23.2, - fontWeight: '500', - }, - - subHeader: { - color: '#94A3B8', - fontSize: adjustFontSizeForIOS(16, 2), - fontWeight: '500', - }, - - rewardsContainer: { - gap: 24, - }, -}); diff --git a/screens/holdings/rewards/types.ts b/screens/holdings/rewards/types.ts deleted file mode 100644 index 3f8182d..0000000 --- a/screens/holdings/rewards/types.ts +++ /dev/null @@ -1,20 +0,0 @@ -type RewardCardCondition = 'stable' | 'volatile'; -type RewardCardVariant = 'fees' | 'aero'; - -interface IRewardCard { - id: string; - condition: RewardCardCondition; - variant: RewardCardVariant; - primaryIconURL: string; - secondaryIconURL: string; - primaryTitle: string; - secondaryTitle: string; - fee: number; - aero?: number; - fees?: { - primaryName: string; - primaryValue: number; - secondaryName: string; - secondaryValue: number; - }; -} diff --git a/screens/holdings/types.ts b/screens/holdings/types.ts deleted file mode 100644 index 9536c69..0000000 --- a/screens/holdings/types.ts +++ /dev/null @@ -1,38 +0,0 @@ -interface IEmpty { - icon: 'wallet' | 'radio' | 'coins' | 'dollar'; - title: string; - subtitle: string; - action?: { - title: string; - onPress: () => void; - }; - actionIcon?: 'plus' | 'right-caret'; - isLast?: boolean; -} - -type Variants = 'primary' | 'secondary'; - -interface IItem { - variant: Variants; - title: string; - subtitle: string; - details: Array<{ - title: string; - value: string; - }>; - isEmpty?: boolean; - empty?: IEmpty; -} - -interface CardConfig { - primaryColor: string; - secondaryColor: string; - label: string; - action: () => void; -} - -interface IEmptyData extends Record {} - -interface ICardConfig extends Record {} - -type RewardVariants = 'aero' | 'fees'; diff --git a/screens/home/header.tsx b/screens/home/header.tsx new file mode 100644 index 0000000..0d7997e --- /dev/null +++ b/screens/home/header.tsx @@ -0,0 +1,39 @@ +import { Pressable, StyleSheet, Text, View } from 'react-native'; +import React from 'react'; +import { HeaderMenuIcon, HeaderWalletIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; + +const Header = ({ amount, action }: IHeader) => { + return ( + + + + + + ${amount} + + + + ); +}; + +export default Header; + +const styles = StyleSheet.create({ + container: { + flexDirection: 'row', + justifyContent: 'space-between', + paddingHorizontal: 16, + backgroundColor: '#fff', + alignItems: 'center', + borderBottomWidth: 1, + paddingVertical: 10, + borderColor: '#F1F5F9', + }, + amountWrap: { flexDirection: 'row', alignItems: 'center', gap: 10 }, + amount: { + fontSize: adjustFontSizeForIOS(18, 3), + fontFamily: 'AeonikMedium', + fontWeight: '500', + }, +}); diff --git a/screens/home/index.tsx b/screens/home/index.tsx index 1c5d363..7b82167 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -1,142 +1,146 @@ import { useEffect } from 'react'; -import { StyleSheet, View, Text, FlatList, TouchableOpacity, Platform, StatusBar as RNStatusBar, ScrollView } from 'react-native'; +import { StyleSheet, Platform, StatusBar as RNStatusBar, Pressable } from 'react-native'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { adjustFontSizeForIOS, createArrayWithIndexes, formatAmountWithWholeAndDecimal } from '@/utils/helpers'; -import { LQDButton, LQDPoolPairCard, LQDPoolPairPaper, LQDScrollView, LQShrimeLoader, SearchUI } from '@/components'; -import { CaretRightIcon, DirectUpIcon, DollarSquareIcon, TrendUpIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS, createArrayWithIndexes } from '@/utils/helpers'; +import { LQDBottomSheet, LQDFeedCard, LQDFlatlist, LQDPoolPairCard } from '@/components'; +import { PlusIcon } from '@/assets/icons'; import { useAccountActions } from '@/store/account/actions'; import { usePoolActions } from '@/store/pools/actions'; import { useOnMount } from '@/hooks/useOnMount'; -import Section from './section'; -import SearchPlaceholder from '@/components/search-ui/search-placeholder'; import Loader from './loader'; +const image = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; + +const feeds: Array = [ + { + photo: image, + username: '@Nurayyy.eth', + address: '0xc61...87f7a', + date: '2h', + percentage: '65.45', + estimate: 'Est. APY', + title: 'Moonwell - USDC', + commentCount: 26, + shareCount: 26, + flashCount: 26, + description: 'This strategy starts as an ease in for first and second quaterss of 2025', + steps: [ + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + photo: image, + username: '@Gabby.eth', + address: '0xc61...87f7a', + date: '2h', + percentage: '65.45', + estimate: 'Est. APY', + title: 'Moonwell - USDC', + commentCount: 26, + shareCount: 26, + flashCount: 26, + description: 'This strategy starts as an ease in for first and second quaterss of 2025', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, +]; const Home = () => { const { router, poolsState, smartAccountState, accountState, appState } = useSystemFunctions(); const { getTokens } = useAccountActions(); - const { getPools, getAllPools } = usePoolActions(); + const { getAllPools } = usePoolActions(); - const { trendingPools, hotPools, topGainers, loadingPools } = poolsState; + const { loadingPools } = poolsState; const { loading: loadingAccounts } = accountState; - - const { whole, decimal } = formatAmountWithWholeAndDecimal(accountState.tokenBalance.toFixed(2)); - - const hotPoolsArray = Object.values(hotPools.data); - const trendingPoolsArray = Object.values(trendingPools.data); - const top7GainersArray = Object.values(topGainers.data); - - const top10TrendingPools = trendingPoolsArray?.slice(0, 10); - const top10HotPools = hotPoolsArray.slice(0, 10) ?? []; - const top7Gainers = top7GainersArray.slice(0, 7); const globalLoading = loadingPools || loadingAccounts; - const emptyArryTopGainers = createArrayWithIndexes(3); - const emptyArryTrending = createArrayWithIndexes(5); - - const sections = [ - { - title: 'Top gainers', - subtitle: 'by APR', - icon: , - action: () => router.push('/(tabs)/home/top'), - children: ( - } - keyExtractor={(_, index) => index.toString()} - showsHorizontalScrollIndicator={false} - contentContainerStyle={{ gap: 10 }} - /> - ), - }, - - { - title: 'Trending', - subtitle: 'by Volume', - icon: , - action: () => router.push('/(tabs)/home/trending'), - children: ( - - {top10TrendingPools.map((pool, index) => ( - - ))} - - ), - }, - { - title: 'Hot', - subtitle: 'by TVL', - icon: , - action: () => router.push('/(tabs)/home/hot'), - children: ( - - {top10HotPools.map((pool, index) => ( - - ))} - - ), - }, - ]; useEffect( function fetchBalances() { getTokens(); - //getPositions(); }, [smartAccountState.address] ); useOnMount(function loadData() { - getPools(); getAllPools(); }); - if (appState.showSearch) { - return ( - - - - ); - } - if (globalLoading) return ; - return ( <> - - - getTokens(true)} - style={styles.container} - contentStyle={styles.contentContainer} - > - - - Total Balance - router.push('/(tabs)/holdings')} style={styles.balanceValueContainer}> - - ${whole}.{decimal} - - - - - - - router.push('/deposit/debit')} - variant="tertiaryOutline" - icon="money" - iconColor="#334155" - style={{ alignSelf: 'stretch' }} - /> - - - {sections.map((section, index) => ( -
- ))} -
+ + + + {globalLoading && } + {!globalLoading && ( + } + keyExtractor={(_, index) => index.toString()} + showsHorizontalScrollIndicator={false} + style={{ backgroundColor: '#fff' }} + onRefresh={() => {}} + /> + )} ); }; @@ -216,4 +220,16 @@ const styles = StyleSheet.create({ paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, }, + addIcon: { + backgroundColor: '#4691FE', + height: 50, + width: 50, + justifyContent: 'center', + alignItems: 'center', + borderRadius: 100, + position: 'absolute', + bottom: '12%', + right: 15, + zIndex: 2, + }, }); diff --git a/screens/home/loader.tsx b/screens/home/loader.tsx index c6927fa..c9f5061 100644 --- a/screens/home/loader.tsx +++ b/screens/home/loader.tsx @@ -4,51 +4,28 @@ import { LQShrimeLoader } from '@/components'; import { createArrayWithIndexes } from '@/utils/helpers'; const Loader = () => { - const emptyArryTopGainers = createArrayWithIndexes(3); - const emptyArryTrending = createArrayWithIndexes(5); + const emptyArry = createArrayWithIndexes(3); return ( - - {/* search */} - - - - - - - {/* total balance */} - - - {/* button */} - - - {/* section */} - - - - - - {/* gainers */} - - {emptyArryTopGainers.map((_, index) => ( - - ))} - + + {emptyArry.map((_, index) => ( + + + + + + + + - {/* section */} - - - - + - {/* trending */} - {emptyArryTrending.map((_, index) => ( - - - - - + + + - + + + ))} @@ -58,19 +35,18 @@ const Loader = () => { export default Loader; const styles = StyleSheet.create({ + container: { backgroundColor: '#fff', flex: 1 }, + loaderBody: { borderBottomWidth: 1, paddingBottom: 30, borderColor: '#F1F5F9', paddingHorizontal: 16 }, loaderButton: { height: 40, borderRadius: 10, marginTop: 20 }, - loaderBalance: { height: 98, borderRadius: 10, marginTop: 30 }, + loaderBalance: { height: 98, borderRadius: 10, marginTop: 20 }, searchLoader: { flexDirection: 'row', - gap: 30, - alignItems: 'center', - backgroundColor: '#fff', - paddingHorizontal: 16, + gap: 10, paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, - paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, }, - loaderOne: { height: 24, width: 24, borderRadius: 16 }, - loaderTwo: { height: 35, width: 50, borderRadius: 6, flex: 1 }, + loaderOne: { height: 40, width: 40, borderRadius: 100 }, + loaderTwo: { height: 40, width: 50, borderRadius: 10, flex: 1 }, + loaderThree: { height: 25, width: 24, borderRadius: 100 }, header: { flexDirection: 'row', alignSelf: 'stretch', @@ -97,6 +73,5 @@ const styles = StyleSheet.create({ topGainerLoaderThree: { height: 15, width: '50%', borderRadius: 6 }, topGainerLoaderFour: { height: 15, width: 56, borderRadius: 6 }, gainerLoaderContainer: { flexDirection: 'row', gap: 20, marginTop: 20 }, - sectionContainer: { flexDirection: 'row', justifyContent: 'space-between', marginTop: 30 }, - loaderBody: { backgroundColor: '#fff', flex: 1, paddingHorizontal: 16 }, + sectionContainer: { justifyContent: 'space-between', marginTop: 20, gap: 10 }, }); diff --git a/screens/home/types.ts b/screens/home/types.ts index b00c434..20390d1 100644 --- a/screens/home/types.ts +++ b/screens/home/types.ts @@ -6,3 +6,8 @@ interface ISection { action?: () => void; isShowingAll?: boolean; } + +interface IHeader { + amount: number; + action?: () => void; +} diff --git a/screens/index.ts b/screens/index.ts index 846df33..3a6786e 100644 --- a/screens/index.ts +++ b/screens/index.ts @@ -3,13 +3,11 @@ import TopGainers from './home/topGainers'; import Trending from './home/trending'; import Hot from './home/hot'; -import Setup from './setup'; +import Discover from './discover'; -import Holdings from './holdings'; -import Assets from './holdings/assets'; -import Pools from './holdings/pools'; -import Rewards from './holdings/rewards'; +import Profile from './profile'; +import Setup from './setup'; import CryptoDeposit from './deposit/crypto'; import DebitDeposit from './deposit/debit'; @@ -26,11 +24,9 @@ export { TopGainers, Trending, Hot, + Discover, + Profile, Setup, - Holdings, - Assets, - Pools, - Rewards, LiquidityManagement, CryptoDeposit, DebitDeposit, diff --git a/screens/profile/index.tsx b/screens/profile/index.tsx new file mode 100644 index 0000000..f7a7162 --- /dev/null +++ b/screens/profile/index.tsx @@ -0,0 +1,15 @@ +import { StyleSheet, Text, View } from 'react-native'; +import React from 'react'; + +const Profile = () => { + return ; +}; + +export default Profile; + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#FFF', + }, +}); diff --git a/yarn.lock b/yarn.lock index 946aa4c..bbe023b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7968,7 +7968,7 @@ prompts@^2.0.1, prompts@^2.2.1, prompts@^2.3.2, prompts@^2.4.2: kleur "^3.0.3" sisteransi "^1.0.5" -prop-types@^15.7.2, prop-types@^15.8.0, prop-types@^15.8.1: +prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.0, prop-types@^15.8.1: version "15.8.1" resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== @@ -8124,6 +8124,13 @@ react-is@^17.0.1: resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== +react-native-animatable@1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/react-native-animatable/-/react-native-animatable-1.3.3.tgz#a13a4af8258e3bb14d0a9d839917e9bb9274ec8a" + integrity sha512-2ckIxZQAsvWn25Ho+DK3d1mXIgj7tITkrS4pYDvx96WyOttSvzzFeQnM2od0+FUMzILbdHDsDEqZvnz1DYNQ1w== + dependencies: + prop-types "^15.7.2" + react-native-fast-image@^8.6.3: version "8.6.3" resolved "https://registry.yarnpkg.com/react-native-fast-image/-/react-native-fast-image-8.6.3.tgz#6edc3f9190092a909d636d93eecbcc54a8822255" @@ -8173,6 +8180,14 @@ react-native-linear-gradient@^2.8.3: resolved "https://registry.yarnpkg.com/react-native-linear-gradient/-/react-native-linear-gradient-2.8.3.tgz#9a116649f86d74747304ee13db325e20b21e564f" integrity sha512-KflAXZcEg54PXkLyflaSZQ3PJp4uC4whM7nT/Uot9m0e/qxFV3p6uor1983D1YOBJbJN7rrWdqIjq0T42jOJyA== +react-native-modal@^13.0.1: + version "13.0.1" + resolved "https://registry.yarnpkg.com/react-native-modal/-/react-native-modal-13.0.1.tgz#691f1e646abb96fa82c1788bf18a16d585da37cd" + integrity sha512-UB+mjmUtf+miaG/sDhOikRfBOv0gJdBU2ZE1HtFWp6UixW9jCk/bhGdHUgmZljbPpp0RaO/6YiMmQSSK3kkMaw== + dependencies: + prop-types "^15.6.2" + react-native-animatable "1.3.3" + react-native-otp-entry@^1.7.3: version "1.7.3" resolved "https://registry.yarnpkg.com/react-native-otp-entry/-/react-native-otp-entry-1.7.3.tgz#16bc161eb9f30ab60840973fdaad629cb260e610" From 89660b79b317e124c7863a1375e0a14f42529bad Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Fri, 6 Dec 2024 13:47:45 +0100 Subject: [PATCH 78/95] Feature/eng-47/Profile Screen (#99) * chores: draft pr commit * chore: built custom image component and tab view component * chores: edit profile screen * chores: file clean up * chore: profile copy state * chore: style clean up --- app/(tabs)/profile/_layout.tsx | 7 + app/(tabs)/profile/edit-profile.tsx | 5 + assets/icons/edit-profile-icon.tsx | 28 +++ assets/icons/farcaster-icon.tsx | 19 ++ assets/icons/fill-check-icon.tsx | 10 ++ assets/icons/index.ts | 10 ++ assets/icons/link-icon.tsx | 11 ++ assets/icons/user-octagon-icon.tsx | 28 +++ assets/icons/x-ixon.tsx | 6 +- components/feed-card/index.tsx | 8 +- components/flatlist/index.tsx | 2 +- components/image/index.tsx | 72 ++++++++ components/image/types.ts | 11 ++ components/index.ts | 2 + hooks/useCustomTabview.tsx | 191 ++++++++++++++++++++ screens/home/index.tsx | 2 +- screens/index.ts | 2 + screens/profile/edit-profile.tsx/index.tsx | 192 +++++++++++++++++++++ screens/profile/index.tsx | 147 +++++++++++++++- 19 files changed, 740 insertions(+), 13 deletions(-) create mode 100644 app/(tabs)/profile/edit-profile.tsx create mode 100644 assets/icons/edit-profile-icon.tsx create mode 100644 assets/icons/farcaster-icon.tsx create mode 100644 assets/icons/fill-check-icon.tsx create mode 100644 assets/icons/link-icon.tsx create mode 100644 assets/icons/user-octagon-icon.tsx create mode 100644 components/image/index.tsx create mode 100644 components/image/types.ts create mode 100644 hooks/useCustomTabview.tsx create mode 100644 screens/profile/edit-profile.tsx/index.tsx diff --git a/app/(tabs)/profile/_layout.tsx b/app/(tabs)/profile/_layout.tsx index 98cb016..64dd7a8 100644 --- a/app/(tabs)/profile/_layout.tsx +++ b/app/(tabs)/profile/_layout.tsx @@ -15,6 +15,13 @@ const ProfileStack = () => { headerShown: false, }} /> + + ); }; diff --git a/app/(tabs)/profile/edit-profile.tsx b/app/(tabs)/profile/edit-profile.tsx new file mode 100644 index 0000000..7a3406b --- /dev/null +++ b/app/(tabs)/profile/edit-profile.tsx @@ -0,0 +1,5 @@ +import { EditProfile } from '@/screens'; + +const EditProfileScreen = () => ; + +export default EditProfileScreen; diff --git a/assets/icons/edit-profile-icon.tsx b/assets/icons/edit-profile-icon.tsx new file mode 100644 index 0000000..36022b7 --- /dev/null +++ b/assets/icons/edit-profile-icon.tsx @@ -0,0 +1,28 @@ +import Svg, { Path, Rect } from 'react-native-svg'; + +const EditProfileIcon = () => ( + + + + + + +); +export default EditProfileIcon; diff --git a/assets/icons/farcaster-icon.tsx b/assets/icons/farcaster-icon.tsx new file mode 100644 index 0000000..d5e41d4 --- /dev/null +++ b/assets/icons/farcaster-icon.tsx @@ -0,0 +1,19 @@ +import Svg, { Path, Defs, Pattern, Use, Image } from 'react-native-svg'; + +const FamcasterIcon = () => ( + + + + + + + + + +); +export default FamcasterIcon; diff --git a/assets/icons/fill-check-icon.tsx b/assets/icons/fill-check-icon.tsx new file mode 100644 index 0000000..b86bd9b --- /dev/null +++ b/assets/icons/fill-check-icon.tsx @@ -0,0 +1,10 @@ +import Svg, { Path, Rect } from 'react-native-svg'; + +const FillCheckIcon = ({ fill = '#4691FE', height = 19, width = 18 }: IconProps) => ( + + + + + +); +export default FillCheckIcon; diff --git a/assets/icons/index.ts b/assets/icons/index.ts index 28267ba..4974de7 100644 --- a/assets/icons/index.ts +++ b/assets/icons/index.ts @@ -67,9 +67,19 @@ import DepositIcon from './deposit-icon'; import SupplyIcon from './supply-icon'; import PlusIcon from './plus-icon'; import DiscordTabIcon from './discover-tab-icon'; +import EditProfileIcon from './edit-profile-icon'; +import UserOctagonIcon from './user-octagon-icon'; +import LinkIcon from './link-icon'; +import FamcasterIcon from './farcaster-icon'; +import FillCheckIcon from './fill-check-icon'; export { SwatchIcon, + FillCheckIcon, + FamcasterIcon, + UserOctagonIcon, + LinkIcon, + EditProfileIcon, ConnectorIcon, PlusIcon, DiscordTabIcon, diff --git a/assets/icons/link-icon.tsx b/assets/icons/link-icon.tsx new file mode 100644 index 0000000..c3bdd36 --- /dev/null +++ b/assets/icons/link-icon.tsx @@ -0,0 +1,11 @@ +import Svg, { Path } from 'react-native-svg'; + +const LinkIcon = ({ fill = '#0A0D14', height = 19, width = 18 }: IconProps) => ( + + + +); +export default LinkIcon; diff --git a/assets/icons/user-octagon-icon.tsx b/assets/icons/user-octagon-icon.tsx new file mode 100644 index 0000000..70837cc --- /dev/null +++ b/assets/icons/user-octagon-icon.tsx @@ -0,0 +1,28 @@ +import Svg, { Path } from 'react-native-svg'; + +const UserOctagonIcon = () => ( + + + + + +); +export default UserOctagonIcon; diff --git a/assets/icons/x-ixon.tsx b/assets/icons/x-ixon.tsx index 299bdd3..6f29fe0 100644 --- a/assets/icons/x-ixon.tsx +++ b/assets/icons/x-ixon.tsx @@ -1,13 +1,13 @@ import Svg, { Path } from 'react-native-svg'; -const XIcon = () => ( - +const XIcon = ({ fill = '#1E293B', height = 30, width = 30 }: IconProps) => ( + diff --git a/components/feed-card/index.tsx b/components/feed-card/index.tsx index 64e036a..f5ef2b5 100644 --- a/components/feed-card/index.tsx +++ b/components/feed-card/index.tsx @@ -11,7 +11,7 @@ const LQDFeedCard = ({ feed, showInvest = true }: FeedCard) => { {/* top */} - + ({ onEndReached={onEndReached} onEndReachedThreshold={onEndReachedThreshold} showsVerticalScrollIndicator={showsVerticalScrollIndicator} - contentContainerStyle={[{ flexGrow: 1, paddingBottom: loader ? 16 : 0 }, contentContainerStyle]} + contentContainerStyle={[{ flexGrow: 1, paddingBottom: 100 }, contentContainerStyle]} style={[styles.list, style]} /> ); diff --git a/components/image/index.tsx b/components/image/index.tsx new file mode 100644 index 0000000..62ce57b --- /dev/null +++ b/components/image/index.tsx @@ -0,0 +1,72 @@ +import React, { useState } from 'react'; +import FastImage from 'react-native-fast-image'; +import { Pressable, StyleSheet, View } from 'react-native'; +import { LQDImageProps } from './types'; +import { EditProfileIcon } from '@/assets/icons'; + +const fallbackImage = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; + +const LQDImage = ({ + style, + resizeMode = FastImage.resizeMode.contain, + src, + height = 40, + width = 40, + edit, + action, + onError, + ...rest +}: LQDImageProps) => { + const [isError, setIsError] = useState(false); + const borderRadius = Math.min(height, width) / 2; + + const handleError = () => { + setIsError(true); + if (onError) onError(); + }; + + if (isError) { + return ( + + ); + } + + return ( + + + {edit && ( + + + + )} + + ); +}; + +const styles = StyleSheet.create({ + container: { + position: 'relative', + }, + fallbackImage: { + width: 40, + height: 40, + }, + edit: { + position: 'absolute', + zIndex: 20, + bottom: 10, + right: -3, + }, +}); + +export default LQDImage; diff --git a/components/image/types.ts b/components/image/types.ts new file mode 100644 index 0000000..73d482f --- /dev/null +++ b/components/image/types.ts @@ -0,0 +1,11 @@ +import { FastImageProps } from 'react-native-fast-image'; + +export interface LQDImageProps extends Omit { + fallbackImage?: string; + src?: string; + height?: number; + width?: number; + edit?: boolean; + onError?: () => void; + action?: () => void; +} diff --git a/components/index.ts b/components/index.ts index 12124e1..a411d86 100644 --- a/components/index.ts +++ b/components/index.ts @@ -22,9 +22,11 @@ import LQToast from './toast'; import LQNoResult from './no-result'; import LQDFeedCard from './feed-card'; import LQDFlatlist from './flatlist'; +import LQDImage from './image'; export { LQDButton, + LQDImage, LQShrimeLoader, LQDFlatlist, LQDNavigation, diff --git a/hooks/useCustomTabview.tsx b/hooks/useCustomTabview.tsx new file mode 100644 index 0000000..0416b39 --- /dev/null +++ b/hooks/useCustomTabview.tsx @@ -0,0 +1,191 @@ +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import React, { useState, useCallback, useRef, useMemo } from 'react'; +import { StyleSheet, useWindowDimensions, View, Animated, Pressable, Text } from 'react-native'; +import { TabView, TabBar, SceneRendererProps, NavigationState } from 'react-native-tab-view'; + +type Route = { + key: string; + title: string; +}; + +type CustomTabViewProps = { + routes: Route[]; + renderScene: (props: SceneRendererProps & { route: Route }) => React.ReactNode; + maxContentWidth?: number; +}; + +const useCustomTabView = () => { + const layout = useWindowDimensions(); + const [index, setIndex] = useState(0); + + const renderTabBar = ({ + maxContentWidth = 1140, + ...props + }: SceneRendererProps & { + navigationState: NavigationState; + maxContentWidth?: number; + }) => { + const indicatorFadeAnim = useRef(new Animated.Value(0)).current; + const measuredTabWidths = useRef>({}); + const [tabsWidth, setTabsWidth] = useState>({}); + + const handleTabLayout = useCallback( + (route: Route, navigationState: NavigationState, layoutWidth: number) => { + const routeIndex = navigationState.routes.indexOf(route); + measuredTabWidths.current[routeIndex] = layoutWidth; + + if (navigationState.routes.every((_, i) => typeof measuredTabWidths.current[i] === 'number')) { + setTabsWidth({ ...measuredTabWidths.current }); + } + + if (routeIndex === navigationState.routes.length - 1) { + Animated.timing(indicatorFadeAnim, { + toValue: 1, + duration: 150, + useNativeDriver: true, + }).start(); + } + }, + [indicatorFadeAnim] + ); + + const calculateTranslateX = useCallback( + (position: Animated.AnimatedInterpolation, routes: Route[]) => { + const inputRange = routes.map((_, i) => i); + const outputRange = routes.map((_, i) => { + const prevWidths = Object.values(tabsWidth) + .slice(0, i) + .reduce((a, b) => a + b, 0); + return prevWidths + (tabsWidth[i] || 0) / 2 - maxContentWidth / 2; + }); + + return position.interpolate({ + inputRange, + outputRange, + extrapolate: 'clamp', + }); + }, + [tabsWidth, maxContentWidth] + ); + + const calculateWidth = useCallback( + (position: Animated.AnimatedInterpolation, routes: Route[]) => { + const inputRange = routes.map((_, i) => i); + const outputRange = routes.map((_, i) => tabsWidth[i] || 0); + + return position.interpolate({ + inputRange, + outputRange, + extrapolate: 'clamp', + }); + }, + [tabsWidth] + ); + + return ( + { + if (Object.keys(tabsWidth).length !== navigationState.routes.length) return null; + + return ( + + ); + }} + renderTabBarItem={({ route, onPress, onLongPress, onLayout, navigationState }) => { + const isActive = navigationState.index === navigationState.routes.indexOf(route); + return ( + handleTabLayout(route, navigationState, e.nativeEvent.layout.width)} + > + + {route.title} + + + ); + }} + /> + ); + }; + + const CustomTabView: React.FC = ({ renderScene, routes, maxContentWidth }) => ( + + renderTabBar({ ...props, maxContentWidth })} + initialLayout={{ width: layout.width }} + /> + + ); + + return { CustomTabView }; +}; + +const styles = StyleSheet.create({ + tabBar: { + position: 'relative', + backgroundColor: 'white', + borderBottomWidth: 1, + borderColor: 'lightgray', + elevation: 0, + shadowOpacity: 0, + marginBottom: 16, + }, + indicator: { + position: 'absolute', + height: 2, + backgroundColor: 'blue', + bottom: 0, + }, + tabItem: { + paddingBottom: 12, + paddingTop: 16, + borderBottomWidth: 2, + borderBottomColor: 'transparent', + marginHorizontal: 23, + padding: 0, + }, + activeTabItem: { + borderBottomColor: '#4691FE', // Active tab border color + }, + indicatorContainer: { + zIndex: 1, + }, + tabStyle: { + width: 'auto', + }, +}); + +export default useCustomTabView; diff --git a/screens/home/index.tsx b/screens/home/index.tsx index 7b82167..dbe0d8b 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -11,7 +11,7 @@ import { useOnMount } from '@/hooks/useOnMount'; import Loader from './loader'; const image = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; -const feeds: Array = [ +export const feeds: Array = [ { photo: image, username: '@Nurayyy.eth', diff --git a/screens/index.ts b/screens/index.ts index 3a6786e..0bb6806 100644 --- a/screens/index.ts +++ b/screens/index.ts @@ -6,6 +6,7 @@ import Hot from './home/hot'; import Discover from './discover'; import Profile from './profile'; +import EditProfile from './profile/edit-profile.tsx'; import Setup from './setup'; import CryptoDeposit from './deposit/crypto'; @@ -26,6 +27,7 @@ export { Hot, Discover, Profile, + EditProfile, Setup, LiquidityManagement, CryptoDeposit, diff --git a/screens/profile/edit-profile.tsx/index.tsx b/screens/profile/edit-profile.tsx/index.tsx new file mode 100644 index 0000000..04dac7a --- /dev/null +++ b/screens/profile/edit-profile.tsx/index.tsx @@ -0,0 +1,192 @@ +import { Pressable, StyleSheet, Text, TextInput, View } from 'react-native'; +import React, { useState } from 'react'; +import { LQDButton, LQDImage } from '@/components'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { FamcasterIcon, XIcon } from '@/assets/icons'; + +const EditProfile = () => { + const [username, setUsername] = useState(''); + + const handleTagChange = (value: string) => { + setUsername(value); + }; + + return ( + + + + Upload photo + Remove photo + + + + + Username + + + + + X account + Verify your X account to display it on your profile and kep it real + + + + + + @Jeffing.eth + + + Disconnect + + + + + Farcaster + Verify your Farcaster account to display it on your profile and kep it real + + + + + + @Jeffing.eth + + + Connect + + + + + + + + Cancel + + + + + ); +}; + +export default EditProfile; + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#fff', + }, + topWrapper: { + justifyContent: 'center', + alignItems: 'center', + marginTop: 40, + }, + bottomWrapper: { + marginTop: 24, + }, + title: { + fontSize: adjustFontSizeForIOS(12, 1), + fontFamily: 'ClashDisplayMedium', + fontWeight: '500', + color: '#4691FE', + lineHeight: 19.2, + marginTop: 6, + marginBottom: 3, + }, + subTitle: { + fontSize: adjustFontSizeForIOS(12, 1), + fontFamily: 'ClashDisplayMedium', + fontWeight: '500', + color: '#AF1D38', + lineHeight: 16.2, + }, + accountTitle: { + fontSize: adjustFontSizeForIOS(14, 1), + fontFamily: 'Aeonik', + fontWeight: '500', + color: '#1E293B', + lineHeight: 15.2, + marginTop: 6, + marginBottom: 3, + }, + accountSubTitle: { + fontSize: adjustFontSizeForIOS(12, 1), + fontFamily: 'Aeonik', + fontWeight: '400', + color: '#64748B', + lineHeight: 19.2, + }, + lable: { + fontSize: adjustFontSizeForIOS(13, 1), + fontFamily: 'Aeonik', + fontWeight: '500', + color: '#1E293B', + lineHeight: 19.2, + marginBottom: 5, + }, + username: { + fontSize: adjustFontSizeForIOS(14, 1), + fontFamily: 'Aeonik', + fontWeight: '500', + color: '#1E293B', + lineHeight: 19.2, + }, + disconnet: { + fontSize: adjustFontSizeForIOS(14, 1), + fontFamily: 'Aeonik', + fontWeight: '500', + color: '#475569', + lineHeight: 19.2, + }, + inputWrapper: { + borderBottomWidth: 1, + paddingBottom: 24, + borderColor: '#F1F5F9', + marginTop: 20, + }, + input: { + alignSelf: 'stretch', + padding: 12, + backgroundColor: '#FFF', + borderRadius: 16, + borderColor: '#EAEEF4', + color: '#020617', + fontSize: adjustFontSizeForIOS(14, 2), + fontWeight: '500', + fontFamily: 'AeonikMedium', + borderWidth: 1, + }, + actionBtn: { + flexDirection: 'row', + gap: 7, + borderWidth: 1, + borderColor: '#EAEEF4', + paddingHorizontal: 11, + paddingVertical: 7, + borderRadius: 10, + alignItems: 'center', + }, + btnWrapper: { flexDirection: 'row', justifyContent: 'space-between', marginTop: 20, paddingHorizontal: 15 }, + xIconFlex: { flexDirection: 'row', alignItems: 'center', gap: 10 }, + cancel: { + fontSize: adjustFontSizeForIOS(16, 2), + lineHeight: 16, + color: '#64748B', + fontFamily: 'QuantaGroteskProSemiBold', + fontWeight: '600', + alignSelf: 'center', + marginTop: 20, + }, + btnBottomWrapper: { + marginTop: 40, + }, +}); diff --git a/screens/profile/index.tsx b/screens/profile/index.tsx index f7a7162..1aed38c 100644 --- a/screens/profile/index.tsx +++ b/screens/profile/index.tsx @@ -1,8 +1,108 @@ -import { StyleSheet, Text, View } from 'react-native'; -import React from 'react'; - +import { Pressable, StyleSheet, Text, View } from 'react-native'; +import React, { useState } from 'react'; +import { LQDFeedCard, LQDFlatlist, LQDImage } from '@/components'; +import { CheckIcon, CopyIcon, FamcasterIcon, FillCheckIcon, LinkIcon, UserOctagonIcon, XIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { SceneMap } from 'react-native-tab-view'; +import useCustomTabView from '@/hooks/useCustomTabview'; +import { feeds } from '../home'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; const Profile = () => { - return ; + const { CustomTabView } = useCustomTabView(); + const { router } = useSystemFunctions(); + const [copyProfileLink, setCopyProfileLink] = useState(false); + + const handleCopyPL = () => { + setCopyProfileLink((prev) => !prev); + + setTimeout(() => { + setCopyProfileLink(false); + }, 3000); + }; + + const StrategyRoute = () => { + return ( + } + keyExtractor={(_, index) => index.toString()} + showsHorizontalScrollIndicator={false} + style={{ backgroundColor: '#fff' }} + onRefresh={() => {}} + /> + ); + }; + + const DepositRoute = () => { + return ( + } + keyExtractor={(_, index) => index.toString()} + showsHorizontalScrollIndicator={false} + style={{ backgroundColor: '#fff' }} + onRefresh={() => {}} + /> + ); + }; + + const LikesRoute = () => { + return ( + } + keyExtractor={(_, index) => index.toString()} + showsHorizontalScrollIndicator={false} + style={{ backgroundColor: '#fff' }} + onRefresh={() => {}} + /> + ); + }; + + const renderScene = SceneMap({ + strategy: StrategyRoute, + deposit: DepositRoute, + like: LikesRoute, + }); + + const [routes] = React.useState([ + { key: 'strategy', title: 'My Strategies' }, + { key: 'deposit', title: 'Deposits' }, + { key: 'like', title: 'Likes' }, + ]); + + return ( + + + router.push(`/(tabs)/profile/edit-profile`)} edit height={56} width={56} /> + @jeffing.eth + + 0xc57...13d4f + + + + + + Joined NOV 2024 + + + + + + + + + {copyProfileLink ? : } + + + + + + + ); }; export default Profile; @@ -12,4 +112,43 @@ const styles = StyleSheet.create({ flex: 1, backgroundColor: '#FFF', }, + topWrapper: { + justifyContent: 'center', + alignItems: 'center', + marginTop: 40, + }, + actionBtn: { + flexDirection: 'row', + gap: 7, + borderWidth: 1, + borderColor: '#EAEEF4', + paddingHorizontal: 11, + paddingVertical: 7, + borderRadius: 10, + alignItems: 'center', + }, + actionBtnWrapper: { flexDirection: 'row', alignItems: 'center', gap: 9, marginTop: 15, marginBottom: 20 }, + addressWrapper: { flexDirection: 'row', gap: 7 }, + username: { + fontSize: adjustFontSizeForIOS(16, 1), + fontFamily: 'ClashDisplayBold', + fontWeight: '500', + color: '#1E293B', + lineHeight: 19.2, + marginTop: 6, + marginBottom: 5, + }, + address: { + fontSize: adjustFontSizeForIOS(13, 2), + fontFamily: 'Aeonik', + fontWeight: '400', + color: '#64748B', + lineHeight: 16.12, + }, + joinDate: { + fontSize: adjustFontSizeForIOS(14, 2), + fontFamily: 'Aeonik', + fontWeight: '500', + color: '#1E293B', + }, }); From a90cfff6c246cfd0c9f944dc36c61ba374b881af Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Mon, 9 Dec 2024 17:12:51 +0100 Subject: [PATCH 79/95] Discover Screen (#100) * chore: initial draft pr * chore: redesigned recent card to fit asset card on discover screen * updated search pools ui and converted to modal * chores: code clean up * chore: comment clean up * fix: ui and action fix on discover screen * fix: ui and action fix on discover screen --- app/(tabs)/_layout.tsx | 1 + assets/icons/arrow-circle-down-icon.tsx | 23 + assets/icons/discover-aerodrome-icon.tsx | 19 + assets/icons/discover-tvl-iocn.tsx | 30 ++ assets/icons/discover-usd-icon.tsx | 21 + assets/icons/index.ts | 8 + assets/images/slider-dot-icon.png | Bin 0 -> 3505 bytes assets/images/slider-dot.png | Bin 0 -> 6353 bytes components/bottom-sheet/index.tsx | 2 +- components/flatlist/index.tsx | 11 +- components/flatlist/types.ts | 1 + components/index.ts | 4 + components/input/index.tsx | 26 +- components/input/types.ts | 3 +- components/pool-pair-paper/index.tsx | 39 +- components/pool-pair-paper/types.ts | 1 + components/protocol-card/index.tsx | 52 ++ components/protocol-card/types.ts | 6 + components/search-ui/index.tsx | 103 ++-- ...recent-card.tsx => popular-asset-card.tsx} | 28 +- components/search-ui/sections.tsx | 11 +- components/search-ui/types.ts | 4 +- components/strategy-card/index.tsx | 110 ++++ components/strategy-card/types.ts | 4 + screens/discover/dummy.ts | 476 ++++++++++++++++++ screens/discover/index.tsx | 211 +++++++- screens/home/dummy.ts | 92 ++++ screens/home/index.tsx | 93 +--- .../remove/percentage-setter.tsx | 3 +- screens/profile/dummy.ts | 92 ++++ screens/profile/index.tsx | 4 +- 31 files changed, 1281 insertions(+), 197 deletions(-) create mode 100644 assets/icons/arrow-circle-down-icon.tsx create mode 100644 assets/icons/discover-aerodrome-icon.tsx create mode 100644 assets/icons/discover-tvl-iocn.tsx create mode 100644 assets/icons/discover-usd-icon.tsx create mode 100644 assets/images/slider-dot-icon.png create mode 100644 assets/images/slider-dot.png create mode 100644 components/protocol-card/index.tsx create mode 100644 components/protocol-card/types.ts rename components/search-ui/{recent-card.tsx => popular-asset-card.tsx} (62%) create mode 100644 components/strategy-card/index.tsx create mode 100644 components/strategy-card/types.ts create mode 100644 screens/discover/dummy.ts create mode 100644 screens/home/dummy.ts create mode 100644 screens/profile/dummy.ts diff --git a/app/(tabs)/_layout.tsx b/app/(tabs)/_layout.tsx index d90597f..3896958 100644 --- a/app/(tabs)/_layout.tsx +++ b/app/(tabs)/_layout.tsx @@ -16,6 +16,7 @@ export default function TabLayout() { <> + {/* fix this header showing on all screens */}
setShow((prev) => !prev)} /> setShow((prev) => !prev)}> diff --git a/assets/icons/arrow-circle-down-icon.tsx b/assets/icons/arrow-circle-down-icon.tsx new file mode 100644 index 0000000..c8b7e07 --- /dev/null +++ b/assets/icons/arrow-circle-down-icon.tsx @@ -0,0 +1,23 @@ +import Svg, { Path } from 'react-native-svg'; + +const ArrowCircleDownIcon = ({ fill = '#475569', height = 12, width = 12 }: IconProps) => ( + + + + +); +export default ArrowCircleDownIcon; diff --git a/assets/icons/discover-aerodrome-icon.tsx b/assets/icons/discover-aerodrome-icon.tsx new file mode 100644 index 0000000..16cd71e --- /dev/null +++ b/assets/icons/discover-aerodrome-icon.tsx @@ -0,0 +1,19 @@ +import Svg, { Path, Defs, Pattern, Use, Image } from 'react-native-svg'; + +const DiscoverAerodromeIcon = ({ fill = '', height = 25, width = 25 }: IconProps) => ( + + + + + + + + + +); +export default DiscoverAerodromeIcon; diff --git a/assets/icons/discover-tvl-iocn.tsx b/assets/icons/discover-tvl-iocn.tsx new file mode 100644 index 0000000..55e7be7 --- /dev/null +++ b/assets/icons/discover-tvl-iocn.tsx @@ -0,0 +1,30 @@ +import Svg, { Path } from 'react-native-svg'; + +const DiscoverTVLIcon = ({ fill = '#0C0507', height = 24, width = 25 }: IconProps) => ( + + + + + + + +); +export default DiscoverTVLIcon; diff --git a/assets/icons/discover-usd-icon.tsx b/assets/icons/discover-usd-icon.tsx new file mode 100644 index 0000000..1f2645e --- /dev/null +++ b/assets/icons/discover-usd-icon.tsx @@ -0,0 +1,21 @@ +import Svg, { Path } from 'react-native-svg'; + +const DiscoverUSDIcon = ({ fill = '#2775CA', height = 25, width = 25 }: IconProps) => ( + + + + + +); +export default DiscoverUSDIcon; diff --git a/assets/icons/index.ts b/assets/icons/index.ts index 4974de7..cda4c0f 100644 --- a/assets/icons/index.ts +++ b/assets/icons/index.ts @@ -72,10 +72,18 @@ import UserOctagonIcon from './user-octagon-icon'; import LinkIcon from './link-icon'; import FamcasterIcon from './farcaster-icon'; import FillCheckIcon from './fill-check-icon'; +import ArrowCircleDownIcon from './arrow-circle-down-icon'; +import DiscoverTVLIcon from './discover-tvl-iocn'; +import DiscoverUSDIcon from './discover-usd-icon'; +import DiscoverAerodromeIcon from './discover-aerodrome-icon'; export { SwatchIcon, + DiscoverTVLIcon, + DiscoverUSDIcon, + DiscoverAerodromeIcon, FillCheckIcon, + ArrowCircleDownIcon, FamcasterIcon, UserOctagonIcon, LinkIcon, diff --git a/assets/images/slider-dot-icon.png b/assets/images/slider-dot-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..6386452fd5fd6f99de2cf90715fafd804820de34 GIT binary patch literal 3505 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 Tsg!5q00000NkvXXu0mjfxWz)D literal 0 HcmV?d00001 diff --git a/components/bottom-sheet/index.tsx b/components/bottom-sheet/index.tsx index e10300a..e321f71 100644 --- a/components/bottom-sheet/index.tsx +++ b/components/bottom-sheet/index.tsx @@ -55,7 +55,7 @@ const styles = StyleSheet.create({ bottom: 0, zIndex: 30, width: '100%', - paddingBottom: 62.45, + paddingTop: 17, paddingHorizontal: 16, backgroundColor: '#fff', diff --git a/components/flatlist/index.tsx b/components/flatlist/index.tsx index 096b3f3..adbfd4d 100644 --- a/components/flatlist/index.tsx +++ b/components/flatlist/index.tsx @@ -14,7 +14,9 @@ const LQDFlatlist = ({ onEndReached, onEndReachedThreshold = 0.1, showsVerticalScrollIndicator = false, + showsHorizontalScrollIndicator = false, contentContainerStyle, + horizontal = false, style, loader = false, }: LQDFlatlistProps) => { @@ -54,8 +56,10 @@ const LQDFlatlist = ({ onEndReached={onEndReached} onEndReachedThreshold={onEndReachedThreshold} showsVerticalScrollIndicator={showsVerticalScrollIndicator} - contentContainerStyle={[{ flexGrow: 1, paddingBottom: 100 }, contentContainerStyle]} - style={[styles.list, style]} + contentContainerStyle={[{ paddingBottom: 100 }, contentContainerStyle]} + style={[style]} + horizontal={horizontal} + showsHorizontalScrollIndicator={showsHorizontalScrollIndicator} /> ); }; @@ -63,9 +67,6 @@ const LQDFlatlist = ({ export default LQDFlatlist; const styles = StyleSheet.create({ - list: { - flex: 1, - }, emptyContainer: { flex: 1, justifyContent: 'center', diff --git a/components/flatlist/types.ts b/components/flatlist/types.ts index e0843a4..8f009f5 100644 --- a/components/flatlist/types.ts +++ b/components/flatlist/types.ts @@ -2,6 +2,7 @@ import { FlatListProps } from 'react-native'; export interface LQDFlatlistProps extends FlatListProps { loader?: boolean; + horizontal?: boolean; ListEmptyComponent?: React.ComponentType | React.ReactElement | null; ListFooterComponent?: React.ComponentType | React.ReactElement | null; refreshing?: boolean; diff --git a/components/index.ts b/components/index.ts index a411d86..ad13044 100644 --- a/components/index.ts +++ b/components/index.ts @@ -23,9 +23,13 @@ import LQNoResult from './no-result'; import LQDFeedCard from './feed-card'; import LQDFlatlist from './flatlist'; import LQDImage from './image'; +import LQDStrategyCard from './strategy-card'; +import LQDProtocolCard from './protocol-card'; export { LQDButton, + LQDProtocolCard, + LQDStrategyCard, LQDImage, LQShrimeLoader, LQDFlatlist, diff --git a/components/input/index.tsx b/components/input/index.tsx index 674c958..b85f671 100644 --- a/components/input/index.tsx +++ b/components/input/index.tsx @@ -1,17 +1,35 @@ import React from 'react'; import { Controller, FieldValues } from 'react-hook-form'; -import { TextInput, Text, View, StyleSheet } from 'react-native'; +import { TextInput, Text, View, StyleSheet, Pressable } from 'react-native'; -import { SearchIcon } from '@/assets/icons'; +import { CloseIcon, SearchIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import { ILQDInput } from './types'; -const LQDInput = ({ control, name, inputProps, label, placeholder, rules, variant = 'primary' }: ILQDInput) => { +const LQDInput = ({ + control, + name, + inputProps, + label, + placeholder, + rules, + variant = 'primary', + iconAction, +}: ILQDInput) => { + const iconsMap = { + search: , + close: , + primary: null, + secondary: null, + }; + + const icon = iconsMap[variant] || null; + return ( {label && {label}} - {variant === 'search' && } + {icon} { rules?: Omit, 'setValueAs' | 'disabled' | 'valueAsNumber' | 'valueAsDate'>; label?: string; placeholder?: string; - variant?: 'primary' | 'secondary' | 'search'; + variant?: 'primary' | 'secondary' | 'search' | 'close'; inputProps?: TextInputProps; + iconAction?: () => void; } export type { ILQDInput }; diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index 59b0ffa..44ae501 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -7,8 +7,10 @@ import { setRecentSearchedPool, setSelectedPool } from '@/store/pools'; import { PoolPairPaper } from './types'; import LQDPoolImages from '../pool-images'; import LQShrimeLoader from '../loader'; +import LQDImage from '../image'; +import { CheckIcon, FillCheckIcon } from '@/assets/icons'; -const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol }: PoolPairPaper) => { +const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol, selected }: PoolPairPaper) => { const { router, dispatch } = useSystemFunctions(); const paths = { @@ -22,42 +24,27 @@ const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol router.push(paths[navigationVariant]); }; - const vol = Number(Number(pool.totalVolumeUSD).toFixed(4)); - - const tokenAIconURL = pool.token0.logoUrl; - const tokenBIconURL = pool.token1.logoUrl; - const symbol = formatSymbol(pool.symbol, showFullSymbol); - const apr = formatAmount(pool.apr, 2); - const fees = Number(pool.poolFee) > 1000 ? formatNumberWithSuffix(pool.poolFee) : roundUp(Number(pool.poolFee)); - const volume = formatNumberWithSuffix(vol); - const tvl = pool.tvl; - const isStable = pool.isStable; + const tokenIconURL = pool.token0.logoUrl; + const title = pool.symbol; + const subTitle = '4,506 USDC'; return ( - + - {symbol} - - - {isStable ? 'Basic Stable' : 'Basic Volatile'} + {title} - - + {subTitle && ( + + {subTitle} - - {fees}% Fee - + )} - - APR: {apr.toLocaleString()}% - - VOL: ${volume} - + {selected && } ); }; diff --git a/components/pool-pair-paper/types.ts b/components/pool-pair-paper/types.ts index ccf6975..30f089b 100644 --- a/components/pool-pair-paper/types.ts +++ b/components/pool-pair-paper/types.ts @@ -4,4 +4,5 @@ export interface PoolPairPaper { pool: Pool; navigationVariant?: 'primary' | 'secondary'; showFullSymbol?: boolean; + selected?: boolean | null; } diff --git a/components/protocol-card/index.tsx b/components/protocol-card/index.tsx new file mode 100644 index 0000000..ec9f957 --- /dev/null +++ b/components/protocol-card/index.tsx @@ -0,0 +1,52 @@ +import React, { useEffect, useRef } from 'react'; +import { StyleSheet, View, Text, TouchableOpacity } from 'react-native'; +import { FillCheckIcon } from '@/assets/icons'; +import { IProtocolCard } from './types'; +import LQDImage from '../image'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; + +const image = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; +const LQDProtocolCard = ({ selected, action, protocol }: IProtocolCard) => { + const { title, icon } = protocol; + + return ( + + + + {title} + + {selected && } + + ); +}; + +export default LQDProtocolCard; + +const styles = StyleSheet.create({ + container: { + backgroundColor: '#F8FAFC', + flexDirection: 'row', + alignItems: 'center', + borderRadius: 20, + height: 52, + paddingHorizontal: 16, + justifyContent: 'space-between', + }, + innerWrapper: { + flexDirection: 'row', + alignItems: 'center', + gap: 20, + }, + volumeWrapper: { + alignItems: 'flex-end', + gap: 8, + }, + + title: { + color: '#1E293B', + fontSize: adjustFontSizeForIOS(16, 2), + lineHeight: 19.2, + fontWeight: '500', + fontFamily: 'AeonikMedium', + }, +}); diff --git a/components/protocol-card/types.ts b/components/protocol-card/types.ts new file mode 100644 index 0000000..a2eda78 --- /dev/null +++ b/components/protocol-card/types.ts @@ -0,0 +1,6 @@ +export interface IProtocolCard { + protocol: any; + navigationVariant?: 'primary' | 'secondary'; + selected: boolean | null; + action?: () => void; +} diff --git a/components/search-ui/index.tsx b/components/search-ui/index.tsx index 61d806a..6f98b70 100644 --- a/components/search-ui/index.tsx +++ b/components/search-ui/index.tsx @@ -1,8 +1,8 @@ import { useEffect, useState } from 'react'; -import { View, StyleSheet, ScrollView, FlatList, Text } from 'react-native'; +import { View, StyleSheet, ScrollView, FlatList, Text, Pressable } from 'react-native'; import SearchSection from './sections'; -import RecentCard from './recent-card'; +import RecentCard from './popular-asset-card'; import LQDSearch from '../search'; import LQDPoolPairPaper from '../pool-pair-paper'; import useSystemFunctions from '@/hooks/useSystemFunctions'; @@ -13,6 +13,7 @@ import LQShrimeLoader from '../loader'; import { createArrayWithIndexes } from '@/utils/helpers'; import { clearRecentSearchedPools } from '@/store/pools'; import LQNoResult from '../no-result'; +import Modal from 'react-native-modal'; const SearchUI = () => { const { router, poolsState, dispatch } = useSystemFunctions(); @@ -25,6 +26,7 @@ const SearchUI = () => { const recentSearch = poolsState.recentSearchedPools; const [showRecents, setShowRecents] = useState(true); + const [selectedAsset, setSelectedAsset] = useState(null); const emptysearch = createArrayWithIndexes(10); @@ -38,7 +40,7 @@ const SearchUI = () => { const sections: Array> = [ { - title: 'Recents', + title: 'Popular', children: ( {recentSearch.map((recent, index) => { @@ -49,11 +51,11 @@ const SearchUI = () => { onClear: () => dispatch(clearRecentSearchedPools()), }, { - title: 'Trending Pools', + title: 'All assets', children: ( {trendingPools.map((pool, index) => ( - + ))} ), @@ -67,7 +69,10 @@ const SearchUI = () => { } + renderItem={({ item }) => { + console.log(item.address); + return ; + }} keyExtractor={(_, index) => index.toString()} contentContainerStyle={{ gap: 24 }} onEndReached={() => getPaginatedSearchPools(searchText)} @@ -100,34 +105,43 @@ const SearchUI = () => { )); return ( - <> - - - {loading && } - - {searchedPools.length === 0 && searchText && !loading && ( - - )} - - {searchedPools.length === 0 && !searchText && !loading && ( - - {sectionsToShow.map((section, index) => ( - - ))} - - )} - - {searchedPools.length > 0 && !loading && ( - - {sectionsToShow.map((section, index) => ( - - ))} + + + + + - )} - + + {loading && } + + {searchedPools.length === 0 && searchText && !loading && ( + + )} + + {searchedPools.length === 0 && !searchText && !loading && ( + + {sectionsToShow.map((section, index) => ( + + ))} + + )} + + {searchedPools.length > 0 && !loading && ( + + {sectionsToShow.map((section, index) => ( + + ))} + + )} + + ); }; @@ -138,9 +152,28 @@ const styles = StyleSheet.create({ backgroundColor: '#fff', flex: 1, paddingHorizontal: 16, - paddingTop: 34, paddingBottom: 68, - gap: 40, + }, + + overlay: { + flex: 1, + justifyContent: 'flex-end', + width: '100%', + }, + + bottomSheet: { + position: 'absolute', + bottom: 0, + zIndex: 30, + width: '100%', + paddingBottom: 10, + paddingTop: 17, + backgroundColor: '#fff', + borderTopLeftRadius: 20, + borderTopRightRadius: 20, + gap: 33, + maxHeight: '90%', + height: '90%', }, mapContainer: { diff --git a/components/search-ui/recent-card.tsx b/components/search-ui/popular-asset-card.tsx similarity index 62% rename from components/search-ui/recent-card.tsx rename to components/search-ui/popular-asset-card.tsx index 309d144..768acdf 100644 --- a/components/search-ui/recent-card.tsx +++ b/components/search-ui/popular-asset-card.tsx @@ -1,35 +1,34 @@ -import { View, StyleSheet, Text, Image, TouchableOpacity } from 'react-native'; +import { View, StyleSheet, Text, TouchableOpacity } from 'react-native'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import useAppActions from '@/store/app/actions'; -import { IRecentCard } from './types'; -import LQDPoolImages from '../pool-images'; +import { IPopularAssetCard } from './types'; +import LQDImage from '../image'; -const RecentCard = ({ pool, navigationVariant = 'primary' }: IRecentCard) => { +const PopularAssetCard = ({ pool, navigationVariant = 'primary' }: IPopularAssetCard) => { const { router, pathname } = useSystemFunctions(); - const { searchIsFocused } = useAppActions(); + const { searchIsFocused, showSearch } = useAppActions(); const onPress = () => { searchIsFocused(false); - router.push(`/(tabs)/home/${pool.address}`); + // showSearch(true); }; - const tokenAIconURL = pool.token0.logoUrl; - const tokenBIconURL = pool.token1.logoUrl; - const symbol = pool.symbol.split('-')[1].replace('/', ' / '); + const tokenIconURL = pool.token0.logoUrl; + const title = 'USDC'; return ( - + - {symbol} + {title} ); }; -export default RecentCard; +export default PopularAssetCard; const styles = StyleSheet.create({ container: { @@ -38,13 +37,12 @@ const styles = StyleSheet.create({ alignItems: 'center', justifyContent: 'center', gap: 8 + 6, - paddingHorizontal: 8, - paddingVertical: 12, + paddingHorizontal: 14, + paddingVertical: 8, borderRadius: 10, borderWidth: 1, borderColor: '#EAEEF4', backgroundColor: '#fff', - marginBottom: 20, }, iconContainer: { diff --git a/components/search-ui/sections.tsx b/components/search-ui/sections.tsx index bb93418..bad7b33 100644 --- a/components/search-ui/sections.tsx +++ b/components/search-ui/sections.tsx @@ -12,15 +12,6 @@ const SearchSection = ({ children, title, onClear, query, setQuery }: ISearchSec {title} - {onClear && ( - - Clear - - - - - )} - {query && setQuery && ( {queries.map((item) => ( @@ -52,7 +43,7 @@ const styles = StyleSheet.create({ title: { color: '#0F172A', - fontSize: 20, + fontSize: 16, lineHeight: 23.2, fontWeight: '500', fontFamily: 'AeonikMedium', diff --git a/components/search-ui/types.ts b/components/search-ui/types.ts index 143ab1d..dec9c55 100644 --- a/components/search-ui/types.ts +++ b/components/search-ui/types.ts @@ -11,8 +11,8 @@ export interface ISearchSection { index: number; } -export interface IRecentCard { - pool: Pool; +export interface IPopularAssetCard { + pool: any; navigationVariant?: 'primary' | 'secondary'; } diff --git a/components/strategy-card/index.tsx b/components/strategy-card/index.tsx new file mode 100644 index 0000000..1b987e0 --- /dev/null +++ b/components/strategy-card/index.tsx @@ -0,0 +1,110 @@ +import { View, StyleSheet, Text, TouchableOpacity, Pressable } from 'react-native'; + +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import useAppActions from '@/store/app/actions'; +import LQDImage from '../image'; +import { IStrategyCard } from './types'; +import { MoneysIcon } from '@/assets/icons'; + +const LQDStrategyCard = ({ strategy, navigationVariant = 'primary' }: IStrategyCard) => { + const { router, pathname } = useSystemFunctions(); + const { searchIsFocused } = useAppActions(); + const { id } = strategy; + const onPress = () => { + searchIsFocused(false); + router.push(`/(tabs)/home/${id}`); + }; + + const avatar = strategy.image; + const username = strategy.username; + const tvl = strategy.tvl; + const estimate = strategy.estimate; + const steps = strategy.steps; + + return ( + + + + + {username} + + + + + + {steps.length} actions... + + + + Est. APY + {estimate} + + + TVL + {tvl} + + + ); +}; + +export default LQDStrategyCard; + +const styles = StyleSheet.create({ + container: { + flexDirection: 'row', + alignSelf: 'stretch', + alignItems: 'center', + gap: 8 + 15, + paddingHorizontal: 14, + paddingVertical: 12, + borderRadius: 10, + borderWidth: 1, + borderColor: '#EAEEF4', + backgroundColor: '#fff', + }, + + iconContainer: { + gap: 5, + }, + + icon: { + width: 24, + height: 24, + alignItems: 'center', + justifyContent: 'center', + borderRadius: 9999, + borderWidth: 1, + borderColor: '#EAEEF4', + marginRight: -6, + }, + + username: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(12, 2), + fontWeight: '500', + lineHeight: 16, + fontFamily: 'AeonikMedium', + }, + key: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(12, 2), + fontWeight: '400', + fontFamily: 'AeonikMedium', + }, + value: { + color: '#4691FE', + fontSize: adjustFontSizeForIOS(14, 2), + fontWeight: '500', + fontFamily: 'ClashDisplayMedium', + lineHeight: 15.6, + marginTop: 4, + }, + actions: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(14, 2), + fontWeight: '500', + lineHeight: 16.12, + fontFamily: 'ClashDisplayMedium', + }, +}); diff --git a/components/strategy-card/types.ts b/components/strategy-card/types.ts new file mode 100644 index 0000000..5c3a8b6 --- /dev/null +++ b/components/strategy-card/types.ts @@ -0,0 +1,4 @@ +export interface IStrategyCard { + strategy: any; + navigationVariant?: 'primary' | 'secondary'; +} diff --git a/screens/discover/dummy.ts b/screens/discover/dummy.ts new file mode 100644 index 0000000..1f77507 --- /dev/null +++ b/screens/discover/dummy.ts @@ -0,0 +1,476 @@ +const image = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; +export const protocolList = [ + { + id: '1', + icon: image, + title: 'Moonwell', + }, + { + id: '2', + icon: image, + title: 'Aerodrome', + }, + { + id: '3', + icon: image, + title: 'Morpho', + }, +]; +export const strategyies: Array = [ + { + id: '1', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '2', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '3', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '4', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '5', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '6', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '7', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '8', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '9', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '10', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '11', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '12', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, +]; diff --git a/screens/discover/index.tsx b/screens/discover/index.tsx index f0dd2d4..c26f1ad 100644 --- a/screens/discover/index.tsx +++ b/screens/discover/index.tsx @@ -1,8 +1,175 @@ -import { StyleSheet, View } from 'react-native'; -import React from 'react'; +import { StyleSheet, View, Text, StatusBar as RNStatusBar, Pressable, Platform, Animated } from 'react-native'; +import React, { useCallback, useEffect, useRef, useState } from 'react'; +import { LQDBottomSheet, LQDButton, LQDFlatlist, LQDImage, LQDInput, LQDProtocolCard, LQDStrategyCard, SearchUI } from '@/components'; +import { SearchBar } from 'react-native-screens'; +import { ArrowCircleDownIcon, DiscoverTVLIcon, SearchIcon, DiscoverUSDIcon, DiscoverAerodromeIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import RecentCard from '@/components/search-ui/popular-asset-card'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { protocolList, strategyies } from './dummy'; +import { useForm } from 'react-hook-form'; +import PercentageSetter from '../liquidity-actions/remove/percentage-setter'; +import useAppActions from '@/store/app/actions'; const Discover = () => { - return ; + const { router, poolsState, dispatch, appState } = useSystemFunctions(); + const { searchIsFocused, showSearch } = useAppActions(); + const [search, setSearch] = useState(false); + const [showTvl, setShowTvl] = useState(false); + const [protocal, setProtocal] = useState(false); + const [percentage, setPercentage] = useState(25); + const [selected, setSelected] = useState(''); + + const stableSetPercentage = useCallback((value: number) => setPercentage(value), []); + const recentSearch = poolsState.recentSearchedPools; + const { control, watch } = useForm(); + + const animationValue = useRef(new Animated.Value(0)).current; + + useEffect(() => { + Animated.timing(animationValue, { + toValue: search ? 1 : 0, + duration: 300, + useNativeDriver: true, + }).start(); + }, [search]); + + // Animated styles + const discoverStyle = { + opacity: animationValue.interpolate({ + inputRange: [0, 1], + outputRange: [1, 0], // Fully visible when search is false + }), + transform: [ + { + translateY: animationValue.interpolate({ + inputRange: [0, 1], + outputRange: [0, -20], // Slide up when transitioning + }), + }, + ], + }; + + const searchStyle = { + opacity: animationValue.interpolate({ + inputRange: [0, 1], + outputRange: [0, 1], // Fully visible when search is true + }), + transform: [ + { + translateY: animationValue.interpolate({ + inputRange: [0, 1], + outputRange: [20, 0], // Slide down when transitioning + }), + }, + ], + }; + + const closeInput = () => { + setSearch((prev) => !prev); + }; + + const openTvl = () => { + setShowTvl((prev) => !prev); + }; + + const openProtocal = () => { + setProtocal((prev) => !prev); + }; + + const openAssets = () => { + searchIsFocused(false); + showSearch(true); + }; + + if (appState.showSearch) { + return ( + + + + ); + } + + return ( + + {/* Discover Section */} + {!search && ( + + Discover + + + + + + + + + + + + + + + + + + + + setSearch(true)}> + + + + + )} + + {/* Search Section */} + {search && ( + + setSearch(false)} + /> + + )} + } + keyExtractor={(_, index) => index.toString()} + showsHorizontalScrollIndicator={false} + style={{ paddingTop: 15 }} + contentContainerStyle={styles.strategyContainerStyle} + /> + + + + + + + + + + + + setSelected(item.id)} />} + keyExtractor={(_, index) => index.toString()} + showsHorizontalScrollIndicator={false} + contentContainerStyle={styles.protocalContainerStyle} + /> + + + ); }; export default Discover; @@ -11,5 +178,43 @@ const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#FFF', + paddingTop: 20, + }, + topText: { + flex: 1, + fontSize: adjustFontSizeForIOS(20, 3), + fontFamily: 'AeonikMedium', + fontWeight: '500', + }, + topIconWrapper: { + flex: 1, + flexDirection: 'row', + alignItems: 'center', + justifyContent: 'space-between', + }, + dropIcon: { position: 'absolute', bottom: 0, right: 0 }, + relativeWrapper: { position: 'relative' }, + percentageSetterContainer: { + alignSelf: 'stretch', + padding: 11, + justifyContent: 'center', + alignItems: 'center', + gap: 20, + borderRadius: 12, + borderWidth: 1, + borderColor: '#EAEEF4', + marginBottom: 40, + }, + searchWrapper: { + flex: 1, + paddingHorizontal: 16, + backgroundColor: '#fff', + paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, + paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, }, + strategyContainerStyle: { gap: 20, paddingBottom: 120, paddingHorizontal: 12 }, + protocalContainerStyle: { gap: 20, paddingBottom: 50 }, + recentContainerStyle: { gap: 10, paddingBottom: 0, paddingHorizontal: 12 }, + searchModalWrapper: { paddingHorizontal: 12 }, + discoverTopWrapper: { flexDirection: 'row', alignItems: 'center', marginHorizontal: 16, paddingVertical: 10 }, }); diff --git a/screens/home/dummy.ts b/screens/home/dummy.ts new file mode 100644 index 0000000..fb22053 --- /dev/null +++ b/screens/home/dummy.ts @@ -0,0 +1,92 @@ +const image = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; +export const feeds: Array = [ + { + photo: image, + username: '@Nurayyy.eth', + address: '0xc61...87f7a', + date: '2h', + percentage: '65.45', + estimate: 'Est. APY', + title: 'Moonwell - USDC', + commentCount: 26, + shareCount: 26, + flashCount: 26, + description: 'This strategy starts as an ease in for first and second quaterss of 2025', + steps: [ + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + photo: image, + username: '@Gabby.eth', + address: '0xc61...87f7a', + date: '2h', + percentage: '65.45', + estimate: 'Est. APY', + title: 'Moonwell - USDC', + commentCount: 26, + shareCount: 26, + flashCount: 26, + description: 'This strategy starts as an ease in for first and second quaterss of 2025', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, +]; diff --git a/screens/home/index.tsx b/screens/home/index.tsx index dbe0d8b..33e048e 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -9,100 +9,9 @@ import { useAccountActions } from '@/store/account/actions'; import { usePoolActions } from '@/store/pools/actions'; import { useOnMount } from '@/hooks/useOnMount'; import Loader from './loader'; +import { feeds } from './dummy'; const image = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; -export const feeds: Array = [ - { - photo: image, - username: '@Nurayyy.eth', - address: '0xc61...87f7a', - date: '2h', - percentage: '65.45', - estimate: 'Est. APY', - title: 'Moonwell - USDC', - commentCount: 26, - shareCount: 26, - flashCount: 26, - description: 'This strategy starts as an ease in for first and second quaterss of 2025', - steps: [ - { - variant: 'supply', - tokenA: 'cbBTC', - tokenB: 'moonWell', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', - }, - - { - variant: 'deposit', - tokenA: 'Borrowed USDC', - tokenB: 'Morpho', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', - }, - { - variant: 'borrow', - tokenA: 'USDC', - tokenB: 'Base', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', - }, - { - isLast: true, - variant: 'stake', - tokenA: 'DAI', - tokenB: 'USDC', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', - }, - ], - }, - { - photo: image, - username: '@Gabby.eth', - address: '0xc61...87f7a', - date: '2h', - percentage: '65.45', - estimate: 'Est. APY', - title: 'Moonwell - USDC', - commentCount: 26, - shareCount: 26, - flashCount: 26, - description: 'This strategy starts as an ease in for first and second quaterss of 2025', - steps: [ - { - variant: 'deposit', - tokenA: 'Borrowed USDC', - tokenB: 'Morpho', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', - }, - { - variant: 'supply', - tokenA: 'cbBTC', - tokenB: 'moonWell', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', - }, - { - variant: 'borrow', - tokenA: 'USDC', - tokenB: 'Base', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', - }, - { - isLast: true, - variant: 'stake', - tokenA: 'DAI', - tokenB: 'USDC', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', - }, - ], - }, -]; - const Home = () => { const { router, poolsState, smartAccountState, accountState, appState } = useSystemFunctions(); const { getTokens } = useAccountActions(); diff --git a/screens/liquidity-actions/remove/percentage-setter.tsx b/screens/liquidity-actions/remove/percentage-setter.tsx index b6d381d..36da00d 100644 --- a/screens/liquidity-actions/remove/percentage-setter.tsx +++ b/screens/liquidity-actions/remove/percentage-setter.tsx @@ -3,6 +3,7 @@ import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; import Slider from '@react-native-community/slider'; import { adjustFontSizeForIOS } from '@/utils/helpers'; +const icon = require('../../../assets/images/slider-dot-icon.png'); const PercentageSetter = ({ setPercentage }: IPercentageSetter) => { const [percentage, setInternalPercentage] = useState(25); @@ -43,9 +44,9 @@ const PercentageSetter = ({ setPercentage }: IPercentageSetter) => { onValueChange={handleSliderChange} minimumTrackTintColor="#4691FE" maximumTrackTintColor="#CBD5E1" - thumbTintColor="#4691FE" tapToSeek lowerLimit={1} + thumbImage={icon} /> diff --git a/screens/profile/dummy.ts b/screens/profile/dummy.ts new file mode 100644 index 0000000..fb22053 --- /dev/null +++ b/screens/profile/dummy.ts @@ -0,0 +1,92 @@ +const image = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; +export const feeds: Array = [ + { + photo: image, + username: '@Nurayyy.eth', + address: '0xc61...87f7a', + date: '2h', + percentage: '65.45', + estimate: 'Est. APY', + title: 'Moonwell - USDC', + commentCount: 26, + shareCount: 26, + flashCount: 26, + description: 'This strategy starts as an ease in for first and second quaterss of 2025', + steps: [ + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + photo: image, + username: '@Gabby.eth', + address: '0xc61...87f7a', + date: '2h', + percentage: '65.45', + estimate: 'Est. APY', + title: 'Moonwell - USDC', + commentCount: 26, + shareCount: 26, + flashCount: 26, + description: 'This strategy starts as an ease in for first and second quaterss of 2025', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, +]; diff --git a/screens/profile/index.tsx b/screens/profile/index.tsx index 1aed38c..2f0374e 100644 --- a/screens/profile/index.tsx +++ b/screens/profile/index.tsx @@ -5,8 +5,8 @@ import { CheckIcon, CopyIcon, FamcasterIcon, FillCheckIcon, LinkIcon, UserOctago import { adjustFontSizeForIOS } from '@/utils/helpers'; import { SceneMap } from 'react-native-tab-view'; import useCustomTabView from '@/hooks/useCustomTabview'; -import { feeds } from '../home'; import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { feeds } from './dummy'; const Profile = () => { const { CustomTabView } = useCustomTabView(); const { router } = useSystemFunctions(); @@ -25,7 +25,7 @@ const Profile = () => { } + renderItem={({ item }) => } keyExtractor={(_, index) => index.toString()} showsHorizontalScrollIndicator={false} style={{ backgroundColor: '#fff' }} From ecbc43cf054f4aad769211c311b5e510e7241e61 Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Wed, 11 Dec 2024 09:21:12 +0100 Subject: [PATCH 80/95] feature/create-strategy (#101) * feature: create strategy page * chore: create strategy screen with action component * chore: added protol and actions modal * chore: added drag and drop package * chore: customized input component for textarea option * chore: installed react native lottie * chore: style clean ui * chore: comment clean up * chore: preview page loader * chore: preview page loader --- app/(create-strategy)/_layout.tsx | 35 + app/(create-strategy)/create-strategy.tsx | 5 + app/(create-strategy)/new-action-strategy.tsx | 5 + app/(create-strategy)/preview-strategy.tsx | 5 + app/(tabs)/_layout.tsx | 24 +- app/(tabs)/home/[poolId]/_layout.tsx | 2 +- app/_layout.tsx | 11 +- app/deposit/_layout.tsx | 2 +- ...-aerodrome-icon.tsx => aerodrome-icon.tsx} | 4 +- assets/icons/arrow-dropdown-icon.tsx | 14 + assets/icons/borrow-icon.tsx | 14 +- assets/icons/caret-left-icon.tsx | 14 +- assets/icons/deposit-icon.tsx | 10 +- assets/icons/drag-handle-icon.tsx | 15 + assets/icons/edit-profile-icon.tsx | 10 +- assets/icons/index.ts | 16 +- assets/icons/lamp-icon.tsx | 22 + assets/icons/moonwell-icon.tsx | 19 + assets/icons/morpho-icon.tsx | 19 + assets/icons/plus-icon.tsx | 8 +- assets/icons/sort-icon.tsx | 30 + assets/icons/stake-icon.tsx | 10 +- assets/images/lottie-loader.png | Bin 0 -> 2309 bytes assets/json/liquid loader animation.json | 1 + components/action-card/index.tsx | 59 + components/action-card/types.ts | 8 + components/feed-card/feed-step.tsx | 4 +- components/feed-card/index.tsx | 4 +- components/feed-card/types.ts | 2 +- components/index.ts | 2 + components/input/index.tsx | 27 +- components/input/types.ts | 2 + components/protocol-card/index.tsx | 14 +- components/protocol-card/types.ts | 3 + components/search-ui/index.tsx | 1 - components/search-ui/popular-asset-card.tsx | 2 +- components/stack-header/index.tsx | 64 +- components/stack-header/types.ts | 2 + constants/abis/AerodromeConnector.json | 592 +- constants/abis/ConnectorPlugin.json | 209 +- constants/abis/EntryPoint.json | 1602 +- hooks/liquidity.md | 54 +- init/reactotron.ts | 4 +- package-lock.json | 19399 ++++++++++++++++ package.json | 3 + screens/create-strategy/actions.tsx | 145 + screens/create-strategy/index.tsx | 103 + screens/create-strategy/loader.tsx | 36 + .../create-strategy/new-action-strategy.tsx | 197 + screens/create-strategy/preview-strategy.tsx | 136 + screens/create-strategy/types.ts | 21 + screens/discover/dummy.ts | 38 +- screens/discover/index.tsx | 16 +- screens/home/dummy.ts | 33 + screens/home/index.tsx | 5 +- screens/index.ts | 6 + yarn.lock | 3287 +-- 57 files changed, 23827 insertions(+), 2548 deletions(-) create mode 100644 app/(create-strategy)/_layout.tsx create mode 100644 app/(create-strategy)/create-strategy.tsx create mode 100644 app/(create-strategy)/new-action-strategy.tsx create mode 100644 app/(create-strategy)/preview-strategy.tsx rename assets/icons/{discover-aerodrome-icon.tsx => aerodrome-icon.tsx} (99%) create mode 100644 assets/icons/arrow-dropdown-icon.tsx create mode 100644 assets/icons/drag-handle-icon.tsx create mode 100644 assets/icons/lamp-icon.tsx create mode 100644 assets/icons/moonwell-icon.tsx create mode 100644 assets/icons/morpho-icon.tsx create mode 100644 assets/icons/sort-icon.tsx create mode 100644 assets/images/lottie-loader.png create mode 100644 assets/json/liquid loader animation.json create mode 100644 components/action-card/index.tsx create mode 100644 components/action-card/types.ts create mode 100644 package-lock.json create mode 100644 screens/create-strategy/actions.tsx create mode 100644 screens/create-strategy/index.tsx create mode 100644 screens/create-strategy/loader.tsx create mode 100644 screens/create-strategy/new-action-strategy.tsx create mode 100644 screens/create-strategy/preview-strategy.tsx create mode 100644 screens/create-strategy/types.ts diff --git a/app/(create-strategy)/_layout.tsx b/app/(create-strategy)/_layout.tsx new file mode 100644 index 0000000..48f0c62 --- /dev/null +++ b/app/(create-strategy)/_layout.tsx @@ -0,0 +1,35 @@ +import { Stack } from 'expo-router'; +import { LQDStackHeader } from '@/components'; + +const StrategyStack = () => { + return ( + , + headerTitle: 'Create Strategy', + }} + > + , + headerTitle: 'New Action', + headerShown: true, + presentation: 'fullScreenModal', + animation: 'slide_from_bottom', + }} + /> + + , + headerTitle: 'Preview and publish', + headerShown: true, + }} + /> + + ); +}; + +export default StrategyStack; diff --git a/app/(create-strategy)/create-strategy.tsx b/app/(create-strategy)/create-strategy.tsx new file mode 100644 index 0000000..1ad00eb --- /dev/null +++ b/app/(create-strategy)/create-strategy.tsx @@ -0,0 +1,5 @@ +import { CreateStrategy } from '@/screens'; + +const CreateStrategyScreen = () => ; + +export default CreateStrategyScreen; diff --git a/app/(create-strategy)/new-action-strategy.tsx b/app/(create-strategy)/new-action-strategy.tsx new file mode 100644 index 0000000..d1a9bb9 --- /dev/null +++ b/app/(create-strategy)/new-action-strategy.tsx @@ -0,0 +1,5 @@ +import { NewActionStrategy } from '@/screens'; + +const NewActionScreen = () => ; + +export default NewActionScreen; diff --git a/app/(create-strategy)/preview-strategy.tsx b/app/(create-strategy)/preview-strategy.tsx new file mode 100644 index 0000000..40683a5 --- /dev/null +++ b/app/(create-strategy)/preview-strategy.tsx @@ -0,0 +1,5 @@ +import { PreviewStrategy } from '@/screens'; + +const PreviewStrategyScreen = () => ; + +export default PreviewStrategyScreen; diff --git a/app/(tabs)/_layout.tsx b/app/(tabs)/_layout.tsx index 3896958..64ab70c 100644 --- a/app/(tabs)/_layout.tsx +++ b/app/(tabs)/_layout.tsx @@ -4,27 +4,41 @@ import { StatusBar } from 'expo-status-bar'; import { TabBarIcon } from '@/components/navigation/TabBarIcon'; import { Colors } from '@/constants/Colors'; -import { LQDBottomSheet, LQDNavigation } from '@/components'; +import { LQDActionCard, LQDBottomSheet, LQDFlatlist, LQDNavigation } from '@/components'; import Header from '@/screens/home/header'; import { useState } from 'react'; +import { sortList } from '@/screens/discover/dummy'; export default function TabLayout() { const colorScheme = useColorScheme(); const [show, setShow] = useState(false); + const [selected, setSelected] = useState(''); return ( <> {/* fix this header showing on all screens */} -

setShow((prev) => !prev)} /> - setShow((prev) => !prev)}> + + setShow((prev) => !prev)}> + ( + setSelected(item.id)} /> + )} + keyExtractor={(_, index) => index.toString()} + showsHorizontalScrollIndicator={false} + contentContainerStyle={styles.protocalContainerStyle} + /> + } screenOptions={{ tabBarActiveTintColor: Colors[colorScheme ?? 'light'].tint, - headerShown: false, + headerShown: true, + header: () =>
setShow((prev) => !prev)} />, }} > , + headerShown: false, }} /> @@ -60,4 +75,5 @@ const styles = StyleSheet.create({ paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 48, backgroundColor: '#fff', }, + protocalContainerStyle: { gap: 20, paddingBottom: 50 }, }); diff --git a/app/(tabs)/home/[poolId]/_layout.tsx b/app/(tabs)/home/[poolId]/_layout.tsx index 602d3ce..5f96911 100644 --- a/app/(tabs)/home/[poolId]/_layout.tsx +++ b/app/(tabs)/home/[poolId]/_layout.tsx @@ -25,7 +25,7 @@ const PoolDetailLayout = () => { <> , + header: (props) => , headerShown: true, }} > diff --git a/app/_layout.tsx b/app/_layout.tsx index 3375076..20641c0 100644 --- a/app/_layout.tsx +++ b/app/_layout.tsx @@ -9,7 +9,6 @@ import '@/init/api'; import { AllProviders } from '@/providers'; import { LQDStackHeader, LQToast } from '@/components'; -import { View } from 'react-native'; export default function RootLayout() { return ( @@ -52,7 +51,7 @@ function RootStack() { , + header: (props) => , headerTitle: 'Withdraw', headerShown: true, }} @@ -60,7 +59,7 @@ function RootStack() { , + header: (props) => , headerTitle: 'Settings', headerShown: true, }} @@ -69,7 +68,7 @@ function RootStack() { , + header: (props) => , headerTitle: 'Legal & Privacy', headerShown: true, }} @@ -78,12 +77,14 @@ function RootStack() { , + header: (props) => , headerTitle: 'Support', headerShown: true, }} /> + + {/* Common routes */} diff --git a/app/deposit/_layout.tsx b/app/deposit/_layout.tsx index a2efc28..d77ed23 100644 --- a/app/deposit/_layout.tsx +++ b/app/deposit/_layout.tsx @@ -5,7 +5,7 @@ const DepositStack = () => { return ( , + header: (props) => , headerTitle: 'Deposit', }} > diff --git a/assets/icons/discover-aerodrome-icon.tsx b/assets/icons/aerodrome-icon.tsx similarity index 99% rename from assets/icons/discover-aerodrome-icon.tsx rename to assets/icons/aerodrome-icon.tsx index 16cd71e..60b6341 100644 --- a/assets/icons/discover-aerodrome-icon.tsx +++ b/assets/icons/aerodrome-icon.tsx @@ -1,6 +1,6 @@ import Svg, { Path, Defs, Pattern, Use, Image } from 'react-native-svg'; -const DiscoverAerodromeIcon = ({ fill = '', height = 25, width = 25 }: IconProps) => ( +const AerodromeIcon = ({ fill = '', height = 25, width = 25 }: IconProps) => ( @@ -16,4 +16,4 @@ const DiscoverAerodromeIcon = ({ fill = '', height = 25, width = 25 }: IconProps ); -export default DiscoverAerodromeIcon; +export default AerodromeIcon; diff --git a/assets/icons/arrow-dropdown-icon.tsx b/assets/icons/arrow-dropdown-icon.tsx new file mode 100644 index 0000000..05f0a70 --- /dev/null +++ b/assets/icons/arrow-dropdown-icon.tsx @@ -0,0 +1,14 @@ +import Svg, { Path } from 'react-native-svg'; + +const ArrowDropdownDownIcon = ({ fill = '#94A3B8', height = 16, width = 16 }: IconProps) => ( + + + +); +export default ArrowDropdownDownIcon; diff --git a/assets/icons/borrow-icon.tsx b/assets/icons/borrow-icon.tsx index 4c0c43a..234a583 100644 --- a/assets/icons/borrow-icon.tsx +++ b/assets/icons/borrow-icon.tsx @@ -1,22 +1,22 @@ import Svg, { Path } from 'react-native-svg'; -const BorrowIcon = () => ( - +const BorrowIcon = ({ fill = '#AF1D38', height = 16, width = 16 }: IconProps) => ( + - + - - + + ); export default BorrowIcon; diff --git a/assets/icons/caret-left-icon.tsx b/assets/icons/caret-left-icon.tsx index 40da8f1..138bb38 100644 --- a/assets/icons/caret-left-icon.tsx +++ b/assets/icons/caret-left-icon.tsx @@ -1,14 +1,14 @@ import Svg, { Path } from 'react-native-svg'; -const CaretLeftIcon = ({ fill = '#0F172A', height = 20, width = 20 }: IconProps) => ( - +const CaretLeftIcon = ({ fill = '#1E293B', height = 24, width = 24 }: IconProps) => ( + ); diff --git a/assets/icons/deposit-icon.tsx b/assets/icons/deposit-icon.tsx index eb8587d..1850bf2 100644 --- a/assets/icons/deposit-icon.tsx +++ b/assets/icons/deposit-icon.tsx @@ -1,15 +1,15 @@ import Svg, { Path } from 'react-native-svg'; -const DepositIcon = ({ fill = '#fff', height = 14, width = 14 }: IconProps) => ( - +const DepositIcon = ({ fill = '#1A8860', height = 16, width = 16 }: IconProps) => ( + - - + + ); export default DepositIcon; diff --git a/assets/icons/drag-handle-icon.tsx b/assets/icons/drag-handle-icon.tsx new file mode 100644 index 0000000..99ed83a --- /dev/null +++ b/assets/icons/drag-handle-icon.tsx @@ -0,0 +1,15 @@ +import Svg, { Path, Rect, Circle } from 'react-native-svg'; + +const DragHandleIcon = ({ fill = '#94A3B8', height = 24, width = 12 }: IconProps) => ( + + + + + + + + + + +); +export default DragHandleIcon; diff --git a/assets/icons/edit-profile-icon.tsx b/assets/icons/edit-profile-icon.tsx index 36022b7..2a61bd9 100644 --- a/assets/icons/edit-profile-icon.tsx +++ b/assets/icons/edit-profile-icon.tsx @@ -1,24 +1,24 @@ import Svg, { Path, Rect } from 'react-native-svg'; -const EditProfileIcon = () => ( - +const EditProfileIcon = ({ fill = '#020617', width = 17, height = 16 }: IconProps) => ( + ( + + + + + +); +export default LampIcon; diff --git a/assets/icons/moonwell-icon.tsx b/assets/icons/moonwell-icon.tsx new file mode 100644 index 0000000..c47d842 --- /dev/null +++ b/assets/icons/moonwell-icon.tsx @@ -0,0 +1,19 @@ +import Svg, { Path, Defs, Pattern, Use, Image } from 'react-native-svg'; + +const MoonWellIcon = ({ fill = '', height = 18, width = 24 }: IconProps) => ( + + + + + + + + + +); +export default MoonWellIcon; diff --git a/assets/icons/morpho-icon.tsx b/assets/icons/morpho-icon.tsx new file mode 100644 index 0000000..363ba7e --- /dev/null +++ b/assets/icons/morpho-icon.tsx @@ -0,0 +1,19 @@ +import Svg, { Path, Defs, Pattern, Use, Image } from 'react-native-svg'; + +const MorphoIcon = ({ fill = '', height = 24, width = 24 }: IconProps) => ( + + + + + + + + + +); +export default MorphoIcon; diff --git a/assets/icons/plus-icon.tsx b/assets/icons/plus-icon.tsx index 69df8a6..5ef3495 100644 --- a/assets/icons/plus-icon.tsx +++ b/assets/icons/plus-icon.tsx @@ -1,9 +1,9 @@ import Svg, { Path } from 'react-native-svg'; -const PlusIcon = ({ fill = '#fff' }) => ( - - - +const PlusIcon = ({ fill = '#fff', height = 30, width = 30 }) => ( + + + ); export default PlusIcon; diff --git a/assets/icons/sort-icon.tsx b/assets/icons/sort-icon.tsx new file mode 100644 index 0000000..cdbea8d --- /dev/null +++ b/assets/icons/sort-icon.tsx @@ -0,0 +1,30 @@ +import Svg, { Path, Rect } from 'react-native-svg'; + +const SortIcon = ({ fill = '#FFF', height = 30, width = 30 }: IconProps) => ( + + + + + + +); + +export default SortIcon; diff --git a/assets/icons/stake-icon.tsx b/assets/icons/stake-icon.tsx index 4333be6..84753a2 100644 --- a/assets/icons/stake-icon.tsx +++ b/assets/icons/stake-icon.tsx @@ -1,22 +1,22 @@ import Svg, { Path } from 'react-native-svg'; -const StakeIcon = () => ( - +const StakeIcon = ({ fill = '#253EA7', height = 16, width = 16 }: IconProps) => ( + diff --git a/assets/images/lottie-loader.png b/assets/images/lottie-loader.png new file mode 100644 index 0000000000000000000000000000000000000000..ddd4485cf096fce9c491ee49fae0309df08ac4c5 GIT binary patch literal 2309 zcmV+g3HtVlP)P}F2g31%Pyd1dV0FbtE;Fx)#qw{qOMP8szFqG?7z8a*p^!JDy^0q9XTIrj@PFY<&sSQ^iFew_OXV1&-8xLX+qY zWDc|~u=qW`^U&cw-|%_s^H(26lWk5!|1l_atD>&u9^n$rqkL+y=@`WS12^%|@cpLW zO8)k#R|2QNtYwQ{9k{5rZTpWu^_{q%3`a^(#hd=e=$@q5V~jY*ViK~2ktKdUl=>3& z&yEyhxojGWNbBSNDU7URKC`JDQnanlVYZ*rkYn+@cwyQqr}q1?M$g`|8JS*TE7DcC zrbJ}USSh8}cV%*Y-&e-2J4jxI@)BFQC=*#Kg><1jzqD@MK@xX_=cl(Q#ae?)=Y(`c z1^g>7S^S(>$QDMg-%-l71|eh!M7)m(;>q4fk?cJN~dkwl5vDT`QMRcZ<~RA|Ygscx*>1yPfO)kUf^8 zZbS}KQYlxa*3b(;^~ee#V_`QY`%v41pT%~pF*htvW!Had$G_d}Z%>C`;WTH#$TUzn z1drX_{wh-Z*(8qU%>M9bBKjAQ7E+}Js-n7@HtCO*BEI&f|FNduNA;}FvI(=7ZEO;! zxa&q#hcqwIEe_^bi%!M#DA6CwAX6$|^BbGQZ&dnt8oL?F7Lgb!UHHgOY2y(TIKR=+ zx3nKZy+QS4wcIoNk!WbnUN&B96oMl>tQ}R!EUhpErG%m&>Q(kYP&al|5X zCPRoNf`LZALqgfDQ69lrgJFsl%fb@3!rwe64IjvOmEoA|YMLP>yz=Qy-?nBCPZ36S#UvNMAf8blqz8&30aB zLtZZD;y?)Li_6Q`+^0|W)QCpclBN2upk#y$jnB)qMnrbtXhz7G_`JLp+2r}` z2856?`6#kIfew} z5JHAUUTlkBhYYqEH>{^rjH_o?1zXY>mYZXv)CBv zIyIDZy)uFg7V2*7WQc22 zV?`1&6*RJP5yB1~)Ajb{=n;{_**OR1=O)L+V>dW!cI-qRlZf?i;!bL9CFCLu>57h2 zHvWGRfR&j?JCG1jYL(G}GA;>CKV@ao>&a)gnY?UmnAA}=g_LHzf$1aDWrK8bd2NeK zO!GSzA}QncC3fZ1e$o$bYL&<)nBNg=DH%!^BU>L5DSrhQYTNh1e9f75EbWve)_?F8 zU(-${ncqZ(Ikj7$Y&|d%0`+;dW3et#6)hz*8h)b<-=ROgM@Jody=iJws(vh1HY1Ef z^&h>CRQ4WwO-d@G8@AKLN2K#cvKff9Tcd@*Xo`QnHy9L;F6>%0);DkLt_p$tANtiENQn zFHPHlkYOp_(S=&}KyJoLj~+EM~5W#N!ggZo{-*Ts0nSiBU=br@Bx&JkVE;5Xrz0V zEf?+gyt)G+WGG|-MT9H7DiUktqREtzq7gDIvd-}#_=QynE&d6FkTJOy+5QE0c@Q!- z857tOavX{T_8ABvW8+uho!So&LdN9hi}3R87KD(ocvqy-)~m28DNB?NgpeWdC`HTU z;zE1FX3Fcld;uZkP$cE=YrAc$Zf~Rmlh_loFS27q2CKW&hUB(g{|@Djf053C5RyU< znBFy=aqE0|G^|?Qpgc6{K*+MuQS4jS07AXOA~2UWStuC}$gMp@3=)S@IFXO3e91YX z;qNl^2!jwaMszKQQn)pCgRBxVWi+^tB(BdefLt+03DTO#qfG(HDe*W#e(jTmA2;cH zRYXcihQ_0sUwiamtaVH(*1yn@%-(^kprnd7MW%o{9h_VSoXN@7MwpUX`81P_&9z3( z15GKV@%n8B8$Y+CjI)!ijfULWaZ-Dxm^uv`q?6U#zM}u!k|v&=Z2J;cPp_il!pE9{ zRIlUvmWmJc2Gz`?4~hQb{-vh}Uc79F66M!+=A&51l%R5biF)>x+P8de6VWT1sLx*S fw3nKmcPRb`JI;Qq!=Z8|00000NkvXXu0mjf^!8@j literal 0 HcmV?d00001 diff --git a/assets/json/liquid loader animation.json b/assets/json/liquid loader animation.json new file mode 100644 index 0000000..3fb91c9 --- /dev/null +++ b/assets/json/liquid loader animation.json @@ -0,0 +1 @@ +{"v":"4.8.0","meta":{"g":"LottieFiles AE 3.5.9","a":"","k":"","d":"","tc":""},"fr":29.9700012207031,"ip":0,"op":71.0000028918893,"w":520,"h":410,"nm":"Comp 1","ddd":0,"assets":[{"id":"image_0","w":378,"h":169,"u":"/images/","p":"data:image/png;base64,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","e":0}],"layers":[{"ddd":0,"ind":1,"ty":2,"nm":"Layer 1/liquid loader animation.ai","cl":"ai","td":1,"refId":"image_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[260,205,0],"ix":2},"a":{"a":0,"k":[189,84.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[1,1,1,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"ip":0,"op":240.0000097754,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":1,"nm":"Medium Royal Blue Solid 1","tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[260,435,0],"to":[0,0,0],"ti":[0,0,0]},{"t":61.0000024845809,"s":[260,255,0]}],"ix":2},"a":{"a":0,"k":[260,205,0],"ix":1},"s":{"a":0,"k":[100,70.732,100],"ix":6}},"ao":0,"ef":[{"ty":5,"nm":"Turbulent Displace","np":16,"mn":"ADBE Turbulent Displace","ix":1,"en":1,"ef":[{"ty":7,"nm":"Displacement","mn":"ADBE Turbulent Displace-0001","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Amount","mn":"ADBE Turbulent Displace-0002","ix":2,"v":{"a":0,"k":-16,"ix":2}},{"ty":0,"nm":"Size","mn":"ADBE Turbulent Displace-0003","ix":3,"v":{"a":0,"k":82,"ix":3}},{"ty":3,"nm":"Offset (Turbulence)","mn":"ADBE Turbulent Displace-0004","ix":4,"v":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[260,205],"to":[0,0],"ti":[0,0]},{"t":57.0000023216576,"s":[731,205]}],"ix":4}},{"ty":0,"nm":"Complexity","mn":"ADBE Turbulent Displace-0005","ix":5,"v":{"a":0,"k":3.95,"ix":5}},{"ty":0,"nm":"Evolution","mn":"ADBE Turbulent Displace-0006","ix":6,"v":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[0]},{"t":61.0000024845809,"s":[282]}],"ix":6}},{"ty":6,"nm":"Evolution Options","mn":"ADBE Turbulent Displace-0007","ix":7,"v":0},{"ty":7,"nm":"Cycle Evolution","mn":"ADBE Turbulent Displace-0008","ix":8,"v":{"a":0,"k":0,"ix":8}},{"ty":0,"nm":"Cycle (in Revolutions)","mn":"ADBE Turbulent Displace-0009","ix":9,"v":{"a":0,"k":1,"ix":9}},{"ty":0,"nm":"Random Seed","mn":"ADBE Turbulent Displace-0010","ix":10,"v":{"a":0,"k":0,"ix":10}},{"ty":6,"nm":"Random Seed","mn":"ADBE Turbulent Displace-0011","ix":11,"v":0},{"ty":7,"nm":"Pinning","mn":"ADBE Turbulent Displace-0012","ix":12,"v":{"a":0,"k":3,"ix":12}},{"ty":7,"nm":"Resize Layer","mn":"ADBE Turbulent Displace-0013","ix":13,"v":{"a":0,"k":0,"ix":13}},{"ty":7,"nm":"Antialiasing for Best Quality","mn":"ADBE Turbulent Displace-0014","ix":14,"v":{"a":0,"k":1,"ix":14}}]}],"sw":520,"sh":410,"sc":"#90aee4","ip":0,"op":240.0000097754,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":2,"nm":"Layer 1/liquid loader animation.ai","cl":"ai","refId":"image_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[260,205,0],"ix":2},"a":{"a":0,"k":[189,84.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[1,1,1,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"ip":0,"op":240.0000097754,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/components/action-card/index.tsx b/components/action-card/index.tsx new file mode 100644 index 0000000..96a58bc --- /dev/null +++ b/components/action-card/index.tsx @@ -0,0 +1,59 @@ +import React, { useEffect, useRef } from 'react'; +import { StyleSheet, View, Text, TouchableOpacity } from 'react-native'; +import { BorrowIcon, DepositIcon, FillCheckIcon, SortIcon, StakeIcon } from '@/assets/icons'; +import LQDImage from '../image'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { IActionCard } from './types'; + +const LQDActionCard = ({ selected, action, actions, variant }: IActionCard) => { + const { title } = actions; + + const icons = { + stake: , + deposit: , + borrow: , + sort: , + supply: null, + }; + + return ( + + + {icons[variant]} + {title} + + {selected && } + + ); +}; + +export default LQDActionCard; + +const styles = StyleSheet.create({ + container: { + backgroundColor: '#F8FAFC', + flexDirection: 'row', + alignItems: 'center', + borderRadius: 20, + height: 52, + paddingHorizontal: 16, + justifyContent: 'space-between', + }, + innerWrapper: { + flexDirection: 'row', + alignItems: 'center', + gap: 20, + }, + volumeWrapper: { + alignItems: 'flex-end', + gap: 8, + }, + + title: { + color: '#1E293B', + fontSize: adjustFontSizeForIOS(16, 2), + lineHeight: 19.2, + fontWeight: '500', + fontFamily: 'AeonikMedium', + }, +}); diff --git a/components/action-card/types.ts b/components/action-card/types.ts new file mode 100644 index 0000000..39ad2d8 --- /dev/null +++ b/components/action-card/types.ts @@ -0,0 +1,8 @@ +export type IActionIconVariant = 'deposit' | 'stake' | 'borrow' | 'supply' | 'sort'; +export interface IActionCard { + actions: any; + navigationVariant?: 'primary' | 'secondary'; + variant: IActionIconVariant; + selected: boolean | null; + action?: () => void; +} diff --git a/components/feed-card/feed-step.tsx b/components/feed-card/feed-step.tsx index 7072711..c63c4aa 100644 --- a/components/feed-card/feed-step.tsx +++ b/components/feed-card/feed-step.tsx @@ -2,7 +2,7 @@ import React, { useState } from 'react'; import { View, Text, StyleSheet } from 'react-native'; import FastImage from 'react-native-fast-image'; import Animated from 'react-native-reanimated'; -import { BorrowIcon, DepositIcon, StakeIcon, SupplyIcon, SwatchIcon } from '@/assets/icons'; // Replace icons as needed +import { BorrowIcon, DepositIcon, StakeIcon, SupplyIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import LQDPoolImages from '../pool-images'; @@ -10,7 +10,7 @@ const defaultAIconUrl = 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732 const defaultBIconUrl = 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png'; const connector = require('../../assets/images/connector.png'); -const FeedStep = ({ variant, tokenAIconURL, tokenBIconURL, tokenA, tokenB, isLast }: IFeedStep) => { +const FeedStep = ({ variant, tokenAIconURL, tokenBIconURL, tokenA, tokenB, isLast, title = '' }: IFeedStep) => { const [tokenAIconError, setTokenAIconError] = useState(false); const [tokenBIconError, setTokenBIconError] = useState(false); diff --git a/components/feed-card/index.tsx b/components/feed-card/index.tsx index f5ef2b5..e5aaac1 100644 --- a/components/feed-card/index.tsx +++ b/components/feed-card/index.tsx @@ -163,10 +163,10 @@ const styles = StyleSheet.create({ }, description: { color: '#64748B', - fontSize: adjustFontSizeForIOS(15, 2), + fontSize: adjustFontSizeForIOS(14, 2), fontFamily: 'AeonikRegular', fontWeight: '400', - lineHeight: 25, + lineHeight: 19, }, seeMore: { color: '#375DFB', diff --git a/components/feed-card/types.ts b/components/feed-card/types.ts index c442f8a..a23f6cf 100644 --- a/components/feed-card/types.ts +++ b/components/feed-card/types.ts @@ -4,7 +4,7 @@ interface FeedCard { } interface IFeedStep { - title: string; + title?: string; variant: 'supply' | 'borrow' | 'deposit' | 'stake'; tokenA: string; tokenB: string; diff --git a/components/index.ts b/components/index.ts index ad13044..1bdbf31 100644 --- a/components/index.ts +++ b/components/index.ts @@ -25,9 +25,11 @@ import LQDFlatlist from './flatlist'; import LQDImage from './image'; import LQDStrategyCard from './strategy-card'; import LQDProtocolCard from './protocol-card'; +import LQDActionCard from './action-card'; export { LQDButton, + LQDActionCard, LQDProtocolCard, LQDStrategyCard, LQDImage, diff --git a/components/input/index.tsx b/components/input/index.tsx index b85f671..26b13ab 100644 --- a/components/input/index.tsx +++ b/components/input/index.tsx @@ -15,6 +15,8 @@ const LQDInput = ({ rules, variant = 'primary', iconAction, + isTextarea = false, + numberOfLines = 4, }: ILQDInput) => { const iconsMap = { search: , @@ -28,7 +30,7 @@ const LQDInput = ({ return ( {label && {label}} - + {icon} ({ rules={rules} render={({ field: { onChange, onBlur, value } }) => ( )} @@ -61,7 +66,6 @@ const styles = StyleSheet.create({ flexDirection: 'row', justifyContent: 'center', alignItems: 'center', - gap: 8, borderRadius: 13, borderColor: '#EAEEF4', borderWidth: 1, @@ -72,16 +76,27 @@ const styles = StyleSheet.create({ elevation: 1, backgroundColor: '#fff', }, + textareaContainer: { + alignItems: 'flex-start', + paddingVertical: 8, + }, label: { marginBottom: 8, - fontSize: adjustFontSizeForIOS(16, 2), - fontWeight: 'bold', + fontSize: adjustFontSizeForIOS(13, 2), + fontWeight: '500', + fontFamily: 'AeonikMedium', }, input: { flex: 1, fontSize: adjustFontSizeForIOS(14, 2), lineHeight: 18.48, color: '#94A3B8', - fontFamily: 'AeonikRegular', + fontWeight: 400, + fontFamily: 'Aeonik', + }, + textarea: { + textAlignVertical: 'top', + paddingTop: 8, + height: 80, }, }); diff --git a/components/input/types.ts b/components/input/types.ts index e116321..3308eab 100644 --- a/components/input/types.ts +++ b/components/input/types.ts @@ -6,6 +6,8 @@ interface ILQDInput { name: Path; rules?: Omit, 'setValueAs' | 'disabled' | 'valueAsNumber' | 'valueAsDate'>; label?: string; + isTextarea?: boolean; + numberOfLines?: number; placeholder?: string; variant?: 'primary' | 'secondary' | 'search' | 'close'; inputProps?: TextInputProps; diff --git a/components/protocol-card/index.tsx b/components/protocol-card/index.tsx index ec9f957..2382e27 100644 --- a/components/protocol-card/index.tsx +++ b/components/protocol-card/index.tsx @@ -1,18 +1,22 @@ import React, { useEffect, useRef } from 'react'; import { StyleSheet, View, Text, TouchableOpacity } from 'react-native'; -import { FillCheckIcon } from '@/assets/icons'; +import { AerodromeIcon, BorrowIcon, DepositIcon, FillCheckIcon, MoonWellIcon, MorphoIcon } from '@/assets/icons'; import { IProtocolCard } from './types'; -import LQDImage from '../image'; import { adjustFontSizeForIOS } from '@/utils/helpers'; -const image = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; -const LQDProtocolCard = ({ selected, action, protocol }: IProtocolCard) => { +const LQDProtocolCard = ({ selected, action, variant, protocol }: IProtocolCard) => { const { title, icon } = protocol; + const icons = { + aerodrome: , + moonwell: , + morpho: , + }; + return ( - + {icons[variant]} {title} {selected && } diff --git a/components/protocol-card/types.ts b/components/protocol-card/types.ts index a2eda78..6faa282 100644 --- a/components/protocol-card/types.ts +++ b/components/protocol-card/types.ts @@ -1,6 +1,9 @@ +export type IProtocolIconVariant = 'moonwell' | 'aerodrome' | 'morpho'; + export interface IProtocolCard { protocol: any; navigationVariant?: 'primary' | 'secondary'; + variant: IProtocolIconVariant; selected: boolean | null; action?: () => void; } diff --git a/components/search-ui/index.tsx b/components/search-ui/index.tsx index 6f98b70..51e991e 100644 --- a/components/search-ui/index.tsx +++ b/components/search-ui/index.tsx @@ -181,7 +181,6 @@ const styles = StyleSheet.create({ alignItems: 'stretch', }, - // loader loaderContainer: { flex: 1, flexDirection: 'row', diff --git a/components/search-ui/popular-asset-card.tsx b/components/search-ui/popular-asset-card.tsx index 768acdf..5e03446 100644 --- a/components/search-ui/popular-asset-card.tsx +++ b/components/search-ui/popular-asset-card.tsx @@ -11,7 +11,7 @@ const PopularAssetCard = ({ pool, navigationVariant = 'primary' }: IPopularAsset const { searchIsFocused, showSearch } = useAppActions(); const onPress = () => { searchIsFocused(false); - // showSearch(true); + showSearch(true); }; const tokenIconURL = pool.token0.logoUrl; diff --git a/components/stack-header/index.tsx b/components/stack-header/index.tsx index 2371091..9a6d013 100644 --- a/components/stack-header/index.tsx +++ b/components/stack-header/index.tsx @@ -1,58 +1,64 @@ import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; - import { adjustFontSizeForIOS } from '@/utils/helpers'; -import { CaretLeftIcon } from '@/assets/icons'; +import { CaretLeftIcon, CloseIcon, LampIcon } from '@/assets/icons'; import { ILQDStackHeader } from './types'; -const LQDStackHeader = ({ navigation, options, hasTitle, style }: ILQDStackHeader) => { +const LQDStackHeader = ({ navigation, options, hasTitle, leftIcon = 'back', rightIcon = '', style }: ILQDStackHeader) => { + const lIcon = { + close: , + back: , + }; + const rIcon = { + bulb: , + }; + return ( - - - - Back + + navigation.goBack()}> + {leftIcon && lIcon[leftIcon]} - {hasTitle && {`${options?.headerTitle!}`}} + {hasTitle && ( + + {`${options?.headerTitle}`} + + )} + + {rightIcon && rIcon[rightIcon]} ); }; + export default LQDStackHeader; const styles = StyleSheet.create({ container: { flexDirection: 'row', - backgroundColor: '#FFF', - paddingBottom: 4, + backgroundColor: '#fff', + paddingBottom: 10, paddingHorizontal: 16, - }, - - hasTitleContainer: { justifyContent: 'center', alignItems: 'center' }, - - back: { - flexDirection: 'row', alignItems: 'center', - gap: 2, + justifyContent: 'space-between', + position: 'relative', }, - hasTitleBack: { + titleContainer: { position: 'absolute', - left: 16, - bottom: 4, - }, - - backText: { - color: '#1E293B', - fontSize: adjustFontSizeForIOS(14, 2), - lineHeight: 17.64, - fontWeight: '500', - fontFamily: 'AeonikMedium', + left: 0, + right: 0, + bottom: 10, + justifyContent: 'center', + alignItems: 'center', }, title: { color: '#181E00', - fontSize: adjustFontSizeForIOS(20, 3), + fontSize: adjustFontSizeForIOS(16, 3), lineHeight: 23.2, fontWeight: '500', fontFamily: 'AeonikMedium', }, + icon: { + zIndex: 2, + }, }); diff --git a/components/stack-header/types.ts b/components/stack-header/types.ts index 92eb9e1..0b5d621 100644 --- a/components/stack-header/types.ts +++ b/components/stack-header/types.ts @@ -4,6 +4,8 @@ import { StyleProp, ViewStyle } from 'react-native'; interface ILQDStackHeader extends NativeStackHeaderProps { style?: StyleProp; hasTitle?: boolean; + leftIcon?: '' | 'close' | 'back'; + rightIcon?: '' | 'bulb'; } export type { ILQDStackHeader }; diff --git a/constants/abis/AerodromeConnector.json b/constants/abis/AerodromeConnector.json index de1b3cc..9b2d4b2 100644 --- a/constants/abis/AerodromeConnector.json +++ b/constants/abis/AerodromeConnector.json @@ -1 +1,591 @@ -{"abi":[{"type":"constructor","inputs":[{"name":"name","type":"string","internalType":"string"},{"name":"version","type":"uint256","internalType":"uint256"},{"name":"plugin","type":"address","internalType":"address"}],"stateMutability":"nonpayable"},{"type":"receive","stateMutability":"payable"},{"type":"function","name":"_plugin","inputs":[],"outputs":[{"name":"","type":"address","internalType":"address"}],"stateMutability":"view"},{"type":"function","name":"aerodromeFactory","inputs":[],"outputs":[{"name":"","type":"address","internalType":"contract IPoolFactory"}],"stateMutability":"view"},{"type":"function","name":"aerodromeRouter","inputs":[],"outputs":[{"name":"","type":"address","internalType":"contract IRouter"}],"stateMutability":"view"},{"type":"function","name":"execute","inputs":[{"name":"data","type":"bytes","internalType":"bytes"}],"outputs":[{"name":"","type":"bytes","internalType":"bytes"}],"stateMutability":"payable"},{"type":"function","name":"execute","inputs":[{"name":"data","type":"bytes","internalType":"bytes"},{"name":"caller","type":"address","internalType":"address"}],"outputs":[{"name":"","type":"bytes","internalType":"bytes"}],"stateMutability":"payable"},{"type":"function","name":"getName","inputs":[],"outputs":[{"name":"","type":"string","internalType":"string"}],"stateMutability":"view"},{"type":"function","name":"getVersion","inputs":[],"outputs":[{"name":"","type":"uint256","internalType":"uint256"}],"stateMutability":"view"},{"type":"function","name":"quoteDepositLiquidity","inputs":[{"name":"tokenA","type":"address","internalType":"address"},{"name":"tokenB","type":"address","internalType":"address"},{"name":"stable","type":"bool","internalType":"bool"},{"name":"amountA","type":"uint256","internalType":"uint256"},{"name":"amountB","type":"uint256","internalType":"uint256"},{"name":"balanceTokenRatio","type":"bool","internalType":"bool"}],"outputs":[{"name":"amountAOut","type":"uint256","internalType":"uint256"},{"name":"amountBOut","type":"uint256","internalType":"uint256"}],"stateMutability":"view"},{"type":"event","name":"AeroRewardsClaimed","inputs":[{"name":"guageAddress","type":"address","indexed":true,"internalType":"address"},{"name":"rewardToken","type":"address","indexed":true,"internalType":"address"}],"anonymous":false},{"type":"event","name":"FeesWithdrawn","inputs":[{"name":"poolAddress","type":"address","indexed":true,"internalType":"address"},{"name":"token0","type":"address","indexed":false,"internalType":"address"},{"name":"amount0","type":"uint256","indexed":false,"internalType":"uint256"},{"name":"token1","type":"address","indexed":false,"internalType":"address"},{"name":"amount1","type":"uint256","indexed":false,"internalType":"uint256"}],"anonymous":false},{"type":"event","name":"LPTokenStaked","inputs":[{"name":"guageAddress","type":"address","indexed":true,"internalType":"address"},{"name":"amount","type":"uint256","indexed":false,"internalType":"uint256"}],"anonymous":false},{"type":"event","name":"LPTokenUnStaked","inputs":[{"name":"guageAddress","type":"address","indexed":true,"internalType":"address"},{"name":"amount","type":"uint256","indexed":false,"internalType":"uint256"},{"name":"recepient","type":"address","indexed":true,"internalType":"address"}],"anonymous":false},{"type":"event","name":"LiquidityAdded","inputs":[{"name":"tokenA","type":"address","indexed":true,"internalType":"address"},{"name":"tokenB","type":"address","indexed":true,"internalType":"address"},{"name":"amountA","type":"uint256","indexed":false,"internalType":"uint256"},{"name":"amountB","type":"uint256","indexed":false,"internalType":"uint256"},{"name":"liquidity","type":"uint256","indexed":false,"internalType":"uint256"}],"anonymous":false},{"type":"event","name":"LiquidityRemoved","inputs":[{"name":"tokenA","type":"address","indexed":true,"internalType":"address"},{"name":"tokenB","type":"address","indexed":true,"internalType":"address"},{"name":"amountA","type":"uint256","indexed":false,"internalType":"uint256"},{"name":"amountB","type":"uint256","indexed":false,"internalType":"uint256"},{"name":"liquidity","type":"uint256","indexed":false,"internalType":"uint256"}],"anonymous":false},{"type":"event","name":"Swapped","inputs":[{"name":"tokenIn","type":"address","indexed":true,"internalType":"address"},{"name":"tokenOut","type":"address","indexed":true,"internalType":"address"},{"name":"amountIn","type":"uint256","indexed":false,"internalType":"uint256"},{"name":"amountOut","type":"uint256","indexed":false,"internalType":"uint256"}],"anonymous":false},{"type":"error","name":"AerodromeUtils_ExceededMaxPriceImpact","inputs":[]},{"type":"error","name":"AerodromeUtils_ExceededMaxSlippage","inputs":[]},{"type":"error","name":"AerodromeUtils_ExceededMaxValueLoss","inputs":[]},{"type":"error","name":"DeadlineExpired","inputs":[]},{"type":"error","name":"ExecutionFailed","inputs":[{"name":"reason","type":"string","internalType":"string"}]},{"type":"error","name":"IncorrectETHAmount","inputs":[]},{"type":"error","name":"InsufficientLiquidity","inputs":[]},{"type":"error","name":"InvalidSelector","inputs":[]},{"type":"error","name":"InvalidVersionNumber","inputs":[]},{"type":"error","name":"PoolDoesNotExist","inputs":[]},{"type":"error","name":"SlippageExceeded","inputs":[]},{"type":"error","name":"UnauthorizedCaller","inputs":[]}],"bytecode":{"object":"0x610120604052346200018057620040c8803803806200001e81620001ac565b928339810190606081830312620001805780516001600160401b0392908381116200018057820181601f8201121562000180578051938411620001985760209362000072601f8201601f19168601620001ac565b92818452858284010111620001805784915f5b828110620001845750505f908301909101528183015160409290920151926001600160a01b0384168403620001805782156200016e57815191012060805260a05260c05273cf77a3ba9a5ca399b7c97c74d54e5b1beb874e4360e05261010073420dd381b31aef6683db6b902084cb0ffece40da8152604051613ef59182620001d383396080518261060c015260a05182610672015260c0518281816106df0152610912015260e0518281816104ce01528181611476015281816115140152818161167e01528181611db0015261213a01525181818161053c01528181610aa40152611cca0152f35b60405163ad92452760e01b8152600490fd5b5f80fd5b818101840151858201850152830162000085565b634e487b7160e01b5f52604160045260245ffd5b6040519190601f01601f191682016001600160401b03811183821017620001985760405256fe6101a0604052600436101561001b575b3615610019575f80fd5b005b5f3560e01c806309c5eabe146107035780630cfd9ad4146106955780630d8e6e2c1461063d57806317d7de7c146105d65780636accdc1314610560578063c45acd23146104f2578063e18e3a68146104845763e69224d40361000f57346104805760c07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805773ffffffffffffffffffffffffffffffffffffffff6004351660043503610480576100cf6107e4565b6044351515604435036104805760a435151560a43503610480576040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff60048035821690830152821660248201526044803515159082015260843590606480359060209083908173420dd381b31aef6683db6b902084cb0ffece40da5afa9182156102b35773ffffffffffffffffffffffffffffffffffffffff926020915f91610463575b506004604051809581937fc45a0155000000000000000000000000000000000000000000000000000000008352165afa9182156102b3575f92610432575b505f925f915b600283106102be575b5050604080517fc92de3ec00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff60048035821690830152958616602482015260448035151590820152949092166064850152506084830191909152818060a48101038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b3576040915f915f91610284575b5082519182526020820152f35b90506102a69150823d84116102ac575b61029e81836108ca565b810190612cdd565b5f610277565b503d610294565b6040513d5f823e3d90fd5b60a4949192943561040d575b604051907fce700c2900000000000000000000000000000000000000000000000000000000825273ffffffffffffffffffffffffffffffffffffffff60043516600483015273ffffffffffffffffffffffffffffffffffffffff871660248301526044351515604483015273ffffffffffffffffffffffffffffffffffffffff851660648301528060848301528360a483015260608260c48173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa80156102b3576103a9925f80915f936103d2575b5061039d906103a39394612be6565b95612be6565b92612d0e565b93604435156044356103c8575b6103c357600101916101d0565b6101d9565b5060a435156103b6565b6103a3935061039d92506103fe915060603d606011610406575b6103f681836108ca565b810190612cf3565b93509161038e565b503d6103ec565b61042b919261042360443582848a60043561358d565b919092613438565b91906102ca565b61045591925060203d60201161045c575b61044d81836108ca565b810190612b2c565b905f6101ca565b503d610443565b61047a9150823d841161045c5761044d81836108ca565b5f61018c565b5f80fd5b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760043567ffffffffffffffff8111610480576105be6105b06105d292369060040161075a565b6105b86107e4565b9161090b565b604051918291602083526020830190610788565b0390f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610480576105d26040517f00000000000000000000000000000000000000000000000000000000000000006020820152602081526105be81610892565b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b60207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760043567ffffffffffffffff8111610480576105be6107536105d292369060040161075a565b339161090b565b9181601f840112156104805782359167ffffffffffffffff8311610480576020838186019501011161048057565b91908251928382525f5b8481106107d05750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f845f6020809697860101520116010190565b602081830181015184830182015201610792565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361048057565b359073ffffffffffffffffffffffffffffffffffffffff8216820361048057565b3590811515820361048057565b67ffffffffffffffff811161084957604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6080810190811067ffffffffffffffff82111761084957604052565b6040810190811067ffffffffffffffff82111761084957604052565b6060810190811067ffffffffffffffff82111761084957604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761084957604052565b915f9190337f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1603612b2457915b816004116104805783357fffffffff00000000000000000000000000000000000000000000000000000000167f5a47ddc3000000000000000000000000000000000000000000000000000000008103611ba757505f925f946101407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc825f968101030112610480576109e260048201610807565b610180526109f260248201610807565b61014052610a0260448201610828565b90610a0f60e48201610828565b610a1c6101048301610807565b906101248301354211611b7d576040517f79bc57d5000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff90811660048401521660248201528415156044820152906020828060648101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa9182156102b3575f92611b5c575b5073ffffffffffffffffffffffffffffffffffffffff821615611b32575f60648501356119cf575b6084850135611816575b5091610b1182612d1b565b92606485013560a0526084850135610160525f610120525b60026101205110611441575b5050610b4090612d1b565b818082111561143257610b5291612be6565b61271081029080820461271014901517156112e757606491610b7391613494565b11611408576040517f79bc57d5000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff908116600484015216602482015282151560448201529060208260648173420dd381b31aef6683db6b902084cb0ffece40da5afa9182156102b35773ffffffffffffffffffffffffffffffffffffffff926020915f916113eb575b506004604051809581937fc45a0155000000000000000000000000000000000000000000000000000000008352165afa9182156102b3575f926113ca575b50604080517fc92de3ec000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff908116600484015290811660248301528515156044830152841660648201526084810188905291908260a48173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9384156102b3575f925f956113a3575b5060a482013583108015611396575b61136c5773ffffffffffffffffffffffffffffffffffffffff610d1c612dd9565b9460405192610d2a84610876565b8261014051168452826101805116602085015215156040840152166060820152610d5384612b88565b52610d5d83612b88565b50604051927f5509a1ac00000000000000000000000000000000000000000000000000000000845260848201356004850152604060248501525f8480610da66044820185612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b357610e2c610ded610de25f94610e6d988691611352575b50612bc2565b516064860135612d0e565b9685606486013511841461134b57610e09866064870135612be6565b945b81806084830135118614611342576084610e26920135612be6565b90612d0e565b60405195869283927f5509a1ac0000000000000000000000000000000000000000000000000000000084526004840152604060248401526044830190612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9182156102b357610eb3935f93611314575b50610eac91610ea691612d0e565b91612bc2565b5190612d0e565b818110611286575b505060a051611134575b61016051610fa2575b505090610f73610f9f9260405173ffffffffffffffffffffffffffffffffffffffff6101405116907f4a1a2a6176e9646d9e3157f7c2ab3c499f18337c0b0828cfb28e0a61de4a11f773ffffffffffffffffffffffffffffffffffffffff61018051169180610f50868b8a846040919493926060820195825260208201520152565b0390a3604051948593602085016040919493926060820195825260208201520152565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352826108ca565b90565b7342000000000000000000000000000000000000068073ffffffffffffffffffffffffffffffffffffffff6101405116145f1461107957803b15611075578280916024604051809481937f2e1a7d4d0000000000000000000000000000000000000000000000000000000083526101605160048401525af1801561106a57611052575b509161104b828080610f7395610f9f989761016051905af16110456134cb565b50613528565b9192610ece565b61105c8391610835565b611066575f611025565b5080fd5b6040513d85823e3d90fd5b8280fd5b506040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526101605173ffffffffffffffffffffffffffffffffffffffff9283166004830152602482015261014051909291602091849160449183918691165af1908115611128575091610f7391610f9f94936110f9575b5061104b565b61111a9060203d602011611121575b61111281836108ca565b810190612b58565b505f6110f3565b503d611108565b604051903d90823e3d90fd5b7342000000000000000000000000000000000000068073ffffffffffffffffffffffffffffffffffffffff6101805116145f146111e457803b15610480575f80916024604051809481937f2e1a7d4d00000000000000000000000000000000000000000000000000000000835260a05160048401525af180156102b3576111d1575b506111cc8280808060a051865af16110456134cb565b610ec5565b6111dc919250610835565b5f905f6111b6565b506040517fa9059cbb00000000000000000000000000000000000000000000000000000000815260a05173ffffffffffffffffffffffffffffffffffffffff831660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61018051165af180156102b357611267575b50610ec5565b61127f9060203d6020116111215761111281836108ca565b505f611261565b6112909082612be6565b61271081029080820461271014901517156112e75760c8916112b191613494565b116112bd575f80610ebb565b60046040517ffe3cf204000000000000000000000000000000000000000000000000000000008152fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b610ea691935091611339610eac933d805f833e61133181836108ca565b810190612bf3565b93915091610e98565b50508390612d0e565b8394610e0b565b61136691503d8088833e61133181836108ca565b5f610ddc565b60046040517fc990cf68000000000000000000000000000000000000000000000000000000008152fd5b5060c48201358510610cfb565b9094506113c091925060403d6040116102ac5761029e81836108ca565b919091935f610cec565b6113e491925060203d60201161045c5761044d81836108ca565b905f610c54565b6114029150823d841161045c5761044d81836108ca565b5f610c16565b60046040517fd0bcb760000000000000000000000000000000000000000000000000000000008152fd5b9061143c91612be6565b610b52565b90979998816117b7575b6040517f095ea7b300000000000000000000000000000000000000000000000000000000815260a0517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61018051165af180156102b357611798575b506040517f095ea7b3000000000000000000000000000000000000000000000000000000008152610160517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61014051165af180156102b357611779575b50604051610100527f5a47ddc300000000000000000000000000000000000000000000000000000000610100515273ffffffffffffffffffffffffffffffffffffffff6101805116600461010051015273ffffffffffffffffffffffffffffffffffffffff61014051166024610100510152851515604461010051015260a05160646101005101526101605160846101005101525f60a46101005101525f60c461010051015273ffffffffffffffffffffffffffffffffffffffff891660e4610100510152610124850135610104610100510152606061010051610124610100515f73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165af160e05260e051156102b357611705905f6080525f60c0525f9060e051611730575b6116f56116ff916116d660805160a051612be6565b60a0526116e860c05161016051612be6565b6101605260805190612d0e565b9b60c05190612d0e565b9b612d0e565b97851586611728575b61172357600161012051016101205290610b29565b610b35565b50811561170e565b905060603d606011611772575b6116f5611762826117546116ff94610100516108ca565b610100510161010051612cf3565b9160805260c052929150506116c1565b503d61173d565b6117919060203d6020116111215761111281836108ca565b505f611585565b6117b09060203d6020116111215761111281836108ca565b505f6114e7565b61180a6117fe876101605160a05173ffffffffffffffffffffffffffffffffffffffff610140511673ffffffffffffffffffffffffffffffffffffffff6101805116612e30565b6101605160a051613438565b6101605260a05261144b565b73420000000000000000000000000000000000000673ffffffffffffffffffffffffffffffffffffffff610140511614806119c6575b1561191a57608485013534036118f0577342000000000000000000000000000000000000063b156118e2576040517fd0e30db00000000000000000000000000000000000000000000000000000000081528181600481347342000000000000000000000000000000000000065af180156118e5576118ce575b50505b5f610b06565b6118d88291610835565b6118e257806118c5565b80fd5b6040513d84823e3d90fd5b60046040517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff881660048201523060248201526084860135604482015290602082806064810103818473ffffffffffffffffffffffffffffffffffffffff61014051165af190811561112857506119a7575b506118c8565b6119bf9060203d6020116111215761111281836108ca565b505f6119a1565b5034151561184c565b73420000000000000000000000000000000000000673ffffffffffffffffffffffffffffffffffffffff61018051161480611b29575b15611a9557606485013534036118f0577342000000000000000000000000000000000000063b15610480576040517fd0e30db00000000000000000000000000000000000000000000000000000000081525f81600481347342000000000000000000000000000000000000065af180156102b357611a84575b50610afc565b611a8e9150610835565b5f80611a7e565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015230602483015260648781013560448401526101805160209284929183915f91165af180156102b357611b0a5750610afc565b611b229060203d6020116111215761111281836108ca565b505f611a7e565b50341515611a05565b60046040517f9c8787c0000000000000000000000000000000000000000000000000000000008152fd5b611b7691925060203d60201161045c5761044d81836108ca565b905f610ad4565b60046040517f1ab7da6b000000000000000000000000000000000000000000000000000000008152fd5b90507f0dede6c4000000000000000000000000000000000000000000000000000000008103611fe157507ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8361010092810103011261048057611c0c60048301610807565b91611c1960248201610807565b91611c2660448301610828565b93611c3360c48401610807565b73ffffffffffffffffffffffffffffffffffffffff60e4850135921692824211611b7d576040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048301528716602482015287151560448201526020818060648101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa80156102b35773ffffffffffffffffffffffffffffffffffffffff915f91611fc2575b5016968715611b32576040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff92909216600483015230602483015260648681013560448401526020908390815f8c5af19182156102b357611e0b92611fa3575b506040517f095ea7b30000000000000000000000000000000000000000000000000000000081527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166004820181905260648801356024830152989092602091849182905f9082906044820190565b03925af180156102b35773ffffffffffffffffffffffffffffffffffffffff98604095610104945f93611f84575b5086519a8b9687957f0dede6c40000000000000000000000000000000000000000000000000000000087528a6004880152828d1660248801521515604487015260648b0135606487015260848b0135608487015260a48b013560a48701521660c485015260e48401525af19283156102b3575f945f94611f26575b506040805186815260208101869052606494909401359084015273ffffffffffffffffffffffffffffffffffffffff16917fbc7d19d505c7ec4db83f3b51f19fb98c4c8a99922e7839d1ee608dfbee29501b90606090a3604051916020830152604082015260408152610f9f816108ae565b73ffffffffffffffffffffffffffffffffffffffff95507fbc7d19d505c7ec4db83f3b51f19fb98c4c8a99922e7839d1ee608dfbee29501b919450611f799060403d6040116102ac5761029e81836108ca565b959095949150611eb4565b611f9c9060203d6020116111215761111281836108ca565b505f611e39565b611fbb9060203d6020116111215761111281836108ca565b505f611d87565b611fdb915060203d60201161045c5761044d81836108ca565b5f611d0f565b9293927fcac88ea90000000000000000000000000000000000000000000000000000000092919083810361282c5750840160a07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc86830301126104805760048501359160248087013593604488013567ffffffffffffffff811161048057880194846023870112156104805760048601359661207c88612b70565b9660409861208c8a51998a6108ca565b80895260209786898b019260071b84010192818411610480578701915b8383106127cc575050505060846120c260648c01610807565b9a0135928342116127a35773ffffffffffffffffffffffffffffffffffffffff6120eb89612b88565b515116955f8083612658575b6124fe575b505088517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166004820181905260248201839052929088816044815f8c5af180156124f4576124d7575b5088519b8c957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8097019d8e116124ab578a5f8d9e9f8c839f9d9e73ffffffffffffffffffffffffffffffffffffffff926121d891612bd2565b510151169b8a61221e825194859384937f5509a1ac0000000000000000000000000000000000000000000000000000000085528b60048601528401526044830190612c6d565b0381895afa9081156124a1575f91612487575b5080519088820191821161245b57879161224a91612bd2565b5110612432578c519b8c9485948552600485015286898501526044840160a0905260a4840161227891612c6d565b9173ffffffffffffffffffffffffffffffffffffffff166064840152608483015203815a5f948591f1968715612428575f9761240c575b5086518281019081116123e0576122c69088612bd2565b51106123b7576122d586612b88565b5191865191820191821161238c5750957fa078c4190abe07940190effc1846be0ccf03ad6007bc9e93f9697d0b460befbb916123148798839798612bd2565b51825191825287820152a3805192839182018380840152815180915283606084019201935f5b82811061237557505050610f9f9250037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352826108ca565b85518452948101948694509281019260010161233a565b7f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b600487517f8199f5f3000000000000000000000000000000000000000000000000000000008152fd5b837f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b6124219197503d805f833e61133181836108ca565b955f6122af565b88513d5f823e3d90fd5b60048d517f8199f5f3000000000000000000000000000000000000000000000000000000008152fd5b897f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b61249b91503d805f833e61133181836108ca565b5f612231565b8e513d5f823e3d90fd5b877f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b6124ed90893d8b116111215761111281836108ca565b505f61217e565b8b513d5f823e3d90fd5b88818061264f575b156125bc575090503461259357734200000000000000000000000000000000000006803b1561106657816004918c51928380927fd0e30db000000000000000000000000000000000000000000000000000000000825234905af1801561258957612575575b50505b5f806120fc565b61257f8291610835565b6118e2578061256b565b8b513d84823e3d90fd5b60048a517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b8b517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff939093166004840152306024840152604483018290528260648184805af19081156126445750612627575b5061256e565b61263d90883d8a116111215761111281836108ca565b505f612621565b8b51903d90823e3d90fd5b50341515612506565b507342000000000000000000000000000000000000068089148061279a575b15612711578334036126e857803b15610480575f6004918d51928380927fd0e30db000000000000000000000000000000000000000000000000000000000825234905af180156126de576126cd575b50806120f7565b6126d79150610835565b5f806126c6565b8c513d5f823e3d90fd5b60048c517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b508a517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831660048201523060248201526044810184905289816064815f8d5af180156126de5790829161277d575b506120f7565b612793908b3d8d116111215761111281836108ca565b505f612777565b50341515612677565b600489517f1ab7da6b000000000000000000000000000000000000000000000000000000008152fd5b60808383031261048057896080918d8051906127e782610876565b6127f087610807565b82526127fd848801610807565b8483015261280c818801610828565b90820152606061281d818801610807565b908201528152019201916120a9565b9394937f6e553f6500000000000000000000000000000000000000000000000000000000935083146128825760046040517f7352d91c000000000000000000000000000000000000000000000000000000008152fd5b83907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc604092839281010301126104805773ffffffffffffffffffffffffffffffffffffffff60246128d660048701610807565b95013594168151937f72f702f30000000000000000000000000000000000000000000000000000000085526020948581600481865afa908115612ad6579073ffffffffffffffffffffffffffffffffffffffff915f91612b07575b5084517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff871660048201523060248201526044810189905291169086816064815f865af18015612afd57612ae0575b5083517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416600482015260248101889052908690829060449082905f905af18015612ad657612ab9575b50813b156104805782519081526004810186905273ffffffffffffffffffffffffffffffffffffffff841660248201525f8160448183865af18015612aaf5791610f739391610f9f969593612aa0575b507ffa2529c0b8e878c5cfbd265efb60d6c35f0ba5ad1132da46b8bde097baac8a49858351898152a251948593840190929173ffffffffffffffffffffffffffffffffffffffff6020916040840195845216910152565b612aa990610835565b5f612a49565b83513d5f823e3d90fd5b612acf90863d88116111215761111281836108ca565b505f6129f9565b84513d5f823e3d90fd5b612af690873d89116111215761111281836108ca565b505f612997565b85513d5f823e3d90fd5b612b1e9150873d891161045c5761044d81836108ca565b5f612931565b50339161094e565b90816020910312610480575173ffffffffffffffffffffffffffffffffffffffff811681036104805790565b90816020910312610480575180151581036104805790565b67ffffffffffffffff81116108495760051b60200190565b805115612b955760200190565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b805160011015612b955760400190565b8051821015612b955760209160051b010190565b919082039182116112e757565b60209081818403126104805780519067ffffffffffffffff821161048057019180601f84011215610480578251612c2981612b70565b93612c3760405195866108ca565b818552838086019260051b820101928311610480578301905b828210612c5e575050505090565b81518152908301908301612c50565b9081518082526020808093019301915f5b828110612c8c575050505090565b8351805173ffffffffffffffffffffffffffffffffffffffff908116875281840151811687850152604080830151151590880152606091820151169086015260809094019392810192600101612c7e565b9190826040910312610480576020825192015190565b90816060910312610480578051916040602083015192015190565b919082018092116112e757565b606073ffffffffffffffffffffffffffffffffffffffff916004604051809481937f0902f1ac000000000000000000000000000000000000000000000000000000008352165afa80156102b357610f9f915f905f92612d7b575b50613a63565b9050612d96915060603d606011610406576103f681836108ca565b50905f612d75565b90816020910312610480575160ff811681036104805790565b60ff166012039060ff82116112e757565b60ff16604d81116112e757600a0a90565b60409060405191612de983610892565b6001835282915f5b602080821015612e2857835160209291612e0a82610876565b5f82525f818301525f868301525f6060830152828801015201612df1565b505091925050565b9493909291946040517f313ce567000000000000000000000000000000000000000000000000000000009081815260208160048173ffffffffffffffffffffffffffffffffffffffff87165afa9081156102b357612e9e91612e99915f91613409575b50612db7565b612dc8565b9060405190815260208160048173ffffffffffffffffffffffffffffffffffffffff8a165afa9081156102b357612edf91612e99915f916134095750612db7565b96604051947fd4b6846d00000000000000000000000000000000000000000000000000000000865260208660048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9586156102b357612fa0966040915f916133ea575b5081517f8c0037dc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8088166004830152808b1660248301528815156044830152909116606482015296879081906084820190565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9889156102b3575f965f9a6133c3575b506040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff86811660048301528916602482015286151560448201529260208460648173420dd381b31aef6683db6b902084cb0ffece40da5afa80156102b357876020916130a7965f916133a6575b506040517fcc56b2c500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152901515602482015294859081906044820190565b038173420dd381b31aef6683db6b902084cb0ffece40da5afa9283156102b35787945f9461336f575b5081613347575f985b899c8a155f1461333657906130f19794939291613bba565b925b83156133145750613102612dd9565b91861561330d57815b87156133075785905b604051967fd4b6846d00000000000000000000000000000000000000000000000000000000885260208860048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9485156102b35773ffffffffffffffffffffffffffffffffffffffff60209681966044965f9c8d936132e6575b508390816040519661319688610876565b1686521689850152151560408401521660608201526131b487612b88565b526131be86612b88565b508988146132df57505b60405196879384927f095ea7b300000000000000000000000000000000000000000000000000000000845273cf77a3ba9a5ca399b7c97c74d54e5b1beb874e436004850152886024850152165af19182156102b357613270935f936132c0575b5060405193849283927fcac88ea9000000000000000000000000000000000000000000000000000000008452600484015284602484015260a0604484015260a4830190612c6d565b30606483015242608483015203818373cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435af19081156102b3575f916132a857509190565b6132bc91503d805f833e61133181836108ca565b9190565b6132d89060203d6020116111215761111281836108ca565b505f613228565b90506131c8565b84919350613300908b3d8d1161045c5761044d81836108ca565b9290613185565b80613114565b849161310b565b955050505050604051613326816108ae565b6002815260403660208301379190565b613341979391613bba565b926130f3565b806133555760015b986130d9565b61335f8183613a63565b6133698d8b613a63565b1061334f565b945092506020843d60201161339e575b8161338c602093836108ca565b8101031261048057869351925f6130d0565b3d915061337f565b6133bd9150833d851161045c5761044d81836108ca565b5f61304f565b9099506133e091965060403d6040116102ac5761029e81836108ca565b959095985f612fc9565b613403915060203d60201161045c5761044d81836108ca565b5f612f39565b61342b915060203d602011613431575b61342381836108ca565b810190612d9e565b5f612e93565b503d613419565b9293929091156134635790610eac61345d610f9f9361345687612b88565b5190612be6565b94612bc2565b610eac61347861347e93613456879697612b88565b93612bc2565b91565b818102929181159184041417156112e757565b811561349e570490565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b3d15613523573d9067ffffffffffffffff8211610849576040519161351860207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601846108ca565b82523d5f602084013e565b606090565b1561352f57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f455448207472616e73666572206661696c6564000000000000000000000000006044820152fd5b919493926040517f313ce567000000000000000000000000000000000000000000000000000000009081815260208160048173ffffffffffffffffffffffffffffffffffffffff89165afa9081156102b3576135f391612e99915f916134095750612db7565b9060405190815260208160048173ffffffffffffffffffffffffffffffffffffffff88165afa9081156102b35761363491612e99915f916134095750612db7565b96604051927fd4b6846d00000000000000000000000000000000000000000000000000000000845260208460048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9384156102b3576136f5946040915f91613a44575b5081517f8c0037dc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff808a16600483015280891660248301528a15156044830152909116606482015294859081906084820190565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9889156102b3575f945f9a613a1d575b506040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff88811660048301528716602482015288151560448201529260208460648173420dd381b31aef6683db6b902084cb0ffece40da5afa80156102b357896020916137fb965f916133a657506040517fcc56b2c500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152901515602482015294859081906044820190565b038173420dd381b31aef6683db6b902084cb0ffece40da5afa9283156102b35789945f946139e6575b50816139be575f965b879c88155f146139ad57906138459794939291613bba565b905b81156133145750613856612dd9565b9186156139a657835b871561399e5750925b6040517fd4b6846d00000000000000000000000000000000000000000000000000000000815260208160048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa80156102b357613950965f9673ffffffffffffffffffffffffffffffffffffffff93889361397b575b50839081604051966138e588610876565b1686521660208501521515604084015216606082015261390483612b88565b5261390e82612b88565b5060405193849283927f5509a1ac0000000000000000000000000000000000000000000000000000000084526004840152604060248401526044830190612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b3575f916132a857509190565b849193506139979060203d60201161045c5761044d81836108ca565b92906138d4565b905092613868565b809361385f565b6139b8979391613bba565b90613847565b806139cc5760015b9661382d565b6139d68183613a63565b6139e08d89613a63565b106139c6565b945092506020843d602011613a15575b81613a03602093836108ca565b8101031261048057889351925f613824565b3d91506139f6565b909950613a3a91945060403d6040116102ac5761029e81836108ca565b939093985f61371e565b613a5d915060203d60201161045c5761044d81836108ca565b5f61368e565b906b033b2e3c9fd0803ce8000000907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8284099282810292838086109503948086039514613bac5784831115610480578291098119600181018091116112e757613ae090831680930494600184805f030401908584119003613481565b9203041781600302916003830481036112e7576002809318613b028183613481565b84038481116112e757613b1491613481565b613b1e8183613481565b84038481116112e757613b3091613481565b613b3a8183613481565b84038481116112e757613b4c91613481565b613b568183613481565b84038481116112e757613b6891613481565b613b728183613481565b8403908482116112e757613b9091613b8991613481565b8092613481565b83039283116112e757610f9f92613ba691613481565b90613481565b505080925015610480570490565b94613be381613bdd87613bd781613be997999d989b9c9a9c613481565b99613481565b95613481565b97613481565b92670de0b6b3a76400009384613bff878a613481565b049185613c1881613c108a86613481565b04968b613481565b049315613c575750505090613c2c91612be6565b8181029181830414901517156112e757613c4c613c5292610f9f95612d0e565b90613494565b613494565b601e919492959650145f14613d1857613c708185612d0e565b91623cda2985810290810486036112e757826009026009810484036112e757613c9891612d0e565b90623cda2090808202918204036112e757613cc893613ba6613cbd92613cc294612d0e565b613da8565b93612d0e565b916107cd92808402938404036112e757613ceb92613ce591612be6565b94612d0e565b926107ca93808502948504036112e7578181029181830414901517156112e757610f9f92613c5291613494565b613d228185612d0e565b91619ab185810290810486036112e75782613d3c91612d0e565b90619ab090808202918204036112e757613d6093613ba6613cbd92613cc294612d0e565b918260c7029260c78404036112e757613d7c92613ce591612be6565b928360c6029360c68504036112e7578181029181830414901517156112e757610f9f92613c5291613494565b8015613ef057806001700100000000000000000000000000000000831015613eda575b60048268010000000000000000613e82941015613ecd575b640100000000811015613ec0575b62010000811015613eb3575b610100811015613ea7575b6010811015613e9b575b1015613e93575b613e238184613494565b0160011c613e318184613494565b0160011c613e3f8184613494565b0160011c613e4d8184613494565b0160011c613e5b8184613494565b0160011c613e698184613494565b0160011c613e778184613494565b0160011c8092613494565b80821015613e8e575090565b905090565b60011b613e19565b811c9160021b91613e12565b60081c91811b91613e08565b60101c9160081b91613dfd565b60201c9160101b91613df1565b60401c9160201b91613de3565b5050608081901c68010000000000000000613dcb565b505f9056","sourceMap":"585:11320:35:-:0;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;585:11320:35;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;-1:-1:-1;;;585:11320:35;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;585:11320:35;;;;;;880:13:30;;876:48;;585:11320:35;;;;943:23:30;935:31;;976:19;;1005:17;;768:42:37;1278:43:35;;1331:50;862:42:37;1331:50:35;;585:11320;;;;;;;;935:31:30;585:11320:35;;;;;976:19:30;585:11320:35;;;;;1005:17:30;585:11320:35;;;;;;;;;;1278:43;585:11320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;876:48:30;585:11320:35;;-1:-1:-1;;;902:22:30;;;;;585:11320:35;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;-1:-1:-1;585:11320:35;;;;;;;;-1:-1:-1;;585:11320:35;;;-1:-1:-1;;;;;585:11320:35;;;;;;;;;;:::o","linkReferences":{}},"deployedBytecode":{"object":"0x6101a0604052600436101561001b575b3615610019575f80fd5b005b5f3560e01c806309c5eabe146107035780630cfd9ad4146106955780630d8e6e2c1461063d57806317d7de7c146105d65780636accdc1314610560578063c45acd23146104f2578063e18e3a68146104845763e69224d40361000f57346104805760c07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805773ffffffffffffffffffffffffffffffffffffffff6004351660043503610480576100cf6107e4565b6044351515604435036104805760a435151560a43503610480576040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff60048035821690830152821660248201526044803515159082015260843590606480359060209083908173420dd381b31aef6683db6b902084cb0ffece40da5afa9182156102b35773ffffffffffffffffffffffffffffffffffffffff926020915f91610463575b506004604051809581937fc45a0155000000000000000000000000000000000000000000000000000000008352165afa9182156102b3575f92610432575b505f925f915b600283106102be575b5050604080517fc92de3ec00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff60048035821690830152958616602482015260448035151590820152949092166064850152506084830191909152818060a48101038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b3576040915f915f91610284575b5082519182526020820152f35b90506102a69150823d84116102ac575b61029e81836108ca565b810190612cdd565b5f610277565b503d610294565b6040513d5f823e3d90fd5b60a4949192943561040d575b604051907fce700c2900000000000000000000000000000000000000000000000000000000825273ffffffffffffffffffffffffffffffffffffffff60043516600483015273ffffffffffffffffffffffffffffffffffffffff871660248301526044351515604483015273ffffffffffffffffffffffffffffffffffffffff851660648301528060848301528360a483015260608260c48173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa80156102b3576103a9925f80915f936103d2575b5061039d906103a39394612be6565b95612be6565b92612d0e565b93604435156044356103c8575b6103c357600101916101d0565b6101d9565b5060a435156103b6565b6103a3935061039d92506103fe915060603d606011610406575b6103f681836108ca565b810190612cf3565b93509161038e565b503d6103ec565b61042b919261042360443582848a60043561358d565b919092613438565b91906102ca565b61045591925060203d60201161045c575b61044d81836108ca565b810190612b2c565b905f6101ca565b503d610443565b61047a9150823d841161045c5761044d81836108ca565b5f61018c565b5f80fd5b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760043567ffffffffffffffff8111610480576105be6105b06105d292369060040161075a565b6105b86107e4565b9161090b565b604051918291602083526020830190610788565b0390f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610480576105d26040517f00000000000000000000000000000000000000000000000000000000000000006020820152602081526105be81610892565b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b60207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760043567ffffffffffffffff8111610480576105be6107536105d292369060040161075a565b339161090b565b9181601f840112156104805782359167ffffffffffffffff8311610480576020838186019501011161048057565b91908251928382525f5b8481106107d05750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f845f6020809697860101520116010190565b602081830181015184830182015201610792565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361048057565b359073ffffffffffffffffffffffffffffffffffffffff8216820361048057565b3590811515820361048057565b67ffffffffffffffff811161084957604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6080810190811067ffffffffffffffff82111761084957604052565b6040810190811067ffffffffffffffff82111761084957604052565b6060810190811067ffffffffffffffff82111761084957604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761084957604052565b915f9190337f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1603612b2457915b816004116104805783357fffffffff00000000000000000000000000000000000000000000000000000000167f5a47ddc3000000000000000000000000000000000000000000000000000000008103611ba757505f925f946101407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc825f968101030112610480576109e260048201610807565b610180526109f260248201610807565b61014052610a0260448201610828565b90610a0f60e48201610828565b610a1c6101048301610807565b906101248301354211611b7d576040517f79bc57d5000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff90811660048401521660248201528415156044820152906020828060648101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa9182156102b3575f92611b5c575b5073ffffffffffffffffffffffffffffffffffffffff821615611b32575f60648501356119cf575b6084850135611816575b5091610b1182612d1b565b92606485013560a0526084850135610160525f610120525b60026101205110611441575b5050610b4090612d1b565b818082111561143257610b5291612be6565b61271081029080820461271014901517156112e757606491610b7391613494565b11611408576040517f79bc57d5000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff908116600484015216602482015282151560448201529060208260648173420dd381b31aef6683db6b902084cb0ffece40da5afa9182156102b35773ffffffffffffffffffffffffffffffffffffffff926020915f916113eb575b506004604051809581937fc45a0155000000000000000000000000000000000000000000000000000000008352165afa9182156102b3575f926113ca575b50604080517fc92de3ec000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff908116600484015290811660248301528515156044830152841660648201526084810188905291908260a48173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9384156102b3575f925f956113a3575b5060a482013583108015611396575b61136c5773ffffffffffffffffffffffffffffffffffffffff610d1c612dd9565b9460405192610d2a84610876565b8261014051168452826101805116602085015215156040840152166060820152610d5384612b88565b52610d5d83612b88565b50604051927f5509a1ac00000000000000000000000000000000000000000000000000000000845260848201356004850152604060248501525f8480610da66044820185612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b357610e2c610ded610de25f94610e6d988691611352575b50612bc2565b516064860135612d0e565b9685606486013511841461134b57610e09866064870135612be6565b945b81806084830135118614611342576084610e26920135612be6565b90612d0e565b60405195869283927f5509a1ac0000000000000000000000000000000000000000000000000000000084526004840152604060248401526044830190612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9182156102b357610eb3935f93611314575b50610eac91610ea691612d0e565b91612bc2565b5190612d0e565b818110611286575b505060a051611134575b61016051610fa2575b505090610f73610f9f9260405173ffffffffffffffffffffffffffffffffffffffff6101405116907f4a1a2a6176e9646d9e3157f7c2ab3c499f18337c0b0828cfb28e0a61de4a11f773ffffffffffffffffffffffffffffffffffffffff61018051169180610f50868b8a846040919493926060820195825260208201520152565b0390a3604051948593602085016040919493926060820195825260208201520152565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352826108ca565b90565b7342000000000000000000000000000000000000068073ffffffffffffffffffffffffffffffffffffffff6101405116145f1461107957803b15611075578280916024604051809481937f2e1a7d4d0000000000000000000000000000000000000000000000000000000083526101605160048401525af1801561106a57611052575b509161104b828080610f7395610f9f989761016051905af16110456134cb565b50613528565b9192610ece565b61105c8391610835565b611066575f611025565b5080fd5b6040513d85823e3d90fd5b8280fd5b506040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526101605173ffffffffffffffffffffffffffffffffffffffff9283166004830152602482015261014051909291602091849160449183918691165af1908115611128575091610f7391610f9f94936110f9575b5061104b565b61111a9060203d602011611121575b61111281836108ca565b810190612b58565b505f6110f3565b503d611108565b604051903d90823e3d90fd5b7342000000000000000000000000000000000000068073ffffffffffffffffffffffffffffffffffffffff6101805116145f146111e457803b15610480575f80916024604051809481937f2e1a7d4d00000000000000000000000000000000000000000000000000000000835260a05160048401525af180156102b3576111d1575b506111cc8280808060a051865af16110456134cb565b610ec5565b6111dc919250610835565b5f905f6111b6565b506040517fa9059cbb00000000000000000000000000000000000000000000000000000000815260a05173ffffffffffffffffffffffffffffffffffffffff831660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61018051165af180156102b357611267575b50610ec5565b61127f9060203d6020116111215761111281836108ca565b505f611261565b6112909082612be6565b61271081029080820461271014901517156112e75760c8916112b191613494565b116112bd575f80610ebb565b60046040517ffe3cf204000000000000000000000000000000000000000000000000000000008152fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b610ea691935091611339610eac933d805f833e61133181836108ca565b810190612bf3565b93915091610e98565b50508390612d0e565b8394610e0b565b61136691503d8088833e61133181836108ca565b5f610ddc565b60046040517fc990cf68000000000000000000000000000000000000000000000000000000008152fd5b5060c48201358510610cfb565b9094506113c091925060403d6040116102ac5761029e81836108ca565b919091935f610cec565b6113e491925060203d60201161045c5761044d81836108ca565b905f610c54565b6114029150823d841161045c5761044d81836108ca565b5f610c16565b60046040517fd0bcb760000000000000000000000000000000000000000000000000000000008152fd5b9061143c91612be6565b610b52565b90979998816117b7575b6040517f095ea7b300000000000000000000000000000000000000000000000000000000815260a0517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61018051165af180156102b357611798575b506040517f095ea7b3000000000000000000000000000000000000000000000000000000008152610160517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61014051165af180156102b357611779575b50604051610100527f5a47ddc300000000000000000000000000000000000000000000000000000000610100515273ffffffffffffffffffffffffffffffffffffffff6101805116600461010051015273ffffffffffffffffffffffffffffffffffffffff61014051166024610100510152851515604461010051015260a05160646101005101526101605160846101005101525f60a46101005101525f60c461010051015273ffffffffffffffffffffffffffffffffffffffff891660e4610100510152610124850135610104610100510152606061010051610124610100515f73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165af160e05260e051156102b357611705905f6080525f60c0525f9060e051611730575b6116f56116ff916116d660805160a051612be6565b60a0526116e860c05161016051612be6565b6101605260805190612d0e565b9b60c05190612d0e565b9b612d0e565b97851586611728575b61172357600161012051016101205290610b29565b610b35565b50811561170e565b905060603d606011611772575b6116f5611762826117546116ff94610100516108ca565b610100510161010051612cf3565b9160805260c052929150506116c1565b503d61173d565b6117919060203d6020116111215761111281836108ca565b505f611585565b6117b09060203d6020116111215761111281836108ca565b505f6114e7565b61180a6117fe876101605160a05173ffffffffffffffffffffffffffffffffffffffff610140511673ffffffffffffffffffffffffffffffffffffffff6101805116612e30565b6101605160a051613438565b6101605260a05261144b565b73420000000000000000000000000000000000000673ffffffffffffffffffffffffffffffffffffffff610140511614806119c6575b1561191a57608485013534036118f0577342000000000000000000000000000000000000063b156118e2576040517fd0e30db00000000000000000000000000000000000000000000000000000000081528181600481347342000000000000000000000000000000000000065af180156118e5576118ce575b50505b5f610b06565b6118d88291610835565b6118e257806118c5565b80fd5b6040513d84823e3d90fd5b60046040517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff881660048201523060248201526084860135604482015290602082806064810103818473ffffffffffffffffffffffffffffffffffffffff61014051165af190811561112857506119a7575b506118c8565b6119bf9060203d6020116111215761111281836108ca565b505f6119a1565b5034151561184c565b73420000000000000000000000000000000000000673ffffffffffffffffffffffffffffffffffffffff61018051161480611b29575b15611a9557606485013534036118f0577342000000000000000000000000000000000000063b15610480576040517fd0e30db00000000000000000000000000000000000000000000000000000000081525f81600481347342000000000000000000000000000000000000065af180156102b357611a84575b50610afc565b611a8e9150610835565b5f80611a7e565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015230602483015260648781013560448401526101805160209284929183915f91165af180156102b357611b0a5750610afc565b611b229060203d6020116111215761111281836108ca565b505f611a7e565b50341515611a05565b60046040517f9c8787c0000000000000000000000000000000000000000000000000000000008152fd5b611b7691925060203d60201161045c5761044d81836108ca565b905f610ad4565b60046040517f1ab7da6b000000000000000000000000000000000000000000000000000000008152fd5b90507f0dede6c4000000000000000000000000000000000000000000000000000000008103611fe157507ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8361010092810103011261048057611c0c60048301610807565b91611c1960248201610807565b91611c2660448301610828565b93611c3360c48401610807565b73ffffffffffffffffffffffffffffffffffffffff60e4850135921692824211611b7d576040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048301528716602482015287151560448201526020818060648101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa80156102b35773ffffffffffffffffffffffffffffffffffffffff915f91611fc2575b5016968715611b32576040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff92909216600483015230602483015260648681013560448401526020908390815f8c5af19182156102b357611e0b92611fa3575b506040517f095ea7b30000000000000000000000000000000000000000000000000000000081527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166004820181905260648801356024830152989092602091849182905f9082906044820190565b03925af180156102b35773ffffffffffffffffffffffffffffffffffffffff98604095610104945f93611f84575b5086519a8b9687957f0dede6c40000000000000000000000000000000000000000000000000000000087528a6004880152828d1660248801521515604487015260648b0135606487015260848b0135608487015260a48b013560a48701521660c485015260e48401525af19283156102b3575f945f94611f26575b506040805186815260208101869052606494909401359084015273ffffffffffffffffffffffffffffffffffffffff16917fbc7d19d505c7ec4db83f3b51f19fb98c4c8a99922e7839d1ee608dfbee29501b90606090a3604051916020830152604082015260408152610f9f816108ae565b73ffffffffffffffffffffffffffffffffffffffff95507fbc7d19d505c7ec4db83f3b51f19fb98c4c8a99922e7839d1ee608dfbee29501b919450611f799060403d6040116102ac5761029e81836108ca565b959095949150611eb4565b611f9c9060203d6020116111215761111281836108ca565b505f611e39565b611fbb9060203d6020116111215761111281836108ca565b505f611d87565b611fdb915060203d60201161045c5761044d81836108ca565b5f611d0f565b9293927fcac88ea90000000000000000000000000000000000000000000000000000000092919083810361282c5750840160a07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc86830301126104805760048501359160248087013593604488013567ffffffffffffffff811161048057880194846023870112156104805760048601359661207c88612b70565b9660409861208c8a51998a6108ca565b80895260209786898b019260071b84010192818411610480578701915b8383106127cc575050505060846120c260648c01610807565b9a0135928342116127a35773ffffffffffffffffffffffffffffffffffffffff6120eb89612b88565b515116955f8083612658575b6124fe575b505088517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166004820181905260248201839052929088816044815f8c5af180156124f4576124d7575b5088519b8c957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8097019d8e116124ab578a5f8d9e9f8c839f9d9e73ffffffffffffffffffffffffffffffffffffffff926121d891612bd2565b510151169b8a61221e825194859384937f5509a1ac0000000000000000000000000000000000000000000000000000000085528b60048601528401526044830190612c6d565b0381895afa9081156124a1575f91612487575b5080519088820191821161245b57879161224a91612bd2565b5110612432578c519b8c9485948552600485015286898501526044840160a0905260a4840161227891612c6d565b9173ffffffffffffffffffffffffffffffffffffffff166064840152608483015203815a5f948591f1968715612428575f9761240c575b5086518281019081116123e0576122c69088612bd2565b51106123b7576122d586612b88565b5191865191820191821161238c5750957fa078c4190abe07940190effc1846be0ccf03ad6007bc9e93f9697d0b460befbb916123148798839798612bd2565b51825191825287820152a3805192839182018380840152815180915283606084019201935f5b82811061237557505050610f9f9250037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352826108ca565b85518452948101948694509281019260010161233a565b7f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b600487517f8199f5f3000000000000000000000000000000000000000000000000000000008152fd5b837f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b6124219197503d805f833e61133181836108ca565b955f6122af565b88513d5f823e3d90fd5b60048d517f8199f5f3000000000000000000000000000000000000000000000000000000008152fd5b897f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b61249b91503d805f833e61133181836108ca565b5f612231565b8e513d5f823e3d90fd5b877f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b6124ed90893d8b116111215761111281836108ca565b505f61217e565b8b513d5f823e3d90fd5b88818061264f575b156125bc575090503461259357734200000000000000000000000000000000000006803b1561106657816004918c51928380927fd0e30db000000000000000000000000000000000000000000000000000000000825234905af1801561258957612575575b50505b5f806120fc565b61257f8291610835565b6118e2578061256b565b8b513d84823e3d90fd5b60048a517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b8b517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff939093166004840152306024840152604483018290528260648184805af19081156126445750612627575b5061256e565b61263d90883d8a116111215761111281836108ca565b505f612621565b8b51903d90823e3d90fd5b50341515612506565b507342000000000000000000000000000000000000068089148061279a575b15612711578334036126e857803b15610480575f6004918d51928380927fd0e30db000000000000000000000000000000000000000000000000000000000825234905af180156126de576126cd575b50806120f7565b6126d79150610835565b5f806126c6565b8c513d5f823e3d90fd5b60048c517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b508a517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831660048201523060248201526044810184905289816064815f8d5af180156126de5790829161277d575b506120f7565b612793908b3d8d116111215761111281836108ca565b505f612777565b50341515612677565b600489517f1ab7da6b000000000000000000000000000000000000000000000000000000008152fd5b60808383031261048057896080918d8051906127e782610876565b6127f087610807565b82526127fd848801610807565b8483015261280c818801610828565b90820152606061281d818801610807565b908201528152019201916120a9565b9394937f6e553f6500000000000000000000000000000000000000000000000000000000935083146128825760046040517f7352d91c000000000000000000000000000000000000000000000000000000008152fd5b83907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc604092839281010301126104805773ffffffffffffffffffffffffffffffffffffffff60246128d660048701610807565b95013594168151937f72f702f30000000000000000000000000000000000000000000000000000000085526020948581600481865afa908115612ad6579073ffffffffffffffffffffffffffffffffffffffff915f91612b07575b5084517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff871660048201523060248201526044810189905291169086816064815f865af18015612afd57612ae0575b5083517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416600482015260248101889052908690829060449082905f905af18015612ad657612ab9575b50813b156104805782519081526004810186905273ffffffffffffffffffffffffffffffffffffffff841660248201525f8160448183865af18015612aaf5791610f739391610f9f969593612aa0575b507ffa2529c0b8e878c5cfbd265efb60d6c35f0ba5ad1132da46b8bde097baac8a49858351898152a251948593840190929173ffffffffffffffffffffffffffffffffffffffff6020916040840195845216910152565b612aa990610835565b5f612a49565b83513d5f823e3d90fd5b612acf90863d88116111215761111281836108ca565b505f6129f9565b84513d5f823e3d90fd5b612af690873d89116111215761111281836108ca565b505f612997565b85513d5f823e3d90fd5b612b1e9150873d891161045c5761044d81836108ca565b5f612931565b50339161094e565b90816020910312610480575173ffffffffffffffffffffffffffffffffffffffff811681036104805790565b90816020910312610480575180151581036104805790565b67ffffffffffffffff81116108495760051b60200190565b805115612b955760200190565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b805160011015612b955760400190565b8051821015612b955760209160051b010190565b919082039182116112e757565b60209081818403126104805780519067ffffffffffffffff821161048057019180601f84011215610480578251612c2981612b70565b93612c3760405195866108ca565b818552838086019260051b820101928311610480578301905b828210612c5e575050505090565b81518152908301908301612c50565b9081518082526020808093019301915f5b828110612c8c575050505090565b8351805173ffffffffffffffffffffffffffffffffffffffff908116875281840151811687850152604080830151151590880152606091820151169086015260809094019392810192600101612c7e565b9190826040910312610480576020825192015190565b90816060910312610480578051916040602083015192015190565b919082018092116112e757565b606073ffffffffffffffffffffffffffffffffffffffff916004604051809481937f0902f1ac000000000000000000000000000000000000000000000000000000008352165afa80156102b357610f9f915f905f92612d7b575b50613a63565b9050612d96915060603d606011610406576103f681836108ca565b50905f612d75565b90816020910312610480575160ff811681036104805790565b60ff166012039060ff82116112e757565b60ff16604d81116112e757600a0a90565b60409060405191612de983610892565b6001835282915f5b602080821015612e2857835160209291612e0a82610876565b5f82525f818301525f868301525f6060830152828801015201612df1565b505091925050565b9493909291946040517f313ce567000000000000000000000000000000000000000000000000000000009081815260208160048173ffffffffffffffffffffffffffffffffffffffff87165afa9081156102b357612e9e91612e99915f91613409575b50612db7565b612dc8565b9060405190815260208160048173ffffffffffffffffffffffffffffffffffffffff8a165afa9081156102b357612edf91612e99915f916134095750612db7565b96604051947fd4b6846d00000000000000000000000000000000000000000000000000000000865260208660048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9586156102b357612fa0966040915f916133ea575b5081517f8c0037dc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8088166004830152808b1660248301528815156044830152909116606482015296879081906084820190565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9889156102b3575f965f9a6133c3575b506040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff86811660048301528916602482015286151560448201529260208460648173420dd381b31aef6683db6b902084cb0ffece40da5afa80156102b357876020916130a7965f916133a6575b506040517fcc56b2c500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152901515602482015294859081906044820190565b038173420dd381b31aef6683db6b902084cb0ffece40da5afa9283156102b35787945f9461336f575b5081613347575f985b899c8a155f1461333657906130f19794939291613bba565b925b83156133145750613102612dd9565b91861561330d57815b87156133075785905b604051967fd4b6846d00000000000000000000000000000000000000000000000000000000885260208860048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9485156102b35773ffffffffffffffffffffffffffffffffffffffff60209681966044965f9c8d936132e6575b508390816040519661319688610876565b1686521689850152151560408401521660608201526131b487612b88565b526131be86612b88565b508988146132df57505b60405196879384927f095ea7b300000000000000000000000000000000000000000000000000000000845273cf77a3ba9a5ca399b7c97c74d54e5b1beb874e436004850152886024850152165af19182156102b357613270935f936132c0575b5060405193849283927fcac88ea9000000000000000000000000000000000000000000000000000000008452600484015284602484015260a0604484015260a4830190612c6d565b30606483015242608483015203818373cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435af19081156102b3575f916132a857509190565b6132bc91503d805f833e61133181836108ca565b9190565b6132d89060203d6020116111215761111281836108ca565b505f613228565b90506131c8565b84919350613300908b3d8d1161045c5761044d81836108ca565b9290613185565b80613114565b849161310b565b955050505050604051613326816108ae565b6002815260403660208301379190565b613341979391613bba565b926130f3565b806133555760015b986130d9565b61335f8183613a63565b6133698d8b613a63565b1061334f565b945092506020843d60201161339e575b8161338c602093836108ca565b8101031261048057869351925f6130d0565b3d915061337f565b6133bd9150833d851161045c5761044d81836108ca565b5f61304f565b9099506133e091965060403d6040116102ac5761029e81836108ca565b959095985f612fc9565b613403915060203d60201161045c5761044d81836108ca565b5f612f39565b61342b915060203d602011613431575b61342381836108ca565b810190612d9e565b5f612e93565b503d613419565b9293929091156134635790610eac61345d610f9f9361345687612b88565b5190612be6565b94612bc2565b610eac61347861347e93613456879697612b88565b93612bc2565b91565b818102929181159184041417156112e757565b811561349e570490565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b3d15613523573d9067ffffffffffffffff8211610849576040519161351860207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601846108ca565b82523d5f602084013e565b606090565b1561352f57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f455448207472616e73666572206661696c6564000000000000000000000000006044820152fd5b919493926040517f313ce567000000000000000000000000000000000000000000000000000000009081815260208160048173ffffffffffffffffffffffffffffffffffffffff89165afa9081156102b3576135f391612e99915f916134095750612db7565b9060405190815260208160048173ffffffffffffffffffffffffffffffffffffffff88165afa9081156102b35761363491612e99915f916134095750612db7565b96604051927fd4b6846d00000000000000000000000000000000000000000000000000000000845260208460048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9384156102b3576136f5946040915f91613a44575b5081517f8c0037dc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff808a16600483015280891660248301528a15156044830152909116606482015294859081906084820190565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9889156102b3575f945f9a613a1d575b506040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff88811660048301528716602482015288151560448201529260208460648173420dd381b31aef6683db6b902084cb0ffece40da5afa80156102b357896020916137fb965f916133a657506040517fcc56b2c500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152901515602482015294859081906044820190565b038173420dd381b31aef6683db6b902084cb0ffece40da5afa9283156102b35789945f946139e6575b50816139be575f965b879c88155f146139ad57906138459794939291613bba565b905b81156133145750613856612dd9565b9186156139a657835b871561399e5750925b6040517fd4b6846d00000000000000000000000000000000000000000000000000000000815260208160048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa80156102b357613950965f9673ffffffffffffffffffffffffffffffffffffffff93889361397b575b50839081604051966138e588610876565b1686521660208501521515604084015216606082015261390483612b88565b5261390e82612b88565b5060405193849283927f5509a1ac0000000000000000000000000000000000000000000000000000000084526004840152604060248401526044830190612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b3575f916132a857509190565b849193506139979060203d60201161045c5761044d81836108ca565b92906138d4565b905092613868565b809361385f565b6139b8979391613bba565b90613847565b806139cc5760015b9661382d565b6139d68183613a63565b6139e08d89613a63565b106139c6565b945092506020843d602011613a15575b81613a03602093836108ca565b8101031261048057889351925f613824565b3d91506139f6565b909950613a3a91945060403d6040116102ac5761029e81836108ca565b939093985f61371e565b613a5d915060203d60201161045c5761044d81836108ca565b5f61368e565b906b033b2e3c9fd0803ce8000000907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8284099282810292838086109503948086039514613bac5784831115610480578291098119600181018091116112e757613ae090831680930494600184805f030401908584119003613481565b9203041781600302916003830481036112e7576002809318613b028183613481565b84038481116112e757613b1491613481565b613b1e8183613481565b84038481116112e757613b3091613481565b613b3a8183613481565b84038481116112e757613b4c91613481565b613b568183613481565b84038481116112e757613b6891613481565b613b728183613481565b8403908482116112e757613b9091613b8991613481565b8092613481565b83039283116112e757610f9f92613ba691613481565b90613481565b505080925015610480570490565b94613be381613bdd87613bd781613be997999d989b9c9a9c613481565b99613481565b95613481565b97613481565b92670de0b6b3a76400009384613bff878a613481565b049185613c1881613c108a86613481565b04968b613481565b049315613c575750505090613c2c91612be6565b8181029181830414901517156112e757613c4c613c5292610f9f95612d0e565b90613494565b613494565b601e919492959650145f14613d1857613c708185612d0e565b91623cda2985810290810486036112e757826009026009810484036112e757613c9891612d0e565b90623cda2090808202918204036112e757613cc893613ba6613cbd92613cc294612d0e565b613da8565b93612d0e565b916107cd92808402938404036112e757613ceb92613ce591612be6565b94612d0e565b926107ca93808502948504036112e7578181029181830414901517156112e757610f9f92613c5291613494565b613d228185612d0e565b91619ab185810290810486036112e75782613d3c91612d0e565b90619ab090808202918204036112e757613d6093613ba6613cbd92613cc294612d0e565b918260c7029260c78404036112e757613d7c92613ce591612be6565b928360c6029360c68504036112e7578181029181830414901517156112e757610f9f92613c5291613494565b8015613ef057806001700100000000000000000000000000000000831015613eda575b60048268010000000000000000613e82941015613ecd575b640100000000811015613ec0575b62010000811015613eb3575b610100811015613ea7575b6010811015613e9b575b1015613e93575b613e238184613494565b0160011c613e318184613494565b0160011c613e3f8184613494565b0160011c613e4d8184613494565b0160011c613e5b8184613494565b0160011c613e698184613494565b0160011c613e778184613494565b0160011c8092613494565b80821015613e8e575090565b905090565b60011b613e19565b811c9160021b91613e12565b60081c91811b91613e08565b60101c9160081b91613dfd565b60201c9160101b91613df1565b60401c9160201b91613de3565b5050608081901c68010000000000000000613dcb565b505f9056","sourceMap":"585:11320:35:-:0;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;12908:63:36;;585:11320:35;;;;;;12908:63:36;;;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;1394:42:36;12908:63;;;;;;;585:11320:35;12908:63:36;585:11320:35;12908:63:36;585:11320:35;12908:63:36;;;585:11320:35;;;;;12999:21:36;;;;585:11320:35;12999:21:36;;585:11320:35;12999:21:36;;;;;;;585:11320:35;12999:21:36;;;585:11320:35;13092:26:36;585:11320:35;13133:13:36;585:11320:35;13128:822:36;13148:5;13152:1;13148:5;;;;13128:822;-1:-1:-1;;585:11320:35;;;;13999:89:36;;585:11320:35;;;;;;13999:89:36;;;585:11320:35;;;;1300:42:36;;;585:11320:35;;;;;;1300:42:36;;;585:11320:35;;;;;1300:42:36;;;585:11320:35;-1:-1:-1;1300:42:36;;;585:11320:35;;;;;;1300:42:36;;;13999:89;;1300:42;13999:89;;;;;;;585:11320:35;13999:89:36;585:11320:35;;;13999:89:36;;;13128:822;585:11320:35;;;;;;;;;;;13999:89:36;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;585:11320:35;;;;;;;;;13155:3:36;585:11320:35;;;;;;13174:304:36;;13155:3;585:11320:35;;13582:92:36;585:11320:35;13582:92:36;;585:11320:35;;;;;13582:92:36;;585:11320:35;;;;;1300:42:36;;585:11320:35;;;;;;1300:42:36;;585:11320:35;;;;;1300:42:36;;585:11320:35;1300:42:36;585:11320:35;1300:42:36;;585:11320:35;1300:42:36;585:11320:35;1300:42:36;;585:11320:35;;13582:92:36;1300:42;13582:92;1300:42;13582:92;;;;;;13780:31;13582:92;585:11320:35;;;;13582:92:36;;;13155:3;13689:31;;;13734;13689;;;:::i;:::-;13734;;:::i;:::-;13780;;:::i;:::-;585:11320:35;;;;;;13830:29:36;;13155:3;13826:40;;585:11320:35;;13133:13:36;;;13826:40;13861:5;;13830:29;585:11320:35;;;;13830:29:36;;13582:92;13734:31;13582:92;;13689:31;13582:92;;;;;585:11320:35;13582:92:36;585:11320:35;13582:92:36;;;;;;;;:::i;:::-;;;;;:::i;:::-;;-1:-1:-1;13582:92:36;;;;;;;;13174:304;13401:62;585:11320:35;;13281:72:36;585:11320:35;;;;;;;13281:72:36;:::i;:::-;13401:62;;;;:::i;:::-;13372:91;;13174:304;;12999:21;;;;;585:11320:35;12999:21:36;585:11320:35;12999:21:36;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;12908:63;;;;;;;;;;;;;;:::i;:::-;;;;585:11320:35;;;;;;;;;;;;;;;;;;;664:40;585:11320;;;;;;;;;;;;;;;;;;;710:46;585:11320;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;1252:5:30;1235:23;;;585:11320:35;1235:23:30;;;;;;:::i;585:11320:35:-;;;;;;;;;;;;;;1469:8:30;585:11320:35;;;;;;;;;;;;;;;;;;530:32:30;585:11320:35;;;;;;;;;;;;;;;;;;;1712:25;585:11320;;;;;;;;:::i;:::-;1726:10;1712:25;;:::i;585:11320::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::o;1820:1139::-;;-1:-1:-1;;1820:1139:35;2034:10;2048:7;585:11320;;2034:21;585:11320;;2034:43;;585:11320;2119:1;585:11320;;;;;;;;2137:49;;585:11320;;2258:44;-1:-1:-1;5124:19:35;-1:-1:-1;5145:26:35;585:11320;;5145:26;-1:-1:-1;5497:106:35;;;585:11320;;;;;;2119:1;585:11320;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;:::i;:::-;;;;;;5618:15;:26;5614:56;;585:11320;;;5696:48;;5187:416;;;;585:11320;;;;2119:1;5696:48;;585:11320;;;;;;;;;;;;;;;;;;;;5696:48;:16;585:11320;5696:16;585:11320;5696:48;;;;;;;-1:-1:-1;5696:48:35;;;2133:786;585:11320;;;;5758:18;5754:49;;-1:-1:-1;585:11320:35;;;;10224:320;;2133:786;585:11320;;;;10553:320;;2133:786;5917:33;;;;;:::i;:::-;585:11320;;;;;5961:31;;585:11320;;;;6002:31;;-1:-1:-1;6081:13:35;;6096:5;6100:1;6096:5;;;;;6076:1344;4624:18:36;;;;;:::i;:::-;12368:5;;;;;;;12376;;;:::i;:::-;1084:3;;;;;;;;;;;;;;;585:11320:35;4672:50:36;;;;:::i;:::-;4736:27;4732:79;;585:11320:35;;;5176:63:36;;5187:416:35;;;;585:11320;;;;2119:1;5176:63:36;;585:11320:35;;;;;;;;;;;;;;;;;;1394:42:36;5176:63;;;;;;;585:11320:35;5176:63:36;585:11320:35;5176:63:36;-1:-1:-1;5176:63:36;;;12368:21;585:11320:35;2119:1;585:11320;;5268:21:36;;;;585:11320:35;5268:21:36;;585:11320:35;5268:21:36;;;;;;;-1:-1:-1;5268:21:36;;;12368;-1:-1:-1;585:11320:35;;;;5354:90:36;;5187:416:35;;;;585:11320;;;;2119:1;5354:90:36;;585:11320:35;;;;1300:42:36;;;585:11320:35;;;;1300:42:36;;;585:11320:35;;;1300:42:36;;;585:11320:35;1300:42:36;;;585:11320:35;;;;;;1300:42:36;585:11320:35;1300:42:36;5354:90;;;;;;;-1:-1:-1;;;5354:90:36;;;12368:21;585:11320:35;;;;;5557:23:36;;:50;;;;12368:21;5553:124;;585:11320:35;5719:22:36;;:::i;:::-;585:11320:35;;;;;;;:::i;:::-;5187:416;;;585:11320;;;5187:416;;;585:11320;;5763:46:36;;585:11320:35;;;;5763:46:36;;585:11320:35;;;5763:46:36;;585:11320:35;5751:58:36;;;:::i;:::-;;;;;:::i;:::-;;585:11320:35;;5853:63:36;585:11320:35;5853:63:36;;585:11320:35;;;;2119:1;5853:63:36;;585:11320:35;;;;;;-1:-1:-1;585:11320:35;;;;;;;;:::i;:::-;5853:63:36;;1300:42;5853:63;;;;;;;6185:22;5944:33;5961:16;-1:-1:-1;5853:63:36;585:11320:35;5853:63:36;;;;;12368:21;5961:16;;:::i;:::-;585:11320:35;;;;;5944:33:36;:::i;:::-;12495:17;585:11320:35;;;;;12495:5:36;;;;;12503;585:11320:35;;;;;12503:5:36;:::i;:::-;12495:17;;585:11320:35;;;;;;12495:5:36;;;;;585:11320:35;12503:5:36;585:11320:35;;;12503:5:36;:::i;:::-;12495:17;6185:22;:::i;:::-;585:11320:35;;6145:71:36;;;;;585:11320:35;6145:71:36;;2119:1:35;6145:71:36;;585:11320:35;;;;;;;;;;;:::i;:::-;6145:71:36;;1300:42;6145:71;;;;;;;6245:41;6145:71;-1:-1:-1;6145:71:36;;;12495:17;6245:22;6270:16;6245:22;;;;:::i;:::-;6270:16;;:::i;:::-;585:11320:35;6245:41:36;;:::i;:::-;6595:18;;;6591:183;;12495:17;7332:13;;;;7328:387;;12495:17;7728:13;;7724:387;;12495:17;585:11320:35;;;2323:39;;585:11320;;;;5187:416;;585:11320;5187:416;7737:76;585:11320;5187:416;;585:11320;7737:76;;;;;;;585:11320;;;;;;;;;;;;;;;;;;7737:76;;;;585:11320;;2323:39;;;585:11320;2323:39;;585:11320;;;;;;;;;;;;;;;;;;2323:39;;;;;;;;;:::i;:::-;2316:46;:::o;7724:387:36:-;449:42:37;5187:416:35;585:11320;5187:416;;585:11320;7761:14:36;7757:344;449:42:37;;;7842:31:36;;;;;585:11320:35;;;;;;7842:31:36;;;;585:11320:35;7842:31:36;;585:11320:35;;2119:1;7842:31:36;;585:11320:35;7842:31:36;;;;;;;;7757:344;7909:36;;7963:39;7909:36;;;2323:39:35;7909:36:36;2323:39:35;7909:36:36;;;;;;;;;:::i;:::-;;7963:39;:::i;:::-;7724:387;;;;7842:31;;;;;:::i;:::-;585:11320:35;;7842:31:36;;;585:11320:35;;;;7842:31:36;585:11320:35;;;;;;;;;7842:31:36;585:11320:35;;;7757:344:36;-1:-1:-1;585:11320:35;;;8041:45:36;;;;585:11320:35;;;;2119:1;8041:45:36;;585:11320:35;;;;;5187:416;;585:11320;;;;;;;;;;;;;;8041:45:36;;;;;;;;;2323:39:35;8041:45:36;2323:39:35;8041:45:36;;;;7757:344;;;;8041:45;;;585:11320:35;8041:45:36;585:11320:35;8041:45:36;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;;585:11320:35;;;;;;;;;;7328:387:36;449:42:37;5187:416:35;585:11320;5187:416;;585:11320;7365:14:36;7361:344;449:42:37;;;7446:31:36;;;;;-1:-1:-1;585:11320:35;;;;;7446:31:36;;;;585:11320:35;7446:31:36;;585:11320:35;;2119:1;7446:31:36;;585:11320:35;7446:31:36;;;;;;;;7361:344;7513:36;7567:39;7513:36;;;;;;;;;;;:::i;7567:39::-;7328:387;;7446:31;;;;;;:::i;:::-;-1:-1:-1;7446:31:36;;;;7361:344;-1:-1:-1;585:11320:35;;;7645:45:36;;;;585:11320:35;;;2119:1;7645:45:36;;585:11320:35;;;;;;;;;;;7645:45:36;5187:416:35;-1:-1:-1;585:11320:35;5187:416;;585:11320;7645:45:36;;;;;;;;7361:344;;7328:387;;7645:45;;;585:11320:35;7645:45:36;585:11320:35;7645:45:36;;;;;;;:::i;:::-;;;;;6591:183;6649:18;;;;:::i;:::-;1084:3;;;;;;;;;;;;;;;6714;6648:37;;;;:::i;:::-;6703:14;6699:64;;6591:183;;;;6699:64;2119:1:35;585:11320;;6726:37:36;;;;1084:3;585:11320:35;-1:-1:-1;585:11320:35;;2119:1;585:11320;;-1:-1:-1;585:11320:35;6145:71:36;6245:22;6145:71;;;;;6270:16;6145:71;;;-1:-1:-1;6145:71:36;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;12495:17;;;;;6185:22;:::i;12495:17::-;;;;;5853:63;;;;;;;;;;;;;:::i;:::-;;;;5553:124;2119:1:35;585:11320;;5630:36:36;;;;5557:50;585:11320:35;;;;;5584:23:36;;5557:50;;5354:90;;;;;;;;585:11320:35;5354:90:36;585:11320:35;5354:90:36;;;;;;;:::i;:::-;;;;;;;;5268:21;;;;;585:11320:35;5268:21:36;585:11320:35;5268:21:36;;;;;;;:::i;:::-;;;;;5176:63;;;;;;;;;;;;;;:::i;:::-;;;;4732:79;2119:1:35;585:11320;;4772:39:36;;;;12368:21;12384:5;;;;:::i;:::-;12368:21;;6103:3:35;6122:349;;;;;;;6103:3;585:11320;;;6524:61;;;;6555:15;585:11320;;2119:1;6524:61;;585:11320;;;;;;;;;;;6524:61;5187:416;-1:-1:-1;585:11320:35;5187:416;;585:11320;6524:61;;;;;;;;6103:3;-1:-1:-1;585:11320:35;;;6599:61;;;;6555:15;585:11320;;2119:1;6599:61;;585:11320;;;;;;;;;;;6599:61;5187:416;-1:-1:-1;585:11320:35;5187:416;;585:11320;6599:61;;;;;;;;6103:3;585:11320;;;6749:304;;585:11320;6749:304;;;585:11320;5187:416;;585:11320;2119:1;6749:304;;;585:11320;;5187:416;;585:11320;;6749:304;;585:11320;;;;;;6749:304;;585:11320;;;;;6749:304;;585:11320;;;;;6749:304;;585:11320;;-1:-1:-1;585:11320:35;6749:304;;585:11320;;-1:-1:-1;585:11320:35;6749:304;;585:11320;;;;;;6749:304;;585:11320;;;;;;;6749:304;;585:11320;;;6749:304;;585:11320;6749:304;;-1:-1:-1;585:11320:35;6555:15;585:11320;6749:304;;;;;;;;;7250:31;6749:304;-1:-1:-1;6749:304:35;;-1:-1:-1;;;;6749:304:35;;;;;6103:3;7159:31;7204;7068;;;;;;;:::i;:::-;;;7113;;;;;;:::i;:::-;;;7159;;;;:::i;:::-;7204;;;;;:::i;:::-;7250;;:::i;:::-;585:11320;;;;7300:29;;6103:3;7296:40;;585:11320;6103:3;;585:11320;6103:3;;6081:13;;;7296:40;7331:5;;7300:29;7311:18;;;7300:29;;6749:304;;;585:11320;6749:304;585:11320;6749:304;;;;7159:31;6749:304;;;7204:31;6749:304;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;6749:304:35;;;6599:61;;;585:11320;6599:61;585:11320;6599:61;;;;;;;:::i;:::-;;;;;6524;;;585:11320;6524:61;585:11320;6524:61;;;;;;;:::i;:::-;;;;;6122:349;6379:77;6229:82;;;;;;585:11320;5187:416;;585:11320;;5187:416;;585:11320;6229:82;:::i;:::-;6379:77;;;;;:::i;:::-;6330:126;;;;6122:349;;10553:320;449:42:37;585:11320:35;5187:416;;585:11320;10588:14;:31;;;10553:320;10584:279;;;585:11320;;;;10643:9;:20;10639:53;;449:42:37;10711:39:35;;;;585:11320;;;10711:39;;10643:9;;2119:1;10643:9;;449:42:37;10711:39:35;;;;;;;;10584:279;;;;10553:320;;;10711:39;;;;;:::i;:::-;585:11320;;10711:39;;;585:11320;;;10711:39;585:11320;;;;;;;;;10639:53;2119:1;585:11320;;10672:20;;;;10584:279;585:11320;;;10789:59;;585:11320;;;2119:1;10789:59;;585:11320;10833:4;585:11320;;;;;;;;;;;;;;;;;;;10789:59;5187:416;;585:11320;5187:416;;585:11320;10789:59;;;;;;;;;;10584:279;;;;10789:59;;;585:11320;10789:59;585:11320;10789:59;;;;;;;:::i;:::-;;;;;10588:31;10606:9;;:13;;10588:31;;10224:320;449:42:37;585:11320:35;5187:416;;585:11320;10259:14;:31;;;10224:320;10255:279;;;585:11320;;;;10314:9;:20;10310:53;;449:42:37;10382:39:35;;;;585:11320;;;10382:39;;-1:-1:-1;10314:9:35;2119:1;10314:9;;449:42:37;10382:39:35;;;;;;;;10255:279;;10224:320;;10382:39;;;;;:::i;:::-;-1:-1:-1;10382:39:35;;;10255:279;585:11320;;;10460:59;;585:11320;;;;2119:1;10460:59;;585:11320;10504:4;585:11320;;;;;;;;;;;;;5187:416;;585:11320;;;;;;;-1:-1:-1;;585:11320:35;10460:59;;;;;;;;10255:279;10224:320;;10460:59;;;585:11320;10460:59;585:11320;10460:59;;;;;;;:::i;:::-;;;;;10259:31;10277:9;;:13;;10259:31;;5754:49;2119:1;585:11320;;5785:18;;;;5696:48;;;;;585:11320;5696:48;585:11320;5696:48;;;;;;;:::i;:::-;;;;;5614:56;2119:1;585:11320;;5653:17;;;;2133:786;2383:52;-1:-1:-1;585:11320:35;2383:52;;585:11320;;8583:91;585:11320;8583:91;585:11320;8583:91;;;585:11320;;;;;;2119:1;585:11320;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8689:15;;;:26;8685:56;;585:11320;;;8767:48;;585:11320;;;;2119:1;8767:48;;585:11320;;;;;;;;;;;;;;;;;;;;8767:48;:16;585:11320;8767:16;585:11320;8767:48;;;;;;585:11320;8767:48;-1:-1:-1;8767:48:35;;;2379:540;585:11320;;8829:18;;;8825:49;;585:11320;;;8885:59;;585:11320;;;;;2119:1;8885:59;;585:11320;8927:4;585:11320;;;;;;;;;;;;;;;;;;-1:-1:-1;8885:59:35;;;;;;;;8954:57;8885:59;;;2379:540;-1:-1:-1;585:11320:35;;;8954:57;;8983:15;585:11320;;2119:1;8954:57;;585:11320;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;585:11320:35;;;;;;;8954:57;;;;;;;;;585:11320;8954:57;585:11320;8954:57;585:11320;8954:57;-1:-1:-1;8954:57:35;;;2379:540;585:11320;;;9055:104;;;;;585:11320;9055:104;;;2119:1;9055:104;;585:11320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9055:104;;;;;;;-1:-1:-1;;;9055:104:35;;;2379:540;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;9175:61;;585:11320;;9175:61;585:11320;;2552:28;585:11320;2552:28;;585:11320;;;;;;2552:28;;;;;:::i;9055:104::-;585:11320;9055:104;;9175:61;9055:104;;;;;585:11320;9055:104;585:11320;9055:104;;;;;;;:::i;:::-;;;;;;;;;8954:57;;;585:11320;8954:57;585:11320;8954:57;;;;;;;:::i;:::-;;;;;8885:59;;;585:11320;8885:59;585:11320;8885:59;;;;;;;:::i;:::-;;;;;8767:48;;;;585:11320;8767:48;585:11320;8767:48;;;;;;;:::i;:::-;;;;2379:540;585:11320;;;;;;;2601:61;;;585:11320;;3506:75;;;585:11320;;;;;;;;;2119:1;585:11320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2119:1;585:11320;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;3596:15;;;:26;3592:56;;585:11320;3677:9;;;:::i;:::-;;585:11320;;10077:802;-1:-1:-1;10228:11:35;;10224:320;;585:11320;10553:320;;585:11320;-1:-1:-1;;585:11320:35;;;3779:59;;585:11320;3811:15;585:11320;2119:1;3779:59;;585:11320;;;;;;;;;;;3779:59;585:11320;;;-1:-1:-1;3779:59:35;;;;;;;;;585:11320;;;;;;;;;;;;;;;;3868:25;-1:-1:-1;3868:25:35;;;;;;;;585:11320;3868:25;;;;:::i;:::-;;:28;585:11320;;;;;;;3942:47;;;;;585:11320;3942:47;;;2119:1;3942:47;;585:11320;;;;;;;;;:::i;:::-;3942:47;;;;;;;;;;-1:-1:-1;3942:47:35;;;585:11320;;;;;;;;;;;;;4027:43;;;;;:::i;:::-;585:11320;4085:35;4081:91;;585:11320;;4192:89;;;;;;;2119:1;4192:89;;585:11320;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;4192:89;;;-1:-1:-1;4192:89:35;;;;;;;;;-1:-1:-1;4192:89:35;;;585:11320;;;;;;;;;;;;4296:27;;;;:::i;:::-;585:11320;4296:45;4292:101;;4435:10;;;:::i;:::-;585:11320;;;;;;;;;;;;4447:27;;4408:67;4447:27;;;;;;;;:::i;:::-;585:11320;;;;;;;;;;4408:67;585:11320;;;;;;;2773:19;;;;585:11320;;;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;2773:19;;;;;;;;;;;;;;:::i;585:11320::-;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;;;;;-1:-1:-1;585:11320:35;;2119:1;585:11320;-1:-1:-1;585:11320:35;4292:101;2119:1;585:11320;;4364:18;;;;585:11320;;;-1:-1:-1;585:11320:35;;2119:1;585:11320;-1:-1:-1;585:11320:35;4192:89;;;;;;;-1:-1:-1;4192:89:35;;;;;;:::i;:::-;;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;4081:91;2119:1;585:11320;;4143:18;;;;585:11320;;;-1:-1:-1;585:11320:35;;2119:1;585:11320;-1:-1:-1;585:11320:35;3942:47;;;;;;-1:-1:-1;3942:47:35;;;;;;:::i;:::-;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;;;;-1:-1:-1;585:11320:35;;2119:1;585:11320;-1:-1:-1;585:11320:35;3779:59;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;10553:320;10588:31;;;;;10553:320;10584:279;;;10643:9;;;;10639:53;;449:42:37;10711:39:35;;;;;585:11320;2119:1;585:11320;;;10711:39;;;;585:11320;10711:39;;10643:9;10711:39;;;;;;;;;10584:279;;;;10553:320;;;;10711:39;;;;;:::i;:::-;585:11320;;10711:39;;;;585:11320;;;;;;;;;10639:53;2119:1;585:11320;;10672:20;;;;10584:279;585:11320;;;10789:59;;585:11320;;;;;2119:1;10789:59;;585:11320;10833:4;585:11320;;;;;;;;;;;;;;;10789:59;;;;;;;;;;10584:279;;;;10789:59;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320;;;;;;;;;;10588:31;10606:9;;:13;;10588:31;;10224:320;449:42:37;;10259:14:35;;;:31;;;10224:320;10255:279;;;10314:9;;:20;10310:53;;10382:39;;;;;-1:-1:-1;2119:1:35;585:11320;;;10382:39;;;;585:11320;10382:39;;10314:9;10382:39;;;;;;;;;10255:279;;;10224:320;;10382:39;;;;;:::i;:::-;-1:-1:-1;10382:39:35;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;10310:53;2119:1;585:11320;;10343:20;;;;10255:279;-1:-1:-1;585:11320:35;;;10460:59;;585:11320;;;2119:1;10460:59;;585:11320;10504:4;585:11320;;;;;;;;;;10504:4;585:11320;;;-1:-1:-1;10460:59:35;;;;;;;;;;;;10255:279;;10224:320;;10460:59;;;;;;;;;;;;;:::i;:::-;;;;;10259:31;10277:9;;:13;;10259:31;;3592:56;2119:1;585:11320;;3631:17;;;;585:11320;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2597:322;2825:23;;;;;-1:-1:-1;2813:35:35;;2809:110;;2119:1;585:11320;;2935:17;;;;2809:110;585:11320;;;;9621:40;;;;;585:11320;;;;;;;;2119:1;585:11320;;;:::i;:::-;;;;;;;;9690:35;585:11320;9690:35;;585:11320;9690:35;;;2119:1;9690:35;;;;;;;;;;585:11320;9690:35;-1:-1:-1;9690:35:35;;;2809:110;-1:-1:-1;585:11320:35;;;9736:59;;585:11320;;;2119:1;9736:59;;585:11320;9781:4;585:11320;;;;;;;;;;;;;9781:4;585:11320;;;-1:-1:-1;585:11320:35;9736:59;;;;;;;;2809:110;-1:-1:-1;585:11320:35;;;9805:45;;585:11320;;;2119:1;9805:45;;585:11320;;;;;;;;;;;;;;;;-1:-1:-1;;9805:45:35;;;;;;;;2809:110;9861:44;;;;;;585:11320;;9861:44;;;2119:1;9861:44;;585:11320;;;;;;;;;;-1:-1:-1;585:11320:35;;;-1:-1:-1;9861:44:35;;;;;;;;9973:26;9861:44;;9973:26;9861:44;;;;;2809:110;585:11320;9921:35;585:11320;;;;;;9921:35;585:11320;9973:26;;;;;585:11320;;;;;;;;;;;;;;;;;9861:44;;;;:::i;:::-;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;9805:45;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;9736:59;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;9690:35;;;;;;;;;;;;;;:::i;:::-;;;;2034:43;:10;;:43;;;585:11320;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;:::o;:::-;;-1:-1:-1;585:11320:35;;;;;-1:-1:-1;585:11320:35;;;;5739:1:36;585:11320:35;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;4296:198:36:-;4414:25;585:11320:35;4296:198:36;4414:25;585:11320:35;;4414:25:36;;;;585:11320:35;4414:25:36;;585:11320:35;4414:25:36;;;;;;4456:31;4414:25;;;;;;;4296:198;4456:31;;:::i;4414:25::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320:35;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;:::i;:::-;5739:1:36;585:11320:35;;;;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;585:11320:35;;-1:-1:-1;585:11320:35;;;;-1:-1:-1;585:11320:35;;;;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;;;;:::o;2018:1867:36:-;;;;;;;585:11320:35;;;2252:33:36;;;;;585:11320:35;2252:33:36;585:11320:35;;;;2252:33:36;;;;;;;2240:46;2252:33;2247:38;2252:33;;;;;2018:1867;2247:38;;:::i;:::-;2240:46;:::i;:::-;585:11320:35;;;2333:33:36;;;2252;585:11320:35;2252:33:36;585:11320:35;;;;2333:33:36;;;;;;;2321:46;2333:33;2328:38;2333:33;2252;2333;;;2328:38;;:::i;2321:46::-;585:11320:35;;;2491:42:36;585:11320:35;2491:42:36;;2252:33;2491:42;2252:33;2491:42;1300;2491;;;;;;;2429:105;2491:42;585:11320:35;2491:42:36;2252:33;2491:42;;;2018:1867;-1:-1:-1;585:11320:35;;;2429:105:36;;585:11320:35;;;;2252:33:36;2429:105;;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2429:105:36;;;1300:42;2429:105;;;;;;;2252:33;;;2429:105;;;2018:1867;-1:-1:-1;585:11320:35;;;2560:63:36;;585:11320:35;;;;2252:33:36;2560:63;;585:11320:35;;;;;;;;;;;;;;;2252:33:36;585:11320:35;;;1394:42:36;2560:63;;;;;;;2252:33;2560:63;2651:52;2560:63;2252:33;2560:63;;;2018:1867;-1:-1:-1;585:11320:35;;;2651:52:36;;585:11320:35;;;;2252:33:36;2651:52;;585:11320:35;;;;;;;;;;;;;;;;;;2651:52:36;;;1394:42;2651:52;;;;;;;;;2252:33;2651:52;;;2018:1867;-1:-1:-1;2847:6:36;;;2252:33;2846:74;;2833:87;2931:20;2966:11;;2962:259;2966:11;;;3008:78;;;;;;;;:::i;:::-;2962:259;;3235:17;;3231:85;;3386:22;;;:::i;:::-;3457:28;;;;;;;3499;;;;;;;585:11320:35;;3561:42:36;585:11320:35;3561:42:36;;2252:33;3561:42;2252:33;3561:42;1300;3561;;;;;;;585:11320:35;2252:33:36;3561:42;;;585:11320:35;3561:42:36;2252:33;3561:42;;;;;3499:28;585:11320:35;;;;;;;;;;:::i;:::-;;;;;3430:183:36;;;585:11320:35;;;;3430:183:36;;585:11320:35;;3430:183:36;;;585:11320:35;3418:195:36;;;:::i;:::-;;;;;:::i;:::-;;3631:28;;;;;;;585:11320:35;;3624:76:36;;;;;585:11320:35;3624:76:36;;1300:42;2252:33;3624:76;;585:11320:35;;;;;;;3624:76:36;;;;;;;585:11320:35;3624:76:36;2252:33;3624:76;;;3631:28;585:11320:35;;;3732:107:36;;;;;585:11320:35;3732:107:36;;2252:33;3732:107;;585:11320:35;;;;;;;;;;;;;;;;:::i;:::-;3816:4:36;585:11320:35;;;;3823:15:36;585:11320:35;;;;3732:107:36;;;1300:42;3732:107;;;;;;;2252:33;3732:107;;;3850:28;;2018:1867;:::o;3732:107::-;;;;;;2252:33;3732:107;;;;;;:::i;:::-;3850:28;2018:1867;:::o;3624:76::-;;;2252:33;3624:76;2252:33;3624:76;;;;;;;:::i;:::-;;;;;3631:28;;;;;3561:42;;;;;;;;;;;;;;;;;:::i;:::-;;;;;3499:28;;;;3457;;;;;3231:85;585:11320:35;;;;;;;;;;;:::i;:::-;3290:1:36;585:11320:35;;;;2252:33:36;585:11320:35;;;3268:37:36;;:::o;2962:259::-;3132:78;;;;;:::i;:::-;2962:259;;;2846:74;2866:6;;;2876:4;2865:55;2846:74;;;2865:55;2883:17;;;;:::i;:::-;2903;;;;:::i;:::-;-1:-1:-1;2865:55:36;;2651:52;;;;;2252:33;2651:52;;2252:33;2651:52;;;;;;2252:33;2651:52;;;:::i;:::-;;;585:11320:35;;;;;;;2651:52:36;;;;;;;-1:-1:-1;2651:52:36;;2560:63;;;;;;;;;;;;;;:::i;:::-;;;;2429:105;;;;;;;;585:11320:35;2429:105:36;585:11320:35;2429:105:36;;;;;;;:::i;:::-;;;;;;;;2491:42;;;;2252:33;2491:42;2252:33;2491:42;;;;;;;:::i;:::-;;;;2333:33;;;;2252;2333;2252;2333;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;3891:399;;;;;;4080:204;;;4126:10;4166;4122:14;4162;4126:10;;;;:::i;:::-;585:11320:35;4122:14:36;;:::i;:::-;4166:10;;:::i;4080:204::-;4263:10;4219:14;4259;4223:10;;;;;;:::i;4219:14::-;4263:10;;:::i;4259:14::-;4080:204;3891:399::o;1084:3::-;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::o;:::-;;;;;;;;;;1207:42;;;;;;;;;;;;585:11320:35;;;;1207:42:36;585:11320:35;;;;;1207:42:36;585:11320:35;;:::i;:::-;1207:42:36;;;-1:-1:-1;1207:42:36;;;;:::o;:::-;585:11320:35;1207:42:36;:::o;:::-;;;;:::o;:::-;;585:11320:35;;1207:42:36;;;;;;;;;;;;585:11320:35;1207:42:36;585:11320:35;;;1207:42:36;;14165:1738;;;;;585:11320:35;;;14417:33:36;;;;;585:11320:35;14417:33:36;585:11320:35;;;;14417:33:36;;;;;;;14405:46;14417:33;14412:38;14417:33;;;;;14412:38;;:::i;14405:46::-;585:11320:35;;;14498:33:36;;;14417;585:11320:35;14417:33:36;585:11320:35;;;;14498:33:36;;;;;;;14486:46;14498:33;14493:38;14498:33;14417;14498;;;14493:38;;:::i;14486:46::-;585:11320:35;;;14656:42:36;585:11320:35;14656:42:36;;14417:33;14656:42;14417:33;14656:42;1300;14656;;;;;;;14594:105;14656:42;585:11320:35;14656:42:36;14417:33;14656:42;;;14165:1738;-1:-1:-1;585:11320:35;;;14594:105:36;;585:11320:35;;;;14417:33:36;14594:105;;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14594:105:36;;;1300:42;14594:105;;;;;;;14417:33;;;14594:105;;;14165:1738;-1:-1:-1;585:11320:35;;;14725:63:36;;585:11320:35;;;;14417:33:36;14725:63;;585:11320:35;;;;;;;;;;;;;;;14417:33:36;585:11320:35;;;1394:42:36;14725:63;;;;;;;14417:33;14725:63;14816:52;14725:63;14417:33;14725:63;;;-1:-1:-1;585:11320:35;;;14816:52:36;;585:11320:35;;;;14417:33:36;14816:52;;585:11320:35;;;;;;;;;;;;;;;;;;14816:52:36;;;1394:42;14816:52;;;;;;;;;14417:33;14816:52;;;14165:1738;-1:-1:-1;15012:6:36;;;14417:33;15011:74;;14998:87;15096:20;15131:11;;15127:259;15131:11;;;15173:78;;;;;;;;:::i;:::-;15127:259;;15399:17;;15395:85;;15548:22;;;:::i;:::-;15619:28;;;;;;;15661;;;;;;;585:11320:35;;;15723:42:36;;14417:33;15723:42;14417:33;15723:42;1300;15723;;;;;;585:11320:35;15723:42:36;14417:33;15723:42;585:11320:35;15723:42:36;;;;;15661:28;585:11320:35;;;;;;;;;;:::i;:::-;;;;;14417:33:36;15592:183;;585:11320:35;;;;15592:183:36;;585:11320:35;;15592:183:36;;;585:11320:35;15580:195:36;;;:::i;:::-;;;;;:::i;:::-;;585:11320:35;;15796:61:36;;;;;585:11320:35;15796:61:36;;14417:33;15796:61;;585:11320:35;;;;;;;;;;;:::i;:::-;15796:61:36;;1300:42;15796:61;;;;;;;14417:33;15796:61;;;15868:28;;14165:1738;:::o;15723:42::-;;;;;;;14417:33;15723:42;14417:33;15723:42;;;;;;;:::i;:::-;;;;;15661:28;;;;;;15619;;;;;15127:259;15297:78;;;;;:::i;:::-;15127:259;;;15011:74;15031:6;;;15041:4;15030:55;15011:74;;;15030:55;15048:17;;;;:::i;:::-;15068;;;;:::i;:::-;-1:-1:-1;15030:55:36;;14816:52;;;;;14417:33;14816:52;;14417:33;14816:52;;;;;;14417:33;14816:52;;;:::i;:::-;;;585:11320:35;;;;;;;14816:52:36;;;;;;;-1:-1:-1;14816:52:36;;14594:105;;;;;;;;585:11320:35;14594:105:36;585:11320:35;14594:105:36;;;;;;;:::i;:::-;;;;;;;;14656:42;;;;14417:33;14656:42;14417:33;14656:42;;;;;;;:::i;:::-;;;;8427:1417;;1041:4;8581:150;;;;;;;;;;;;;;;;;;;;8745:10;;8741:179;;8938:19;;;585:11320:35;;;8996:71:36;;;9233:12;;9248:1;585:11320:35;;;;;;;9497:12:36;9218:32;;;9260:70;;;9407:72;9248:1;9407:72;;-1:-1:-1;9407:72:36;;;9076:117;;;;;;9497:12;:::i;:::-;9076:117;;9340:58;9488:21;1084:3;9535:1;1084:3;;9535:1;1084:3;;;;;;9554:1;9534:21;;;9576:17;;;;:::i;:::-;585:11320:35;;;;;;;9565:28:36;;;:::i;:::-;9614:17;;;;:::i;:::-;585:11320:35;;;;;;;9603:28:36;;;:::i;:::-;9652:17;;;;:::i;:::-;585:11320:35;;;;;;;9641:28:36;;;:::i;:::-;9690:17;;;;:::i;:::-;585:11320:35;;;;;;;9679:28:36;;;:::i;:::-;9728:17;;;;:::i;:::-;585:11320:35;;;;;;;;9766:17:36;9717:28;;;;:::i;:::-;9766:17;;;:::i;:::-;585:11320:35;;;;;;;9803:11:36;9755:28;;;;:::i;:::-;9803:11;;:::i;8741:179::-;8779:15;;;;;;585:11320:35;;8809:74:36;8896:13;:::o;10340:1748::-;;10666:8;10340:1748;10643:8;10340:1748;10621:8;10340:1748;10688:8;10340:1748;;;;;;;;10621:8;:::i;:::-;10643;;:::i;:::-;10666;;:::i;:::-;10688;;:::i;:::-;999:4;;10758:5;;;;;;:::i;:::-;1084:3;10794:5;;10830;10794;;;;;:::i;:::-;1084:3;10830:5;;;:::i;:::-;1084:3;;10853:1229;;;10887:7;;;;;;;:::i;:::-;1084:3;;;;;;;;;;;;;;10905:5;10886:25;10905:5;10886:32;10905:5;;:::i;:::-;10886:25;;:::i;:::-;:32;:::i;10853:1229::-;10950:2;10939:13;;;;;;;10935:1147;10950:2;;;11033:7;;;;:::i;:::-;11045:9;;1084:3;;;;;;;;;;;11062:1;1084:3;11062:1;1084:3;;;;;;11045:23;;;:::i;:::-;11071:9;;1084:3;;;;;;;;;;11236:7;11045:40;;11032:54;11045:40;11119:26;11045:40;;:::i;11032:54::-;11119:26;:::i;:::-;11236:7;;:::i;:::-;11228:4;;1084:3;;;;;;;;;;11328:5;11217:27;;;;:::i;:::-;11328:5;;:::i;:::-;11320:4;;1084:3;;;;;;;;;;;;;;;;;;;;;;;;11474:15;11421:31;;;;:::i;10935:1147::-;11627:7;;;;:::i;:::-;11639:6;;1084:3;;;;;;;;;;11639:16;;;;:::i;:::-;11658:6;;1084:3;;;;;;;;;;11819:7;11639:30;;11626:44;11639:30;11703:26;11639:30;;:::i;11819:7::-;1084:3;;11812;1084;;11812;1084;;;;;11910:5;11801:26;;;;:::i;11910:5::-;1084:3;;11903;1084;;11903;1084;;;;;;;;;;;;;;;;;;;12056:15;12003:31;;;;:::i;550:1391:39:-;645:6;;641:20;;835:14;875:1;900:35;894:41;;;890:116;;550:1391;1535:3;1023:25;1029:19;1881:5;1023:25;;;1019:99;;550:1391;1141:11;1135:17;;;1131:91;;550:1391;1245:7;1239:13;;;1235:86;;550:1391;1344:5;1338:11;;;1334:83;;550:1391;1440:4;1434:10;;;1430:82;;550:1391;1529:9;;1525:55;;550:1391;1602:5;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1636:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1670:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1704:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1738:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1772:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1806:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1881:5:39;;;:::i;:::-;1908:6;;;;;;:15;550:1391;:::o;1908:15::-;;;550:1391;:::o;1525:55::-;875:1;585:11320:35;1525:55:39;;1430:82;585:11320:35;;;1496:1:39;585:11320:35;1430:82:39;;;1334:83;1376:1;585:11320:35;;;;1334:83:39;;;1235:86;1279:2;585:11320:35;;1305:1:39;585:11320:35;1235:86:39;;;1131:91;1179:2;585:11320:35;;1205:2:39;585:11320:35;1131:91:39;;;1019:99;1075:2;585:11320:35;;1101:2:39;585:11320:35;1019:99:39;;;890:116;-1:-1:-1;;962:3:39;585:11320:35;;;;890:116:39;;641:20;653:8;650:1;653:8;:::o","linkReferences":{},"immutableReferences":{"37821":[{"start":1548,"length":32}],"37824":[{"start":1650,"length":32}],"37827":[{"start":1759,"length":32},{"start":2322,"length":32}],"38719":[{"start":1230,"length":32},{"start":5238,"length":32},{"start":5396,"length":32},{"start":5758,"length":32},{"start":7600,"length":32},{"start":8506,"length":32}],"38722":[{"start":1340,"length":32},{"start":2724,"length":32},{"start":7370,"length":32}]}},"methodIdentifiers":{"_plugin()":"0cfd9ad4","aerodromeFactory()":"c45acd23","aerodromeRouter()":"e18e3a68","execute(bytes)":"09c5eabe","execute(bytes,address)":"6accdc13","getName()":"17d7de7c","getVersion()":"0d8e6e2c","quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)":"e69224d4"},"rawMetadata":"{\"compiler\":{\"version\":\"0.8.24+commit.e11b9ed9\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"version\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"plugin\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"AerodromeUtils_ExceededMaxPriceImpact\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"AerodromeUtils_ExceededMaxSlippage\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"AerodromeUtils_ExceededMaxValueLoss\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"DeadlineExpired\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"ExecutionFailed\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"IncorrectETHAmount\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InsufficientLiquidity\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidSelector\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidVersionNumber\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"PoolDoesNotExist\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"SlippageExceeded\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UnauthorizedCaller\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"guageAddress\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"rewardToken\",\"type\":\"address\"}],\"name\":\"AeroRewardsClaimed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"poolAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"token0\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount0\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"token1\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount1\",\"type\":\"uint256\"}],\"name\":\"FeesWithdrawn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"guageAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"LPTokenStaked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"guageAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recepient\",\"type\":\"address\"}],\"name\":\"LPTokenUnStaked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenA\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenB\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountA\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountB\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"liquidity\",\"type\":\"uint256\"}],\"name\":\"LiquidityAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenA\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenB\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountA\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountB\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"liquidity\",\"type\":\"uint256\"}],\"name\":\"LiquidityRemoved\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenIn\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenOut\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountIn\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountOut\",\"type\":\"uint256\"}],\"name\":\"Swapped\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"_plugin\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"aerodromeFactory\",\"outputs\":[{\"internalType\":\"contract IPoolFactory\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"aerodromeRouter\",\"outputs\":[{\"internalType\":\"contract IRouter\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getName\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getVersion\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"tokenA\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"tokenB\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"stable\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"amountA\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountB\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"balanceTokenRatio\",\"type\":\"bool\"}],\"name\":\"quoteDepositLiquidity\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amountAOut\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountBOut\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"constructor\":{\"params\":{\"name\":\"Name of the connector\",\"version\":\"Version of the connector\"}},\"execute(bytes)\":{\"params\":{\"data\":\"The encoded parameters for the desired action\"},\"returns\":{\"_0\":\"bytes Encoded return data from the call\"}},\"getName()\":{\"returns\":{\"_0\":\"string The name of the connector\"}},\"getVersion()\":{\"returns\":{\"_0\":\"uint256 The version of the connector\"}},\"quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)\":{\"params\":{\"amountA\":\"The amount of token A being deposited\",\"amountB\":\"The amount of token B being deposited\",\"balanceTokenRatio\":\"Indicates whether to balance the token ratio with a swap\",\"stable\":\"Indicates whether the pair is a stable pair\",\"tokenA\":\"The address of token A\",\"tokenB\":\"The address of token B\"},\"returns\":{\"amountAOut\":\"The amount of token A expected to be deposited\",\"amountBOut\":\"The amount of token B expected to be deposited\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"_plugin()\":{\"notice\":\"Address of the connector plugin\"},\"constructor\":{\"notice\":\"Initializes the AerodromeConnector\"},\"execute(bytes)\":{\"notice\":\"Executes a liquidity action on Aerodrome\"},\"execute(bytes,address)\":{\"notice\":\"Allows specifying a caller (to be used by the plugin)\"},\"getName()\":{\"notice\":\"Gets the name of the connector\"},\"getVersion()\":{\"notice\":\"Gets the version of the connector\"},\"quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)\":{\"notice\":\"Quotes the expected amounts of token A and token B to deposit in a liquidity pool\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/connectors/base/aerodrome/main.sol\":\"AerodromeConnector\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"appendCBOR\":false,\"bytecodeHash\":\"none\"},\"optimizer\":{\"enabled\":true,\"runs\":1000000},\"remappings\":[\":@aerodrome/contracts/=lib/contracts/\",\":@coinbase/smart-wallet/=lib/smart-wallet/\",\":@opengsn/=lib/contracts/lib/gsn/packages/\",\":@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/\",\":@uniswap/v3-core/=lib/contracts/lib/v3-core/\",\":FreshCryptoLib/=lib/smart-wallet/lib/webauthn-sol/lib/FreshCryptoLib/solidity/src/\",\":account-abstraction/=lib/smart-wallet/lib/account-abstraction/contracts/\",\":contracts/=lib/contracts/contracts/\",\":ds-test/=lib/contracts/lib/ds-test/src/\",\":erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/\",\":forge-std/=lib/forge-std/src/\",\":gsn/=lib/contracts/lib/\",\":halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":p256-verifier/=lib/smart-wallet/lib/p256-verifier/\",\":safe-singleton-deployer-sol/=lib/smart-wallet/lib/safe-singleton-deployer-sol/\",\":smart-wallet/=lib/smart-wallet/\",\":solady/=lib/smart-wallet/lib/solady/src/\",\":utils/=lib/contracts/test/utils/\",\":v3-core/=lib/contracts/lib/v3-core/\",\":webauthn-sol/=lib/smart-wallet/lib/webauthn-sol/src/\"],\"viaIR\":true},\"sources\":{\"lib/contracts/contracts/interfaces/IPool.sol\":{\"keccak256\":\"0xb9d9fc89fe1d37370a851b85fa856f32026c93cd56084a2db7ab4c50f89b6b4f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e1ac3e07ff83ce27e641b75e129a3f057852455f209e2a98cf1f9f16bc540758\",\"dweb:/ipfs/QmQehv4Pyi4sw9m1qHNhuoxeVcYvouyFJft3LVoV2MLD7c\"]},\"lib/contracts/contracts/interfaces/IRouter.sol\":{\"keccak256\":\"0x3f27948c9630a73b69ef67c7d48f281e2a55fb7448069b74f7efc62ce8936def\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://96fa11dc0cb8f0da4b63be911aebe38eaca545c5f370479ee45bb93cfc748a07\",\"dweb:/ipfs/QmWgkipaWSvLVdtn1L4xMNEbSaRnLwzpR6e2fFWWB8n5sj\"]},\"lib/contracts/contracts/interfaces/IWETH.sol\":{\"keccak256\":\"0x6f443b30d7c2ba47ca3e0ce6344ab885c325cd223f14cd96ddba014c1033a2ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://82a174ff95c5f792522d1ef3a468ea367075b168c7a0189d8918079756670a53\",\"dweb:/ipfs/Qmejcmattr1iC4hm88Kho3jf1euSwcms9xLN7tY297hPrv\"]},\"lib/contracts/contracts/interfaces/factories/IPoolFactory.sol\":{\"keccak256\":\"0xc3a1d6e2e13a8a816abb6a591ff02c9a3972c53e67dd6cd75140291eadf8e98a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cd9eb9108c6b9c610a220636b4e2c50b3b8192c5398e52d601cf61803ca4b9a6\",\"dweb:/ipfs/QmW6taSoLHwyChGnpsyoRXJP83NkhUpatH2HTA3QVDaHHV\"]},\"lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"lib/openzeppelin-contracts/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0x5dc63d1c6a12fe1b17793e1745877b2fcbe1964c3edfd0a482fac21ca8f18261\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6b7f97c5960a50fd1822cb298551ffc908e37b7893a68d6d08bce18a11cb0f11\",\"dweb:/ipfs/QmQQvxBytoY1eBt3pRQDmvH2hZ2yjhs12YqVfzGm7KSURq\"]},\"lib/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"src/BaseConnector.sol\":{\"keccak256\":\"0xd5e83d6aaa9cd7539a274c716ccd698ebc7b7a72264177450ede92d87b6c33d6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d39dad05f3b6c5fad76579753942a179ad240996d7a05be1b3bb91be6359dc4d\",\"dweb:/ipfs/QmcxW81AdyDC7cketTi1xew5kVKWLa1Ki58RZ4AuTjFGpS\"]},\"src/connectors/base/aerodrome/events.sol\":{\"keccak256\":\"0x0569863f895832cc4f92f6ace1c3d25d52a2661a3a429ab02c4d028f0ad2a37c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://36dbfb52b77deff5d2bf5effff6bf51b188a9b44bbf8d3c07b9feed9530ec43a\",\"dweb:/ipfs/QmRD5oWBrTzYGn4Hbkr1vyh9HU6sXPqHjsLHJdwy77yWFK\"]},\"src/connectors/base/aerodrome/interface.sol\":{\"keccak256\":\"0x01554973801e9aadeda05298174b603b96e3e62ce5a59d966e29324084357971\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6dde59a4bed84b5b022c09d39c23c8063e0150fc6dad045376354f13ccaa4919\",\"dweb:/ipfs/QmU9E8awV9m4fx6923yM5TWajmRiB41TcJteovUxtfrqen\"]},\"src/connectors/base/aerodrome/main.sol\":{\"keccak256\":\"0xd41a8d330944f4f6faf950aa9f35a5deeeecb3bd1242e296f52d0abce67ffc3c\",\"license\":\"GNU\",\"urls\":[\"bzz-raw://64b2ce5fc9ee7fbec5640c339eec9367632b638101da2328af8e725a148d843c\",\"dweb:/ipfs/QmdVKT96b4ZdEMJQ4GjakLqHCape4CAywJJH9mUjWmL4ht\"]},\"src/connectors/base/aerodrome/utils.sol\":{\"keccak256\":\"0x5f81c8cca489557f2b5e2ef20d0ebfe7d460cd7b71eefc3cf0bfc6e0e74fd9f3\",\"license\":\"GNU\",\"urls\":[\"bzz-raw://2f37d56b6d03ffad53d5ba1b4d661d169f1c978e1227e3c98513a2f19190f335\",\"dweb:/ipfs/Qma3ZKQJrbzUm3bv3pSosrerrPP8amwvWV8V1h8MbBwqer\"]},\"src/connectors/base/common/constant.sol\":{\"keccak256\":\"0x5bbbb27e53700f83078838742c945c4a649a7b51554dde8b756078348e79a132\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://365e58f4d448d5f84e6ef6e2b6047849bea6c27b8d5bf44d7f55d15729519d6a\",\"dweb:/ipfs/QmRhrYNhRsjGQcWAFWMMLfdxP6YDDdpBxGSLV3QQmyaAuZ\"]},\"src/interface/IConnector.sol\":{\"keccak256\":\"0xc66c3e22372dddaba5666bfb79f5c0901e9adaf17caa7dbaf27b13cf4e96db04\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0bce2177be791674864c3fa9be62ef9fdd1f7c4f6b0e165ad3219bea3c5d6973\",\"dweb:/ipfs/QmQAKRY4eZKhrT39nHKT1W8UxyLBGwvzVXq9oW9ZoXXN1a\"]},\"src/lib/Babylonian.sol\":{\"keccak256\":\"0xadab3cc6503267d6cd5ee1d1c50d2fc6f4443916a35419d4c46ee4f270ea17a4\",\"license\":\"GPL-3.0-or-later\",\"urls\":[\"bzz-raw://a8e495ca3a3f727836182357c28f0998cebc40f842aca480b49ca34ff1113419\",\"dweb:/ipfs/QmdX7NgnduduUoVAc5XFJH9osEVweJNGV92ozUdL2GX6HZ\"]}},\"version\":1}","metadata":{"compiler":{"version":"0.8.24+commit.e11b9ed9"},"language":"Solidity","output":{"abi":[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"version","type":"uint256"},{"internalType":"address","name":"plugin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"type":"error","name":"AerodromeUtils_ExceededMaxPriceImpact"},{"inputs":[],"type":"error","name":"AerodromeUtils_ExceededMaxSlippage"},{"inputs":[],"type":"error","name":"AerodromeUtils_ExceededMaxValueLoss"},{"inputs":[],"type":"error","name":"DeadlineExpired"},{"inputs":[{"internalType":"string","name":"reason","type":"string"}],"type":"error","name":"ExecutionFailed"},{"inputs":[],"type":"error","name":"IncorrectETHAmount"},{"inputs":[],"type":"error","name":"InsufficientLiquidity"},{"inputs":[],"type":"error","name":"InvalidSelector"},{"inputs":[],"type":"error","name":"InvalidVersionNumber"},{"inputs":[],"type":"error","name":"PoolDoesNotExist"},{"inputs":[],"type":"error","name":"SlippageExceeded"},{"inputs":[],"type":"error","name":"UnauthorizedCaller"},{"inputs":[{"internalType":"address","name":"guageAddress","type":"address","indexed":true},{"internalType":"address","name":"rewardToken","type":"address","indexed":true}],"type":"event","name":"AeroRewardsClaimed","anonymous":false},{"inputs":[{"internalType":"address","name":"poolAddress","type":"address","indexed":true},{"internalType":"address","name":"token0","type":"address","indexed":false},{"internalType":"uint256","name":"amount0","type":"uint256","indexed":false},{"internalType":"address","name":"token1","type":"address","indexed":false},{"internalType":"uint256","name":"amount1","type":"uint256","indexed":false}],"type":"event","name":"FeesWithdrawn","anonymous":false},{"inputs":[{"internalType":"address","name":"guageAddress","type":"address","indexed":true},{"internalType":"uint256","name":"amount","type":"uint256","indexed":false}],"type":"event","name":"LPTokenStaked","anonymous":false},{"inputs":[{"internalType":"address","name":"guageAddress","type":"address","indexed":true},{"internalType":"uint256","name":"amount","type":"uint256","indexed":false},{"internalType":"address","name":"recepient","type":"address","indexed":true}],"type":"event","name":"LPTokenUnStaked","anonymous":false},{"inputs":[{"internalType":"address","name":"tokenA","type":"address","indexed":true},{"internalType":"address","name":"tokenB","type":"address","indexed":true},{"internalType":"uint256","name":"amountA","type":"uint256","indexed":false},{"internalType":"uint256","name":"amountB","type":"uint256","indexed":false},{"internalType":"uint256","name":"liquidity","type":"uint256","indexed":false}],"type":"event","name":"LiquidityAdded","anonymous":false},{"inputs":[{"internalType":"address","name":"tokenA","type":"address","indexed":true},{"internalType":"address","name":"tokenB","type":"address","indexed":true},{"internalType":"uint256","name":"amountA","type":"uint256","indexed":false},{"internalType":"uint256","name":"amountB","type":"uint256","indexed":false},{"internalType":"uint256","name":"liquidity","type":"uint256","indexed":false}],"type":"event","name":"LiquidityRemoved","anonymous":false},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address","indexed":true},{"internalType":"address","name":"tokenOut","type":"address","indexed":true},{"internalType":"uint256","name":"amountIn","type":"uint256","indexed":false},{"internalType":"uint256","name":"amountOut","type":"uint256","indexed":false}],"type":"event","name":"Swapped","anonymous":false},{"inputs":[],"stateMutability":"view","type":"function","name":"_plugin","outputs":[{"internalType":"address","name":"","type":"address"}]},{"inputs":[],"stateMutability":"view","type":"function","name":"aerodromeFactory","outputs":[{"internalType":"contract IPoolFactory","name":"","type":"address"}]},{"inputs":[],"stateMutability":"view","type":"function","name":"aerodromeRouter","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}]},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"stateMutability":"payable","type":"function","name":"execute","outputs":[{"internalType":"bytes","name":"","type":"bytes"}]},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"address","name":"caller","type":"address"}],"stateMutability":"payable","type":"function","name":"execute","outputs":[{"internalType":"bytes","name":"","type":"bytes"}]},{"inputs":[],"stateMutability":"view","type":"function","name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}]},{"inputs":[],"stateMutability":"view","type":"function","name":"getVersion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}]},{"inputs":[{"internalType":"address","name":"tokenA","type":"address"},{"internalType":"address","name":"tokenB","type":"address"},{"internalType":"bool","name":"stable","type":"bool"},{"internalType":"uint256","name":"amountA","type":"uint256"},{"internalType":"uint256","name":"amountB","type":"uint256"},{"internalType":"bool","name":"balanceTokenRatio","type":"bool"}],"stateMutability":"view","type":"function","name":"quoteDepositLiquidity","outputs":[{"internalType":"uint256","name":"amountAOut","type":"uint256"},{"internalType":"uint256","name":"amountBOut","type":"uint256"}]},{"inputs":[],"stateMutability":"payable","type":"receive"}],"devdoc":{"kind":"dev","methods":{"constructor":{"params":{"name":"Name of the connector","version":"Version of the connector"}},"execute(bytes)":{"params":{"data":"The encoded parameters for the desired action"},"returns":{"_0":"bytes Encoded return data from the call"}},"getName()":{"returns":{"_0":"string The name of the connector"}},"getVersion()":{"returns":{"_0":"uint256 The version of the connector"}},"quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)":{"params":{"amountA":"The amount of token A being deposited","amountB":"The amount of token B being deposited","balanceTokenRatio":"Indicates whether to balance the token ratio with a swap","stable":"Indicates whether the pair is a stable pair","tokenA":"The address of token A","tokenB":"The address of token B"},"returns":{"amountAOut":"The amount of token A expected to be deposited","amountBOut":"The amount of token B expected to be deposited"}}},"version":1},"userdoc":{"kind":"user","methods":{"_plugin()":{"notice":"Address of the connector plugin"},"constructor":{"notice":"Initializes the AerodromeConnector"},"execute(bytes)":{"notice":"Executes a liquidity action on Aerodrome"},"execute(bytes,address)":{"notice":"Allows specifying a caller (to be used by the plugin)"},"getName()":{"notice":"Gets the name of the connector"},"getVersion()":{"notice":"Gets the version of the connector"},"quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)":{"notice":"Quotes the expected amounts of token A and token B to deposit in a liquidity pool"}},"version":1}},"settings":{"remappings":["@aerodrome/contracts/=lib/contracts/","@coinbase/smart-wallet/=lib/smart-wallet/","@opengsn/=lib/contracts/lib/gsn/packages/","@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/","@uniswap/v3-core/=lib/contracts/lib/v3-core/","FreshCryptoLib/=lib/smart-wallet/lib/webauthn-sol/lib/FreshCryptoLib/solidity/src/","account-abstraction/=lib/smart-wallet/lib/account-abstraction/contracts/","contracts/=lib/contracts/contracts/","ds-test/=lib/contracts/lib/ds-test/src/","erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/","forge-std/=lib/forge-std/src/","gsn/=lib/contracts/lib/","halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/","openzeppelin-contracts/=lib/openzeppelin-contracts/","p256-verifier/=lib/smart-wallet/lib/p256-verifier/","safe-singleton-deployer-sol/=lib/smart-wallet/lib/safe-singleton-deployer-sol/","smart-wallet/=lib/smart-wallet/","solady/=lib/smart-wallet/lib/solady/src/","utils/=lib/contracts/test/utils/","v3-core/=lib/contracts/lib/v3-core/","webauthn-sol/=lib/smart-wallet/lib/webauthn-sol/src/"],"optimizer":{"enabled":true,"runs":1000000},"metadata":{"bytecodeHash":"none","appendCBOR":false},"compilationTarget":{"src/connectors/base/aerodrome/main.sol":"AerodromeConnector"},"evmVersion":"cancun","libraries":{},"viaIR":true},"sources":{"lib/contracts/contracts/interfaces/IPool.sol":{"keccak256":"0xb9d9fc89fe1d37370a851b85fa856f32026c93cd56084a2db7ab4c50f89b6b4f","urls":["bzz-raw://e1ac3e07ff83ce27e641b75e129a3f057852455f209e2a98cf1f9f16bc540758","dweb:/ipfs/QmQehv4Pyi4sw9m1qHNhuoxeVcYvouyFJft3LVoV2MLD7c"],"license":"MIT"},"lib/contracts/contracts/interfaces/IRouter.sol":{"keccak256":"0x3f27948c9630a73b69ef67c7d48f281e2a55fb7448069b74f7efc62ce8936def","urls":["bzz-raw://96fa11dc0cb8f0da4b63be911aebe38eaca545c5f370479ee45bb93cfc748a07","dweb:/ipfs/QmWgkipaWSvLVdtn1L4xMNEbSaRnLwzpR6e2fFWWB8n5sj"],"license":"MIT"},"lib/contracts/contracts/interfaces/IWETH.sol":{"keccak256":"0x6f443b30d7c2ba47ca3e0ce6344ab885c325cd223f14cd96ddba014c1033a2ec","urls":["bzz-raw://82a174ff95c5f792522d1ef3a468ea367075b168c7a0189d8918079756670a53","dweb:/ipfs/Qmejcmattr1iC4hm88Kho3jf1euSwcms9xLN7tY297hPrv"],"license":"MIT"},"lib/contracts/contracts/interfaces/factories/IPoolFactory.sol":{"keccak256":"0xc3a1d6e2e13a8a816abb6a591ff02c9a3972c53e67dd6cd75140291eadf8e98a","urls":["bzz-raw://cd9eb9108c6b9c610a220636b4e2c50b3b8192c5398e52d601cf61803ca4b9a6","dweb:/ipfs/QmW6taSoLHwyChGnpsyoRXJP83NkhUpatH2HTA3QVDaHHV"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol":{"keccak256":"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7","urls":["bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db","dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"keccak256":"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330","urls":["bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf","dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/token/ERC721/IERC721.sol":{"keccak256":"0x5dc63d1c6a12fe1b17793e1745877b2fcbe1964c3edfd0a482fac21ca8f18261","urls":["bzz-raw://6b7f97c5960a50fd1822cb298551ffc908e37b7893a68d6d08bce18a11cb0f11","dweb:/ipfs/QmQQvxBytoY1eBt3pRQDmvH2hZ2yjhs12YqVfzGm7KSURq"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol":{"keccak256":"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8","urls":["bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621","dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL"],"license":"MIT"},"src/BaseConnector.sol":{"keccak256":"0xd5e83d6aaa9cd7539a274c716ccd698ebc7b7a72264177450ede92d87b6c33d6","urls":["bzz-raw://d39dad05f3b6c5fad76579753942a179ad240996d7a05be1b3bb91be6359dc4d","dweb:/ipfs/QmcxW81AdyDC7cketTi1xew5kVKWLa1Ki58RZ4AuTjFGpS"],"license":"MIT"},"src/connectors/base/aerodrome/events.sol":{"keccak256":"0x0569863f895832cc4f92f6ace1c3d25d52a2661a3a429ab02c4d028f0ad2a37c","urls":["bzz-raw://36dbfb52b77deff5d2bf5effff6bf51b188a9b44bbf8d3c07b9feed9530ec43a","dweb:/ipfs/QmRD5oWBrTzYGn4Hbkr1vyh9HU6sXPqHjsLHJdwy77yWFK"],"license":"MIT"},"src/connectors/base/aerodrome/interface.sol":{"keccak256":"0x01554973801e9aadeda05298174b603b96e3e62ce5a59d966e29324084357971","urls":["bzz-raw://6dde59a4bed84b5b022c09d39c23c8063e0150fc6dad045376354f13ccaa4919","dweb:/ipfs/QmU9E8awV9m4fx6923yM5TWajmRiB41TcJteovUxtfrqen"],"license":"MIT"},"src/connectors/base/aerodrome/main.sol":{"keccak256":"0xd41a8d330944f4f6faf950aa9f35a5deeeecb3bd1242e296f52d0abce67ffc3c","urls":["bzz-raw://64b2ce5fc9ee7fbec5640c339eec9367632b638101da2328af8e725a148d843c","dweb:/ipfs/QmdVKT96b4ZdEMJQ4GjakLqHCape4CAywJJH9mUjWmL4ht"],"license":"GNU"},"src/connectors/base/aerodrome/utils.sol":{"keccak256":"0x5f81c8cca489557f2b5e2ef20d0ebfe7d460cd7b71eefc3cf0bfc6e0e74fd9f3","urls":["bzz-raw://2f37d56b6d03ffad53d5ba1b4d661d169f1c978e1227e3c98513a2f19190f335","dweb:/ipfs/Qma3ZKQJrbzUm3bv3pSosrerrPP8amwvWV8V1h8MbBwqer"],"license":"GNU"},"src/connectors/base/common/constant.sol":{"keccak256":"0x5bbbb27e53700f83078838742c945c4a649a7b51554dde8b756078348e79a132","urls":["bzz-raw://365e58f4d448d5f84e6ef6e2b6047849bea6c27b8d5bf44d7f55d15729519d6a","dweb:/ipfs/QmRhrYNhRsjGQcWAFWMMLfdxP6YDDdpBxGSLV3QQmyaAuZ"],"license":"MIT"},"src/interface/IConnector.sol":{"keccak256":"0xc66c3e22372dddaba5666bfb79f5c0901e9adaf17caa7dbaf27b13cf4e96db04","urls":["bzz-raw://0bce2177be791674864c3fa9be62ef9fdd1f7c4f6b0e165ad3219bea3c5d6973","dweb:/ipfs/QmQAKRY4eZKhrT39nHKT1W8UxyLBGwvzVXq9oW9ZoXXN1a"],"license":"MIT"},"src/lib/Babylonian.sol":{"keccak256":"0xadab3cc6503267d6cd5ee1d1c50d2fc6f4443916a35419d4c46ee4f270ea17a4","urls":["bzz-raw://a8e495ca3a3f727836182357c28f0998cebc40f842aca480b49ca34ff1113419","dweb:/ipfs/QmdX7NgnduduUoVAc5XFJH9osEVweJNGV92ozUdL2GX6HZ"],"license":"GPL-3.0-or-later"}},"version":1},"id":35} \ No newline at end of file +{ + "abi": [ + { + "type": "constructor", + "inputs": [ + { "name": "name", "type": "string", "internalType": "string" }, + { "name": "version", "type": "uint256", "internalType": "uint256" }, + { "name": "plugin", "type": "address", "internalType": "address" } + ], + "stateMutability": "nonpayable" + }, + { "type": "receive", "stateMutability": "payable" }, + { + "type": "function", + "name": "_plugin", + "inputs": [], + "outputs": [{ "name": "", "type": "address", "internalType": "address" }], + "stateMutability": "view" + }, + { + "type": "function", + "name": "aerodromeFactory", + "inputs": [], + "outputs": [{ "name": "", "type": "address", "internalType": "contract IPoolFactory" }], + "stateMutability": "view" + }, + { + "type": "function", + "name": "aerodromeRouter", + "inputs": [], + "outputs": [{ "name": "", "type": "address", "internalType": "contract IRouter" }], + "stateMutability": "view" + }, + { + "type": "function", + "name": "execute", + "inputs": [{ "name": "data", "type": "bytes", "internalType": "bytes" }], + "outputs": [{ "name": "", "type": "bytes", "internalType": "bytes" }], + "stateMutability": "payable" + }, + { + "type": "function", + "name": "execute", + "inputs": [ + { "name": "data", "type": "bytes", "internalType": "bytes" }, + { "name": "caller", "type": "address", "internalType": "address" } + ], + "outputs": [{ "name": "", "type": "bytes", "internalType": "bytes" }], + "stateMutability": "payable" + }, + { + "type": "function", + "name": "getName", + "inputs": [], + "outputs": [{ "name": "", "type": "string", "internalType": "string" }], + "stateMutability": "view" + }, + { + "type": "function", + "name": "getVersion", + "inputs": [], + "outputs": [{ "name": "", "type": "uint256", "internalType": "uint256" }], + "stateMutability": "view" + }, + { + "type": "function", + "name": "quoteDepositLiquidity", + "inputs": [ + { "name": "tokenA", "type": "address", "internalType": "address" }, + { "name": "tokenB", "type": "address", "internalType": "address" }, + { "name": "stable", "type": "bool", "internalType": "bool" }, + { "name": "amountA", "type": "uint256", "internalType": "uint256" }, + { "name": "amountB", "type": "uint256", "internalType": "uint256" }, + { "name": "balanceTokenRatio", "type": "bool", "internalType": "bool" } + ], + "outputs": [ + { "name": "amountAOut", "type": "uint256", "internalType": "uint256" }, + { "name": "amountBOut", "type": "uint256", "internalType": "uint256" } + ], + "stateMutability": "view" + }, + { + "type": "event", + "name": "AeroRewardsClaimed", + "inputs": [ + { "name": "guageAddress", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "rewardToken", "type": "address", "indexed": true, "internalType": "address" } + ], + "anonymous": false + }, + { + "type": "event", + "name": "FeesWithdrawn", + "inputs": [ + { "name": "poolAddress", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "token0", "type": "address", "indexed": false, "internalType": "address" }, + { "name": "amount0", "type": "uint256", "indexed": false, "internalType": "uint256" }, + { "name": "token1", "type": "address", "indexed": false, "internalType": "address" }, + { "name": "amount1", "type": "uint256", "indexed": false, "internalType": "uint256" } + ], + "anonymous": false + }, + { + "type": "event", + "name": "LPTokenStaked", + "inputs": [ + { "name": "guageAddress", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "amount", "type": "uint256", "indexed": false, "internalType": "uint256" } + ], + "anonymous": false + }, + { + "type": "event", + "name": "LPTokenUnStaked", + "inputs": [ + { "name": "guageAddress", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "amount", "type": "uint256", "indexed": false, "internalType": "uint256" }, + { "name": "recepient", "type": "address", "indexed": true, "internalType": "address" } + ], + "anonymous": false + }, + { + "type": "event", + "name": "LiquidityAdded", + "inputs": [ + { "name": "tokenA", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "tokenB", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "amountA", "type": "uint256", "indexed": false, "internalType": "uint256" }, + { "name": "amountB", "type": "uint256", "indexed": false, "internalType": "uint256" }, + { "name": "liquidity", "type": "uint256", "indexed": false, "internalType": "uint256" } + ], + "anonymous": false + }, + { + "type": "event", + "name": "LiquidityRemoved", + "inputs": [ + { "name": "tokenA", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "tokenB", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "amountA", "type": "uint256", "indexed": false, "internalType": "uint256" }, + { "name": "amountB", "type": "uint256", "indexed": false, "internalType": "uint256" }, + { "name": "liquidity", "type": "uint256", "indexed": false, "internalType": "uint256" } + ], + "anonymous": false + }, + { + "type": "event", + "name": "Swapped", + "inputs": [ + { "name": "tokenIn", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "tokenOut", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "amountIn", "type": "uint256", "indexed": false, "internalType": "uint256" }, + { "name": "amountOut", "type": "uint256", "indexed": false, "internalType": "uint256" } + ], + "anonymous": false + }, + { "type": "error", "name": "AerodromeUtils_ExceededMaxPriceImpact", "inputs": [] }, + { "type": "error", "name": "AerodromeUtils_ExceededMaxSlippage", "inputs": [] }, + { "type": "error", "name": "AerodromeUtils_ExceededMaxValueLoss", "inputs": [] }, + { "type": "error", "name": "DeadlineExpired", "inputs": [] }, + { "type": "error", "name": "ExecutionFailed", "inputs": [{ "name": "reason", "type": "string", "internalType": "string" }] }, + { "type": "error", "name": "IncorrectETHAmount", "inputs": [] }, + { "type": "error", "name": "InsufficientLiquidity", "inputs": [] }, + { "type": "error", "name": "InvalidSelector", "inputs": [] }, + { "type": "error", "name": "InvalidVersionNumber", "inputs": [] }, + { "type": "error", "name": "PoolDoesNotExist", "inputs": [] }, + { "type": "error", "name": "SlippageExceeded", "inputs": [] }, + { "type": "error", "name": "UnauthorizedCaller", "inputs": [] } + ], + "bytecode": { + "object": "0x610120604052346200018057620040c8803803806200001e81620001ac565b928339810190606081830312620001805780516001600160401b0392908381116200018057820181601f8201121562000180578051938411620001985760209362000072601f8201601f19168601620001ac565b92818452858284010111620001805784915f5b828110620001845750505f908301909101528183015160409290920151926001600160a01b0384168403620001805782156200016e57815191012060805260a05260c05273cf77a3ba9a5ca399b7c97c74d54e5b1beb874e4360e05261010073420dd381b31aef6683db6b902084cb0ffece40da8152604051613ef59182620001d383396080518261060c015260a05182610672015260c0518281816106df0152610912015260e0518281816104ce01528181611476015281816115140152818161167e01528181611db0015261213a01525181818161053c01528181610aa40152611cca0152f35b60405163ad92452760e01b8152600490fd5b5f80fd5b818101840151858201850152830162000085565b634e487b7160e01b5f52604160045260245ffd5b6040519190601f01601f191682016001600160401b03811183821017620001985760405256fe6101a0604052600436101561001b575b3615610019575f80fd5b005b5f3560e01c806309c5eabe146107035780630cfd9ad4146106955780630d8e6e2c1461063d57806317d7de7c146105d65780636accdc1314610560578063c45acd23146104f2578063e18e3a68146104845763e69224d40361000f57346104805760c07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805773ffffffffffffffffffffffffffffffffffffffff6004351660043503610480576100cf6107e4565b6044351515604435036104805760a435151560a43503610480576040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff60048035821690830152821660248201526044803515159082015260843590606480359060209083908173420dd381b31aef6683db6b902084cb0ffece40da5afa9182156102b35773ffffffffffffffffffffffffffffffffffffffff926020915f91610463575b506004604051809581937fc45a0155000000000000000000000000000000000000000000000000000000008352165afa9182156102b3575f92610432575b505f925f915b600283106102be575b5050604080517fc92de3ec00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff60048035821690830152958616602482015260448035151590820152949092166064850152506084830191909152818060a48101038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b3576040915f915f91610284575b5082519182526020820152f35b90506102a69150823d84116102ac575b61029e81836108ca565b810190612cdd565b5f610277565b503d610294565b6040513d5f823e3d90fd5b60a4949192943561040d575b604051907fce700c2900000000000000000000000000000000000000000000000000000000825273ffffffffffffffffffffffffffffffffffffffff60043516600483015273ffffffffffffffffffffffffffffffffffffffff871660248301526044351515604483015273ffffffffffffffffffffffffffffffffffffffff851660648301528060848301528360a483015260608260c48173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa80156102b3576103a9925f80915f936103d2575b5061039d906103a39394612be6565b95612be6565b92612d0e565b93604435156044356103c8575b6103c357600101916101d0565b6101d9565b5060a435156103b6565b6103a3935061039d92506103fe915060603d606011610406575b6103f681836108ca565b810190612cf3565b93509161038e565b503d6103ec565b61042b919261042360443582848a60043561358d565b919092613438565b91906102ca565b61045591925060203d60201161045c575b61044d81836108ca565b810190612b2c565b905f6101ca565b503d610443565b61047a9150823d841161045c5761044d81836108ca565b5f61018c565b5f80fd5b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760043567ffffffffffffffff8111610480576105be6105b06105d292369060040161075a565b6105b86107e4565b9161090b565b604051918291602083526020830190610788565b0390f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610480576105d26040517f00000000000000000000000000000000000000000000000000000000000000006020820152602081526105be81610892565b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b60207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760043567ffffffffffffffff8111610480576105be6107536105d292369060040161075a565b339161090b565b9181601f840112156104805782359167ffffffffffffffff8311610480576020838186019501011161048057565b91908251928382525f5b8481106107d05750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f845f6020809697860101520116010190565b602081830181015184830182015201610792565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361048057565b359073ffffffffffffffffffffffffffffffffffffffff8216820361048057565b3590811515820361048057565b67ffffffffffffffff811161084957604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6080810190811067ffffffffffffffff82111761084957604052565b6040810190811067ffffffffffffffff82111761084957604052565b6060810190811067ffffffffffffffff82111761084957604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761084957604052565b915f9190337f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1603612b2457915b816004116104805783357fffffffff00000000000000000000000000000000000000000000000000000000167f5a47ddc3000000000000000000000000000000000000000000000000000000008103611ba757505f925f946101407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc825f968101030112610480576109e260048201610807565b610180526109f260248201610807565b61014052610a0260448201610828565b90610a0f60e48201610828565b610a1c6101048301610807565b906101248301354211611b7d576040517f79bc57d5000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff90811660048401521660248201528415156044820152906020828060648101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa9182156102b3575f92611b5c575b5073ffffffffffffffffffffffffffffffffffffffff821615611b32575f60648501356119cf575b6084850135611816575b5091610b1182612d1b565b92606485013560a0526084850135610160525f610120525b60026101205110611441575b5050610b4090612d1b565b818082111561143257610b5291612be6565b61271081029080820461271014901517156112e757606491610b7391613494565b11611408576040517f79bc57d5000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff908116600484015216602482015282151560448201529060208260648173420dd381b31aef6683db6b902084cb0ffece40da5afa9182156102b35773ffffffffffffffffffffffffffffffffffffffff926020915f916113eb575b506004604051809581937fc45a0155000000000000000000000000000000000000000000000000000000008352165afa9182156102b3575f926113ca575b50604080517fc92de3ec000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff908116600484015290811660248301528515156044830152841660648201526084810188905291908260a48173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9384156102b3575f925f956113a3575b5060a482013583108015611396575b61136c5773ffffffffffffffffffffffffffffffffffffffff610d1c612dd9565b9460405192610d2a84610876565b8261014051168452826101805116602085015215156040840152166060820152610d5384612b88565b52610d5d83612b88565b50604051927f5509a1ac00000000000000000000000000000000000000000000000000000000845260848201356004850152604060248501525f8480610da66044820185612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b357610e2c610ded610de25f94610e6d988691611352575b50612bc2565b516064860135612d0e565b9685606486013511841461134b57610e09866064870135612be6565b945b81806084830135118614611342576084610e26920135612be6565b90612d0e565b60405195869283927f5509a1ac0000000000000000000000000000000000000000000000000000000084526004840152604060248401526044830190612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9182156102b357610eb3935f93611314575b50610eac91610ea691612d0e565b91612bc2565b5190612d0e565b818110611286575b505060a051611134575b61016051610fa2575b505090610f73610f9f9260405173ffffffffffffffffffffffffffffffffffffffff6101405116907f4a1a2a6176e9646d9e3157f7c2ab3c499f18337c0b0828cfb28e0a61de4a11f773ffffffffffffffffffffffffffffffffffffffff61018051169180610f50868b8a846040919493926060820195825260208201520152565b0390a3604051948593602085016040919493926060820195825260208201520152565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352826108ca565b90565b7342000000000000000000000000000000000000068073ffffffffffffffffffffffffffffffffffffffff6101405116145f1461107957803b15611075578280916024604051809481937f2e1a7d4d0000000000000000000000000000000000000000000000000000000083526101605160048401525af1801561106a57611052575b509161104b828080610f7395610f9f989761016051905af16110456134cb565b50613528565b9192610ece565b61105c8391610835565b611066575f611025565b5080fd5b6040513d85823e3d90fd5b8280fd5b506040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526101605173ffffffffffffffffffffffffffffffffffffffff9283166004830152602482015261014051909291602091849160449183918691165af1908115611128575091610f7391610f9f94936110f9575b5061104b565b61111a9060203d602011611121575b61111281836108ca565b810190612b58565b505f6110f3565b503d611108565b604051903d90823e3d90fd5b7342000000000000000000000000000000000000068073ffffffffffffffffffffffffffffffffffffffff6101805116145f146111e457803b15610480575f80916024604051809481937f2e1a7d4d00000000000000000000000000000000000000000000000000000000835260a05160048401525af180156102b3576111d1575b506111cc8280808060a051865af16110456134cb565b610ec5565b6111dc919250610835565b5f905f6111b6565b506040517fa9059cbb00000000000000000000000000000000000000000000000000000000815260a05173ffffffffffffffffffffffffffffffffffffffff831660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61018051165af180156102b357611267575b50610ec5565b61127f9060203d6020116111215761111281836108ca565b505f611261565b6112909082612be6565b61271081029080820461271014901517156112e75760c8916112b191613494565b116112bd575f80610ebb565b60046040517ffe3cf204000000000000000000000000000000000000000000000000000000008152fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b610ea691935091611339610eac933d805f833e61133181836108ca565b810190612bf3565b93915091610e98565b50508390612d0e565b8394610e0b565b61136691503d8088833e61133181836108ca565b5f610ddc565b60046040517fc990cf68000000000000000000000000000000000000000000000000000000008152fd5b5060c48201358510610cfb565b9094506113c091925060403d6040116102ac5761029e81836108ca565b919091935f610cec565b6113e491925060203d60201161045c5761044d81836108ca565b905f610c54565b6114029150823d841161045c5761044d81836108ca565b5f610c16565b60046040517fd0bcb760000000000000000000000000000000000000000000000000000000008152fd5b9061143c91612be6565b610b52565b90979998816117b7575b6040517f095ea7b300000000000000000000000000000000000000000000000000000000815260a0517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61018051165af180156102b357611798575b506040517f095ea7b3000000000000000000000000000000000000000000000000000000008152610160517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61014051165af180156102b357611779575b50604051610100527f5a47ddc300000000000000000000000000000000000000000000000000000000610100515273ffffffffffffffffffffffffffffffffffffffff6101805116600461010051015273ffffffffffffffffffffffffffffffffffffffff61014051166024610100510152851515604461010051015260a05160646101005101526101605160846101005101525f60a46101005101525f60c461010051015273ffffffffffffffffffffffffffffffffffffffff891660e4610100510152610124850135610104610100510152606061010051610124610100515f73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165af160e05260e051156102b357611705905f6080525f60c0525f9060e051611730575b6116f56116ff916116d660805160a051612be6565b60a0526116e860c05161016051612be6565b6101605260805190612d0e565b9b60c05190612d0e565b9b612d0e565b97851586611728575b61172357600161012051016101205290610b29565b610b35565b50811561170e565b905060603d606011611772575b6116f5611762826117546116ff94610100516108ca565b610100510161010051612cf3565b9160805260c052929150506116c1565b503d61173d565b6117919060203d6020116111215761111281836108ca565b505f611585565b6117b09060203d6020116111215761111281836108ca565b505f6114e7565b61180a6117fe876101605160a05173ffffffffffffffffffffffffffffffffffffffff610140511673ffffffffffffffffffffffffffffffffffffffff6101805116612e30565b6101605160a051613438565b6101605260a05261144b565b73420000000000000000000000000000000000000673ffffffffffffffffffffffffffffffffffffffff610140511614806119c6575b1561191a57608485013534036118f0577342000000000000000000000000000000000000063b156118e2576040517fd0e30db00000000000000000000000000000000000000000000000000000000081528181600481347342000000000000000000000000000000000000065af180156118e5576118ce575b50505b5f610b06565b6118d88291610835565b6118e257806118c5565b80fd5b6040513d84823e3d90fd5b60046040517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff881660048201523060248201526084860135604482015290602082806064810103818473ffffffffffffffffffffffffffffffffffffffff61014051165af190811561112857506119a7575b506118c8565b6119bf9060203d6020116111215761111281836108ca565b505f6119a1565b5034151561184c565b73420000000000000000000000000000000000000673ffffffffffffffffffffffffffffffffffffffff61018051161480611b29575b15611a9557606485013534036118f0577342000000000000000000000000000000000000063b15610480576040517fd0e30db00000000000000000000000000000000000000000000000000000000081525f81600481347342000000000000000000000000000000000000065af180156102b357611a84575b50610afc565b611a8e9150610835565b5f80611a7e565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015230602483015260648781013560448401526101805160209284929183915f91165af180156102b357611b0a5750610afc565b611b229060203d6020116111215761111281836108ca565b505f611a7e565b50341515611a05565b60046040517f9c8787c0000000000000000000000000000000000000000000000000000000008152fd5b611b7691925060203d60201161045c5761044d81836108ca565b905f610ad4565b60046040517f1ab7da6b000000000000000000000000000000000000000000000000000000008152fd5b90507f0dede6c4000000000000000000000000000000000000000000000000000000008103611fe157507ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8361010092810103011261048057611c0c60048301610807565b91611c1960248201610807565b91611c2660448301610828565b93611c3360c48401610807565b73ffffffffffffffffffffffffffffffffffffffff60e4850135921692824211611b7d576040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048301528716602482015287151560448201526020818060648101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa80156102b35773ffffffffffffffffffffffffffffffffffffffff915f91611fc2575b5016968715611b32576040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff92909216600483015230602483015260648681013560448401526020908390815f8c5af19182156102b357611e0b92611fa3575b506040517f095ea7b30000000000000000000000000000000000000000000000000000000081527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166004820181905260648801356024830152989092602091849182905f9082906044820190565b03925af180156102b35773ffffffffffffffffffffffffffffffffffffffff98604095610104945f93611f84575b5086519a8b9687957f0dede6c40000000000000000000000000000000000000000000000000000000087528a6004880152828d1660248801521515604487015260648b0135606487015260848b0135608487015260a48b013560a48701521660c485015260e48401525af19283156102b3575f945f94611f26575b506040805186815260208101869052606494909401359084015273ffffffffffffffffffffffffffffffffffffffff16917fbc7d19d505c7ec4db83f3b51f19fb98c4c8a99922e7839d1ee608dfbee29501b90606090a3604051916020830152604082015260408152610f9f816108ae565b73ffffffffffffffffffffffffffffffffffffffff95507fbc7d19d505c7ec4db83f3b51f19fb98c4c8a99922e7839d1ee608dfbee29501b919450611f799060403d6040116102ac5761029e81836108ca565b959095949150611eb4565b611f9c9060203d6020116111215761111281836108ca565b505f611e39565b611fbb9060203d6020116111215761111281836108ca565b505f611d87565b611fdb915060203d60201161045c5761044d81836108ca565b5f611d0f565b9293927fcac88ea90000000000000000000000000000000000000000000000000000000092919083810361282c5750840160a07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc86830301126104805760048501359160248087013593604488013567ffffffffffffffff811161048057880194846023870112156104805760048601359661207c88612b70565b9660409861208c8a51998a6108ca565b80895260209786898b019260071b84010192818411610480578701915b8383106127cc575050505060846120c260648c01610807565b9a0135928342116127a35773ffffffffffffffffffffffffffffffffffffffff6120eb89612b88565b515116955f8083612658575b6124fe575b505088517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166004820181905260248201839052929088816044815f8c5af180156124f4576124d7575b5088519b8c957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8097019d8e116124ab578a5f8d9e9f8c839f9d9e73ffffffffffffffffffffffffffffffffffffffff926121d891612bd2565b510151169b8a61221e825194859384937f5509a1ac0000000000000000000000000000000000000000000000000000000085528b60048601528401526044830190612c6d565b0381895afa9081156124a1575f91612487575b5080519088820191821161245b57879161224a91612bd2565b5110612432578c519b8c9485948552600485015286898501526044840160a0905260a4840161227891612c6d565b9173ffffffffffffffffffffffffffffffffffffffff166064840152608483015203815a5f948591f1968715612428575f9761240c575b5086518281019081116123e0576122c69088612bd2565b51106123b7576122d586612b88565b5191865191820191821161238c5750957fa078c4190abe07940190effc1846be0ccf03ad6007bc9e93f9697d0b460befbb916123148798839798612bd2565b51825191825287820152a3805192839182018380840152815180915283606084019201935f5b82811061237557505050610f9f9250037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352826108ca565b85518452948101948694509281019260010161233a565b7f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b600487517f8199f5f3000000000000000000000000000000000000000000000000000000008152fd5b837f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b6124219197503d805f833e61133181836108ca565b955f6122af565b88513d5f823e3d90fd5b60048d517f8199f5f3000000000000000000000000000000000000000000000000000000008152fd5b897f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b61249b91503d805f833e61133181836108ca565b5f612231565b8e513d5f823e3d90fd5b877f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b6124ed90893d8b116111215761111281836108ca565b505f61217e565b8b513d5f823e3d90fd5b88818061264f575b156125bc575090503461259357734200000000000000000000000000000000000006803b1561106657816004918c51928380927fd0e30db000000000000000000000000000000000000000000000000000000000825234905af1801561258957612575575b50505b5f806120fc565b61257f8291610835565b6118e2578061256b565b8b513d84823e3d90fd5b60048a517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b8b517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff939093166004840152306024840152604483018290528260648184805af19081156126445750612627575b5061256e565b61263d90883d8a116111215761111281836108ca565b505f612621565b8b51903d90823e3d90fd5b50341515612506565b507342000000000000000000000000000000000000068089148061279a575b15612711578334036126e857803b15610480575f6004918d51928380927fd0e30db000000000000000000000000000000000000000000000000000000000825234905af180156126de576126cd575b50806120f7565b6126d79150610835565b5f806126c6565b8c513d5f823e3d90fd5b60048c517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b508a517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831660048201523060248201526044810184905289816064815f8d5af180156126de5790829161277d575b506120f7565b612793908b3d8d116111215761111281836108ca565b505f612777565b50341515612677565b600489517f1ab7da6b000000000000000000000000000000000000000000000000000000008152fd5b60808383031261048057896080918d8051906127e782610876565b6127f087610807565b82526127fd848801610807565b8483015261280c818801610828565b90820152606061281d818801610807565b908201528152019201916120a9565b9394937f6e553f6500000000000000000000000000000000000000000000000000000000935083146128825760046040517f7352d91c000000000000000000000000000000000000000000000000000000008152fd5b83907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc604092839281010301126104805773ffffffffffffffffffffffffffffffffffffffff60246128d660048701610807565b95013594168151937f72f702f30000000000000000000000000000000000000000000000000000000085526020948581600481865afa908115612ad6579073ffffffffffffffffffffffffffffffffffffffff915f91612b07575b5084517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff871660048201523060248201526044810189905291169086816064815f865af18015612afd57612ae0575b5083517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416600482015260248101889052908690829060449082905f905af18015612ad657612ab9575b50813b156104805782519081526004810186905273ffffffffffffffffffffffffffffffffffffffff841660248201525f8160448183865af18015612aaf5791610f739391610f9f969593612aa0575b507ffa2529c0b8e878c5cfbd265efb60d6c35f0ba5ad1132da46b8bde097baac8a49858351898152a251948593840190929173ffffffffffffffffffffffffffffffffffffffff6020916040840195845216910152565b612aa990610835565b5f612a49565b83513d5f823e3d90fd5b612acf90863d88116111215761111281836108ca565b505f6129f9565b84513d5f823e3d90fd5b612af690873d89116111215761111281836108ca565b505f612997565b85513d5f823e3d90fd5b612b1e9150873d891161045c5761044d81836108ca565b5f612931565b50339161094e565b90816020910312610480575173ffffffffffffffffffffffffffffffffffffffff811681036104805790565b90816020910312610480575180151581036104805790565b67ffffffffffffffff81116108495760051b60200190565b805115612b955760200190565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b805160011015612b955760400190565b8051821015612b955760209160051b010190565b919082039182116112e757565b60209081818403126104805780519067ffffffffffffffff821161048057019180601f84011215610480578251612c2981612b70565b93612c3760405195866108ca565b818552838086019260051b820101928311610480578301905b828210612c5e575050505090565b81518152908301908301612c50565b9081518082526020808093019301915f5b828110612c8c575050505090565b8351805173ffffffffffffffffffffffffffffffffffffffff908116875281840151811687850152604080830151151590880152606091820151169086015260809094019392810192600101612c7e565b9190826040910312610480576020825192015190565b90816060910312610480578051916040602083015192015190565b919082018092116112e757565b606073ffffffffffffffffffffffffffffffffffffffff916004604051809481937f0902f1ac000000000000000000000000000000000000000000000000000000008352165afa80156102b357610f9f915f905f92612d7b575b50613a63565b9050612d96915060603d606011610406576103f681836108ca565b50905f612d75565b90816020910312610480575160ff811681036104805790565b60ff166012039060ff82116112e757565b60ff16604d81116112e757600a0a90565b60409060405191612de983610892565b6001835282915f5b602080821015612e2857835160209291612e0a82610876565b5f82525f818301525f868301525f6060830152828801015201612df1565b505091925050565b9493909291946040517f313ce567000000000000000000000000000000000000000000000000000000009081815260208160048173ffffffffffffffffffffffffffffffffffffffff87165afa9081156102b357612e9e91612e99915f91613409575b50612db7565b612dc8565b9060405190815260208160048173ffffffffffffffffffffffffffffffffffffffff8a165afa9081156102b357612edf91612e99915f916134095750612db7565b96604051947fd4b6846d00000000000000000000000000000000000000000000000000000000865260208660048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9586156102b357612fa0966040915f916133ea575b5081517f8c0037dc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8088166004830152808b1660248301528815156044830152909116606482015296879081906084820190565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9889156102b3575f965f9a6133c3575b506040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff86811660048301528916602482015286151560448201529260208460648173420dd381b31aef6683db6b902084cb0ffece40da5afa80156102b357876020916130a7965f916133a6575b506040517fcc56b2c500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152901515602482015294859081906044820190565b038173420dd381b31aef6683db6b902084cb0ffece40da5afa9283156102b35787945f9461336f575b5081613347575f985b899c8a155f1461333657906130f19794939291613bba565b925b83156133145750613102612dd9565b91861561330d57815b87156133075785905b604051967fd4b6846d00000000000000000000000000000000000000000000000000000000885260208860048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9485156102b35773ffffffffffffffffffffffffffffffffffffffff60209681966044965f9c8d936132e6575b508390816040519661319688610876565b1686521689850152151560408401521660608201526131b487612b88565b526131be86612b88565b508988146132df57505b60405196879384927f095ea7b300000000000000000000000000000000000000000000000000000000845273cf77a3ba9a5ca399b7c97c74d54e5b1beb874e436004850152886024850152165af19182156102b357613270935f936132c0575b5060405193849283927fcac88ea9000000000000000000000000000000000000000000000000000000008452600484015284602484015260a0604484015260a4830190612c6d565b30606483015242608483015203818373cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435af19081156102b3575f916132a857509190565b6132bc91503d805f833e61133181836108ca565b9190565b6132d89060203d6020116111215761111281836108ca565b505f613228565b90506131c8565b84919350613300908b3d8d1161045c5761044d81836108ca565b9290613185565b80613114565b849161310b565b955050505050604051613326816108ae565b6002815260403660208301379190565b613341979391613bba565b926130f3565b806133555760015b986130d9565b61335f8183613a63565b6133698d8b613a63565b1061334f565b945092506020843d60201161339e575b8161338c602093836108ca565b8101031261048057869351925f6130d0565b3d915061337f565b6133bd9150833d851161045c5761044d81836108ca565b5f61304f565b9099506133e091965060403d6040116102ac5761029e81836108ca565b959095985f612fc9565b613403915060203d60201161045c5761044d81836108ca565b5f612f39565b61342b915060203d602011613431575b61342381836108ca565b810190612d9e565b5f612e93565b503d613419565b9293929091156134635790610eac61345d610f9f9361345687612b88565b5190612be6565b94612bc2565b610eac61347861347e93613456879697612b88565b93612bc2565b91565b818102929181159184041417156112e757565b811561349e570490565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b3d15613523573d9067ffffffffffffffff8211610849576040519161351860207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601846108ca565b82523d5f602084013e565b606090565b1561352f57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f455448207472616e73666572206661696c6564000000000000000000000000006044820152fd5b919493926040517f313ce567000000000000000000000000000000000000000000000000000000009081815260208160048173ffffffffffffffffffffffffffffffffffffffff89165afa9081156102b3576135f391612e99915f916134095750612db7565b9060405190815260208160048173ffffffffffffffffffffffffffffffffffffffff88165afa9081156102b35761363491612e99915f916134095750612db7565b96604051927fd4b6846d00000000000000000000000000000000000000000000000000000000845260208460048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9384156102b3576136f5946040915f91613a44575b5081517f8c0037dc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff808a16600483015280891660248301528a15156044830152909116606482015294859081906084820190565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9889156102b3575f945f9a613a1d575b506040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff88811660048301528716602482015288151560448201529260208460648173420dd381b31aef6683db6b902084cb0ffece40da5afa80156102b357896020916137fb965f916133a657506040517fcc56b2c500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152901515602482015294859081906044820190565b038173420dd381b31aef6683db6b902084cb0ffece40da5afa9283156102b35789945f946139e6575b50816139be575f965b879c88155f146139ad57906138459794939291613bba565b905b81156133145750613856612dd9565b9186156139a657835b871561399e5750925b6040517fd4b6846d00000000000000000000000000000000000000000000000000000000815260208160048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa80156102b357613950965f9673ffffffffffffffffffffffffffffffffffffffff93889361397b575b50839081604051966138e588610876565b1686521660208501521515604084015216606082015261390483612b88565b5261390e82612b88565b5060405193849283927f5509a1ac0000000000000000000000000000000000000000000000000000000084526004840152604060248401526044830190612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b3575f916132a857509190565b849193506139979060203d60201161045c5761044d81836108ca565b92906138d4565b905092613868565b809361385f565b6139b8979391613bba565b90613847565b806139cc5760015b9661382d565b6139d68183613a63565b6139e08d89613a63565b106139c6565b945092506020843d602011613a15575b81613a03602093836108ca565b8101031261048057889351925f613824565b3d91506139f6565b909950613a3a91945060403d6040116102ac5761029e81836108ca565b939093985f61371e565b613a5d915060203d60201161045c5761044d81836108ca565b5f61368e565b906b033b2e3c9fd0803ce8000000907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8284099282810292838086109503948086039514613bac5784831115610480578291098119600181018091116112e757613ae090831680930494600184805f030401908584119003613481565b9203041781600302916003830481036112e7576002809318613b028183613481565b84038481116112e757613b1491613481565b613b1e8183613481565b84038481116112e757613b3091613481565b613b3a8183613481565b84038481116112e757613b4c91613481565b613b568183613481565b84038481116112e757613b6891613481565b613b728183613481565b8403908482116112e757613b9091613b8991613481565b8092613481565b83039283116112e757610f9f92613ba691613481565b90613481565b505080925015610480570490565b94613be381613bdd87613bd781613be997999d989b9c9a9c613481565b99613481565b95613481565b97613481565b92670de0b6b3a76400009384613bff878a613481565b049185613c1881613c108a86613481565b04968b613481565b049315613c575750505090613c2c91612be6565b8181029181830414901517156112e757613c4c613c5292610f9f95612d0e565b90613494565b613494565b601e919492959650145f14613d1857613c708185612d0e565b91623cda2985810290810486036112e757826009026009810484036112e757613c9891612d0e565b90623cda2090808202918204036112e757613cc893613ba6613cbd92613cc294612d0e565b613da8565b93612d0e565b916107cd92808402938404036112e757613ceb92613ce591612be6565b94612d0e565b926107ca93808502948504036112e7578181029181830414901517156112e757610f9f92613c5291613494565b613d228185612d0e565b91619ab185810290810486036112e75782613d3c91612d0e565b90619ab090808202918204036112e757613d6093613ba6613cbd92613cc294612d0e565b918260c7029260c78404036112e757613d7c92613ce591612be6565b928360c6029360c68504036112e7578181029181830414901517156112e757610f9f92613c5291613494565b8015613ef057806001700100000000000000000000000000000000831015613eda575b60048268010000000000000000613e82941015613ecd575b640100000000811015613ec0575b62010000811015613eb3575b610100811015613ea7575b6010811015613e9b575b1015613e93575b613e238184613494565b0160011c613e318184613494565b0160011c613e3f8184613494565b0160011c613e4d8184613494565b0160011c613e5b8184613494565b0160011c613e698184613494565b0160011c613e778184613494565b0160011c8092613494565b80821015613e8e575090565b905090565b60011b613e19565b811c9160021b91613e12565b60081c91811b91613e08565b60101c9160081b91613dfd565b60201c9160101b91613df1565b60401c9160201b91613de3565b5050608081901c68010000000000000000613dcb565b505f9056", + "sourceMap": "585:11320:35:-:0;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;585:11320:35;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;-1:-1:-1;;;585:11320:35;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;585:11320:35;;;;;;880:13:30;;876:48;;585:11320:35;;;;943:23:30;935:31;;976:19;;1005:17;;768:42:37;1278:43:35;;1331:50;862:42:37;1331:50:35;;585:11320;;;;;;;;935:31:30;585:11320:35;;;;;976:19:30;585:11320:35;;;;;1005:17:30;585:11320:35;;;;;;;;;;1278:43;585:11320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;876:48:30;585:11320:35;;-1:-1:-1;;;902:22:30;;;;;585:11320:35;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;-1:-1:-1;585:11320:35;;;;;;;;-1:-1:-1;;585:11320:35;;;-1:-1:-1;;;;;585:11320:35;;;;;;;;;;:::o", + "linkReferences": {} + }, + "deployedBytecode": { + "object": "0x6101a0604052600436101561001b575b3615610019575f80fd5b005b5f3560e01c806309c5eabe146107035780630cfd9ad4146106955780630d8e6e2c1461063d57806317d7de7c146105d65780636accdc1314610560578063c45acd23146104f2578063e18e3a68146104845763e69224d40361000f57346104805760c07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805773ffffffffffffffffffffffffffffffffffffffff6004351660043503610480576100cf6107e4565b6044351515604435036104805760a435151560a43503610480576040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff60048035821690830152821660248201526044803515159082015260843590606480359060209083908173420dd381b31aef6683db6b902084cb0ffece40da5afa9182156102b35773ffffffffffffffffffffffffffffffffffffffff926020915f91610463575b506004604051809581937fc45a0155000000000000000000000000000000000000000000000000000000008352165afa9182156102b3575f92610432575b505f925f915b600283106102be575b5050604080517fc92de3ec00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff60048035821690830152958616602482015260448035151590820152949092166064850152506084830191909152818060a48101038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b3576040915f915f91610284575b5082519182526020820152f35b90506102a69150823d84116102ac575b61029e81836108ca565b810190612cdd565b5f610277565b503d610294565b6040513d5f823e3d90fd5b60a4949192943561040d575b604051907fce700c2900000000000000000000000000000000000000000000000000000000825273ffffffffffffffffffffffffffffffffffffffff60043516600483015273ffffffffffffffffffffffffffffffffffffffff871660248301526044351515604483015273ffffffffffffffffffffffffffffffffffffffff851660648301528060848301528360a483015260608260c48173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa80156102b3576103a9925f80915f936103d2575b5061039d906103a39394612be6565b95612be6565b92612d0e565b93604435156044356103c8575b6103c357600101916101d0565b6101d9565b5060a435156103b6565b6103a3935061039d92506103fe915060603d606011610406575b6103f681836108ca565b810190612cf3565b93509161038e565b503d6103ec565b61042b919261042360443582848a60043561358d565b919092613438565b91906102ca565b61045591925060203d60201161045c575b61044d81836108ca565b810190612b2c565b905f6101ca565b503d610443565b61047a9150823d841161045c5761044d81836108ca565b5f61018c565b5f80fd5b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760043567ffffffffffffffff8111610480576105be6105b06105d292369060040161075a565b6105b86107e4565b9161090b565b604051918291602083526020830190610788565b0390f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610480576105d26040517f00000000000000000000000000000000000000000000000000000000000000006020820152602081526105be81610892565b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b34610480575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261048057602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b60207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104805760043567ffffffffffffffff8111610480576105be6107536105d292369060040161075a565b339161090b565b9181601f840112156104805782359167ffffffffffffffff8311610480576020838186019501011161048057565b91908251928382525f5b8481106107d05750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f845f6020809697860101520116010190565b602081830181015184830182015201610792565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361048057565b359073ffffffffffffffffffffffffffffffffffffffff8216820361048057565b3590811515820361048057565b67ffffffffffffffff811161084957604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6080810190811067ffffffffffffffff82111761084957604052565b6040810190811067ffffffffffffffff82111761084957604052565b6060810190811067ffffffffffffffff82111761084957604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761084957604052565b915f9190337f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1603612b2457915b816004116104805783357fffffffff00000000000000000000000000000000000000000000000000000000167f5a47ddc3000000000000000000000000000000000000000000000000000000008103611ba757505f925f946101407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc825f968101030112610480576109e260048201610807565b610180526109f260248201610807565b61014052610a0260448201610828565b90610a0f60e48201610828565b610a1c6101048301610807565b906101248301354211611b7d576040517f79bc57d5000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff90811660048401521660248201528415156044820152906020828060648101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa9182156102b3575f92611b5c575b5073ffffffffffffffffffffffffffffffffffffffff821615611b32575f60648501356119cf575b6084850135611816575b5091610b1182612d1b565b92606485013560a0526084850135610160525f610120525b60026101205110611441575b5050610b4090612d1b565b818082111561143257610b5291612be6565b61271081029080820461271014901517156112e757606491610b7391613494565b11611408576040517f79bc57d5000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff908116600484015216602482015282151560448201529060208260648173420dd381b31aef6683db6b902084cb0ffece40da5afa9182156102b35773ffffffffffffffffffffffffffffffffffffffff926020915f916113eb575b506004604051809581937fc45a0155000000000000000000000000000000000000000000000000000000008352165afa9182156102b3575f926113ca575b50604080517fc92de3ec000000000000000000000000000000000000000000000000000000008152610140516101805173ffffffffffffffffffffffffffffffffffffffff908116600484015290811660248301528515156044830152841660648201526084810188905291908260a48173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9384156102b3575f925f956113a3575b5060a482013583108015611396575b61136c5773ffffffffffffffffffffffffffffffffffffffff610d1c612dd9565b9460405192610d2a84610876565b8261014051168452826101805116602085015215156040840152166060820152610d5384612b88565b52610d5d83612b88565b50604051927f5509a1ac00000000000000000000000000000000000000000000000000000000845260848201356004850152604060248501525f8480610da66044820185612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b357610e2c610ded610de25f94610e6d988691611352575b50612bc2565b516064860135612d0e565b9685606486013511841461134b57610e09866064870135612be6565b945b81806084830135118614611342576084610e26920135612be6565b90612d0e565b60405195869283927f5509a1ac0000000000000000000000000000000000000000000000000000000084526004840152604060248401526044830190612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9182156102b357610eb3935f93611314575b50610eac91610ea691612d0e565b91612bc2565b5190612d0e565b818110611286575b505060a051611134575b61016051610fa2575b505090610f73610f9f9260405173ffffffffffffffffffffffffffffffffffffffff6101405116907f4a1a2a6176e9646d9e3157f7c2ab3c499f18337c0b0828cfb28e0a61de4a11f773ffffffffffffffffffffffffffffffffffffffff61018051169180610f50868b8a846040919493926060820195825260208201520152565b0390a3604051948593602085016040919493926060820195825260208201520152565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352826108ca565b90565b7342000000000000000000000000000000000000068073ffffffffffffffffffffffffffffffffffffffff6101405116145f1461107957803b15611075578280916024604051809481937f2e1a7d4d0000000000000000000000000000000000000000000000000000000083526101605160048401525af1801561106a57611052575b509161104b828080610f7395610f9f989761016051905af16110456134cb565b50613528565b9192610ece565b61105c8391610835565b611066575f611025565b5080fd5b6040513d85823e3d90fd5b8280fd5b506040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526101605173ffffffffffffffffffffffffffffffffffffffff9283166004830152602482015261014051909291602091849160449183918691165af1908115611128575091610f7391610f9f94936110f9575b5061104b565b61111a9060203d602011611121575b61111281836108ca565b810190612b58565b505f6110f3565b503d611108565b604051903d90823e3d90fd5b7342000000000000000000000000000000000000068073ffffffffffffffffffffffffffffffffffffffff6101805116145f146111e457803b15610480575f80916024604051809481937f2e1a7d4d00000000000000000000000000000000000000000000000000000000835260a05160048401525af180156102b3576111d1575b506111cc8280808060a051865af16110456134cb565b610ec5565b6111dc919250610835565b5f905f6111b6565b506040517fa9059cbb00000000000000000000000000000000000000000000000000000000815260a05173ffffffffffffffffffffffffffffffffffffffff831660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61018051165af180156102b357611267575b50610ec5565b61127f9060203d6020116111215761111281836108ca565b505f611261565b6112909082612be6565b61271081029080820461271014901517156112e75760c8916112b191613494565b116112bd575f80610ebb565b60046040517ffe3cf204000000000000000000000000000000000000000000000000000000008152fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b610ea691935091611339610eac933d805f833e61133181836108ca565b810190612bf3565b93915091610e98565b50508390612d0e565b8394610e0b565b61136691503d8088833e61133181836108ca565b5f610ddc565b60046040517fc990cf68000000000000000000000000000000000000000000000000000000008152fd5b5060c48201358510610cfb565b9094506113c091925060403d6040116102ac5761029e81836108ca565b919091935f610cec565b6113e491925060203d60201161045c5761044d81836108ca565b905f610c54565b6114029150823d841161045c5761044d81836108ca565b5f610c16565b60046040517fd0bcb760000000000000000000000000000000000000000000000000000000008152fd5b9061143c91612be6565b610b52565b90979998816117b7575b6040517f095ea7b300000000000000000000000000000000000000000000000000000000815260a0517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61018051165af180156102b357611798575b506040517f095ea7b3000000000000000000000000000000000000000000000000000000008152610160517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1660048301526024820152602081806044810103815f73ffffffffffffffffffffffffffffffffffffffff61014051165af180156102b357611779575b50604051610100527f5a47ddc300000000000000000000000000000000000000000000000000000000610100515273ffffffffffffffffffffffffffffffffffffffff6101805116600461010051015273ffffffffffffffffffffffffffffffffffffffff61014051166024610100510152851515604461010051015260a05160646101005101526101605160846101005101525f60a46101005101525f60c461010051015273ffffffffffffffffffffffffffffffffffffffff891660e4610100510152610124850135610104610100510152606061010051610124610100515f73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165af160e05260e051156102b357611705905f6080525f60c0525f9060e051611730575b6116f56116ff916116d660805160a051612be6565b60a0526116e860c05161016051612be6565b6101605260805190612d0e565b9b60c05190612d0e565b9b612d0e565b97851586611728575b61172357600161012051016101205290610b29565b610b35565b50811561170e565b905060603d606011611772575b6116f5611762826117546116ff94610100516108ca565b610100510161010051612cf3565b9160805260c052929150506116c1565b503d61173d565b6117919060203d6020116111215761111281836108ca565b505f611585565b6117b09060203d6020116111215761111281836108ca565b505f6114e7565b61180a6117fe876101605160a05173ffffffffffffffffffffffffffffffffffffffff610140511673ffffffffffffffffffffffffffffffffffffffff6101805116612e30565b6101605160a051613438565b6101605260a05261144b565b73420000000000000000000000000000000000000673ffffffffffffffffffffffffffffffffffffffff610140511614806119c6575b1561191a57608485013534036118f0577342000000000000000000000000000000000000063b156118e2576040517fd0e30db00000000000000000000000000000000000000000000000000000000081528181600481347342000000000000000000000000000000000000065af180156118e5576118ce575b50505b5f610b06565b6118d88291610835565b6118e257806118c5565b80fd5b6040513d84823e3d90fd5b60046040517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff881660048201523060248201526084860135604482015290602082806064810103818473ffffffffffffffffffffffffffffffffffffffff61014051165af190811561112857506119a7575b506118c8565b6119bf9060203d6020116111215761111281836108ca565b505f6119a1565b5034151561184c565b73420000000000000000000000000000000000000673ffffffffffffffffffffffffffffffffffffffff61018051161480611b29575b15611a9557606485013534036118f0577342000000000000000000000000000000000000063b15610480576040517fd0e30db00000000000000000000000000000000000000000000000000000000081525f81600481347342000000000000000000000000000000000000065af180156102b357611a84575b50610afc565b611a8e9150610835565b5f80611a7e565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015230602483015260648781013560448401526101805160209284929183915f91165af180156102b357611b0a5750610afc565b611b229060203d6020116111215761111281836108ca565b505f611a7e565b50341515611a05565b60046040517f9c8787c0000000000000000000000000000000000000000000000000000000008152fd5b611b7691925060203d60201161045c5761044d81836108ca565b905f610ad4565b60046040517f1ab7da6b000000000000000000000000000000000000000000000000000000008152fd5b90507f0dede6c4000000000000000000000000000000000000000000000000000000008103611fe157507ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc8361010092810103011261048057611c0c60048301610807565b91611c1960248201610807565b91611c2660448301610828565b93611c3360c48401610807565b73ffffffffffffffffffffffffffffffffffffffff60e4850135921692824211611b7d576040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048301528716602482015287151560448201526020818060648101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa80156102b35773ffffffffffffffffffffffffffffffffffffffff915f91611fc2575b5016968715611b32576040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff92909216600483015230602483015260648681013560448401526020908390815f8c5af19182156102b357611e0b92611fa3575b506040517f095ea7b30000000000000000000000000000000000000000000000000000000081527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166004820181905260648801356024830152989092602091849182905f9082906044820190565b03925af180156102b35773ffffffffffffffffffffffffffffffffffffffff98604095610104945f93611f84575b5086519a8b9687957f0dede6c40000000000000000000000000000000000000000000000000000000087528a6004880152828d1660248801521515604487015260648b0135606487015260848b0135608487015260a48b013560a48701521660c485015260e48401525af19283156102b3575f945f94611f26575b506040805186815260208101869052606494909401359084015273ffffffffffffffffffffffffffffffffffffffff16917fbc7d19d505c7ec4db83f3b51f19fb98c4c8a99922e7839d1ee608dfbee29501b90606090a3604051916020830152604082015260408152610f9f816108ae565b73ffffffffffffffffffffffffffffffffffffffff95507fbc7d19d505c7ec4db83f3b51f19fb98c4c8a99922e7839d1ee608dfbee29501b919450611f799060403d6040116102ac5761029e81836108ca565b959095949150611eb4565b611f9c9060203d6020116111215761111281836108ca565b505f611e39565b611fbb9060203d6020116111215761111281836108ca565b505f611d87565b611fdb915060203d60201161045c5761044d81836108ca565b5f611d0f565b9293927fcac88ea90000000000000000000000000000000000000000000000000000000092919083810361282c5750840160a07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc86830301126104805760048501359160248087013593604488013567ffffffffffffffff811161048057880194846023870112156104805760048601359661207c88612b70565b9660409861208c8a51998a6108ca565b80895260209786898b019260071b84010192818411610480578701915b8383106127cc575050505060846120c260648c01610807565b9a0135928342116127a35773ffffffffffffffffffffffffffffffffffffffff6120eb89612b88565b515116955f8083612658575b6124fe575b505088517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166004820181905260248201839052929088816044815f8c5af180156124f4576124d7575b5088519b8c957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8097019d8e116124ab578a5f8d9e9f8c839f9d9e73ffffffffffffffffffffffffffffffffffffffff926121d891612bd2565b510151169b8a61221e825194859384937f5509a1ac0000000000000000000000000000000000000000000000000000000085528b60048601528401526044830190612c6d565b0381895afa9081156124a1575f91612487575b5080519088820191821161245b57879161224a91612bd2565b5110612432578c519b8c9485948552600485015286898501526044840160a0905260a4840161227891612c6d565b9173ffffffffffffffffffffffffffffffffffffffff166064840152608483015203815a5f948591f1968715612428575f9761240c575b5086518281019081116123e0576122c69088612bd2565b51106123b7576122d586612b88565b5191865191820191821161238c5750957fa078c4190abe07940190effc1846be0ccf03ad6007bc9e93f9697d0b460befbb916123148798839798612bd2565b51825191825287820152a3805192839182018380840152815180915283606084019201935f5b82811061237557505050610f9f9250037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018352826108ca565b85518452948101948694509281019260010161233a565b7f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b600487517f8199f5f3000000000000000000000000000000000000000000000000000000008152fd5b837f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b6124219197503d805f833e61133181836108ca565b955f6122af565b88513d5f823e3d90fd5b60048d517f8199f5f3000000000000000000000000000000000000000000000000000000008152fd5b897f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b61249b91503d805f833e61133181836108ca565b5f612231565b8e513d5f823e3d90fd5b877f4e487b71000000000000000000000000000000000000000000000000000000005f5260116004525ffd5b6124ed90893d8b116111215761111281836108ca565b505f61217e565b8b513d5f823e3d90fd5b88818061264f575b156125bc575090503461259357734200000000000000000000000000000000000006803b1561106657816004918c51928380927fd0e30db000000000000000000000000000000000000000000000000000000000825234905af1801561258957612575575b50505b5f806120fc565b61257f8291610835565b6118e2578061256b565b8b513d84823e3d90fd5b60048a517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b8b517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff939093166004840152306024840152604483018290528260648184805af19081156126445750612627575b5061256e565b61263d90883d8a116111215761111281836108ca565b505f612621565b8b51903d90823e3d90fd5b50341515612506565b507342000000000000000000000000000000000000068089148061279a575b15612711578334036126e857803b15610480575f6004918d51928380927fd0e30db000000000000000000000000000000000000000000000000000000000825234905af180156126de576126cd575b50806120f7565b6126d79150610835565b5f806126c6565b8c513d5f823e3d90fd5b60048c517f201c04ab000000000000000000000000000000000000000000000000000000008152fd5b508a517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831660048201523060248201526044810184905289816064815f8d5af180156126de5790829161277d575b506120f7565b612793908b3d8d116111215761111281836108ca565b505f612777565b50341515612677565b600489517f1ab7da6b000000000000000000000000000000000000000000000000000000008152fd5b60808383031261048057896080918d8051906127e782610876565b6127f087610807565b82526127fd848801610807565b8483015261280c818801610828565b90820152606061281d818801610807565b908201528152019201916120a9565b9394937f6e553f6500000000000000000000000000000000000000000000000000000000935083146128825760046040517f7352d91c000000000000000000000000000000000000000000000000000000008152fd5b83907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc604092839281010301126104805773ffffffffffffffffffffffffffffffffffffffff60246128d660048701610807565b95013594168151937f72f702f30000000000000000000000000000000000000000000000000000000085526020948581600481865afa908115612ad6579073ffffffffffffffffffffffffffffffffffffffff915f91612b07575b5084517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff871660048201523060248201526044810189905291169086816064815f865af18015612afd57612ae0575b5083517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416600482015260248101889052908690829060449082905f905af18015612ad657612ab9575b50813b156104805782519081526004810186905273ffffffffffffffffffffffffffffffffffffffff841660248201525f8160448183865af18015612aaf5791610f739391610f9f969593612aa0575b507ffa2529c0b8e878c5cfbd265efb60d6c35f0ba5ad1132da46b8bde097baac8a49858351898152a251948593840190929173ffffffffffffffffffffffffffffffffffffffff6020916040840195845216910152565b612aa990610835565b5f612a49565b83513d5f823e3d90fd5b612acf90863d88116111215761111281836108ca565b505f6129f9565b84513d5f823e3d90fd5b612af690873d89116111215761111281836108ca565b505f612997565b85513d5f823e3d90fd5b612b1e9150873d891161045c5761044d81836108ca565b5f612931565b50339161094e565b90816020910312610480575173ffffffffffffffffffffffffffffffffffffffff811681036104805790565b90816020910312610480575180151581036104805790565b67ffffffffffffffff81116108495760051b60200190565b805115612b955760200190565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b805160011015612b955760400190565b8051821015612b955760209160051b010190565b919082039182116112e757565b60209081818403126104805780519067ffffffffffffffff821161048057019180601f84011215610480578251612c2981612b70565b93612c3760405195866108ca565b818552838086019260051b820101928311610480578301905b828210612c5e575050505090565b81518152908301908301612c50565b9081518082526020808093019301915f5b828110612c8c575050505090565b8351805173ffffffffffffffffffffffffffffffffffffffff908116875281840151811687850152604080830151151590880152606091820151169086015260809094019392810192600101612c7e565b9190826040910312610480576020825192015190565b90816060910312610480578051916040602083015192015190565b919082018092116112e757565b606073ffffffffffffffffffffffffffffffffffffffff916004604051809481937f0902f1ac000000000000000000000000000000000000000000000000000000008352165afa80156102b357610f9f915f905f92612d7b575b50613a63565b9050612d96915060603d606011610406576103f681836108ca565b50905f612d75565b90816020910312610480575160ff811681036104805790565b60ff166012039060ff82116112e757565b60ff16604d81116112e757600a0a90565b60409060405191612de983610892565b6001835282915f5b602080821015612e2857835160209291612e0a82610876565b5f82525f818301525f868301525f6060830152828801015201612df1565b505091925050565b9493909291946040517f313ce567000000000000000000000000000000000000000000000000000000009081815260208160048173ffffffffffffffffffffffffffffffffffffffff87165afa9081156102b357612e9e91612e99915f91613409575b50612db7565b612dc8565b9060405190815260208160048173ffffffffffffffffffffffffffffffffffffffff8a165afa9081156102b357612edf91612e99915f916134095750612db7565b96604051947fd4b6846d00000000000000000000000000000000000000000000000000000000865260208660048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9586156102b357612fa0966040915f916133ea575b5081517f8c0037dc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8088166004830152808b1660248301528815156044830152909116606482015296879081906084820190565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9889156102b3575f965f9a6133c3575b506040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff86811660048301528916602482015286151560448201529260208460648173420dd381b31aef6683db6b902084cb0ffece40da5afa80156102b357876020916130a7965f916133a6575b506040517fcc56b2c500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152901515602482015294859081906044820190565b038173420dd381b31aef6683db6b902084cb0ffece40da5afa9283156102b35787945f9461336f575b5081613347575f985b899c8a155f1461333657906130f19794939291613bba565b925b83156133145750613102612dd9565b91861561330d57815b87156133075785905b604051967fd4b6846d00000000000000000000000000000000000000000000000000000000885260208860048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9485156102b35773ffffffffffffffffffffffffffffffffffffffff60209681966044965f9c8d936132e6575b508390816040519661319688610876565b1686521689850152151560408401521660608201526131b487612b88565b526131be86612b88565b508988146132df57505b60405196879384927f095ea7b300000000000000000000000000000000000000000000000000000000845273cf77a3ba9a5ca399b7c97c74d54e5b1beb874e436004850152886024850152165af19182156102b357613270935f936132c0575b5060405193849283927fcac88ea9000000000000000000000000000000000000000000000000000000008452600484015284602484015260a0604484015260a4830190612c6d565b30606483015242608483015203818373cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435af19081156102b3575f916132a857509190565b6132bc91503d805f833e61133181836108ca565b9190565b6132d89060203d6020116111215761111281836108ca565b505f613228565b90506131c8565b84919350613300908b3d8d1161045c5761044d81836108ca565b9290613185565b80613114565b849161310b565b955050505050604051613326816108ae565b6002815260403660208301379190565b613341979391613bba565b926130f3565b806133555760015b986130d9565b61335f8183613a63565b6133698d8b613a63565b1061334f565b945092506020843d60201161339e575b8161338c602093836108ca565b8101031261048057869351925f6130d0565b3d915061337f565b6133bd9150833d851161045c5761044d81836108ca565b5f61304f565b9099506133e091965060403d6040116102ac5761029e81836108ca565b959095985f612fc9565b613403915060203d60201161045c5761044d81836108ca565b5f612f39565b61342b915060203d602011613431575b61342381836108ca565b810190612d9e565b5f612e93565b503d613419565b9293929091156134635790610eac61345d610f9f9361345687612b88565b5190612be6565b94612bc2565b610eac61347861347e93613456879697612b88565b93612bc2565b91565b818102929181159184041417156112e757565b811561349e570490565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b3d15613523573d9067ffffffffffffffff8211610849576040519161351860207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601846108ca565b82523d5f602084013e565b606090565b1561352f57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f455448207472616e73666572206661696c6564000000000000000000000000006044820152fd5b919493926040517f313ce567000000000000000000000000000000000000000000000000000000009081815260208160048173ffffffffffffffffffffffffffffffffffffffff89165afa9081156102b3576135f391612e99915f916134095750612db7565b9060405190815260208160048173ffffffffffffffffffffffffffffffffffffffff88165afa9081156102b35761363491612e99915f916134095750612db7565b96604051927fd4b6846d00000000000000000000000000000000000000000000000000000000845260208460048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9384156102b3576136f5946040915f91613a44575b5081517f8c0037dc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff808a16600483015280891660248301528a15156044830152909116606482015294859081906084820190565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9889156102b3575f945f9a613a1d575b506040517f79bc57d500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff88811660048301528716602482015288151560448201529260208460648173420dd381b31aef6683db6b902084cb0ffece40da5afa80156102b357896020916137fb965f916133a657506040517fcc56b2c500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091166004820152901515602482015294859081906044820190565b038173420dd381b31aef6683db6b902084cb0ffece40da5afa9283156102b35789945f946139e6575b50816139be575f965b879c88155f146139ad57906138459794939291613bba565b905b81156133145750613856612dd9565b9186156139a657835b871561399e5750925b6040517fd4b6846d00000000000000000000000000000000000000000000000000000000815260208160048173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa80156102b357613950965f9673ffffffffffffffffffffffffffffffffffffffff93889361397b575b50839081604051966138e588610876565b1686521660208501521515604084015216606082015261390483612b88565b5261390e82612b88565b5060405193849283927f5509a1ac0000000000000000000000000000000000000000000000000000000084526004840152604060248401526044830190612c6d565b038173cf77a3ba9a5ca399b7c97c74d54e5b1beb874e435afa9081156102b3575f916132a857509190565b849193506139979060203d60201161045c5761044d81836108ca565b92906138d4565b905092613868565b809361385f565b6139b8979391613bba565b90613847565b806139cc5760015b9661382d565b6139d68183613a63565b6139e08d89613a63565b106139c6565b945092506020843d602011613a15575b81613a03602093836108ca565b8101031261048057889351925f613824565b3d91506139f6565b909950613a3a91945060403d6040116102ac5761029e81836108ca565b939093985f61371e565b613a5d915060203d60201161045c5761044d81836108ca565b5f61368e565b906b033b2e3c9fd0803ce8000000907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8284099282810292838086109503948086039514613bac5784831115610480578291098119600181018091116112e757613ae090831680930494600184805f030401908584119003613481565b9203041781600302916003830481036112e7576002809318613b028183613481565b84038481116112e757613b1491613481565b613b1e8183613481565b84038481116112e757613b3091613481565b613b3a8183613481565b84038481116112e757613b4c91613481565b613b568183613481565b84038481116112e757613b6891613481565b613b728183613481565b8403908482116112e757613b9091613b8991613481565b8092613481565b83039283116112e757610f9f92613ba691613481565b90613481565b505080925015610480570490565b94613be381613bdd87613bd781613be997999d989b9c9a9c613481565b99613481565b95613481565b97613481565b92670de0b6b3a76400009384613bff878a613481565b049185613c1881613c108a86613481565b04968b613481565b049315613c575750505090613c2c91612be6565b8181029181830414901517156112e757613c4c613c5292610f9f95612d0e565b90613494565b613494565b601e919492959650145f14613d1857613c708185612d0e565b91623cda2985810290810486036112e757826009026009810484036112e757613c9891612d0e565b90623cda2090808202918204036112e757613cc893613ba6613cbd92613cc294612d0e565b613da8565b93612d0e565b916107cd92808402938404036112e757613ceb92613ce591612be6565b94612d0e565b926107ca93808502948504036112e7578181029181830414901517156112e757610f9f92613c5291613494565b613d228185612d0e565b91619ab185810290810486036112e75782613d3c91612d0e565b90619ab090808202918204036112e757613d6093613ba6613cbd92613cc294612d0e565b918260c7029260c78404036112e757613d7c92613ce591612be6565b928360c6029360c68504036112e7578181029181830414901517156112e757610f9f92613c5291613494565b8015613ef057806001700100000000000000000000000000000000831015613eda575b60048268010000000000000000613e82941015613ecd575b640100000000811015613ec0575b62010000811015613eb3575b610100811015613ea7575b6010811015613e9b575b1015613e93575b613e238184613494565b0160011c613e318184613494565b0160011c613e3f8184613494565b0160011c613e4d8184613494565b0160011c613e5b8184613494565b0160011c613e698184613494565b0160011c613e778184613494565b0160011c8092613494565b80821015613e8e575090565b905090565b60011b613e19565b811c9160021b91613e12565b60081c91811b91613e08565b60101c9160081b91613dfd565b60201c9160101b91613df1565b60401c9160201b91613de3565b5050608081901c68010000000000000000613dcb565b505f9056", + "sourceMap": "585:11320:35:-:0;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;12908:63:36;;585:11320:35;;;;;;12908:63:36;;;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;1394:42:36;12908:63;;;;;;;585:11320:35;12908:63:36;585:11320:35;12908:63:36;585:11320:35;12908:63:36;;;585:11320:35;;;;;12999:21:36;;;;585:11320:35;12999:21:36;;585:11320:35;12999:21:36;;;;;;;585:11320:35;12999:21:36;;;585:11320:35;13092:26:36;585:11320:35;13133:13:36;585:11320:35;13128:822:36;13148:5;13152:1;13148:5;;;;13128:822;-1:-1:-1;;585:11320:35;;;;13999:89:36;;585:11320:35;;;;;;13999:89:36;;;585:11320:35;;;;1300:42:36;;;585:11320:35;;;;;;1300:42:36;;;585:11320:35;;;;;1300:42:36;;;585:11320:35;-1:-1:-1;1300:42:36;;;585:11320:35;;;;;;1300:42:36;;;13999:89;;1300:42;13999:89;;;;;;;585:11320:35;13999:89:36;585:11320:35;;;13999:89:36;;;13128:822;585:11320:35;;;;;;;;;;;13999:89:36;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;585:11320:35;;;;;;;;;13155:3:36;585:11320:35;;;;;;13174:304:36;;13155:3;585:11320:35;;13582:92:36;585:11320:35;13582:92:36;;585:11320:35;;;;;13582:92:36;;585:11320:35;;;;;1300:42:36;;585:11320:35;;;;;;1300:42:36;;585:11320:35;;;;;1300:42:36;;585:11320:35;1300:42:36;585:11320:35;1300:42:36;;585:11320:35;1300:42:36;585:11320:35;1300:42:36;;585:11320:35;;13582:92:36;1300:42;13582:92;1300:42;13582:92;;;;;;13780:31;13582:92;585:11320:35;;;;13582:92:36;;;13155:3;13689:31;;;13734;13689;;;:::i;:::-;13734;;:::i;:::-;13780;;:::i;:::-;585:11320:35;;;;;;13830:29:36;;13155:3;13826:40;;585:11320:35;;13133:13:36;;;13826:40;13861:5;;13830:29;585:11320:35;;;;13830:29:36;;13582:92;13734:31;13582:92;;13689:31;13582:92;;;;;585:11320:35;13582:92:36;585:11320:35;13582:92:36;;;;;;;;:::i;:::-;;;;;:::i;:::-;;-1:-1:-1;13582:92:36;;;;;;;;13174:304;13401:62;585:11320:35;;13281:72:36;585:11320:35;;;;;;;13281:72:36;:::i;:::-;13401:62;;;;:::i;:::-;13372:91;;13174:304;;12999:21;;;;;585:11320:35;12999:21:36;585:11320:35;12999:21:36;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;12908:63;;;;;;;;;;;;;;:::i;:::-;;;;585:11320:35;;;;;;;;;;;;;;;;;;;664:40;585:11320;;;;;;;;;;;;;;;;;;;710:46;585:11320;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;1252:5:30;1235:23;;;585:11320:35;1235:23:30;;;;;;:::i;585:11320:35:-;;;;;;;;;;;;;;1469:8:30;585:11320:35;;;;;;;;;;;;;;;;;;530:32:30;585:11320:35;;;;;;;;;;;;;;;;;;;1712:25;585:11320;;;;;;;;:::i;:::-;1726:10;1712:25;;:::i;585:11320::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::o;1820:1139::-;;-1:-1:-1;;1820:1139:35;2034:10;2048:7;585:11320;;2034:21;585:11320;;2034:43;;585:11320;2119:1;585:11320;;;;;;;;2137:49;;585:11320;;2258:44;-1:-1:-1;5124:19:35;-1:-1:-1;5145:26:35;585:11320;;5145:26;-1:-1:-1;5497:106:35;;;585:11320;;;;;;2119:1;585:11320;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;:::i;:::-;;;;;;5618:15;:26;5614:56;;585:11320;;;5696:48;;5187:416;;;;585:11320;;;;2119:1;5696:48;;585:11320;;;;;;;;;;;;;;;;;;;;5696:48;:16;585:11320;5696:16;585:11320;5696:48;;;;;;;-1:-1:-1;5696:48:35;;;2133:786;585:11320;;;;5758:18;5754:49;;-1:-1:-1;585:11320:35;;;;10224:320;;2133:786;585:11320;;;;10553:320;;2133:786;5917:33;;;;;:::i;:::-;585:11320;;;;;5961:31;;585:11320;;;;6002:31;;-1:-1:-1;6081:13:35;;6096:5;6100:1;6096:5;;;;;6076:1344;4624:18:36;;;;;:::i;:::-;12368:5;;;;;;;12376;;;:::i;:::-;1084:3;;;;;;;;;;;;;;;585:11320:35;4672:50:36;;;;:::i;:::-;4736:27;4732:79;;585:11320:35;;;5176:63:36;;5187:416:35;;;;585:11320;;;;2119:1;5176:63:36;;585:11320:35;;;;;;;;;;;;;;;;;;1394:42:36;5176:63;;;;;;;585:11320:35;5176:63:36;585:11320:35;5176:63:36;-1:-1:-1;5176:63:36;;;12368:21;585:11320:35;2119:1;585:11320;;5268:21:36;;;;585:11320:35;5268:21:36;;585:11320:35;5268:21:36;;;;;;;-1:-1:-1;5268:21:36;;;12368;-1:-1:-1;585:11320:35;;;;5354:90:36;;5187:416:35;;;;585:11320;;;;2119:1;5354:90:36;;585:11320:35;;;;1300:42:36;;;585:11320:35;;;;1300:42:36;;;585:11320:35;;;1300:42:36;;;585:11320:35;1300:42:36;;;585:11320:35;;;;;;1300:42:36;585:11320:35;1300:42:36;5354:90;;;;;;;-1:-1:-1;;;5354:90:36;;;12368:21;585:11320:35;;;;;5557:23:36;;:50;;;;12368:21;5553:124;;585:11320:35;5719:22:36;;:::i;:::-;585:11320:35;;;;;;;:::i;:::-;5187:416;;;585:11320;;;5187:416;;;585:11320;;5763:46:36;;585:11320:35;;;;5763:46:36;;585:11320:35;;;5763:46:36;;585:11320:35;5751:58:36;;;:::i;:::-;;;;;:::i;:::-;;585:11320:35;;5853:63:36;585:11320:35;5853:63:36;;585:11320:35;;;;2119:1;5853:63:36;;585:11320:35;;;;;;-1:-1:-1;585:11320:35;;;;;;;;:::i;:::-;5853:63:36;;1300:42;5853:63;;;;;;;6185:22;5944:33;5961:16;-1:-1:-1;5853:63:36;585:11320:35;5853:63:36;;;;;12368:21;5961:16;;:::i;:::-;585:11320:35;;;;;5944:33:36;:::i;:::-;12495:17;585:11320:35;;;;;12495:5:36;;;;;12503;585:11320:35;;;;;12503:5:36;:::i;:::-;12495:17;;585:11320:35;;;;;;12495:5:36;;;;;585:11320:35;12503:5:36;585:11320:35;;;12503:5:36;:::i;:::-;12495:17;6185:22;:::i;:::-;585:11320:35;;6145:71:36;;;;;585:11320:35;6145:71:36;;2119:1:35;6145:71:36;;585:11320:35;;;;;;;;;;;:::i;:::-;6145:71:36;;1300:42;6145:71;;;;;;;6245:41;6145:71;-1:-1:-1;6145:71:36;;;12495:17;6245:22;6270:16;6245:22;;;;:::i;:::-;6270:16;;:::i;:::-;585:11320:35;6245:41:36;;:::i;:::-;6595:18;;;6591:183;;12495:17;7332:13;;;;7328:387;;12495:17;7728:13;;7724:387;;12495:17;585:11320:35;;;2323:39;;585:11320;;;;5187:416;;585:11320;5187:416;7737:76;585:11320;5187:416;;585:11320;7737:76;;;;;;;585:11320;;;;;;;;;;;;;;;;;;7737:76;;;;585:11320;;2323:39;;;585:11320;2323:39;;585:11320;;;;;;;;;;;;;;;;;;2323:39;;;;;;;;;:::i;:::-;2316:46;:::o;7724:387:36:-;449:42:37;5187:416:35;585:11320;5187:416;;585:11320;7761:14:36;7757:344;449:42:37;;;7842:31:36;;;;;585:11320:35;;;;;;7842:31:36;;;;585:11320:35;7842:31:36;;585:11320:35;;2119:1;7842:31:36;;585:11320:35;7842:31:36;;;;;;;;7757:344;7909:36;;7963:39;7909:36;;;2323:39:35;7909:36:36;2323:39:35;7909:36:36;;;;;;;;;:::i;:::-;;7963:39;:::i;:::-;7724:387;;;;7842:31;;;;;:::i;:::-;585:11320:35;;7842:31:36;;;585:11320:35;;;;7842:31:36;585:11320:35;;;;;;;;;7842:31:36;585:11320:35;;;7757:344:36;-1:-1:-1;585:11320:35;;;8041:45:36;;;;585:11320:35;;;;2119:1;8041:45:36;;585:11320:35;;;;;5187:416;;585:11320;;;;;;;;;;;;;;8041:45:36;;;;;;;;;2323:39:35;8041:45:36;2323:39:35;8041:45:36;;;;7757:344;;;;8041:45;;;585:11320:35;8041:45:36;585:11320:35;8041:45:36;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;;585:11320:35;;;;;;;;;;7328:387:36;449:42:37;5187:416:35;585:11320;5187:416;;585:11320;7365:14:36;7361:344;449:42:37;;;7446:31:36;;;;;-1:-1:-1;585:11320:35;;;;;7446:31:36;;;;585:11320:35;7446:31:36;;585:11320:35;;2119:1;7446:31:36;;585:11320:35;7446:31:36;;;;;;;;7361:344;7513:36;7567:39;7513:36;;;;;;;;;;;:::i;7567:39::-;7328:387;;7446:31;;;;;;:::i;:::-;-1:-1:-1;7446:31:36;;;;7361:344;-1:-1:-1;585:11320:35;;;7645:45:36;;;;585:11320:35;;;2119:1;7645:45:36;;585:11320:35;;;;;;;;;;;7645:45:36;5187:416:35;-1:-1:-1;585:11320:35;5187:416;;585:11320;7645:45:36;;;;;;;;7361:344;;7328:387;;7645:45;;;585:11320:35;7645:45:36;585:11320:35;7645:45:36;;;;;;;:::i;:::-;;;;;6591:183;6649:18;;;;:::i;:::-;1084:3;;;;;;;;;;;;;;;6714;6648:37;;;;:::i;:::-;6703:14;6699:64;;6591:183;;;;6699:64;2119:1:35;585:11320;;6726:37:36;;;;1084:3;585:11320:35;-1:-1:-1;585:11320:35;;2119:1;585:11320;;-1:-1:-1;585:11320:35;6145:71:36;6245:22;6145:71;;;;;6270:16;6145:71;;;-1:-1:-1;6145:71:36;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;12495:17;;;;;6185:22;:::i;12495:17::-;;;;;5853:63;;;;;;;;;;;;;:::i;:::-;;;;5553:124;2119:1:35;585:11320;;5630:36:36;;;;5557:50;585:11320:35;;;;;5584:23:36;;5557:50;;5354:90;;;;;;;;585:11320:35;5354:90:36;585:11320:35;5354:90:36;;;;;;;:::i;:::-;;;;;;;;5268:21;;;;;585:11320:35;5268:21:36;585:11320:35;5268:21:36;;;;;;;:::i;:::-;;;;;5176:63;;;;;;;;;;;;;;:::i;:::-;;;;4732:79;2119:1:35;585:11320;;4772:39:36;;;;12368:21;12384:5;;;;:::i;:::-;12368:21;;6103:3:35;6122:349;;;;;;;6103:3;585:11320;;;6524:61;;;;6555:15;585:11320;;2119:1;6524:61;;585:11320;;;;;;;;;;;6524:61;5187:416;-1:-1:-1;585:11320:35;5187:416;;585:11320;6524:61;;;;;;;;6103:3;-1:-1:-1;585:11320:35;;;6599:61;;;;6555:15;585:11320;;2119:1;6599:61;;585:11320;;;;;;;;;;;6599:61;5187:416;-1:-1:-1;585:11320:35;5187:416;;585:11320;6599:61;;;;;;;;6103:3;585:11320;;;6749:304;;585:11320;6749:304;;;585:11320;5187:416;;585:11320;2119:1;6749:304;;;585:11320;;5187:416;;585:11320;;6749:304;;585:11320;;;;;;6749:304;;585:11320;;;;;6749:304;;585:11320;;;;;6749:304;;585:11320;;-1:-1:-1;585:11320:35;6749:304;;585:11320;;-1:-1:-1;585:11320:35;6749:304;;585:11320;;;;;;6749:304;;585:11320;;;;;;;6749:304;;585:11320;;;6749:304;;585:11320;6749:304;;-1:-1:-1;585:11320:35;6555:15;585:11320;6749:304;;;;;;;;;7250:31;6749:304;-1:-1:-1;6749:304:35;;-1:-1:-1;;;;6749:304:35;;;;;6103:3;7159:31;7204;7068;;;;;;;:::i;:::-;;;7113;;;;;;:::i;:::-;;;7159;;;;:::i;:::-;7204;;;;;:::i;:::-;7250;;:::i;:::-;585:11320;;;;7300:29;;6103:3;7296:40;;585:11320;6103:3;;585:11320;6103:3;;6081:13;;;7296:40;7331:5;;7300:29;7311:18;;;7300:29;;6749:304;;;585:11320;6749:304;585:11320;6749:304;;;;7159:31;6749:304;;;7204:31;6749:304;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;6749:304:35;;;6599:61;;;585:11320;6599:61;585:11320;6599:61;;;;;;;:::i;:::-;;;;;6524;;;585:11320;6524:61;585:11320;6524:61;;;;;;;:::i;:::-;;;;;6122:349;6379:77;6229:82;;;;;;585:11320;5187:416;;585:11320;;5187:416;;585:11320;6229:82;:::i;:::-;6379:77;;;;;:::i;:::-;6330:126;;;;6122:349;;10553:320;449:42:37;585:11320:35;5187:416;;585:11320;10588:14;:31;;;10553:320;10584:279;;;585:11320;;;;10643:9;:20;10639:53;;449:42:37;10711:39:35;;;;585:11320;;;10711:39;;10643:9;;2119:1;10643:9;;449:42:37;10711:39:35;;;;;;;;10584:279;;;;10553:320;;;10711:39;;;;;:::i;:::-;585:11320;;10711:39;;;585:11320;;;10711:39;585:11320;;;;;;;;;10639:53;2119:1;585:11320;;10672:20;;;;10584:279;585:11320;;;10789:59;;585:11320;;;2119:1;10789:59;;585:11320;10833:4;585:11320;;;;;;;;;;;;;;;;;;;10789:59;5187:416;;585:11320;5187:416;;585:11320;10789:59;;;;;;;;;;10584:279;;;;10789:59;;;585:11320;10789:59;585:11320;10789:59;;;;;;;:::i;:::-;;;;;10588:31;10606:9;;:13;;10588:31;;10224:320;449:42:37;585:11320:35;5187:416;;585:11320;10259:14;:31;;;10224:320;10255:279;;;585:11320;;;;10314:9;:20;10310:53;;449:42:37;10382:39:35;;;;585:11320;;;10382:39;;-1:-1:-1;10314:9:35;2119:1;10314:9;;449:42:37;10382:39:35;;;;;;;;10255:279;;10224:320;;10382:39;;;;;:::i;:::-;-1:-1:-1;10382:39:35;;;10255:279;585:11320;;;10460:59;;585:11320;;;;2119:1;10460:59;;585:11320;10504:4;585:11320;;;;;;;;;;;;;5187:416;;585:11320;;;;;;;-1:-1:-1;;585:11320:35;10460:59;;;;;;;;10255:279;10224:320;;10460:59;;;585:11320;10460:59;585:11320;10460:59;;;;;;;:::i;:::-;;;;;10259:31;10277:9;;:13;;10259:31;;5754:49;2119:1;585:11320;;5785:18;;;;5696:48;;;;;585:11320;5696:48;585:11320;5696:48;;;;;;;:::i;:::-;;;;;5614:56;2119:1;585:11320;;5653:17;;;;2133:786;2383:52;-1:-1:-1;585:11320:35;2383:52;;585:11320;;8583:91;585:11320;8583:91;585:11320;8583:91;;;585:11320;;;;;;2119:1;585:11320;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8689:15;;;:26;8685:56;;585:11320;;;8767:48;;585:11320;;;;2119:1;8767:48;;585:11320;;;;;;;;;;;;;;;;;;;;8767:48;:16;585:11320;8767:16;585:11320;8767:48;;;;;;585:11320;8767:48;-1:-1:-1;8767:48:35;;;2379:540;585:11320;;8829:18;;;8825:49;;585:11320;;;8885:59;;585:11320;;;;;2119:1;8885:59;;585:11320;8927:4;585:11320;;;;;;;;;;;;;;;;;;-1:-1:-1;8885:59:35;;;;;;;;8954:57;8885:59;;;2379:540;-1:-1:-1;585:11320:35;;;8954:57;;8983:15;585:11320;;2119:1;8954:57;;585:11320;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;585:11320:35;;;;;;;8954:57;;;;;;;;;585:11320;8954:57;585:11320;8954:57;585:11320;8954:57;-1:-1:-1;8954:57:35;;;2379:540;585:11320;;;9055:104;;;;;585:11320;9055:104;;;2119:1;9055:104;;585:11320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9055:104;;;;;;;-1:-1:-1;;;9055:104:35;;;2379:540;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;9175:61;;585:11320;;9175:61;585:11320;;2552:28;585:11320;2552:28;;585:11320;;;;;;2552:28;;;;;:::i;9055:104::-;585:11320;9055:104;;9175:61;9055:104;;;;;585:11320;9055:104;585:11320;9055:104;;;;;;;:::i;:::-;;;;;;;;;8954:57;;;585:11320;8954:57;585:11320;8954:57;;;;;;;:::i;:::-;;;;;8885:59;;;585:11320;8885:59;585:11320;8885:59;;;;;;;:::i;:::-;;;;;8767:48;;;;585:11320;8767:48;585:11320;8767:48;;;;;;;:::i;:::-;;;;2379:540;585:11320;;;;;;;2601:61;;;585:11320;;3506:75;;;585:11320;;;;;;;;;2119:1;585:11320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2119:1;585:11320;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;3596:15;;;:26;3592:56;;585:11320;3677:9;;;:::i;:::-;;585:11320;;10077:802;-1:-1:-1;10228:11:35;;10224:320;;585:11320;10553:320;;585:11320;-1:-1:-1;;585:11320:35;;;3779:59;;585:11320;3811:15;585:11320;2119:1;3779:59;;585:11320;;;;;;;;;;;3779:59;585:11320;;;-1:-1:-1;3779:59:35;;;;;;;;;585:11320;;;;;;;;;;;;;;;;3868:25;-1:-1:-1;3868:25:35;;;;;;;;585:11320;3868:25;;;;:::i;:::-;;:28;585:11320;;;;;;;3942:47;;;;;585:11320;3942:47;;;2119:1;3942:47;;585:11320;;;;;;;;;:::i;:::-;3942:47;;;;;;;;;;-1:-1:-1;3942:47:35;;;585:11320;;;;;;;;;;;;;4027:43;;;;;:::i;:::-;585:11320;4085:35;4081:91;;585:11320;;4192:89;;;;;;;2119:1;4192:89;;585:11320;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;4192:89;;;-1:-1:-1;4192:89:35;;;;;;;;;-1:-1:-1;4192:89:35;;;585:11320;;;;;;;;;;;;4296:27;;;;:::i;:::-;585:11320;4296:45;4292:101;;4435:10;;;:::i;:::-;585:11320;;;;;;;;;;;;4447:27;;4408:67;4447:27;;;;;;;;:::i;:::-;585:11320;;;;;;;;;;4408:67;585:11320;;;;;;;2773:19;;;;585:11320;;;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;2773:19;;;;;;;;;;;;;;:::i;585:11320::-;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;;;;;-1:-1:-1;585:11320:35;;2119:1;585:11320;-1:-1:-1;585:11320:35;4292:101;2119:1;585:11320;;4364:18;;;;585:11320;;;-1:-1:-1;585:11320:35;;2119:1;585:11320;-1:-1:-1;585:11320:35;4192:89;;;;;;;-1:-1:-1;4192:89:35;;;;;;:::i;:::-;;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;4081:91;2119:1;585:11320;;4143:18;;;;585:11320;;;-1:-1:-1;585:11320:35;;2119:1;585:11320;-1:-1:-1;585:11320:35;3942:47;;;;;;-1:-1:-1;3942:47:35;;;;;;:::i;:::-;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;;;;-1:-1:-1;585:11320:35;;2119:1;585:11320;-1:-1:-1;585:11320:35;3779:59;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;10553:320;10588:31;;;;;10553:320;10584:279;;;10643:9;;;;10639:53;;449:42:37;10711:39:35;;;;;585:11320;2119:1;585:11320;;;10711:39;;;;585:11320;10711:39;;10643:9;10711:39;;;;;;;;;10584:279;;;;10553:320;;;;10711:39;;;;;:::i;:::-;585:11320;;10711:39;;;;585:11320;;;;;;;;;10639:53;2119:1;585:11320;;10672:20;;;;10584:279;585:11320;;;10789:59;;585:11320;;;;;2119:1;10789:59;;585:11320;10833:4;585:11320;;;;;;;;;;;;;;;10789:59;;;;;;;;;;10584:279;;;;10789:59;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320;;;;;;;;;;10588:31;10606:9;;:13;;10588:31;;10224:320;449:42:37;;10259:14:35;;;:31;;;10224:320;10255:279;;;10314:9;;:20;10310:53;;10382:39;;;;;-1:-1:-1;2119:1:35;585:11320;;;10382:39;;;;585:11320;10382:39;;10314:9;10382:39;;;;;;;;;10255:279;;;10224:320;;10382:39;;;;;:::i;:::-;-1:-1:-1;10382:39:35;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;10310:53;2119:1;585:11320;;10343:20;;;;10255:279;-1:-1:-1;585:11320:35;;;10460:59;;585:11320;;;2119:1;10460:59;;585:11320;10504:4;585:11320;;;;;;;;;;10504:4;585:11320;;;-1:-1:-1;10460:59:35;;;;;;;;;;;;10255:279;;10224:320;;10460:59;;;;;;;;;;;;;:::i;:::-;;;;;10259:31;10277:9;;:13;;10259:31;;3592:56;2119:1;585:11320;;3631:17;;;;585:11320;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2597:322;2825:23;;;;;-1:-1:-1;2813:35:35;;2809:110;;2119:1;585:11320;;2935:17;;;;2809:110;585:11320;;;;9621:40;;;;;585:11320;;;;;;;;2119:1;585:11320;;;:::i;:::-;;;;;;;;9690:35;585:11320;9690:35;;585:11320;9690:35;;;2119:1;9690:35;;;;;;;;;;585:11320;9690:35;-1:-1:-1;9690:35:35;;;2809:110;-1:-1:-1;585:11320:35;;;9736:59;;585:11320;;;2119:1;9736:59;;585:11320;9781:4;585:11320;;;;;;;;;;;;;9781:4;585:11320;;;-1:-1:-1;585:11320:35;9736:59;;;;;;;;2809:110;-1:-1:-1;585:11320:35;;;9805:45;;585:11320;;;2119:1;9805:45;;585:11320;;;;;;;;;;;;;;;;-1:-1:-1;;9805:45:35;;;;;;;;2809:110;9861:44;;;;;;585:11320;;9861:44;;;2119:1;9861:44;;585:11320;;;;;;;;;;-1:-1:-1;585:11320:35;;;-1:-1:-1;9861:44:35;;;;;;;;9973:26;9861:44;;9973:26;9861:44;;;;;2809:110;585:11320;9921:35;585:11320;;;;;;9921:35;585:11320;9973:26;;;;;585:11320;;;;;;;;;;;;;;;;;9861:44;;;;:::i;:::-;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;9805:45;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;9736:59;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320;;;-1:-1:-1;585:11320:35;;;;;9690:35;;;;;;;;;;;;;;:::i;:::-;;;;2034:43;:10;;:43;;;585:11320;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;:::o;:::-;;-1:-1:-1;585:11320:35;;;;;-1:-1:-1;585:11320:35;;;;5739:1:36;585:11320:35;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;585:11320:35;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;4296:198:36:-;4414:25;585:11320:35;4296:198:36;4414:25;585:11320:35;;4414:25:36;;;;585:11320:35;4414:25:36;;585:11320:35;4414:25:36;;;;;;4456:31;4414:25;;;;;;;4296:198;4456:31;;:::i;4414:25::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;585:11320:35;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;:::i;:::-;5739:1:36;585:11320:35;;;;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;585:11320:35;;-1:-1:-1;585:11320:35;;;;-1:-1:-1;585:11320:35;;;;-1:-1:-1;585:11320:35;;;;;;;;;;;;;;;;;;;:::o;2018:1867:36:-;;;;;;;585:11320:35;;;2252:33:36;;;;;585:11320:35;2252:33:36;585:11320:35;;;;2252:33:36;;;;;;;2240:46;2252:33;2247:38;2252:33;;;;;2018:1867;2247:38;;:::i;:::-;2240:46;:::i;:::-;585:11320:35;;;2333:33:36;;;2252;585:11320:35;2252:33:36;585:11320:35;;;;2333:33:36;;;;;;;2321:46;2333:33;2328:38;2333:33;2252;2333;;;2328:38;;:::i;2321:46::-;585:11320:35;;;2491:42:36;585:11320:35;2491:42:36;;2252:33;2491:42;2252:33;2491:42;1300;2491;;;;;;;2429:105;2491:42;585:11320:35;2491:42:36;2252:33;2491:42;;;2018:1867;-1:-1:-1;585:11320:35;;;2429:105:36;;585:11320:35;;;;2252:33:36;2429:105;;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2429:105:36;;;1300:42;2429:105;;;;;;;2252:33;;;2429:105;;;2018:1867;-1:-1:-1;585:11320:35;;;2560:63:36;;585:11320:35;;;;2252:33:36;2560:63;;585:11320:35;;;;;;;;;;;;;;;2252:33:36;585:11320:35;;;1394:42:36;2560:63;;;;;;;2252:33;2560:63;2651:52;2560:63;2252:33;2560:63;;;2018:1867;-1:-1:-1;585:11320:35;;;2651:52:36;;585:11320:35;;;;2252:33:36;2651:52;;585:11320:35;;;;;;;;;;;;;;;;;;2651:52:36;;;1394:42;2651:52;;;;;;;;;2252:33;2651:52;;;2018:1867;-1:-1:-1;2847:6:36;;;2252:33;2846:74;;2833:87;2931:20;2966:11;;2962:259;2966:11;;;3008:78;;;;;;;;:::i;:::-;2962:259;;3235:17;;3231:85;;3386:22;;;:::i;:::-;3457:28;;;;;;;3499;;;;;;;585:11320:35;;3561:42:36;585:11320:35;3561:42:36;;2252:33;3561:42;2252:33;3561:42;1300;3561;;;;;;;585:11320:35;2252:33:36;3561:42;;;585:11320:35;3561:42:36;2252:33;3561:42;;;;;3499:28;585:11320:35;;;;;;;;;;:::i;:::-;;;;;3430:183:36;;;585:11320:35;;;;3430:183:36;;585:11320:35;;3430:183:36;;;585:11320:35;3418:195:36;;;:::i;:::-;;;;;:::i;:::-;;3631:28;;;;;;;585:11320:35;;3624:76:36;;;;;585:11320:35;3624:76:36;;1300:42;2252:33;3624:76;;585:11320:35;;;;;;;3624:76:36;;;;;;;585:11320:35;3624:76:36;2252:33;3624:76;;;3631:28;585:11320:35;;;3732:107:36;;;;;585:11320:35;3732:107:36;;2252:33;3732:107;;585:11320:35;;;;;;;;;;;;;;;;:::i;:::-;3816:4:36;585:11320:35;;;;3823:15:36;585:11320:35;;;;3732:107:36;;;1300:42;3732:107;;;;;;;2252:33;3732:107;;;3850:28;;2018:1867;:::o;3732:107::-;;;;;;2252:33;3732:107;;;;;;:::i;:::-;3850:28;2018:1867;:::o;3624:76::-;;;2252:33;3624:76;2252:33;3624:76;;;;;;;:::i;:::-;;;;;3631:28;;;;;3561:42;;;;;;;;;;;;;;;;;:::i;:::-;;;;;3499:28;;;;3457;;;;;3231:85;585:11320:35;;;;;;;;;;;:::i;:::-;3290:1:36;585:11320:35;;;;2252:33:36;585:11320:35;;;3268:37:36;;:::o;2962:259::-;3132:78;;;;;:::i;:::-;2962:259;;;2846:74;2866:6;;;2876:4;2865:55;2846:74;;;2865:55;2883:17;;;;:::i;:::-;2903;;;;:::i;:::-;-1:-1:-1;2865:55:36;;2651:52;;;;;2252:33;2651:52;;2252:33;2651:52;;;;;;2252:33;2651:52;;;:::i;:::-;;;585:11320:35;;;;;;;2651:52:36;;;;;;;-1:-1:-1;2651:52:36;;2560:63;;;;;;;;;;;;;;:::i;:::-;;;;2429:105;;;;;;;;585:11320:35;2429:105:36;585:11320:35;2429:105:36;;;;;;;:::i;:::-;;;;;;;;2491:42;;;;2252:33;2491:42;2252:33;2491:42;;;;;;;:::i;:::-;;;;2333:33;;;;2252;2333;2252;2333;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;3891:399;;;;;;4080:204;;;4126:10;4166;4122:14;4162;4126:10;;;;:::i;:::-;585:11320:35;4122:14:36;;:::i;:::-;4166:10;;:::i;4080:204::-;4263:10;4219:14;4259;4223:10;;;;;;:::i;4219:14::-;4263:10;;:::i;4259:14::-;4080:204;3891:399::o;1084:3::-;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::o;:::-;;;;;;;;;;1207:42;;;;;;;;;;;;585:11320:35;;;;1207:42:36;585:11320:35;;;;;1207:42:36;585:11320:35;;:::i;:::-;1207:42:36;;;-1:-1:-1;1207:42:36;;;;:::o;:::-;585:11320:35;1207:42:36;:::o;:::-;;;;:::o;:::-;;585:11320:35;;1207:42:36;;;;;;;;;;;;585:11320:35;1207:42:36;585:11320:35;;;1207:42:36;;14165:1738;;;;;585:11320:35;;;14417:33:36;;;;;585:11320:35;14417:33:36;585:11320:35;;;;14417:33:36;;;;;;;14405:46;14417:33;14412:38;14417:33;;;;;14412:38;;:::i;14405:46::-;585:11320:35;;;14498:33:36;;;14417;585:11320:35;14417:33:36;585:11320:35;;;;14498:33:36;;;;;;;14486:46;14498:33;14493:38;14498:33;14417;14498;;;14493:38;;:::i;14486:46::-;585:11320:35;;;14656:42:36;585:11320:35;14656:42:36;;14417:33;14656:42;14417:33;14656:42;1300;14656;;;;;;;14594:105;14656:42;585:11320:35;14656:42:36;14417:33;14656:42;;;14165:1738;-1:-1:-1;585:11320:35;;;14594:105:36;;585:11320:35;;;;14417:33:36;14594:105;;585:11320:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14594:105:36;;;1300:42;14594:105;;;;;;;14417:33;;;14594:105;;;14165:1738;-1:-1:-1;585:11320:35;;;14725:63:36;;585:11320:35;;;;14417:33:36;14725:63;;585:11320:35;;;;;;;;;;;;;;;14417:33:36;585:11320:35;;;1394:42:36;14725:63;;;;;;;14417:33;14725:63;14816:52;14725:63;14417:33;14725:63;;;-1:-1:-1;585:11320:35;;;14816:52:36;;585:11320:35;;;;14417:33:36;14816:52;;585:11320:35;;;;;;;;;;;;;;;;;;14816:52:36;;;1394:42;14816:52;;;;;;;;;14417:33;14816:52;;;14165:1738;-1:-1:-1;15012:6:36;;;14417:33;15011:74;;14998:87;15096:20;15131:11;;15127:259;15131:11;;;15173:78;;;;;;;;:::i;:::-;15127:259;;15399:17;;15395:85;;15548:22;;;:::i;:::-;15619:28;;;;;;;15661;;;;;;;585:11320:35;;;15723:42:36;;14417:33;15723:42;14417:33;15723:42;1300;15723;;;;;;585:11320:35;15723:42:36;14417:33;15723:42;585:11320:35;15723:42:36;;;;;15661:28;585:11320:35;;;;;;;;;;:::i;:::-;;;;;14417:33:36;15592:183;;585:11320:35;;;;15592:183:36;;585:11320:35;;15592:183:36;;;585:11320:35;15580:195:36;;;:::i;:::-;;;;;:::i;:::-;;585:11320:35;;15796:61:36;;;;;585:11320:35;15796:61:36;;14417:33;15796:61;;585:11320:35;;;;;;;;;;;:::i;:::-;15796:61:36;;1300:42;15796:61;;;;;;;14417:33;15796:61;;;15868:28;;14165:1738;:::o;15723:42::-;;;;;;;14417:33;15723:42;14417:33;15723:42;;;;;;;:::i;:::-;;;;;15661:28;;;;;;15619;;;;;15127:259;15297:78;;;;;:::i;:::-;15127:259;;;15011:74;15031:6;;;15041:4;15030:55;15011:74;;;15030:55;15048:17;;;;:::i;:::-;15068;;;;:::i;:::-;-1:-1:-1;15030:55:36;;14816:52;;;;;14417:33;14816:52;;14417:33;14816:52;;;;;;14417:33;14816:52;;;:::i;:::-;;;585:11320:35;;;;;;;14816:52:36;;;;;;;-1:-1:-1;14816:52:36;;14594:105;;;;;;;;585:11320:35;14594:105:36;585:11320:35;14594:105:36;;;;;;;:::i;:::-;;;;;;;;14656:42;;;;14417:33;14656:42;14417:33;14656:42;;;;;;;:::i;:::-;;;;8427:1417;;1041:4;8581:150;;;;;;;;;;;;;;;;;;;;8745:10;;8741:179;;8938:19;;;585:11320:35;;;8996:71:36;;;9233:12;;9248:1;585:11320:35;;;;;;;9497:12:36;9218:32;;;9260:70;;;9407:72;9248:1;9407:72;;-1:-1:-1;9407:72:36;;;9076:117;;;;;;9497:12;:::i;:::-;9076:117;;9340:58;9488:21;1084:3;9535:1;1084:3;;9535:1;1084:3;;;;;;9554:1;9534:21;;;9576:17;;;;:::i;:::-;585:11320:35;;;;;;;9565:28:36;;;:::i;:::-;9614:17;;;;:::i;:::-;585:11320:35;;;;;;;9603:28:36;;;:::i;:::-;9652:17;;;;:::i;:::-;585:11320:35;;;;;;;9641:28:36;;;:::i;:::-;9690:17;;;;:::i;:::-;585:11320:35;;;;;;;9679:28:36;;;:::i;:::-;9728:17;;;;:::i;:::-;585:11320:35;;;;;;;;9766:17:36;9717:28;;;;:::i;:::-;9766:17;;;:::i;:::-;585:11320:35;;;;;;;9803:11:36;9755:28;;;;:::i;:::-;9803:11;;:::i;8741:179::-;8779:15;;;;;;585:11320:35;;8809:74:36;8896:13;:::o;10340:1748::-;;10666:8;10340:1748;10643:8;10340:1748;10621:8;10340:1748;10688:8;10340:1748;;;;;;;;10621:8;:::i;:::-;10643;;:::i;:::-;10666;;:::i;:::-;10688;;:::i;:::-;999:4;;10758:5;;;;;;:::i;:::-;1084:3;10794:5;;10830;10794;;;;;:::i;:::-;1084:3;10830:5;;;:::i;:::-;1084:3;;10853:1229;;;10887:7;;;;;;;:::i;:::-;1084:3;;;;;;;;;;;;;;10905:5;10886:25;10905:5;10886:32;10905:5;;:::i;:::-;10886:25;;:::i;:::-;:32;:::i;10853:1229::-;10950:2;10939:13;;;;;;;10935:1147;10950:2;;;11033:7;;;;:::i;:::-;11045:9;;1084:3;;;;;;;;;;;11062:1;1084:3;11062:1;1084:3;;;;;;11045:23;;;:::i;:::-;11071:9;;1084:3;;;;;;;;;;11236:7;11045:40;;11032:54;11045:40;11119:26;11045:40;;:::i;11032:54::-;11119:26;:::i;:::-;11236:7;;:::i;:::-;11228:4;;1084:3;;;;;;;;;;11328:5;11217:27;;;;:::i;:::-;11328:5;;:::i;:::-;11320:4;;1084:3;;;;;;;;;;;;;;;;;;;;;;;;11474:15;11421:31;;;;:::i;10935:1147::-;11627:7;;;;:::i;:::-;11639:6;;1084:3;;;;;;;;;;11639:16;;;;:::i;:::-;11658:6;;1084:3;;;;;;;;;;11819:7;11639:30;;11626:44;11639:30;11703:26;11639:30;;:::i;11819:7::-;1084:3;;11812;1084;;11812;1084;;;;;11910:5;11801:26;;;;:::i;11910:5::-;1084:3;;11903;1084;;11903;1084;;;;;;;;;;;;;;;;;;;12056:15;12003:31;;;;:::i;550:1391:39:-;645:6;;641:20;;835:14;875:1;900:35;894:41;;;890:116;;550:1391;1535:3;1023:25;1029:19;1881:5;1023:25;;;1019:99;;550:1391;1141:11;1135:17;;;1131:91;;550:1391;1245:7;1239:13;;;1235:86;;550:1391;1344:5;1338:11;;;1334:83;;550:1391;1440:4;1434:10;;;1430:82;;550:1391;1529:9;;1525:55;;550:1391;1602:5;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1636:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1670:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1704:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1738:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1772:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1806:5:39;;;;:::i;:::-;585:11320:35;875:1:39;585:11320:35;1881:5:39;;;:::i;:::-;1908:6;;;;;;:15;550:1391;:::o;1908:15::-;;;550:1391;:::o;1525:55::-;875:1;585:11320:35;1525:55:39;;1430:82;585:11320:35;;;1496:1:39;585:11320:35;1430:82:39;;;1334:83;1376:1;585:11320:35;;;;1334:83:39;;;1235:86;1279:2;585:11320:35;;1305:1:39;585:11320:35;1235:86:39;;;1131:91;1179:2;585:11320:35;;1205:2:39;585:11320:35;1131:91:39;;;1019:99;1075:2;585:11320:35;;1101:2:39;585:11320:35;1019:99:39;;;890:116;-1:-1:-1;;962:3:39;585:11320:35;;;;890:116:39;;641:20;653:8;650:1;653:8;:::o", + "linkReferences": {}, + "immutableReferences": { + "37821": [{ "start": 1548, "length": 32 }], + "37824": [{ "start": 1650, "length": 32 }], + "37827": [ + { "start": 1759, "length": 32 }, + { "start": 2322, "length": 32 } + ], + "38719": [ + { "start": 1230, "length": 32 }, + { "start": 5238, "length": 32 }, + { "start": 5396, "length": 32 }, + { "start": 5758, "length": 32 }, + { "start": 7600, "length": 32 }, + { "start": 8506, "length": 32 } + ], + "38722": [ + { "start": 1340, "length": 32 }, + { "start": 2724, "length": 32 }, + { "start": 7370, "length": 32 } + ] + } + }, + "methodIdentifiers": { + "_plugin()": "0cfd9ad4", + "aerodromeFactory()": "c45acd23", + "aerodromeRouter()": "e18e3a68", + "execute(bytes)": "09c5eabe", + "execute(bytes,address)": "6accdc13", + "getName()": "17d7de7c", + "getVersion()": "0d8e6e2c", + "quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)": "e69224d4" + }, + "rawMetadata": "{\"compiler\":{\"version\":\"0.8.24+commit.e11b9ed9\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"version\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"plugin\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"AerodromeUtils_ExceededMaxPriceImpact\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"AerodromeUtils_ExceededMaxSlippage\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"AerodromeUtils_ExceededMaxValueLoss\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"DeadlineExpired\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"ExecutionFailed\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"IncorrectETHAmount\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InsufficientLiquidity\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidSelector\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidVersionNumber\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"PoolDoesNotExist\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"SlippageExceeded\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UnauthorizedCaller\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"guageAddress\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"rewardToken\",\"type\":\"address\"}],\"name\":\"AeroRewardsClaimed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"poolAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"token0\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount0\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"token1\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount1\",\"type\":\"uint256\"}],\"name\":\"FeesWithdrawn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"guageAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"LPTokenStaked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"guageAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recepient\",\"type\":\"address\"}],\"name\":\"LPTokenUnStaked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenA\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenB\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountA\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountB\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"liquidity\",\"type\":\"uint256\"}],\"name\":\"LiquidityAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenA\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenB\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountA\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountB\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"liquidity\",\"type\":\"uint256\"}],\"name\":\"LiquidityRemoved\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenIn\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"tokenOut\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountIn\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountOut\",\"type\":\"uint256\"}],\"name\":\"Swapped\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"_plugin\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"aerodromeFactory\",\"outputs\":[{\"internalType\":\"contract IPoolFactory\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"aerodromeRouter\",\"outputs\":[{\"internalType\":\"contract IRouter\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getName\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getVersion\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"tokenA\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"tokenB\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"stable\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"amountA\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountB\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"balanceTokenRatio\",\"type\":\"bool\"}],\"name\":\"quoteDepositLiquidity\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amountAOut\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amountBOut\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"constructor\":{\"params\":{\"name\":\"Name of the connector\",\"version\":\"Version of the connector\"}},\"execute(bytes)\":{\"params\":{\"data\":\"The encoded parameters for the desired action\"},\"returns\":{\"_0\":\"bytes Encoded return data from the call\"}},\"getName()\":{\"returns\":{\"_0\":\"string The name of the connector\"}},\"getVersion()\":{\"returns\":{\"_0\":\"uint256 The version of the connector\"}},\"quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)\":{\"params\":{\"amountA\":\"The amount of token A being deposited\",\"amountB\":\"The amount of token B being deposited\",\"balanceTokenRatio\":\"Indicates whether to balance the token ratio with a swap\",\"stable\":\"Indicates whether the pair is a stable pair\",\"tokenA\":\"The address of token A\",\"tokenB\":\"The address of token B\"},\"returns\":{\"amountAOut\":\"The amount of token A expected to be deposited\",\"amountBOut\":\"The amount of token B expected to be deposited\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"_plugin()\":{\"notice\":\"Address of the connector plugin\"},\"constructor\":{\"notice\":\"Initializes the AerodromeConnector\"},\"execute(bytes)\":{\"notice\":\"Executes a liquidity action on Aerodrome\"},\"execute(bytes,address)\":{\"notice\":\"Allows specifying a caller (to be used by the plugin)\"},\"getName()\":{\"notice\":\"Gets the name of the connector\"},\"getVersion()\":{\"notice\":\"Gets the version of the connector\"},\"quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)\":{\"notice\":\"Quotes the expected amounts of token A and token B to deposit in a liquidity pool\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/connectors/base/aerodrome/main.sol\":\"AerodromeConnector\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"appendCBOR\":false,\"bytecodeHash\":\"none\"},\"optimizer\":{\"enabled\":true,\"runs\":1000000},\"remappings\":[\":@aerodrome/contracts/=lib/contracts/\",\":@coinbase/smart-wallet/=lib/smart-wallet/\",\":@opengsn/=lib/contracts/lib/gsn/packages/\",\":@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/\",\":@uniswap/v3-core/=lib/contracts/lib/v3-core/\",\":FreshCryptoLib/=lib/smart-wallet/lib/webauthn-sol/lib/FreshCryptoLib/solidity/src/\",\":account-abstraction/=lib/smart-wallet/lib/account-abstraction/contracts/\",\":contracts/=lib/contracts/contracts/\",\":ds-test/=lib/contracts/lib/ds-test/src/\",\":erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/\",\":forge-std/=lib/forge-std/src/\",\":gsn/=lib/contracts/lib/\",\":halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":p256-verifier/=lib/smart-wallet/lib/p256-verifier/\",\":safe-singleton-deployer-sol/=lib/smart-wallet/lib/safe-singleton-deployer-sol/\",\":smart-wallet/=lib/smart-wallet/\",\":solady/=lib/smart-wallet/lib/solady/src/\",\":utils/=lib/contracts/test/utils/\",\":v3-core/=lib/contracts/lib/v3-core/\",\":webauthn-sol/=lib/smart-wallet/lib/webauthn-sol/src/\"],\"viaIR\":true},\"sources\":{\"lib/contracts/contracts/interfaces/IPool.sol\":{\"keccak256\":\"0xb9d9fc89fe1d37370a851b85fa856f32026c93cd56084a2db7ab4c50f89b6b4f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e1ac3e07ff83ce27e641b75e129a3f057852455f209e2a98cf1f9f16bc540758\",\"dweb:/ipfs/QmQehv4Pyi4sw9m1qHNhuoxeVcYvouyFJft3LVoV2MLD7c\"]},\"lib/contracts/contracts/interfaces/IRouter.sol\":{\"keccak256\":\"0x3f27948c9630a73b69ef67c7d48f281e2a55fb7448069b74f7efc62ce8936def\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://96fa11dc0cb8f0da4b63be911aebe38eaca545c5f370479ee45bb93cfc748a07\",\"dweb:/ipfs/QmWgkipaWSvLVdtn1L4xMNEbSaRnLwzpR6e2fFWWB8n5sj\"]},\"lib/contracts/contracts/interfaces/IWETH.sol\":{\"keccak256\":\"0x6f443b30d7c2ba47ca3e0ce6344ab885c325cd223f14cd96ddba014c1033a2ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://82a174ff95c5f792522d1ef3a468ea367075b168c7a0189d8918079756670a53\",\"dweb:/ipfs/Qmejcmattr1iC4hm88Kho3jf1euSwcms9xLN7tY297hPrv\"]},\"lib/contracts/contracts/interfaces/factories/IPoolFactory.sol\":{\"keccak256\":\"0xc3a1d6e2e13a8a816abb6a591ff02c9a3972c53e67dd6cd75140291eadf8e98a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cd9eb9108c6b9c610a220636b4e2c50b3b8192c5398e52d601cf61803ca4b9a6\",\"dweb:/ipfs/QmW6taSoLHwyChGnpsyoRXJP83NkhUpatH2HTA3QVDaHHV\"]},\"lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"lib/openzeppelin-contracts/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0x5dc63d1c6a12fe1b17793e1745877b2fcbe1964c3edfd0a482fac21ca8f18261\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6b7f97c5960a50fd1822cb298551ffc908e37b7893a68d6d08bce18a11cb0f11\",\"dweb:/ipfs/QmQQvxBytoY1eBt3pRQDmvH2hZ2yjhs12YqVfzGm7KSURq\"]},\"lib/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"src/BaseConnector.sol\":{\"keccak256\":\"0xd5e83d6aaa9cd7539a274c716ccd698ebc7b7a72264177450ede92d87b6c33d6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d39dad05f3b6c5fad76579753942a179ad240996d7a05be1b3bb91be6359dc4d\",\"dweb:/ipfs/QmcxW81AdyDC7cketTi1xew5kVKWLa1Ki58RZ4AuTjFGpS\"]},\"src/connectors/base/aerodrome/events.sol\":{\"keccak256\":\"0x0569863f895832cc4f92f6ace1c3d25d52a2661a3a429ab02c4d028f0ad2a37c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://36dbfb52b77deff5d2bf5effff6bf51b188a9b44bbf8d3c07b9feed9530ec43a\",\"dweb:/ipfs/QmRD5oWBrTzYGn4Hbkr1vyh9HU6sXPqHjsLHJdwy77yWFK\"]},\"src/connectors/base/aerodrome/interface.sol\":{\"keccak256\":\"0x01554973801e9aadeda05298174b603b96e3e62ce5a59d966e29324084357971\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6dde59a4bed84b5b022c09d39c23c8063e0150fc6dad045376354f13ccaa4919\",\"dweb:/ipfs/QmU9E8awV9m4fx6923yM5TWajmRiB41TcJteovUxtfrqen\"]},\"src/connectors/base/aerodrome/main.sol\":{\"keccak256\":\"0xd41a8d330944f4f6faf950aa9f35a5deeeecb3bd1242e296f52d0abce67ffc3c\",\"license\":\"GNU\",\"urls\":[\"bzz-raw://64b2ce5fc9ee7fbec5640c339eec9367632b638101da2328af8e725a148d843c\",\"dweb:/ipfs/QmdVKT96b4ZdEMJQ4GjakLqHCape4CAywJJH9mUjWmL4ht\"]},\"src/connectors/base/aerodrome/utils.sol\":{\"keccak256\":\"0x5f81c8cca489557f2b5e2ef20d0ebfe7d460cd7b71eefc3cf0bfc6e0e74fd9f3\",\"license\":\"GNU\",\"urls\":[\"bzz-raw://2f37d56b6d03ffad53d5ba1b4d661d169f1c978e1227e3c98513a2f19190f335\",\"dweb:/ipfs/Qma3ZKQJrbzUm3bv3pSosrerrPP8amwvWV8V1h8MbBwqer\"]},\"src/connectors/base/common/constant.sol\":{\"keccak256\":\"0x5bbbb27e53700f83078838742c945c4a649a7b51554dde8b756078348e79a132\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://365e58f4d448d5f84e6ef6e2b6047849bea6c27b8d5bf44d7f55d15729519d6a\",\"dweb:/ipfs/QmRhrYNhRsjGQcWAFWMMLfdxP6YDDdpBxGSLV3QQmyaAuZ\"]},\"src/interface/IConnector.sol\":{\"keccak256\":\"0xc66c3e22372dddaba5666bfb79f5c0901e9adaf17caa7dbaf27b13cf4e96db04\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0bce2177be791674864c3fa9be62ef9fdd1f7c4f6b0e165ad3219bea3c5d6973\",\"dweb:/ipfs/QmQAKRY4eZKhrT39nHKT1W8UxyLBGwvzVXq9oW9ZoXXN1a\"]},\"src/lib/Babylonian.sol\":{\"keccak256\":\"0xadab3cc6503267d6cd5ee1d1c50d2fc6f4443916a35419d4c46ee4f270ea17a4\",\"license\":\"GPL-3.0-or-later\",\"urls\":[\"bzz-raw://a8e495ca3a3f727836182357c28f0998cebc40f842aca480b49ca34ff1113419\",\"dweb:/ipfs/QmdX7NgnduduUoVAc5XFJH9osEVweJNGV92ozUdL2GX6HZ\"]}},\"version\":1}", + "metadata": { + "compiler": { "version": "0.8.24+commit.e11b9ed9" }, + "language": "Solidity", + "output": { + "abi": [ + { + "inputs": [ + { "internalType": "string", "name": "name", "type": "string" }, + { "internalType": "uint256", "name": "version", "type": "uint256" }, + { "internalType": "address", "name": "plugin", "type": "address" } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { "inputs": [], "type": "error", "name": "AerodromeUtils_ExceededMaxPriceImpact" }, + { "inputs": [], "type": "error", "name": "AerodromeUtils_ExceededMaxSlippage" }, + { "inputs": [], "type": "error", "name": "AerodromeUtils_ExceededMaxValueLoss" }, + { "inputs": [], "type": "error", "name": "DeadlineExpired" }, + { "inputs": [{ "internalType": "string", "name": "reason", "type": "string" }], "type": "error", "name": "ExecutionFailed" }, + { "inputs": [], "type": "error", "name": "IncorrectETHAmount" }, + { "inputs": [], "type": "error", "name": "InsufficientLiquidity" }, + { "inputs": [], "type": "error", "name": "InvalidSelector" }, + { "inputs": [], "type": "error", "name": "InvalidVersionNumber" }, + { "inputs": [], "type": "error", "name": "PoolDoesNotExist" }, + { "inputs": [], "type": "error", "name": "SlippageExceeded" }, + { "inputs": [], "type": "error", "name": "UnauthorizedCaller" }, + { + "inputs": [ + { "internalType": "address", "name": "guageAddress", "type": "address", "indexed": true }, + { "internalType": "address", "name": "rewardToken", "type": "address", "indexed": true } + ], + "type": "event", + "name": "AeroRewardsClaimed", + "anonymous": false + }, + { + "inputs": [ + { "internalType": "address", "name": "poolAddress", "type": "address", "indexed": true }, + { "internalType": "address", "name": "token0", "type": "address", "indexed": false }, + { "internalType": "uint256", "name": "amount0", "type": "uint256", "indexed": false }, + { "internalType": "address", "name": "token1", "type": "address", "indexed": false }, + { "internalType": "uint256", "name": "amount1", "type": "uint256", "indexed": false } + ], + "type": "event", + "name": "FeesWithdrawn", + "anonymous": false + }, + { + "inputs": [ + { "internalType": "address", "name": "guageAddress", "type": "address", "indexed": true }, + { "internalType": "uint256", "name": "amount", "type": "uint256", "indexed": false } + ], + "type": "event", + "name": "LPTokenStaked", + "anonymous": false + }, + { + "inputs": [ + { "internalType": "address", "name": "guageAddress", "type": "address", "indexed": true }, + { "internalType": "uint256", "name": "amount", "type": "uint256", "indexed": false }, + { "internalType": "address", "name": "recepient", "type": "address", "indexed": true } + ], + "type": "event", + "name": "LPTokenUnStaked", + "anonymous": false + }, + { + "inputs": [ + { "internalType": "address", "name": "tokenA", "type": "address", "indexed": true }, + { "internalType": "address", "name": "tokenB", "type": "address", "indexed": true }, + { "internalType": "uint256", "name": "amountA", "type": "uint256", "indexed": false }, + { "internalType": "uint256", "name": "amountB", "type": "uint256", "indexed": false }, + { "internalType": "uint256", "name": "liquidity", "type": "uint256", "indexed": false } + ], + "type": "event", + "name": "LiquidityAdded", + "anonymous": false + }, + { + "inputs": [ + { "internalType": "address", "name": "tokenA", "type": "address", "indexed": true }, + { "internalType": "address", "name": "tokenB", "type": "address", "indexed": true }, + { "internalType": "uint256", "name": "amountA", "type": "uint256", "indexed": false }, + { "internalType": "uint256", "name": "amountB", "type": "uint256", "indexed": false }, + { "internalType": "uint256", "name": "liquidity", "type": "uint256", "indexed": false } + ], + "type": "event", + "name": "LiquidityRemoved", + "anonymous": false + }, + { + "inputs": [ + { "internalType": "address", "name": "tokenIn", "type": "address", "indexed": true }, + { "internalType": "address", "name": "tokenOut", "type": "address", "indexed": true }, + { "internalType": "uint256", "name": "amountIn", "type": "uint256", "indexed": false }, + { "internalType": "uint256", "name": "amountOut", "type": "uint256", "indexed": false } + ], + "type": "event", + "name": "Swapped", + "anonymous": false + }, + { + "inputs": [], + "stateMutability": "view", + "type": "function", + "name": "_plugin", + "outputs": [{ "internalType": "address", "name": "", "type": "address" }] + }, + { + "inputs": [], + "stateMutability": "view", + "type": "function", + "name": "aerodromeFactory", + "outputs": [{ "internalType": "contract IPoolFactory", "name": "", "type": "address" }] + }, + { + "inputs": [], + "stateMutability": "view", + "type": "function", + "name": "aerodromeRouter", + "outputs": [{ "internalType": "contract IRouter", "name": "", "type": "address" }] + }, + { + "inputs": [{ "internalType": "bytes", "name": "data", "type": "bytes" }], + "stateMutability": "payable", + "type": "function", + "name": "execute", + "outputs": [{ "internalType": "bytes", "name": "", "type": "bytes" }] + }, + { + "inputs": [ + { "internalType": "bytes", "name": "data", "type": "bytes" }, + { "internalType": "address", "name": "caller", "type": "address" } + ], + "stateMutability": "payable", + "type": "function", + "name": "execute", + "outputs": [{ "internalType": "bytes", "name": "", "type": "bytes" }] + }, + { + "inputs": [], + "stateMutability": "view", + "type": "function", + "name": "getName", + "outputs": [{ "internalType": "string", "name": "", "type": "string" }] + }, + { + "inputs": [], + "stateMutability": "view", + "type": "function", + "name": "getVersion", + "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }] + }, + { + "inputs": [ + { "internalType": "address", "name": "tokenA", "type": "address" }, + { "internalType": "address", "name": "tokenB", "type": "address" }, + { "internalType": "bool", "name": "stable", "type": "bool" }, + { "internalType": "uint256", "name": "amountA", "type": "uint256" }, + { "internalType": "uint256", "name": "amountB", "type": "uint256" }, + { "internalType": "bool", "name": "balanceTokenRatio", "type": "bool" } + ], + "stateMutability": "view", + "type": "function", + "name": "quoteDepositLiquidity", + "outputs": [ + { "internalType": "uint256", "name": "amountAOut", "type": "uint256" }, + { "internalType": "uint256", "name": "amountBOut", "type": "uint256" } + ] + }, + { "inputs": [], "stateMutability": "payable", "type": "receive" } + ], + "devdoc": { + "kind": "dev", + "methods": { + "constructor": { "params": { "name": "Name of the connector", "version": "Version of the connector" } }, + "execute(bytes)": { + "params": { "data": "The encoded parameters for the desired action" }, + "returns": { "_0": "bytes Encoded return data from the call" } + }, + "getName()": { "returns": { "_0": "string The name of the connector" } }, + "getVersion()": { "returns": { "_0": "uint256 The version of the connector" } }, + "quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)": { + "params": { + "amountA": "The amount of token A being deposited", + "amountB": "The amount of token B being deposited", + "balanceTokenRatio": "Indicates whether to balance the token ratio with a swap", + "stable": "Indicates whether the pair is a stable pair", + "tokenA": "The address of token A", + "tokenB": "The address of token B" + }, + "returns": { + "amountAOut": "The amount of token A expected to be deposited", + "amountBOut": "The amount of token B expected to be deposited" + } + } + }, + "version": 1 + }, + "userdoc": { + "kind": "user", + "methods": { + "_plugin()": { "notice": "Address of the connector plugin" }, + "constructor": { "notice": "Initializes the AerodromeConnector" }, + "execute(bytes)": { "notice": "Executes a liquidity action on Aerodrome" }, + "execute(bytes,address)": { "notice": "Allows specifying a caller (to be used by the plugin)" }, + "getName()": { "notice": "Gets the name of the connector" }, + "getVersion()": { "notice": "Gets the version of the connector" }, + "quoteDepositLiquidity(address,address,bool,uint256,uint256,bool)": { + "notice": "Quotes the expected amounts of token A and token B to deposit in a liquidity pool" + } + }, + "version": 1 + } + }, + "settings": { + "remappings": [ + "@aerodrome/contracts/=lib/contracts/", + "@coinbase/smart-wallet/=lib/smart-wallet/", + "@opengsn/=lib/contracts/lib/gsn/packages/", + "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", + "@uniswap/v3-core/=lib/contracts/lib/v3-core/", + "FreshCryptoLib/=lib/smart-wallet/lib/webauthn-sol/lib/FreshCryptoLib/solidity/src/", + "account-abstraction/=lib/smart-wallet/lib/account-abstraction/contracts/", + "contracts/=lib/contracts/contracts/", + "ds-test/=lib/contracts/lib/ds-test/src/", + "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", + "forge-std/=lib/forge-std/src/", + "gsn/=lib/contracts/lib/", + "halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/", + "openzeppelin-contracts/=lib/openzeppelin-contracts/", + "p256-verifier/=lib/smart-wallet/lib/p256-verifier/", + "safe-singleton-deployer-sol/=lib/smart-wallet/lib/safe-singleton-deployer-sol/", + "smart-wallet/=lib/smart-wallet/", + "solady/=lib/smart-wallet/lib/solady/src/", + "utils/=lib/contracts/test/utils/", + "v3-core/=lib/contracts/lib/v3-core/", + "webauthn-sol/=lib/smart-wallet/lib/webauthn-sol/src/" + ], + "optimizer": { "enabled": true, "runs": 1000000 }, + "metadata": { "bytecodeHash": "none", "appendCBOR": false }, + "compilationTarget": { "src/connectors/base/aerodrome/main.sol": "AerodromeConnector" }, + "evmVersion": "cancun", + "libraries": {}, + "viaIR": true + }, + "sources": { + "lib/contracts/contracts/interfaces/IPool.sol": { + "keccak256": "0xb9d9fc89fe1d37370a851b85fa856f32026c93cd56084a2db7ab4c50f89b6b4f", + "urls": [ + "bzz-raw://e1ac3e07ff83ce27e641b75e129a3f057852455f209e2a98cf1f9f16bc540758", + "dweb:/ipfs/QmQehv4Pyi4sw9m1qHNhuoxeVcYvouyFJft3LVoV2MLD7c" + ], + "license": "MIT" + }, + "lib/contracts/contracts/interfaces/IRouter.sol": { + "keccak256": "0x3f27948c9630a73b69ef67c7d48f281e2a55fb7448069b74f7efc62ce8936def", + "urls": [ + "bzz-raw://96fa11dc0cb8f0da4b63be911aebe38eaca545c5f370479ee45bb93cfc748a07", + "dweb:/ipfs/QmWgkipaWSvLVdtn1L4xMNEbSaRnLwzpR6e2fFWWB8n5sj" + ], + "license": "MIT" + }, + "lib/contracts/contracts/interfaces/IWETH.sol": { + "keccak256": "0x6f443b30d7c2ba47ca3e0ce6344ab885c325cd223f14cd96ddba014c1033a2ec", + "urls": [ + "bzz-raw://82a174ff95c5f792522d1ef3a468ea367075b168c7a0189d8918079756670a53", + "dweb:/ipfs/Qmejcmattr1iC4hm88Kho3jf1euSwcms9xLN7tY297hPrv" + ], + "license": "MIT" + }, + "lib/contracts/contracts/interfaces/factories/IPoolFactory.sol": { + "keccak256": "0xc3a1d6e2e13a8a816abb6a591ff02c9a3972c53e67dd6cd75140291eadf8e98a", + "urls": [ + "bzz-raw://cd9eb9108c6b9c610a220636b4e2c50b3b8192c5398e52d601cf61803ca4b9a6", + "dweb:/ipfs/QmW6taSoLHwyChGnpsyoRXJP83NkhUpatH2HTA3QVDaHHV" + ], + "license": "MIT" + }, + "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol": { + "keccak256": "0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7", + "urls": [ + "bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db", + "dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9" + ], + "license": "MIT" + }, + "lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol": { + "keccak256": "0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330", + "urls": [ + "bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf", + "dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r" + ], + "license": "MIT" + }, + "lib/openzeppelin-contracts/contracts/token/ERC721/IERC721.sol": { + "keccak256": "0x5dc63d1c6a12fe1b17793e1745877b2fcbe1964c3edfd0a482fac21ca8f18261", + "urls": [ + "bzz-raw://6b7f97c5960a50fd1822cb298551ffc908e37b7893a68d6d08bce18a11cb0f11", + "dweb:/ipfs/QmQQvxBytoY1eBt3pRQDmvH2hZ2yjhs12YqVfzGm7KSURq" + ], + "license": "MIT" + }, + "lib/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol": { + "keccak256": "0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8", + "urls": [ + "bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621", + "dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL" + ], + "license": "MIT" + }, + "src/BaseConnector.sol": { + "keccak256": "0xd5e83d6aaa9cd7539a274c716ccd698ebc7b7a72264177450ede92d87b6c33d6", + "urls": [ + "bzz-raw://d39dad05f3b6c5fad76579753942a179ad240996d7a05be1b3bb91be6359dc4d", + "dweb:/ipfs/QmcxW81AdyDC7cketTi1xew5kVKWLa1Ki58RZ4AuTjFGpS" + ], + "license": "MIT" + }, + "src/connectors/base/aerodrome/events.sol": { + "keccak256": "0x0569863f895832cc4f92f6ace1c3d25d52a2661a3a429ab02c4d028f0ad2a37c", + "urls": [ + "bzz-raw://36dbfb52b77deff5d2bf5effff6bf51b188a9b44bbf8d3c07b9feed9530ec43a", + "dweb:/ipfs/QmRD5oWBrTzYGn4Hbkr1vyh9HU6sXPqHjsLHJdwy77yWFK" + ], + "license": "MIT" + }, + "src/connectors/base/aerodrome/interface.sol": { + "keccak256": "0x01554973801e9aadeda05298174b603b96e3e62ce5a59d966e29324084357971", + "urls": [ + "bzz-raw://6dde59a4bed84b5b022c09d39c23c8063e0150fc6dad045376354f13ccaa4919", + "dweb:/ipfs/QmU9E8awV9m4fx6923yM5TWajmRiB41TcJteovUxtfrqen" + ], + "license": "MIT" + }, + "src/connectors/base/aerodrome/main.sol": { + "keccak256": "0xd41a8d330944f4f6faf950aa9f35a5deeeecb3bd1242e296f52d0abce67ffc3c", + "urls": [ + "bzz-raw://64b2ce5fc9ee7fbec5640c339eec9367632b638101da2328af8e725a148d843c", + "dweb:/ipfs/QmdVKT96b4ZdEMJQ4GjakLqHCape4CAywJJH9mUjWmL4ht" + ], + "license": "GNU" + }, + "src/connectors/base/aerodrome/utils.sol": { + "keccak256": "0x5f81c8cca489557f2b5e2ef20d0ebfe7d460cd7b71eefc3cf0bfc6e0e74fd9f3", + "urls": [ + "bzz-raw://2f37d56b6d03ffad53d5ba1b4d661d169f1c978e1227e3c98513a2f19190f335", + "dweb:/ipfs/Qma3ZKQJrbzUm3bv3pSosrerrPP8amwvWV8V1h8MbBwqer" + ], + "license": "GNU" + }, + "src/connectors/base/common/constant.sol": { + "keccak256": "0x5bbbb27e53700f83078838742c945c4a649a7b51554dde8b756078348e79a132", + "urls": [ + "bzz-raw://365e58f4d448d5f84e6ef6e2b6047849bea6c27b8d5bf44d7f55d15729519d6a", + "dweb:/ipfs/QmRhrYNhRsjGQcWAFWMMLfdxP6YDDdpBxGSLV3QQmyaAuZ" + ], + "license": "MIT" + }, + "src/interface/IConnector.sol": { + "keccak256": "0xc66c3e22372dddaba5666bfb79f5c0901e9adaf17caa7dbaf27b13cf4e96db04", + "urls": [ + "bzz-raw://0bce2177be791674864c3fa9be62ef9fdd1f7c4f6b0e165ad3219bea3c5d6973", + "dweb:/ipfs/QmQAKRY4eZKhrT39nHKT1W8UxyLBGwvzVXq9oW9ZoXXN1a" + ], + "license": "MIT" + }, + "src/lib/Babylonian.sol": { + "keccak256": "0xadab3cc6503267d6cd5ee1d1c50d2fc6f4443916a35419d4c46ee4f270ea17a4", + "urls": [ + "bzz-raw://a8e495ca3a3f727836182357c28f0998cebc40f842aca480b49ca34ff1113419", + "dweb:/ipfs/QmdX7NgnduduUoVAc5XFJH9osEVweJNGV92ozUdL2GX6HZ" + ], + "license": "GPL-3.0-or-later" + } + }, + "version": 1 + }, + "id": 35 +} diff --git a/constants/abis/ConnectorPlugin.json b/constants/abis/ConnectorPlugin.json index 341d45d..ee72633 100644 --- a/constants/abis/ConnectorPlugin.json +++ b/constants/abis/ConnectorPlugin.json @@ -1 +1,208 @@ -{"abi":[{"type":"constructor","inputs":[{"name":"_registry","type":"address","internalType":"address"}],"stateMutability":"nonpayable"},{"type":"receive","stateMutability":"payable"},{"type":"function","name":"execute","inputs":[{"name":"_connector","type":"address","internalType":"address"},{"name":"_data","type":"bytes","internalType":"bytes"}],"outputs":[{"name":"","type":"bytes","internalType":"bytes"}],"stateMutability":"payable"},{"type":"function","name":"registry","inputs":[],"outputs":[{"name":"","type":"address","internalType":"contract ConnectorRegistry"}],"stateMutability":"view"},{"type":"event","name":"ConnectorExecuted","inputs":[{"name":"connector","type":"address","indexed":true,"internalType":"address"},{"name":"caller","type":"address","indexed":true,"internalType":"address"},{"name":"data","type":"bytes","indexed":false,"internalType":"bytes"},{"name":"result","type":"bytes","indexed":false,"internalType":"bytes"}],"anonymous":false},{"type":"error","name":"ConnectorExecutionFailed","inputs":[{"name":"connector","type":"address","internalType":"address"},{"name":"data","type":"bytes","internalType":"bytes"}]},{"type":"error","name":"ConnectorNotApproved","inputs":[{"name":"connector","type":"address","internalType":"address"}]}],"bytecode":{"object":"0x60a03461007257601f6105a238819003918201601f19168301916001600160401b038311848410176100765780849260209460405283398101031261007257516001600160a01b0381169081900361007257608052604051610517908161008b8239608051818181608e01526101710152f35b5f80fd5b634e487b7160e01b5f52604160045260245ffdfe6080604090808252600480361015610021575b505050361561001f575f80fd5b005b5f3560e01c9182631cff79cd146100b6575050637b10399914610045578080610012565b346100b2575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100b2576020905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b5f80fd5b83807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100b257823573ffffffffffffffffffffffffffffffffffffffff8082168083036100b25760249586359067ffffffffffffffff948583116100b257366023840112156100b25782820135948686116100b257898401938a8736920101116100b25788907fecac7cf50000000000000000000000000000000000000000000000000000000082528584830152818b60209b8c937f0000000000000000000000000000000000000000000000000000000000000000165afa9081156103c3575f9161038d575b501561035f575f809188518a8101907f6accdc130000000000000000000000000000000000000000000000000000000082528a8d82015261021c816101ea606482018c8b61049f565b336044830152037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101835282610431565b519134905af1973d15610357573d986102348a6104dd565b9961024189519b8c610431565b8a523d5f8a8c013e5b156103135750506102857f25fbd8e076227fb9f0896280f3a1dc453080008fc552c7c113ab631c06c4a26f918651948786528786019161049f565b92808403878201528061029933958a6103ee565b0390a3835184019383818187019603126100b257838101519182116100b257019083603f830112156100b25782820151916102d3836104dd565b946102e083519687610431565b8386528284830101116100b25761030f92610300918386880191016103cd565b519282849384528301906103ee565b0390f35b918487610353939481519687967f8dc02213000000000000000000000000000000000000000000000000000000008852870152850152604484019161049f565b0390fd5b60609861024a565b8882858951917f46c393d1000000000000000000000000000000000000000000000000000000008352820152fd5b90508881813d83116103bc575b6103a48183610431565b810103126100b2575180151581036100b2578a6101a1565b503d61039a565b88513d5f823e3d90fd5b5f5b8381106103de5750505f910152565b81810151838201526020016103cf565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f60209361042a815180928187528780880191016103cd565b0116010190565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761047257604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b601f82602094937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe093818652868601375f8582860101520116010190565b67ffffffffffffffff811161047257601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0166020019056","sourceMap":"404:1730:31:-:0;;;;;;;;;;;;;-1:-1:-1;;404:1730:31;;;;-1:-1:-1;;;;;404:1730:31;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;404:1730:31;;;;;;;;1312:39;;404:1730;;;;;;;;1312:39;404:1730;;;;;;;;;;;;-1:-1:-1;404:1730:31;;;;;;-1:-1:-1;404:1730:31;;;;;-1:-1:-1;404:1730:31","linkReferences":{}},"deployedBytecode":{"object":"0x6080604090808252600480361015610021575b505050361561001f575f80fd5b005b5f3560e01c9182631cff79cd146100b6575050637b10399914610045578080610012565b346100b2575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100b2576020905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b5f80fd5b83807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100b257823573ffffffffffffffffffffffffffffffffffffffff8082168083036100b25760249586359067ffffffffffffffff948583116100b257366023840112156100b25782820135948686116100b257898401938a8736920101116100b25788907fecac7cf50000000000000000000000000000000000000000000000000000000082528584830152818b60209b8c937f0000000000000000000000000000000000000000000000000000000000000000165afa9081156103c3575f9161038d575b501561035f575f809188518a8101907f6accdc130000000000000000000000000000000000000000000000000000000082528a8d82015261021c816101ea606482018c8b61049f565b336044830152037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101835282610431565b519134905af1973d15610357573d986102348a6104dd565b9961024189519b8c610431565b8a523d5f8a8c013e5b156103135750506102857f25fbd8e076227fb9f0896280f3a1dc453080008fc552c7c113ab631c06c4a26f918651948786528786019161049f565b92808403878201528061029933958a6103ee565b0390a3835184019383818187019603126100b257838101519182116100b257019083603f830112156100b25782820151916102d3836104dd565b946102e083519687610431565b8386528284830101116100b25761030f92610300918386880191016103cd565b519282849384528301906103ee565b0390f35b918487610353939481519687967f8dc02213000000000000000000000000000000000000000000000000000000008852870152850152604484019161049f565b0390fd5b60609861024a565b8882858951917f46c393d1000000000000000000000000000000000000000000000000000000008352820152fd5b90508881813d83116103bc575b6103a48183610431565b810103126100b2575180151581036100b2578a6101a1565b503d61039a565b88513d5f823e3d90fd5b5f5b8381106103de5750505f910152565b81810151838201526020016103cf565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f60209361042a815180928187528780880191016103cd565b0116010190565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761047257604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b601f82602094937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe093818652868601375f8582860101520116010190565b67ffffffffffffffff811161047257601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0166020019056","sourceMap":"404:1730:31:-:0;;;;;;;;;;;;;-1:-1:-1;404:1730:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;497:43;404:1730;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1513:40;;404:1730;1513:40;;;;;;404:1730;;;;1513:8;;;;404:1730;1513:40;;;;;;;404:1730;1513:40;;;404:1730;1512:41;;1508:111;;404:1730;;;;;1745:68;;;;;;;;;;;404:1730;1745:68;404:1730;;;;;;;;:::i;:::-;1802:10;404:1730;;;;1745:68;;;;;;;;:::i;:::-;1862:48;1885:9;;1862:48;;;;404:1730;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;1924:8;1920:89;;404:1730;;;2024:56;404:1730;;;;;;;;;;;;:::i;:::-;;;;;;;;;1802:10;404:1730;1802:10;404:1730;;;:::i;:::-;2024:56;;;404:1730;;2098:27;;;;;;;;404:1730;;;;;2098:27;;;404:1730;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;1920:89;404:1730;;;;;;;;1955:43;;;;;;;;404:1730;;;;;;;;;:::i;:::-;1955:43;;;404:1730;;;;;1508:111;404:1730;;;;;1576:32;;;;;;404:1730;1576:32;1513:40;;;;;;;;;;;;;;;;:::i;:::-;;;404:1730;;;;;;;;;;;;1513:40;;;;;;;;;404:1730;;;;;;;;;;;;;;;;;-1:-1:-1;;404:1730:31;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;404:1730:31;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;:::o","linkReferences":{},"immutableReferences":{"37925":[{"start":142,"length":32},{"start":369,"length":32}]}},"methodIdentifiers":{"execute(address,bytes)":"1cff79cd","registry()":"7b103999"},"rawMetadata":"{\"compiler\":{\"version\":\"0.8.24+commit.e11b9ed9\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_registry\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"connector\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"ConnectorExecutionFailed\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"connector\",\"type\":\"address\"}],\"name\":\"ConnectorNotApproved\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"connector\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"result\",\"type\":\"bytes\"}],\"name\":\"ConnectorExecuted\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_connector\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"registry\",\"outputs\":[{\"internalType\":\"contract ConnectorRegistry\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"This plugin checks the ConnectorRegistry before forwarding calls to connectors.\",\"events\":{\"ConnectorExecuted(address,address,bytes,bytes)\":{\"params\":{\"caller\":\"The address of the original caller (smart wallet)\",\"connector\":\"The address of the executed connector\",\"data\":\"The calldata passed to the connector\",\"result\":\"The result returned by the connector\"}}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"params\":{\"_registry\":\"The address of the ConnectorRegistry contract\"}}},\"title\":\"ConnectorPlugin\",\"version\":1},\"userdoc\":{\"events\":{\"ConnectorExecuted(address,address,bytes,bytes)\":{\"notice\":\"Emitted when a connector is successfully executed\"}},\"kind\":\"user\",\"methods\":{\"constructor\":{\"notice\":\"Constructs the ConnectorPlugin with a reference to the ConnectorRegistry\"},\"registry()\":{\"notice\":\"The address of the ConnectorRegistry contract\"}},\"notice\":\"This contract serves as an intermediary between the smart wallet and connectors, ensuring that only approved connectors are executed.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/ConnectorPlugin.sol\":\"ConnectorPlugin\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"appendCBOR\":false,\"bytecodeHash\":\"none\"},\"optimizer\":{\"enabled\":true,\"runs\":1000000},\"remappings\":[\":@aerodrome/contracts/=lib/contracts/\",\":@coinbase/smart-wallet/=lib/smart-wallet/\",\":@opengsn/=lib/contracts/lib/gsn/packages/\",\":@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/\",\":@uniswap/v3-core/=lib/contracts/lib/v3-core/\",\":FreshCryptoLib/=lib/smart-wallet/lib/webauthn-sol/lib/FreshCryptoLib/solidity/src/\",\":account-abstraction/=lib/smart-wallet/lib/account-abstraction/contracts/\",\":contracts/=lib/contracts/contracts/\",\":ds-test/=lib/contracts/lib/ds-test/src/\",\":erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/\",\":forge-std/=lib/forge-std/src/\",\":gsn/=lib/contracts/lib/\",\":halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":p256-verifier/=lib/smart-wallet/lib/p256-verifier/\",\":safe-singleton-deployer-sol/=lib/smart-wallet/lib/safe-singleton-deployer-sol/\",\":smart-wallet/=lib/smart-wallet/\",\":solady/=lib/smart-wallet/lib/solady/src/\",\":utils/=lib/contracts/test/utils/\",\":v3-core/=lib/contracts/lib/v3-core/\",\":webauthn-sol/=lib/smart-wallet/lib/webauthn-sol/src/\"],\"viaIR\":true},\"sources\":{\"lib/openzeppelin-contracts/contracts/access/Ownable.sol\":{\"keccak256\":\"0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6\",\"dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a\"]},\"lib/openzeppelin-contracts/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"src/ConnectorPlugin.sol\":{\"keccak256\":\"0xf8d96a1d4fdfbedb59793df1513e0a8d4782ad05c74ce0995b3890041dbbc17a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0c34043f6651a78d43336af2493725f84f47aa9c8a2daa3a27b59445f2132503\",\"dweb:/ipfs/QmWkx5D5i4WvgJD5iK2Jr4ie14mgon7BCgJ645SnfYz4Qo\"]},\"src/ConnectorRegistry.sol\":{\"keccak256\":\"0x2753145dd83f65905b0e0ca3b86d92eb6177cfd1c7e4da4c2666e394754de527\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://76f779bca8cd724de60175a9efad3206036472f873d22cf6c826240e0c92079b\",\"dweb:/ipfs/QmVQqsRQrtfNiLnk9Sw3tN6BBHDXYzr1EEZCbdzZjFXqGj\"]},\"src/interface/IConnector.sol\":{\"keccak256\":\"0xc66c3e22372dddaba5666bfb79f5c0901e9adaf17caa7dbaf27b13cf4e96db04\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0bce2177be791674864c3fa9be62ef9fdd1f7c4f6b0e165ad3219bea3c5d6973\",\"dweb:/ipfs/QmQAKRY4eZKhrT39nHKT1W8UxyLBGwvzVXq9oW9ZoXXN1a\"]}},\"version\":1}","metadata":{"compiler":{"version":"0.8.24+commit.e11b9ed9"},"language":"Solidity","output":{"abi":[{"inputs":[{"internalType":"address","name":"_registry","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"connector","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"type":"error","name":"ConnectorExecutionFailed"},{"inputs":[{"internalType":"address","name":"connector","type":"address"}],"type":"error","name":"ConnectorNotApproved"},{"inputs":[{"internalType":"address","name":"connector","type":"address","indexed":true},{"internalType":"address","name":"caller","type":"address","indexed":true},{"internalType":"bytes","name":"data","type":"bytes","indexed":false},{"internalType":"bytes","name":"result","type":"bytes","indexed":false}],"type":"event","name":"ConnectorExecuted","anonymous":false},{"inputs":[{"internalType":"address","name":"_connector","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","type":"function","name":"execute","outputs":[{"internalType":"bytes","name":"","type":"bytes"}]},{"inputs":[],"stateMutability":"view","type":"function","name":"registry","outputs":[{"internalType":"contract ConnectorRegistry","name":"","type":"address"}]},{"inputs":[],"stateMutability":"payable","type":"receive"}],"devdoc":{"kind":"dev","methods":{"constructor":{"params":{"_registry":"The address of the ConnectorRegistry contract"}}},"version":1},"userdoc":{"kind":"user","methods":{"constructor":{"notice":"Constructs the ConnectorPlugin with a reference to the ConnectorRegistry"},"registry()":{"notice":"The address of the ConnectorRegistry contract"}},"version":1}},"settings":{"remappings":["@aerodrome/contracts/=lib/contracts/","@coinbase/smart-wallet/=lib/smart-wallet/","@opengsn/=lib/contracts/lib/gsn/packages/","@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/","@uniswap/v3-core/=lib/contracts/lib/v3-core/","FreshCryptoLib/=lib/smart-wallet/lib/webauthn-sol/lib/FreshCryptoLib/solidity/src/","account-abstraction/=lib/smart-wallet/lib/account-abstraction/contracts/","contracts/=lib/contracts/contracts/","ds-test/=lib/contracts/lib/ds-test/src/","erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/","forge-std/=lib/forge-std/src/","gsn/=lib/contracts/lib/","halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/","openzeppelin-contracts/=lib/openzeppelin-contracts/","p256-verifier/=lib/smart-wallet/lib/p256-verifier/","safe-singleton-deployer-sol/=lib/smart-wallet/lib/safe-singleton-deployer-sol/","smart-wallet/=lib/smart-wallet/","solady/=lib/smart-wallet/lib/solady/src/","utils/=lib/contracts/test/utils/","v3-core/=lib/contracts/lib/v3-core/","webauthn-sol/=lib/smart-wallet/lib/webauthn-sol/src/"],"optimizer":{"enabled":true,"runs":1000000},"metadata":{"bytecodeHash":"none","appendCBOR":false},"compilationTarget":{"src/ConnectorPlugin.sol":"ConnectorPlugin"},"evmVersion":"cancun","libraries":{},"viaIR":true},"sources":{"lib/openzeppelin-contracts/contracts/access/Ownable.sol":{"keccak256":"0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb","urls":["bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6","dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/utils/Context.sol":{"keccak256":"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2","urls":["bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12","dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF"],"license":"MIT"},"src/ConnectorPlugin.sol":{"keccak256":"0xf8d96a1d4fdfbedb59793df1513e0a8d4782ad05c74ce0995b3890041dbbc17a","urls":["bzz-raw://0c34043f6651a78d43336af2493725f84f47aa9c8a2daa3a27b59445f2132503","dweb:/ipfs/QmWkx5D5i4WvgJD5iK2Jr4ie14mgon7BCgJ645SnfYz4Qo"],"license":"MIT"},"src/ConnectorRegistry.sol":{"keccak256":"0x2753145dd83f65905b0e0ca3b86d92eb6177cfd1c7e4da4c2666e394754de527","urls":["bzz-raw://76f779bca8cd724de60175a9efad3206036472f873d22cf6c826240e0c92079b","dweb:/ipfs/QmVQqsRQrtfNiLnk9Sw3tN6BBHDXYzr1EEZCbdzZjFXqGj"],"license":"MIT"},"src/interface/IConnector.sol":{"keccak256":"0xc66c3e22372dddaba5666bfb79f5c0901e9adaf17caa7dbaf27b13cf4e96db04","urls":["bzz-raw://0bce2177be791674864c3fa9be62ef9fdd1f7c4f6b0e165ad3219bea3c5d6973","dweb:/ipfs/QmQAKRY4eZKhrT39nHKT1W8UxyLBGwvzVXq9oW9ZoXXN1a"],"license":"MIT"}},"version":1},"id":31} \ No newline at end of file +{ + "abi": [ + { + "type": "constructor", + "inputs": [{ "name": "_registry", "type": "address", "internalType": "address" }], + "stateMutability": "nonpayable" + }, + { "type": "receive", "stateMutability": "payable" }, + { + "type": "function", + "name": "execute", + "inputs": [ + { "name": "_connector", "type": "address", "internalType": "address" }, + { "name": "_data", "type": "bytes", "internalType": "bytes" } + ], + "outputs": [{ "name": "", "type": "bytes", "internalType": "bytes" }], + "stateMutability": "payable" + }, + { + "type": "function", + "name": "registry", + "inputs": [], + "outputs": [{ "name": "", "type": "address", "internalType": "contract ConnectorRegistry" }], + "stateMutability": "view" + }, + { + "type": "event", + "name": "ConnectorExecuted", + "inputs": [ + { "name": "connector", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "caller", "type": "address", "indexed": true, "internalType": "address" }, + { "name": "data", "type": "bytes", "indexed": false, "internalType": "bytes" }, + { "name": "result", "type": "bytes", "indexed": false, "internalType": "bytes" } + ], + "anonymous": false + }, + { + "type": "error", + "name": "ConnectorExecutionFailed", + "inputs": [ + { "name": "connector", "type": "address", "internalType": "address" }, + { "name": "data", "type": "bytes", "internalType": "bytes" } + ] + }, + { "type": "error", "name": "ConnectorNotApproved", "inputs": [{ "name": "connector", "type": "address", "internalType": "address" }] } + ], + "bytecode": { + "object": "0x60a03461007257601f6105a238819003918201601f19168301916001600160401b038311848410176100765780849260209460405283398101031261007257516001600160a01b0381169081900361007257608052604051610517908161008b8239608051818181608e01526101710152f35b5f80fd5b634e487b7160e01b5f52604160045260245ffdfe6080604090808252600480361015610021575b505050361561001f575f80fd5b005b5f3560e01c9182631cff79cd146100b6575050637b10399914610045578080610012565b346100b2575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100b2576020905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b5f80fd5b83807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100b257823573ffffffffffffffffffffffffffffffffffffffff8082168083036100b25760249586359067ffffffffffffffff948583116100b257366023840112156100b25782820135948686116100b257898401938a8736920101116100b25788907fecac7cf50000000000000000000000000000000000000000000000000000000082528584830152818b60209b8c937f0000000000000000000000000000000000000000000000000000000000000000165afa9081156103c3575f9161038d575b501561035f575f809188518a8101907f6accdc130000000000000000000000000000000000000000000000000000000082528a8d82015261021c816101ea606482018c8b61049f565b336044830152037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101835282610431565b519134905af1973d15610357573d986102348a6104dd565b9961024189519b8c610431565b8a523d5f8a8c013e5b156103135750506102857f25fbd8e076227fb9f0896280f3a1dc453080008fc552c7c113ab631c06c4a26f918651948786528786019161049f565b92808403878201528061029933958a6103ee565b0390a3835184019383818187019603126100b257838101519182116100b257019083603f830112156100b25782820151916102d3836104dd565b946102e083519687610431565b8386528284830101116100b25761030f92610300918386880191016103cd565b519282849384528301906103ee565b0390f35b918487610353939481519687967f8dc02213000000000000000000000000000000000000000000000000000000008852870152850152604484019161049f565b0390fd5b60609861024a565b8882858951917f46c393d1000000000000000000000000000000000000000000000000000000008352820152fd5b90508881813d83116103bc575b6103a48183610431565b810103126100b2575180151581036100b2578a6101a1565b503d61039a565b88513d5f823e3d90fd5b5f5b8381106103de5750505f910152565b81810151838201526020016103cf565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f60209361042a815180928187528780880191016103cd565b0116010190565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761047257604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b601f82602094937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe093818652868601375f8582860101520116010190565b67ffffffffffffffff811161047257601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0166020019056", + "sourceMap": "404:1730:31:-:0;;;;;;;;;;;;;-1:-1:-1;;404:1730:31;;;;-1:-1:-1;;;;;404:1730:31;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;404:1730:31;;;;;;;;1312:39;;404:1730;;;;;;;;1312:39;404:1730;;;;;;;;;;;;-1:-1:-1;404:1730:31;;;;;;-1:-1:-1;404:1730:31;;;;;-1:-1:-1;404:1730:31", + "linkReferences": {} + }, + "deployedBytecode": { + "object": "0x6080604090808252600480361015610021575b505050361561001f575f80fd5b005b5f3560e01c9182631cff79cd146100b6575050637b10399914610045578080610012565b346100b2575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100b2576020905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b5f80fd5b83807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100b257823573ffffffffffffffffffffffffffffffffffffffff8082168083036100b25760249586359067ffffffffffffffff948583116100b257366023840112156100b25782820135948686116100b257898401938a8736920101116100b25788907fecac7cf50000000000000000000000000000000000000000000000000000000082528584830152818b60209b8c937f0000000000000000000000000000000000000000000000000000000000000000165afa9081156103c3575f9161038d575b501561035f575f809188518a8101907f6accdc130000000000000000000000000000000000000000000000000000000082528a8d82015261021c816101ea606482018c8b61049f565b336044830152037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101835282610431565b519134905af1973d15610357573d986102348a6104dd565b9961024189519b8c610431565b8a523d5f8a8c013e5b156103135750506102857f25fbd8e076227fb9f0896280f3a1dc453080008fc552c7c113ab631c06c4a26f918651948786528786019161049f565b92808403878201528061029933958a6103ee565b0390a3835184019383818187019603126100b257838101519182116100b257019083603f830112156100b25782820151916102d3836104dd565b946102e083519687610431565b8386528284830101116100b25761030f92610300918386880191016103cd565b519282849384528301906103ee565b0390f35b918487610353939481519687967f8dc02213000000000000000000000000000000000000000000000000000000008852870152850152604484019161049f565b0390fd5b60609861024a565b8882858951917f46c393d1000000000000000000000000000000000000000000000000000000008352820152fd5b90508881813d83116103bc575b6103a48183610431565b810103126100b2575180151581036100b2578a6101a1565b503d61039a565b88513d5f823e3d90fd5b5f5b8381106103de5750505f910152565b81810151838201526020016103cf565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f60209361042a815180928187528780880191016103cd565b0116010190565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761047257604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b601f82602094937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe093818652868601375f8582860101520116010190565b67ffffffffffffffff811161047257601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0166020019056", + "sourceMap": "404:1730:31:-:0;;;;;;;;;;;;;-1:-1:-1;404:1730:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;497:43;404:1730;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1513:40;;404:1730;1513:40;;;;;;404:1730;;;;1513:8;;;;404:1730;1513:40;;;;;;;404:1730;1513:40;;;404:1730;1512:41;;1508:111;;404:1730;;;;;1745:68;;;;;;;;;;;404:1730;1745:68;404:1730;;;;;;;;:::i;:::-;1802:10;404:1730;;;;1745:68;;;;;;;;:::i;:::-;1862:48;1885:9;;1862:48;;;;404:1730;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;1924:8;1920:89;;404:1730;;;2024:56;404:1730;;;;;;;;;;;;:::i;:::-;;;;;;;;;1802:10;404:1730;1802:10;404:1730;;;:::i;:::-;2024:56;;;404:1730;;2098:27;;;;;;;;404:1730;;;;;2098:27;;;404:1730;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;1920:89;404:1730;;;;;;;;1955:43;;;;;;;;404:1730;;;;;;;;;:::i;:::-;1955:43;;;404:1730;;;;;1508:111;404:1730;;;;;1576:32;;;;;;404:1730;1576:32;1513:40;;;;;;;;;;;;;;;;:::i;:::-;;;404:1730;;;;;;;;;;;;1513:40;;;;;;;;;404:1730;;;;;;;;;;;;;;;;;-1:-1:-1;;404:1730:31;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;404:1730:31;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;:::o", + "linkReferences": {}, + "immutableReferences": { + "37925": [ + { "start": 142, "length": 32 }, + { "start": 369, "length": 32 } + ] + } + }, + "methodIdentifiers": { "execute(address,bytes)": "1cff79cd", "registry()": "7b103999" }, + "rawMetadata": "{\"compiler\":{\"version\":\"0.8.24+commit.e11b9ed9\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_registry\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"connector\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"ConnectorExecutionFailed\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"connector\",\"type\":\"address\"}],\"name\":\"ConnectorNotApproved\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"connector\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"result\",\"type\":\"bytes\"}],\"name\":\"ConnectorExecuted\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_connector\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"registry\",\"outputs\":[{\"internalType\":\"contract ConnectorRegistry\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"This plugin checks the ConnectorRegistry before forwarding calls to connectors.\",\"events\":{\"ConnectorExecuted(address,address,bytes,bytes)\":{\"params\":{\"caller\":\"The address of the original caller (smart wallet)\",\"connector\":\"The address of the executed connector\",\"data\":\"The calldata passed to the connector\",\"result\":\"The result returned by the connector\"}}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"params\":{\"_registry\":\"The address of the ConnectorRegistry contract\"}}},\"title\":\"ConnectorPlugin\",\"version\":1},\"userdoc\":{\"events\":{\"ConnectorExecuted(address,address,bytes,bytes)\":{\"notice\":\"Emitted when a connector is successfully executed\"}},\"kind\":\"user\",\"methods\":{\"constructor\":{\"notice\":\"Constructs the ConnectorPlugin with a reference to the ConnectorRegistry\"},\"registry()\":{\"notice\":\"The address of the ConnectorRegistry contract\"}},\"notice\":\"This contract serves as an intermediary between the smart wallet and connectors, ensuring that only approved connectors are executed.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/ConnectorPlugin.sol\":\"ConnectorPlugin\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"appendCBOR\":false,\"bytecodeHash\":\"none\"},\"optimizer\":{\"enabled\":true,\"runs\":1000000},\"remappings\":[\":@aerodrome/contracts/=lib/contracts/\",\":@coinbase/smart-wallet/=lib/smart-wallet/\",\":@opengsn/=lib/contracts/lib/gsn/packages/\",\":@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/\",\":@uniswap/v3-core/=lib/contracts/lib/v3-core/\",\":FreshCryptoLib/=lib/smart-wallet/lib/webauthn-sol/lib/FreshCryptoLib/solidity/src/\",\":account-abstraction/=lib/smart-wallet/lib/account-abstraction/contracts/\",\":contracts/=lib/contracts/contracts/\",\":ds-test/=lib/contracts/lib/ds-test/src/\",\":erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/\",\":forge-std/=lib/forge-std/src/\",\":gsn/=lib/contracts/lib/\",\":halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":p256-verifier/=lib/smart-wallet/lib/p256-verifier/\",\":safe-singleton-deployer-sol/=lib/smart-wallet/lib/safe-singleton-deployer-sol/\",\":smart-wallet/=lib/smart-wallet/\",\":solady/=lib/smart-wallet/lib/solady/src/\",\":utils/=lib/contracts/test/utils/\",\":v3-core/=lib/contracts/lib/v3-core/\",\":webauthn-sol/=lib/smart-wallet/lib/webauthn-sol/src/\"],\"viaIR\":true},\"sources\":{\"lib/openzeppelin-contracts/contracts/access/Ownable.sol\":{\"keccak256\":\"0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6\",\"dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a\"]},\"lib/openzeppelin-contracts/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"src/ConnectorPlugin.sol\":{\"keccak256\":\"0xf8d96a1d4fdfbedb59793df1513e0a8d4782ad05c74ce0995b3890041dbbc17a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0c34043f6651a78d43336af2493725f84f47aa9c8a2daa3a27b59445f2132503\",\"dweb:/ipfs/QmWkx5D5i4WvgJD5iK2Jr4ie14mgon7BCgJ645SnfYz4Qo\"]},\"src/ConnectorRegistry.sol\":{\"keccak256\":\"0x2753145dd83f65905b0e0ca3b86d92eb6177cfd1c7e4da4c2666e394754de527\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://76f779bca8cd724de60175a9efad3206036472f873d22cf6c826240e0c92079b\",\"dweb:/ipfs/QmVQqsRQrtfNiLnk9Sw3tN6BBHDXYzr1EEZCbdzZjFXqGj\"]},\"src/interface/IConnector.sol\":{\"keccak256\":\"0xc66c3e22372dddaba5666bfb79f5c0901e9adaf17caa7dbaf27b13cf4e96db04\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0bce2177be791674864c3fa9be62ef9fdd1f7c4f6b0e165ad3219bea3c5d6973\",\"dweb:/ipfs/QmQAKRY4eZKhrT39nHKT1W8UxyLBGwvzVXq9oW9ZoXXN1a\"]}},\"version\":1}", + "metadata": { + "compiler": { "version": "0.8.24+commit.e11b9ed9" }, + "language": "Solidity", + "output": { + "abi": [ + { + "inputs": [{ "internalType": "address", "name": "_registry", "type": "address" }], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "inputs": [ + { "internalType": "address", "name": "connector", "type": "address" }, + { "internalType": "bytes", "name": "data", "type": "bytes" } + ], + "type": "error", + "name": "ConnectorExecutionFailed" + }, + { + "inputs": [{ "internalType": "address", "name": "connector", "type": "address" }], + "type": "error", + "name": "ConnectorNotApproved" + }, + { + "inputs": [ + { "internalType": "address", "name": "connector", "type": "address", "indexed": true }, + { "internalType": "address", "name": "caller", "type": "address", "indexed": true }, + { "internalType": "bytes", "name": "data", "type": "bytes", "indexed": false }, + { "internalType": "bytes", "name": "result", "type": "bytes", "indexed": false } + ], + "type": "event", + "name": "ConnectorExecuted", + "anonymous": false + }, + { + "inputs": [ + { "internalType": "address", "name": "_connector", "type": "address" }, + { "internalType": "bytes", "name": "_data", "type": "bytes" } + ], + "stateMutability": "payable", + "type": "function", + "name": "execute", + "outputs": [{ "internalType": "bytes", "name": "", "type": "bytes" }] + }, + { + "inputs": [], + "stateMutability": "view", + "type": "function", + "name": "registry", + "outputs": [{ "internalType": "contract ConnectorRegistry", "name": "", "type": "address" }] + }, + { "inputs": [], "stateMutability": "payable", "type": "receive" } + ], + "devdoc": { + "kind": "dev", + "methods": { "constructor": { "params": { "_registry": "The address of the ConnectorRegistry contract" } } }, + "version": 1 + }, + "userdoc": { + "kind": "user", + "methods": { + "constructor": { "notice": "Constructs the ConnectorPlugin with a reference to the ConnectorRegistry" }, + "registry()": { "notice": "The address of the ConnectorRegistry contract" } + }, + "version": 1 + } + }, + "settings": { + "remappings": [ + "@aerodrome/contracts/=lib/contracts/", + "@coinbase/smart-wallet/=lib/smart-wallet/", + "@opengsn/=lib/contracts/lib/gsn/packages/", + "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", + "@uniswap/v3-core/=lib/contracts/lib/v3-core/", + "FreshCryptoLib/=lib/smart-wallet/lib/webauthn-sol/lib/FreshCryptoLib/solidity/src/", + "account-abstraction/=lib/smart-wallet/lib/account-abstraction/contracts/", + "contracts/=lib/contracts/contracts/", + "ds-test/=lib/contracts/lib/ds-test/src/", + "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", + "forge-std/=lib/forge-std/src/", + "gsn/=lib/contracts/lib/", + "halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/", + "openzeppelin-contracts/=lib/openzeppelin-contracts/", + "p256-verifier/=lib/smart-wallet/lib/p256-verifier/", + "safe-singleton-deployer-sol/=lib/smart-wallet/lib/safe-singleton-deployer-sol/", + "smart-wallet/=lib/smart-wallet/", + "solady/=lib/smart-wallet/lib/solady/src/", + "utils/=lib/contracts/test/utils/", + "v3-core/=lib/contracts/lib/v3-core/", + "webauthn-sol/=lib/smart-wallet/lib/webauthn-sol/src/" + ], + "optimizer": { "enabled": true, "runs": 1000000 }, + "metadata": { "bytecodeHash": "none", "appendCBOR": false }, + "compilationTarget": { "src/ConnectorPlugin.sol": "ConnectorPlugin" }, + "evmVersion": "cancun", + "libraries": {}, + "viaIR": true + }, + "sources": { + "lib/openzeppelin-contracts/contracts/access/Ownable.sol": { + "keccak256": "0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb", + "urls": [ + "bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6", + "dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a" + ], + "license": "MIT" + }, + "lib/openzeppelin-contracts/contracts/utils/Context.sol": { + "keccak256": "0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2", + "urls": [ + "bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12", + "dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF" + ], + "license": "MIT" + }, + "src/ConnectorPlugin.sol": { + "keccak256": "0xf8d96a1d4fdfbedb59793df1513e0a8d4782ad05c74ce0995b3890041dbbc17a", + "urls": [ + "bzz-raw://0c34043f6651a78d43336af2493725f84f47aa9c8a2daa3a27b59445f2132503", + "dweb:/ipfs/QmWkx5D5i4WvgJD5iK2Jr4ie14mgon7BCgJ645SnfYz4Qo" + ], + "license": "MIT" + }, + "src/ConnectorRegistry.sol": { + "keccak256": "0x2753145dd83f65905b0e0ca3b86d92eb6177cfd1c7e4da4c2666e394754de527", + "urls": [ + "bzz-raw://76f779bca8cd724de60175a9efad3206036472f873d22cf6c826240e0c92079b", + "dweb:/ipfs/QmVQqsRQrtfNiLnk9Sw3tN6BBHDXYzr1EEZCbdzZjFXqGj" + ], + "license": "MIT" + }, + "src/interface/IConnector.sol": { + "keccak256": "0xc66c3e22372dddaba5666bfb79f5c0901e9adaf17caa7dbaf27b13cf4e96db04", + "urls": [ + "bzz-raw://0bce2177be791674864c3fa9be62ef9fdd1f7c4f6b0e165ad3219bea3c5d6973", + "dweb:/ipfs/QmQAKRY4eZKhrT39nHKT1W8UxyLBGwvzVXq9oW9ZoXXN1a" + ], + "license": "MIT" + } + }, + "version": 1 + }, + "id": 31 +} diff --git a/constants/abis/EntryPoint.json b/constants/abis/EntryPoint.json index 545338c..7b03db7 100644 --- a/constants/abis/EntryPoint.json +++ b/constants/abis/EntryPoint.json @@ -1,805 +1,805 @@ [ - { - "type": "constructor", - "inputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "fallback", - "stateMutability": "payable" - }, - { - "type": "receive", - "stateMutability": "payable" - }, - { - "type": "function", - "name": "REPLAYABLE_NONCE_KEY", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "addOwnerAddress", - "inputs": [ - { - "name": "owner", - "type": "address", - "internalType": "address" - } - ], - "outputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "function", - "name": "addOwnerPublicKey", - "inputs": [ - { - "name": "x", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "y", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "outputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "function", - "name": "canSkipChainIdValidation", - "inputs": [ - { - "name": "functionSelector", - "type": "bytes4", - "internalType": "bytes4" - } - ], - "outputs": [ - { - "name": "", - "type": "bool", - "internalType": "bool" - } - ], - "stateMutability": "pure" - }, - { - "type": "function", - "name": "domainSeparator", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "eip712Domain", - "inputs": [], - "outputs": [ - { - "name": "fields", - "type": "bytes1", - "internalType": "bytes1" - }, - { - "name": "name", - "type": "string", - "internalType": "string" - }, - { - "name": "version", - "type": "string", - "internalType": "string" - }, - { - "name": "chainId", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "verifyingContract", - "type": "address", - "internalType": "address" - }, - { - "name": "salt", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "extensions", - "type": "uint256[]", - "internalType": "uint256[]" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "entryPoint", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "address", - "internalType": "address" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "execute", - "inputs": [ - { - "name": "target", - "type": "address", - "internalType": "address" - }, - { - "name": "value", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "data", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "executeBatch", - "inputs": [ - { - "name": "calls", - "type": "tuple[]", - "internalType": "struct CoinbaseSmartWallet.Call[]", - "components": [ - { - "name": "target", - "type": "address", - "internalType": "address" - }, - { - "name": "value", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "data", - "type": "bytes", - "internalType": "bytes" - } - ] - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "executeWithoutChainIdValidation", - "inputs": [ - { - "name": "calls", - "type": "bytes[]", - "internalType": "bytes[]" - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "getUserOpHashWithoutChainId", - "inputs": [ - { - "name": "userOp", - "type": "tuple", - "internalType": "struct UserOperation", - "components": [ - { - "name": "sender", - "type": "address", - "internalType": "address" - }, - { - "name": "nonce", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "initCode", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "callData", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "callGasLimit", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "verificationGasLimit", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "preVerificationGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "maxFeePerGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "maxPriorityFeePerGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "paymasterAndData", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "signature", - "type": "bytes", - "internalType": "bytes" - } - ] - } - ], - "outputs": [ - { - "name": "", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "implementation", - "inputs": [], - "outputs": [ - { - "name": "$", - "type": "address", - "internalType": "address" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "initialize", - "inputs": [ - { - "name": "owners", - "type": "bytes[]", - "internalType": "bytes[]" - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "isOwnerAddress", - "inputs": [ - { - "name": "account", - "type": "address", - "internalType": "address" - } - ], - "outputs": [ - { - "name": "", - "type": "bool", - "internalType": "bool" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "isOwnerBytes", - "inputs": [ - { - "name": "account", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [ - { - "name": "", - "type": "bool", - "internalType": "bool" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "isOwnerPublicKey", - "inputs": [ - { - "name": "x", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "y", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "outputs": [ - { - "name": "", - "type": "bool", - "internalType": "bool" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "isValidSignature", - "inputs": [ - { - "name": "hash", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "signature", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [ - { - "name": "result", - "type": "bytes4", - "internalType": "bytes4" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "nextOwnerIndex", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "ownerAtIndex", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - } - ], - "outputs": [ - { - "name": "", - "type": "bytes", - "internalType": "bytes" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "ownerCount", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "proxiableUUID", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "removeLastOwner", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "function", - "name": "removeOwnerAtIndex", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [], - "stateMutability": "nonpayable" - }, - { - "type": "function", - "name": "removedOwnersCount", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "replaySafeHash", - "inputs": [ - { - "name": "hash", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "outputs": [ - { - "name": "", - "type": "bytes32", - "internalType": "bytes32" - } - ], - "stateMutability": "view" - }, - { - "type": "function", - "name": "upgradeToAndCall", - "inputs": [ - { - "name": "newImplementation", - "type": "address", - "internalType": "address" - }, - { - "name": "data", - "type": "bytes", - "internalType": "bytes" - } - ], - "outputs": [], - "stateMutability": "payable" - }, - { - "type": "function", - "name": "validateUserOp", - "inputs": [ - { - "name": "userOp", - "type": "tuple", - "internalType": "struct UserOperation", - "components": [ - { - "name": "sender", - "type": "address", - "internalType": "address" - }, - { - "name": "nonce", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "initCode", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "callData", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "callGasLimit", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "verificationGasLimit", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "preVerificationGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "maxFeePerGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "maxPriorityFeePerGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "paymasterAndData", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "signature", - "type": "bytes", - "internalType": "bytes" - } - ] - }, - { - "name": "userOpHash", - "type": "bytes32", - "internalType": "bytes32" - }, - { - "name": "missingAccountFunds", - "type": "uint256", - "internalType": "uint256" - } - ], - "outputs": [ - { - "name": "validationData", - "type": "uint256", - "internalType": "uint256" - } - ], - "stateMutability": "nonpayable" - }, - { - "type": "event", - "name": "AddOwner", - "inputs": [ - { - "name": "index", - "type": "uint256", - "indexed": true, - "internalType": "uint256" - }, - { - "name": "owner", - "type": "bytes", - "indexed": false, - "internalType": "bytes" - } - ], - "anonymous": false - }, - { - "type": "event", - "name": "RemoveOwner", - "inputs": [ - { - "name": "index", - "type": "uint256", - "indexed": true, - "internalType": "uint256" - }, - { - "name": "owner", - "type": "bytes", - "indexed": false, - "internalType": "bytes" - } - ], - "anonymous": false - }, - { - "type": "event", - "name": "Upgraded", - "inputs": [ - { - "name": "implementation", - "type": "address", - "indexed": true, - "internalType": "address" - } - ], - "anonymous": false - }, - { - "type": "error", - "name": "AlreadyOwner", - "inputs": [ - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } - ] - }, - { - "type": "error", - "name": "Initialized", - "inputs": [] - }, - { - "type": "error", - "name": "InvalidEthereumAddressOwner", - "inputs": [ - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } - ] - }, - { - "type": "error", - "name": "InvalidNonceKey", - "inputs": [ - { - "name": "key", - "type": "uint256", - "internalType": "uint256" - } - ] - }, - { - "type": "error", - "name": "InvalidOwnerBytesLength", - "inputs": [ - { - "name": "owner", - "type": "bytes", - "internalType": "bytes" - } + { + "type": "constructor", + "inputs": [], + "stateMutability": "nonpayable" + }, + { + "type": "fallback", + "stateMutability": "payable" + }, + { + "type": "receive", + "stateMutability": "payable" + }, + { + "type": "function", + "name": "REPLAYABLE_NONCE_KEY", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256", + "internalType": "uint256" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "addOwnerAddress", + "inputs": [ + { + "name": "owner", + "type": "address", + "internalType": "address" + } + ], + "outputs": [], + "stateMutability": "nonpayable" + }, + { + "type": "function", + "name": "addOwnerPublicKey", + "inputs": [ + { + "name": "x", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "y", + "type": "bytes32", + "internalType": "bytes32" + } + ], + "outputs": [], + "stateMutability": "nonpayable" + }, + { + "type": "function", + "name": "canSkipChainIdValidation", + "inputs": [ + { + "name": "functionSelector", + "type": "bytes4", + "internalType": "bytes4" + } + ], + "outputs": [ + { + "name": "", + "type": "bool", + "internalType": "bool" + } + ], + "stateMutability": "pure" + }, + { + "type": "function", + "name": "domainSeparator", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "bytes32", + "internalType": "bytes32" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "eip712Domain", + "inputs": [], + "outputs": [ + { + "name": "fields", + "type": "bytes1", + "internalType": "bytes1" + }, + { + "name": "name", + "type": "string", + "internalType": "string" + }, + { + "name": "version", + "type": "string", + "internalType": "string" + }, + { + "name": "chainId", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "verifyingContract", + "type": "address", + "internalType": "address" + }, + { + "name": "salt", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "extensions", + "type": "uint256[]", + "internalType": "uint256[]" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "entryPoint", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address", + "internalType": "address" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "execute", + "inputs": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "outputs": [], + "stateMutability": "payable" + }, + { + "type": "function", + "name": "executeBatch", + "inputs": [ + { + "name": "calls", + "type": "tuple[]", + "internalType": "struct CoinbaseSmartWallet.Call[]", + "components": [ + { + "name": "target", + "type": "address", + "internalType": "address" + }, + { + "name": "value", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } ] - }, - { - "type": "error", - "name": "LastOwner", - "inputs": [] - }, - { - "type": "error", - "name": "NoOwnerAtIndex", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - } + } + ], + "outputs": [], + "stateMutability": "payable" + }, + { + "type": "function", + "name": "executeWithoutChainIdValidation", + "inputs": [ + { + "name": "calls", + "type": "bytes[]", + "internalType": "bytes[]" + } + ], + "outputs": [], + "stateMutability": "payable" + }, + { + "type": "function", + "name": "getUserOpHashWithoutChainId", + "inputs": [ + { + "name": "userOp", + "type": "tuple", + "internalType": "struct UserOperation", + "components": [ + { + "name": "sender", + "type": "address", + "internalType": "address" + }, + { + "name": "nonce", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "initCode", + "type": "bytes", + "internalType": "bytes" + }, + { + "name": "callData", + "type": "bytes", + "internalType": "bytes" + }, + { + "name": "callGasLimit", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "verificationGasLimit", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "preVerificationGas", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "maxFeePerGas", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "maxPriorityFeePerGas", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "paymasterAndData", + "type": "bytes", + "internalType": "bytes" + }, + { + "name": "signature", + "type": "bytes", + "internalType": "bytes" + } ] - }, - { - "type": "error", - "name": "NotLastOwner", - "inputs": [ - { - "name": "ownersRemaining", - "type": "uint256", - "internalType": "uint256" - } + } + ], + "outputs": [ + { + "name": "", + "type": "bytes32", + "internalType": "bytes32" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "implementation", + "inputs": [], + "outputs": [ + { + "name": "$", + "type": "address", + "internalType": "address" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "initialize", + "inputs": [ + { + "name": "owners", + "type": "bytes[]", + "internalType": "bytes[]" + } + ], + "outputs": [], + "stateMutability": "payable" + }, + { + "type": "function", + "name": "isOwnerAddress", + "inputs": [ + { + "name": "account", + "type": "address", + "internalType": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "bool", + "internalType": "bool" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "isOwnerBytes", + "inputs": [ + { + "name": "account", + "type": "bytes", + "internalType": "bytes" + } + ], + "outputs": [ + { + "name": "", + "type": "bool", + "internalType": "bool" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "isOwnerPublicKey", + "inputs": [ + { + "name": "x", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "y", + "type": "bytes32", + "internalType": "bytes32" + } + ], + "outputs": [ + { + "name": "", + "type": "bool", + "internalType": "bool" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "isValidSignature", + "inputs": [ + { + "name": "hash", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "signature", + "type": "bytes", + "internalType": "bytes" + } + ], + "outputs": [ + { + "name": "result", + "type": "bytes4", + "internalType": "bytes4" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "nextOwnerIndex", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256", + "internalType": "uint256" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "ownerAtIndex", + "inputs": [ + { + "name": "index", + "type": "uint256", + "internalType": "uint256" + } + ], + "outputs": [ + { + "name": "", + "type": "bytes", + "internalType": "bytes" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "ownerCount", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256", + "internalType": "uint256" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "proxiableUUID", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "bytes32", + "internalType": "bytes32" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "removeLastOwner", + "inputs": [ + { + "name": "index", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "owner", + "type": "bytes", + "internalType": "bytes" + } + ], + "outputs": [], + "stateMutability": "nonpayable" + }, + { + "type": "function", + "name": "removeOwnerAtIndex", + "inputs": [ + { + "name": "index", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "owner", + "type": "bytes", + "internalType": "bytes" + } + ], + "outputs": [], + "stateMutability": "nonpayable" + }, + { + "type": "function", + "name": "removedOwnersCount", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256", + "internalType": "uint256" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "replaySafeHash", + "inputs": [ + { + "name": "hash", + "type": "bytes32", + "internalType": "bytes32" + } + ], + "outputs": [ + { + "name": "", + "type": "bytes32", + "internalType": "bytes32" + } + ], + "stateMutability": "view" + }, + { + "type": "function", + "name": "upgradeToAndCall", + "inputs": [ + { + "name": "newImplementation", + "type": "address", + "internalType": "address" + }, + { + "name": "data", + "type": "bytes", + "internalType": "bytes" + } + ], + "outputs": [], + "stateMutability": "payable" + }, + { + "type": "function", + "name": "validateUserOp", + "inputs": [ + { + "name": "userOp", + "type": "tuple", + "internalType": "struct UserOperation", + "components": [ + { + "name": "sender", + "type": "address", + "internalType": "address" + }, + { + "name": "nonce", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "initCode", + "type": "bytes", + "internalType": "bytes" + }, + { + "name": "callData", + "type": "bytes", + "internalType": "bytes" + }, + { + "name": "callGasLimit", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "verificationGasLimit", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "preVerificationGas", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "maxFeePerGas", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "maxPriorityFeePerGas", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "paymasterAndData", + "type": "bytes", + "internalType": "bytes" + }, + { + "name": "signature", + "type": "bytes", + "internalType": "bytes" + } ] - }, - { - "type": "error", - "name": "SelectorNotAllowed", - "inputs": [ - { - "name": "selector", - "type": "bytes4", - "internalType": "bytes4" - } - ] - }, - { - "type": "error", - "name": "Unauthorized", - "inputs": [] - }, - { - "type": "error", - "name": "UnauthorizedCallContext", - "inputs": [] - }, - { - "type": "error", - "name": "UpgradeFailed", - "inputs": [] - }, - { - "type": "error", - "name": "WrongOwnerAtIndex", - "inputs": [ - { - "name": "index", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "expectedOwner", - "type": "bytes", - "internalType": "bytes" - }, - { - "name": "actualOwner", - "type": "bytes", - "internalType": "bytes" - } - ] - } -] \ No newline at end of file + }, + { + "name": "userOpHash", + "type": "bytes32", + "internalType": "bytes32" + }, + { + "name": "missingAccountFunds", + "type": "uint256", + "internalType": "uint256" + } + ], + "outputs": [ + { + "name": "validationData", + "type": "uint256", + "internalType": "uint256" + } + ], + "stateMutability": "nonpayable" + }, + { + "type": "event", + "name": "AddOwner", + "inputs": [ + { + "name": "index", + "type": "uint256", + "indexed": true, + "internalType": "uint256" + }, + { + "name": "owner", + "type": "bytes", + "indexed": false, + "internalType": "bytes" + } + ], + "anonymous": false + }, + { + "type": "event", + "name": "RemoveOwner", + "inputs": [ + { + "name": "index", + "type": "uint256", + "indexed": true, + "internalType": "uint256" + }, + { + "name": "owner", + "type": "bytes", + "indexed": false, + "internalType": "bytes" + } + ], + "anonymous": false + }, + { + "type": "event", + "name": "Upgraded", + "inputs": [ + { + "name": "implementation", + "type": "address", + "indexed": true, + "internalType": "address" + } + ], + "anonymous": false + }, + { + "type": "error", + "name": "AlreadyOwner", + "inputs": [ + { + "name": "owner", + "type": "bytes", + "internalType": "bytes" + } + ] + }, + { + "type": "error", + "name": "Initialized", + "inputs": [] + }, + { + "type": "error", + "name": "InvalidEthereumAddressOwner", + "inputs": [ + { + "name": "owner", + "type": "bytes", + "internalType": "bytes" + } + ] + }, + { + "type": "error", + "name": "InvalidNonceKey", + "inputs": [ + { + "name": "key", + "type": "uint256", + "internalType": "uint256" + } + ] + }, + { + "type": "error", + "name": "InvalidOwnerBytesLength", + "inputs": [ + { + "name": "owner", + "type": "bytes", + "internalType": "bytes" + } + ] + }, + { + "type": "error", + "name": "LastOwner", + "inputs": [] + }, + { + "type": "error", + "name": "NoOwnerAtIndex", + "inputs": [ + { + "name": "index", + "type": "uint256", + "internalType": "uint256" + } + ] + }, + { + "type": "error", + "name": "NotLastOwner", + "inputs": [ + { + "name": "ownersRemaining", + "type": "uint256", + "internalType": "uint256" + } + ] + }, + { + "type": "error", + "name": "SelectorNotAllowed", + "inputs": [ + { + "name": "selector", + "type": "bytes4", + "internalType": "bytes4" + } + ] + }, + { + "type": "error", + "name": "Unauthorized", + "inputs": [] + }, + { + "type": "error", + "name": "UnauthorizedCallContext", + "inputs": [] + }, + { + "type": "error", + "name": "UpgradeFailed", + "inputs": [] + }, + { + "type": "error", + "name": "WrongOwnerAtIndex", + "inputs": [ + { + "name": "index", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "expectedOwner", + "type": "bytes", + "internalType": "bytes" + }, + { + "name": "actualOwner", + "type": "bytes", + "internalType": "bytes" + } + ] + } +] diff --git a/hooks/liquidity.md b/hooks/liquidity.md index d8cf45f..94b6d6b 100644 --- a/hooks/liquidity.md +++ b/hooks/liquidity.md @@ -1,9 +1,11 @@ # Aerodrome Liquidity Hooks Documentation ## Overview + The `useLiquidity` hook provides methods for interacting with Aerodrome liquidity pools, including adding/removing liquidity, swapping tokens, and staking LP tokens. ## Installation & Setup + ```typescript import { useLiquidity } from '@/hooks/useLiquidity'; import { usePublicClient } from 'wagmi'; @@ -11,7 +13,7 @@ import { usePublicClient } from 'wagmi'; function YourComponent() { const publicClient = usePublicClient(); const { addLiquidity, removeLiquidity, swap, stake } = useLiquidity( - publicClient, + publicClient, account // your wallet address ); } @@ -20,6 +22,7 @@ function YourComponent() { ## Core Methods ### 1. Adding Liquidity + Add liquidity to an Aerodrome pool with optional pre-swap functionality. ```typescript @@ -28,11 +31,11 @@ const addLiquidityExample = async () => { await addLiquidity({ tokenA: { address: '0x...', // token A address - decimals: 18 + decimals: 18, }, tokenB: { address: '0x...', // token B address - decimals: 18 + decimals: 18, }, stable: true, // true for stable pools, false for volatile amountAIn: '1.0', // amount of token A to add @@ -47,40 +50,41 @@ const addLiquidityWithSwapExample = async () => { // Regular liquidity parameters tokenA: { address: '0x...', - decimals: 18 + decimals: 18, }, tokenB: { address: '0x...', - decimals: 18 + decimals: 18, }, stable: true, amountAIn: '1.0', amountBIn: '1.0', to: account, - + // Pre-swap configuration preSwap: { enabled: true, params: { tokenA: { address: '0x...', // token to swap from - decimals: 6 + decimals: 6, }, tokenB: { address: '0x...', // token to swap to - decimals: 18 + decimals: 18, }, amountIn: '1000', // amount to swap minReturnAmount: '0.95', // minimum expected return stable: true, - to: account - } - } + to: account, + }, + }, }); }; ``` ### 2. Removing Liquidity + Remove liquidity from an Aerodrome pool. ```typescript @@ -88,22 +92,23 @@ const removeLiquidityExample = async () => { await removeLiquidity({ tokenA: { address: '0x...', - decimals: 18 + decimals: 18, }, tokenB: { address: '0x...', - decimals: 18 + decimals: 18, }, stable: true, liquidity: '1.0', // amount of LP tokens to remove amountAMin: '0.95', // minimum amount of token A to receive amountBMin: '0.95', // minimum amount of token B to receive - to: account + to: account, }); }; ``` ### 3. Swapping Tokens + Execute a token swap on Aerodrome. ```typescript @@ -111,21 +116,22 @@ const swapExample = async () => { await swap({ tokenA: { address: '0x...', - decimals: 18 + decimals: 18, }, tokenB: { address: '0x...', - decimals: 18 + decimals: 18, }, stable: true, amountIn: '1.0', minReturnAmount: '0.95', - to: account + to: account, }); }; ``` ### 4. Staking LP Tokens + Stake LP tokens in an Aerodrome gauge. ```typescript @@ -133,14 +139,15 @@ const stakeExample = async () => { await stake({ gauge: { address: '0x...', // gauge address - decimals: 18 + decimals: 18, }, - amount: '1.0' // amount of LP tokens to stake + amount: '1.0', // amount of LP tokens to stake }); }; ``` ## Transaction Configuration + All methods accept an optional transaction configuration object: ```typescript @@ -155,6 +162,7 @@ await addLiquidity(params, txConfig); ## Type Definitions ### Token Interface + ```typescript interface Token { address: Address; @@ -163,6 +171,7 @@ interface Token { ``` ### Add Liquidity Parameters + ```typescript interface AddLiquidityParams { tokenA: Token; @@ -189,6 +198,7 @@ interface AddLiquidityWithSwapParams extends AddLiquidityParams { ``` ### Remove Liquidity Parameters + ```typescript interface RemoveLiquidityParams { tokenA: Token; @@ -202,6 +212,7 @@ interface RemoveLiquidityParams { ``` ### Swap Parameters + ```typescript interface SwapExactTokensParams { tokenA: Token; @@ -214,6 +225,7 @@ interface SwapExactTokensParams { ``` ### Stake Parameters + ```typescript interface StakeParams { gauge: { @@ -225,6 +237,7 @@ interface StakeParams { ``` ## Error Handling + ```typescript try { await addLiquidity(params); @@ -236,8 +249,9 @@ try { ``` ## Notes + - All amount inputs are in human-readable format (e.g., "1.0" for 1 token) - Decimals are handled automatically based on token configuration - Transactions are automatically batched for efficiency - Approvals are handled automatically -- Default deadline is set to 1 hour from execution \ No newline at end of file +- Default deadline is set to 1 hour from execution diff --git a/init/reactotron.ts b/init/reactotron.ts index 28b9e9f..fff46e5 100644 --- a/init/reactotron.ts +++ b/init/reactotron.ts @@ -1,7 +1,7 @@ -import Reactotron from "reactotron-react-native"; +import Reactotron from 'reactotron-react-native'; Reactotron.configure({ - name: "Liquid", + name: 'Liquid', }) .useReactNative() .connect(); diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..4ae0fe1 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,19399 @@ +{ + "name": "liquid-interface", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "liquid-interface", + "version": "1.0.0", + "dependencies": { + "@ethersproject/shims": "^5.7.0", + "@expo/vector-icons": "^14.0.2", + "@hexagon/base64": "^2.0.3", + "@hookform/resolvers": "^3.9.0", + "@privy-io/expo": "^0.29.3", + "@privy-io/expo-native-extensions": "^0.0.3", + "@react-native-async-storage/async-storage": "1.23.1", + "@react-native-clipboard/clipboard": "^1.14.2", + "@react-native-community/slider": "4.5.2", + "@react-native-masked-view/masked-view": "^0.3.1", + "@react-navigation/native": "^6.0.2", + "@reduxjs/toolkit": "^2.2.7", + "expo": "~51.0.38", + "expo-apple-authentication": "^6.4.2", + "expo-application": "^5.9.1", + "expo-build-properties": "~0.12.5", + "expo-constants": "^16.0.2", + "expo-crypto": "^13.0.2", + "expo-dev-client": "~4.0.26", + "expo-font": "~12.0.9", + "expo-haptics": "~13.0.1", + "expo-linking": "^6.3.1", + "expo-router": "~3.5.23", + "expo-secure-store": "^13.0.2", + "expo-splash-screen": "~0.27.5", + "expo-status-bar": "~1.12.1", + "expo-system-ui": "~3.0.7", + "expo-web-browser": "^13.0.3", + "fast-text-encoding": "^1.0.6", + "lodash": "^4.17.21", + "moment": "^2.30.1", + "permissionless": "^0.2.17", + "react": "18.2.0", + "react-dom": "18.2.0", + "react-hook-form": "^7.53.0", + "react-native": "0.74.5", + "react-native-draggable-flatlist": "^4.0.1", + "react-native-fast-image": "^8.6.3", + "react-native-gesture-handler": "~2.16.1", + "react-native-get-random-values": "^1.11.0", + "react-native-image-colors": "^2.4.0", + "react-native-linear-gradient": "^2.8.3", + "react-native-modal": "^13.0.1", + "react-native-otp-entry": "^1.7.3", + "react-native-pager-view": "6.3.0", + "react-native-passkeys": "^0.3.0", + "react-native-qrcode-svg": "^6.3.2", + "react-native-reanimated": "~3.10.1", + "react-native-safe-area-context": "4.10.5", + "react-native-screens": "3.31.1", + "react-native-svg": "15.2.0", + "react-native-tab-view": "^3.5.2", + "react-native-web": "~0.19.10", + "react-native-webview": "^13.12.3", + "react-redux": "^9.1.2", + "redux-persist": "^6.0.0", + "victory-native": "^37.0.3-next.0", + "viem": "^2.21.29", + "yup": "^1.4.0" + }, + "devDependencies": { + "@babel/core": "^7.20.0", + "@react-navigation/material-top-tabs": "^6.6.14", + "@types/jest": "^29.5.12", + "@types/lodash": "^4.17.7", + "@types/react": "~18.2.45", + "@types/react-test-renderer": "^18.0.7", + "jest": "^29.2.1", + "jest-expo": "~51.0.3", + "prettier": "^3.3.3", + "react-test-renderer": "18.2.0", + "reactotron-react-native": "^5.1.9", + "typescript": "~5.3.3" + } + }, + "node_modules/@0no-co/graphql.web": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@0no-co/graphql.web/-/graphql.web-1.0.8.tgz", + "integrity": "sha512-8BG6woLtDMvXB9Ajb/uE+Zr/U7y4qJ3upXi0JQHZmsKUJa7HjF/gFvmL2f3/mSmfZoQGRr9VoY97LCX2uaFMzA==", + "license": "MIT", + "peerDependencies": { + "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0" + }, + "peerDependenciesMeta": { + "graphql": { + "optional": true + } + } + }, + "node_modules/@adraffy/ens-normalize": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.11.0.tgz", + "integrity": "sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg==", + "license": "MIT" + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz", + "integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.25.8", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.8.tgz", + "integrity": "sha512-Oixnb+DzmRT30qu9d3tJSQkxuygWm32DFykT4bRoORPa9hZ/L4KhVB/XiRm6KG+roIEM7DBQlmg27kw2HZkdZg==", + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.25.7", + "@babel/generator": "^7.25.7", + "@babel/helper-compilation-targets": "^7.25.7", + "@babel/helper-module-transforms": "^7.25.7", + "@babel/helpers": "^7.25.7", + "@babel/parser": "^7.25.8", + "@babel/template": "^7.25.7", + "@babel/traverse": "^7.25.7", + "@babel/types": "^7.25.8", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz", + "integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.26.3", + "@babel/types": "^7.26.3", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", + "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz", + "integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "license": "ISC" + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz", + "integrity": "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/traverse": "^7.25.9", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz", + "integrity": "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "regexpu-core": "^6.2.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", + "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", + "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz", + "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", + "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", + "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz", + "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz", + "integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz", + "integrity": "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-wrap-function": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz", + "integrity": "sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz", + "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", + "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz", + "integrity": "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.25.9", + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.7.tgz", + "integrity": "sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.25.7", + "@babel/types": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.25.7.tgz", + "integrity": "sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.25.7", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz", + "integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.26.3" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz", + "integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz", + "integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz", + "integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz", + "integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/plugin-transform-optional-chaining": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz", + "integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", + "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", + "license": "MIT", + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.25.7.tgz", + "integrity": "sha512-q1mqqqH0e1lhmsEQHV5U8OmdueBC2y0RFr2oUzZoFRtN3MvPmt2fsFRcNQAoGLTSNdHBFUYGnlgcRFhkBbKjPw==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.7", + "@babel/helper-plugin-utils": "^7.25.7", + "@babel/plugin-syntax-decorators": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-export-default-from": { + "version": "7.25.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.25.8.tgz", + "integrity": "sha512-5SLPHA/Gk7lNdaymtSVS9jH77Cs7yuHTR3dYj+9q+M7R7tNLXhNuvnmOfafRIzpWL+dtMibuu1I4ofrc768Gkw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", + "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", + "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.25.7.tgz", + "integrity": "sha512-oXduHo642ZhstLVYTe2z2GSJIruU0c/W3/Ghr6A5yGMsVrvdnxO1z+3pbTcT7f3/Clnt+1z8D/w1r1f1SHaCHw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-default-from": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.25.7.tgz", + "integrity": "sha512-LRUCsC0YucSjabsmxx6yly8+Q/5mxKdp9gemlpR9ro3bfpcOQOXx/CHivs7QCbjgygd6uQ2GcRfHu1FVax/hgg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.25.7.tgz", + "integrity": "sha512-fyoj6/YdVtlv2ROig/J0fP7hh/wNO1MJGm1NR70Pg7jbkF+jOUL9joorqaCOQh06Y+LfgTagHzC8KqZ3MF782w==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz", + "integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz", + "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.7.tgz", + "integrity": "sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.7.tgz", + "integrity": "sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz", + "integrity": "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.9.tgz", + "integrity": "sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-remap-async-to-generator": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz", + "integrity": "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-remap-async-to-generator": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.9.tgz", + "integrity": "sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz", + "integrity": "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz", + "integrity": "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz", + "integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz", + "integrity": "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9", + "@babel/traverse": "^7.25.9", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz", + "integrity": "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/template": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz", + "integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz", + "integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz", + "integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz", + "integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz", + "integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz", + "integrity": "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz", + "integrity": "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.25.7.tgz", + "integrity": "sha512-q8Td2PPc6/6I73g96SreSUCKEcwMXCwcXSIAVTyTTN6CpJe0dMj8coxu1fg1T9vfBLi6Rsi6a4ECcFBbKabS5w==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7", + "@babel/plugin-syntax-flow": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz", + "integrity": "sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz", + "integrity": "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz", + "integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz", + "integrity": "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz", + "integrity": "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz", + "integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz", + "integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz", + "integrity": "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz", + "integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz", + "integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz", + "integrity": "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz", + "integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz", + "integrity": "sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz", + "integrity": "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz", + "integrity": "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-transform-parameters": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz", + "integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz", + "integrity": "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz", + "integrity": "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz", + "integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz", + "integrity": "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz", + "integrity": "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz", + "integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.7.tgz", + "integrity": "sha512-r0QY7NVU8OnrwE+w2IWiRom0wwsTbjx4+xH2RTd7AVdof3uurXOF+/mXHQDRk+2jIvWgSaCHKMgggfvM4dyUGA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.7.tgz", + "integrity": "sha512-vILAg5nwGlR9EXE8JIOX4NHXd49lrYbN8hnjffDtoULwpL9hUx/N55nqh2qd0q6FyNDfjl9V79ecKGvFbcSA0Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.7", + "@babel/helper-module-imports": "^7.25.7", + "@babel/helper-plugin-utils": "^7.25.7", + "@babel/plugin-syntax-jsx": "^7.25.7", + "@babel/types": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.7.tgz", + "integrity": "sha512-5yd3lH1PWxzW6IZj+p+Y4OLQzz0/LzlOG8vGqonHfVR3euf1vyzyMUJk9Ac+m97BH46mFc/98t9PmYLyvgL3qg==", + "license": "MIT", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.7.tgz", + "integrity": "sha512-JD9MUnLbPL0WdVK8AWC7F7tTG2OS6u/AKKnsK+NdRhUiVdnzyR1S3kKQCaRLOiaULvUiqK6Z4JQE635VgtCFeg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.7.tgz", + "integrity": "sha512-S/JXG/KrbIY06iyJPKfxr0qRxnhNOdkNXYBl/rmwgDd72cQLH9tEGkDm/yJPGvcSIUoikzfjMios9i+xT/uv9w==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.7.tgz", + "integrity": "sha512-6YTHJ7yjjgYqGc8S+CbEXhLICODk0Tn92j+vNJo07HFk9t3bjFgAKxPLFhHwF2NjmQVSI1zBRfBWUeVBa2osfA==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.7", + "@babel/helper-plugin-utils": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz", + "integrity": "sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "regenerator-transform": "^0.15.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regexp-modifiers": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz", + "integrity": "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz", + "integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.7.tgz", + "integrity": "sha512-Y9p487tyTzB0yDYQOtWnC+9HGOuogtP3/wNpun1xJXEEvI6vip59BSBTsHnekZLqxmPcgsrAKt46HAAb//xGhg==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.25.7", + "@babel/helper-plugin-utils": "^7.25.7", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.6", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz", + "integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz", + "integrity": "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz", + "integrity": "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz", + "integrity": "sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.9.tgz", + "integrity": "sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.7.tgz", + "integrity": "sha512-VKlgy2vBzj8AmEzunocMun2fF06bsSWV+FvVXohtL6FGve/+L217qhHxRTVGHEDO/YR8IANcjzgJsd04J8ge5Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.7", + "@babel/helper-create-class-features-plugin": "^7.25.7", + "@babel/helper-plugin-utils": "^7.25.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7", + "@babel/plugin-syntax-typescript": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz", + "integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz", + "integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz", + "integrity": "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz", + "integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.0.tgz", + "integrity": "sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/compat-data": "^7.26.0", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.9", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.9", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.9", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-import-assertions": "^7.26.0", + "@babel/plugin-syntax-import-attributes": "^7.26.0", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.25.9", + "@babel/plugin-transform-async-generator-functions": "^7.25.9", + "@babel/plugin-transform-async-to-generator": "^7.25.9", + "@babel/plugin-transform-block-scoped-functions": "^7.25.9", + "@babel/plugin-transform-block-scoping": "^7.25.9", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", + "@babel/plugin-transform-classes": "^7.25.9", + "@babel/plugin-transform-computed-properties": "^7.25.9", + "@babel/plugin-transform-destructuring": "^7.25.9", + "@babel/plugin-transform-dotall-regex": "^7.25.9", + "@babel/plugin-transform-duplicate-keys": "^7.25.9", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9", + "@babel/plugin-transform-dynamic-import": "^7.25.9", + "@babel/plugin-transform-exponentiation-operator": "^7.25.9", + "@babel/plugin-transform-export-namespace-from": "^7.25.9", + "@babel/plugin-transform-for-of": "^7.25.9", + "@babel/plugin-transform-function-name": "^7.25.9", + "@babel/plugin-transform-json-strings": "^7.25.9", + "@babel/plugin-transform-literals": "^7.25.9", + "@babel/plugin-transform-logical-assignment-operators": "^7.25.9", + "@babel/plugin-transform-member-expression-literals": "^7.25.9", + "@babel/plugin-transform-modules-amd": "^7.25.9", + "@babel/plugin-transform-modules-commonjs": "^7.25.9", + "@babel/plugin-transform-modules-systemjs": "^7.25.9", + "@babel/plugin-transform-modules-umd": "^7.25.9", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9", + "@babel/plugin-transform-new-target": "^7.25.9", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.25.9", + "@babel/plugin-transform-numeric-separator": "^7.25.9", + "@babel/plugin-transform-object-rest-spread": "^7.25.9", + "@babel/plugin-transform-object-super": "^7.25.9", + "@babel/plugin-transform-optional-catch-binding": "^7.25.9", + "@babel/plugin-transform-optional-chaining": "^7.25.9", + "@babel/plugin-transform-parameters": "^7.25.9", + "@babel/plugin-transform-private-methods": "^7.25.9", + "@babel/plugin-transform-private-property-in-object": "^7.25.9", + "@babel/plugin-transform-property-literals": "^7.25.9", + "@babel/plugin-transform-regenerator": "^7.25.9", + "@babel/plugin-transform-regexp-modifiers": "^7.26.0", + "@babel/plugin-transform-reserved-words": "^7.25.9", + "@babel/plugin-transform-shorthand-properties": "^7.25.9", + "@babel/plugin-transform-spread": "^7.25.9", + "@babel/plugin-transform-sticky-regex": "^7.25.9", + "@babel/plugin-transform-template-literals": "^7.25.9", + "@babel/plugin-transform-typeof-symbol": "^7.25.9", + "@babel/plugin-transform-unicode-escapes": "^7.25.9", + "@babel/plugin-transform-unicode-property-regex": "^7.25.9", + "@babel/plugin-transform-unicode-regex": "^7.25.9", + "@babel/plugin-transform-unicode-sets-regex": "^7.25.9", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.6", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.38.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "peer": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/preset-flow": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.25.7.tgz", + "integrity": "sha512-q2x3g0YHzo/Ohsr51KOYS/BtZMsvkzVd8qEyhZAyTatYdobfgXCuyppTqTuIhdq5kR/P3nyyVvZ6H5dMc4PnCQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7", + "@babel/helper-validator-option": "^7.25.7", + "@babel/plugin-transform-flow-strip-types": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.25.7.tgz", + "integrity": "sha512-GjV0/mUEEXpi1U5ZgDprMRRgajGMRW3G5FjMr5KLKD8nT2fTG8+h/klV3+6Dm5739QE+K5+2e91qFKAYI3pmRg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7", + "@babel/helper-validator-option": "^7.25.7", + "@babel/plugin-transform-react-display-name": "^7.25.7", + "@babel/plugin-transform-react-jsx": "^7.25.7", + "@babel/plugin-transform-react-jsx-development": "^7.25.7", + "@babel/plugin-transform-react-pure-annotations": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.25.7.tgz", + "integrity": "sha512-rkkpaXJZOFN45Fb+Gki0c+KMIglk4+zZXOoMJuyEK8y8Kkc8Jd3BDmP7qPsz0zQMJj+UD7EprF+AqAXcILnexw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.7", + "@babel/helper-validator-option": "^7.25.7", + "@babel/plugin-syntax-jsx": "^7.25.7", + "@babel/plugin-transform-modules-commonjs": "^7.25.7", + "@babel/plugin-transform-typescript": "^7.25.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/register": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.25.7.tgz", + "integrity": "sha512-qHTd2Rhn/rKhSUwdY6+n98FmwXN+N+zxSVx3zWqRe9INyvTpv+aQ5gDV2+43ACd3VtMBzPPljbb0gZb8u5ma6Q==", + "license": "MIT", + "dependencies": { + "clone-deep": "^4.0.1", + "find-cache-dir": "^2.0.0", + "make-dir": "^2.1.0", + "pirates": "^4.0.6", + "source-map-support": "^0.5.16" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.7.tgz", + "integrity": "sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime/node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "license": "MIT" + }, + "node_modules/@babel/template": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", + "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.25.9", + "@babel/parser": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.26.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz", + "integrity": "sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.3", + "@babel/parser": "^7.26.3", + "@babel/template": "^7.25.9", + "@babel/types": "^7.26.3", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz", + "integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@egjs/hammerjs": { + "version": "2.0.17", + "resolved": "https://registry.npmjs.org/@egjs/hammerjs/-/hammerjs-2.0.17.tgz", + "integrity": "sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==", + "license": "MIT", + "dependencies": { + "@types/hammerjs": "^2.0.36" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@ethersproject/abi": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.7.0.tgz", + "integrity": "sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "node_modules/@ethersproject/abstract-provider": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz", + "integrity": "sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/networks": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/web": "^5.7.0" + } + }, + "node_modules/@ethersproject/abstract-signer": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz", + "integrity": "sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0" + } + }, + "node_modules/@ethersproject/address": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.7.0.tgz", + "integrity": "sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/rlp": "^5.7.0" + } + }, + "node_modules/@ethersproject/base64": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.7.0.tgz", + "integrity": "sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0" + } + }, + "node_modules/@ethersproject/basex": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/basex/-/basex-5.7.0.tgz", + "integrity": "sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/properties": "^5.7.0" + } + }, + "node_modules/@ethersproject/bignumber": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.7.0.tgz", + "integrity": "sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "bn.js": "^5.2.1" + } + }, + "node_modules/@ethersproject/bytes": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.7.0.tgz", + "integrity": "sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/constants": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.7.0.tgz", + "integrity": "sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0" + } + }, + "node_modules/@ethersproject/contracts": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/contracts/-/contracts-5.7.0.tgz", + "integrity": "sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abi": "^5.7.0", + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/transactions": "^5.7.0" + } + }, + "node_modules/@ethersproject/hash": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.7.0.tgz", + "integrity": "sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/base64": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "node_modules/@ethersproject/hdnode": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/hdnode/-/hdnode-5.7.0.tgz", + "integrity": "sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/basex": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/pbkdf2": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/signing-key": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/wordlists": "^5.7.0" + } + }, + "node_modules/@ethersproject/json-wallets": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz", + "integrity": "sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hdnode": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/pbkdf2": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "aes-js": "3.0.0", + "scrypt-js": "3.0.1" + } + }, + "node_modules/@ethersproject/keccak256": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.7.0.tgz", + "integrity": "sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "js-sha3": "0.8.0" + } + }, + "node_modules/@ethersproject/logger": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.7.0.tgz", + "integrity": "sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT" + }, + "node_modules/@ethersproject/networks": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.7.1.tgz", + "integrity": "sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/pbkdf2": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz", + "integrity": "sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/sha2": "^5.7.0" + } + }, + "node_modules/@ethersproject/properties": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.7.0.tgz", + "integrity": "sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/providers": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.7.2.tgz", + "integrity": "sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/base64": "^5.7.0", + "@ethersproject/basex": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/networks": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/rlp": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/strings": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/web": "^5.7.0", + "bech32": "1.1.4", + "ws": "7.4.6" + } + }, + "node_modules/@ethersproject/providers/node_modules/ws": { + "version": "7.4.6", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz", + "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==", + "license": "MIT", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/@ethersproject/random": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/random/-/random-5.7.0.tgz", + "integrity": "sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/rlp": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.7.0.tgz", + "integrity": "sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/sha2": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.7.0.tgz", + "integrity": "sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "hash.js": "1.1.7" + } + }, + "node_modules/@ethersproject/shims": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/shims/-/shims-5.7.0.tgz", + "integrity": "sha512-WeDptc6oAprov5CCN2LJ/6/+dC9gTonnkdAtLepm/7P5Z+3PRxS5NpfVWmOMs1yE4Vitl2cU8bOPWC0GvGSbVg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT" + }, + "node_modules/@ethersproject/signing-key": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.7.0.tgz", + "integrity": "sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "bn.js": "^5.2.1", + "elliptic": "6.5.4", + "hash.js": "1.1.7" + } + }, + "node_modules/@ethersproject/solidity": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/solidity/-/solidity-5.7.0.tgz", + "integrity": "sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/sha2": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "node_modules/@ethersproject/strings": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.7.0.tgz", + "integrity": "sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/transactions": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.7.0.tgz", + "integrity": "sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/rlp": "^5.7.0", + "@ethersproject/signing-key": "^5.7.0" + } + }, + "node_modules/@ethersproject/units": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/units/-/units-5.7.0.tgz", + "integrity": "sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/constants": "^5.7.0", + "@ethersproject/logger": "^5.7.0" + } + }, + "node_modules/@ethersproject/wallet": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/wallet/-/wallet-5.7.0.tgz", + "integrity": "sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abstract-provider": "^5.7.0", + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/address": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/hdnode": "^5.7.0", + "@ethersproject/json-wallets": "^5.7.0", + "@ethersproject/keccak256": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/random": "^5.7.0", + "@ethersproject/signing-key": "^5.7.0", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/wordlists": "^5.7.0" + } + }, + "node_modules/@ethersproject/web": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/@ethersproject/web/-/web-5.7.1.tgz", + "integrity": "sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/base64": "^5.7.0", + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "node_modules/@ethersproject/wordlists": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@ethersproject/wordlists/-/wordlists-5.7.0.tgz", + "integrity": "sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.7.0", + "@ethersproject/hash": "^5.7.0", + "@ethersproject/logger": "^5.7.0", + "@ethersproject/properties": "^5.7.0", + "@ethersproject/strings": "^5.7.0" + } + }, + "node_modules/@expo/bunyan": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@expo/bunyan/-/bunyan-4.0.1.tgz", + "integrity": "sha512-+Lla7nYSiHZirgK+U/uYzsLv/X+HaJienbD5AKX1UQZHYfWaP+9uuQluRB4GrEVWF0GZ7vEVp/jzaOT9k/SQlg==", + "engines": [ + "node >=0.10.0" + ], + "license": "MIT", + "dependencies": { + "uuid": "^8.0.0" + } + }, + "node_modules/@expo/cli": { + "version": "0.18.30", + "resolved": "https://registry.npmjs.org/@expo/cli/-/cli-0.18.30.tgz", + "integrity": "sha512-V90TUJh9Ly8stYo8nwqIqNWCsYjE28GlVFWEhAFCUOp99foiQr8HSTpiiX5GIrprcPoWmlGoY+J5fQA29R4lFg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.20.0", + "@expo/code-signing-certificates": "0.0.5", + "@expo/config": "~9.0.0-beta.0", + "@expo/config-plugins": "~8.0.8", + "@expo/devcert": "^1.0.0", + "@expo/env": "~0.3.0", + "@expo/image-utils": "^0.5.0", + "@expo/json-file": "^8.3.0", + "@expo/metro-config": "0.18.11", + "@expo/osascript": "^2.0.31", + "@expo/package-manager": "^1.5.0", + "@expo/plist": "^0.1.0", + "@expo/prebuild-config": "7.0.9", + "@expo/rudder-sdk-node": "1.1.1", + "@expo/spawn-async": "^1.7.2", + "@expo/xcpretty": "^4.3.0", + "@react-native/dev-middleware": "0.74.85", + "@urql/core": "2.3.6", + "@urql/exchange-retry": "0.3.0", + "accepts": "^1.3.8", + "arg": "5.0.2", + "better-opn": "~3.0.2", + "bplist-creator": "0.0.7", + "bplist-parser": "^0.3.1", + "cacache": "^18.0.2", + "chalk": "^4.0.0", + "ci-info": "^3.3.0", + "connect": "^3.7.0", + "debug": "^4.3.4", + "env-editor": "^0.4.1", + "fast-glob": "^3.3.2", + "find-yarn-workspace-root": "~2.0.0", + "form-data": "^3.0.1", + "freeport-async": "2.0.0", + "fs-extra": "~8.1.0", + "getenv": "^1.0.0", + "glob": "^7.1.7", + "graphql": "15.8.0", + "graphql-tag": "^2.10.1", + "https-proxy-agent": "^5.0.1", + "internal-ip": "4.3.0", + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1", + "js-yaml": "^3.13.1", + "json-schema-deref-sync": "^0.13.0", + "lodash.debounce": "^4.0.8", + "md5hex": "^1.0.0", + "minimatch": "^3.0.4", + "node-fetch": "^2.6.7", + "node-forge": "^1.3.1", + "npm-package-arg": "^7.0.0", + "open": "^8.3.0", + "ora": "3.4.0", + "picomatch": "^3.0.1", + "pretty-bytes": "5.6.0", + "progress": "2.0.3", + "prompts": "^2.3.2", + "qrcode-terminal": "0.11.0", + "require-from-string": "^2.0.2", + "requireg": "^0.2.2", + "resolve": "^1.22.2", + "resolve-from": "^5.0.0", + "resolve.exports": "^2.0.2", + "semver": "^7.6.0", + "send": "^0.18.0", + "slugify": "^1.3.4", + "source-map-support": "~0.5.21", + "stacktrace-parser": "^0.1.10", + "structured-headers": "^0.4.1", + "tar": "^6.0.5", + "temp-dir": "^2.0.0", + "tempy": "^0.7.1", + "terminal-link": "^2.1.1", + "text-table": "^0.2.0", + "url-join": "4.0.0", + "wrap-ansi": "^7.0.0", + "ws": "^8.12.1" + }, + "bin": { + "expo-internal": "build/bin/cli" + } + }, + "node_modules/@expo/cli/node_modules/@expo/prebuild-config": { + "version": "7.0.9", + "resolved": "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-7.0.9.tgz", + "integrity": "sha512-9i6Cg7jInpnGEHN0jxnW0P+0BexnePiBzmbUvzSbRXpdXihYUX2AKMu73jgzxn5P1hXOSkzNS7umaY+BZ+aBag==", + "license": "MIT", + "dependencies": { + "@expo/config": "~9.0.0-beta.0", + "@expo/config-plugins": "~8.0.8", + "@expo/config-types": "^51.0.3", + "@expo/image-utils": "^0.5.0", + "@expo/json-file": "^8.3.0", + "@react-native/normalize-colors": "0.74.85", + "debug": "^4.3.1", + "fs-extra": "^9.0.0", + "resolve-from": "^5.0.0", + "semver": "^7.6.0", + "xml2js": "0.6.0" + }, + "peerDependencies": { + "expo-modules-autolinking": ">=0.8.1" + } + }, + "node_modules/@expo/cli/node_modules/@expo/prebuild-config/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/cli/node_modules/@expo/prebuild-config/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@expo/cli/node_modules/@expo/prebuild-config/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@expo/cli/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@expo/cli/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", + "license": "MIT", + "dependencies": { + "restore-cursor": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@expo/cli/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/@expo/cli/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@expo/cli/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@expo/cli/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "license": "MIT", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@expo/cli/node_modules/log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "license": "MIT", + "dependencies": { + "chalk": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/log-symbols/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "license": "MIT", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@expo/cli/node_modules/ora": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz", + "integrity": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==", + "license": "MIT", + "dependencies": { + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-spinners": "^2.0.0", + "log-symbols": "^2.2.0", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@expo/cli/node_modules/ora/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/picomatch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-3.0.1.tgz", + "integrity": "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/@expo/cli/node_modules/restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", + "license": "MIT", + "dependencies": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@expo/cli/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/cli/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@expo/cli/node_modules/ws": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/@expo/code-signing-certificates": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/@expo/code-signing-certificates/-/code-signing-certificates-0.0.5.tgz", + "integrity": "sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==", + "license": "MIT", + "dependencies": { + "node-forge": "^1.2.1", + "nullthrows": "^1.1.1" + } + }, + "node_modules/@expo/config": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/@expo/config/-/config-9.0.4.tgz", + "integrity": "sha512-g5ns5u1JSKudHYhjo1zaSfkJ/iZIcWmUmIQptMJZ6ag1C0ShL2sj8qdfU8MmAMuKLOgcIfSaiWlQnm4X3VJVkg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "~7.10.4", + "@expo/config-plugins": "~8.0.8", + "@expo/config-types": "^51.0.3", + "@expo/json-file": "^8.3.0", + "getenv": "^1.0.0", + "glob": "7.1.6", + "require-from-string": "^2.0.2", + "resolve-from": "^5.0.0", + "semver": "^7.6.0", + "slugify": "^1.3.4", + "sucrase": "3.34.0" + } + }, + "node_modules/@expo/config-plugins": { + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-8.0.10.tgz", + "integrity": "sha512-KG1fnSKRmsudPU9BWkl59PyE0byrE2HTnqbOrgwr2FAhqh7tfr9nRs6A9oLS/ntpGzmFxccTEcsV0L4apsuxxg==", + "license": "MIT", + "dependencies": { + "@expo/config-types": "^51.0.3", + "@expo/json-file": "~8.3.0", + "@expo/plist": "^0.1.0", + "@expo/sdk-runtime-versions": "^1.0.0", + "chalk": "^4.1.2", + "debug": "^4.3.1", + "find-up": "~5.0.0", + "getenv": "^1.0.0", + "glob": "7.1.6", + "resolve-from": "^5.0.0", + "semver": "^7.5.4", + "slash": "^3.0.0", + "slugify": "^1.6.6", + "xcode": "^3.0.1", + "xml2js": "0.6.0" + } + }, + "node_modules/@expo/config-plugins/node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/config-types": { + "version": "51.0.3", + "resolved": "https://registry.npmjs.org/@expo/config-types/-/config-types-51.0.3.tgz", + "integrity": "sha512-hMfuq++b8VySb+m9uNNrlpbvGxYc8OcFCUX9yTmi9tlx6A4k8SDabWFBgmnr4ao3wEArvWrtUQIfQCVtPRdpKA==", + "license": "MIT" + }, + "node_modules/@expo/config/node_modules/@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@expo/config/node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/devcert": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.1.4.tgz", + "integrity": "sha512-fqBODr8c72+gBSX5Ty3SIzaY4bXainlpab78+vEYEKL3fXmsOswMLf0+KE36mUEAa36BYabX7K3EiXOXX5OPMw==", + "license": "MIT", + "dependencies": { + "application-config-path": "^0.1.0", + "command-exists": "^1.2.4", + "debug": "^3.1.0", + "eol": "^0.9.1", + "get-port": "^3.2.0", + "glob": "^10.4.2", + "lodash": "^4.17.21", + "mkdirp": "^0.5.1", + "password-prompt": "^1.0.4", + "sudo-prompt": "^8.2.0", + "tmp": "^0.0.33", + "tslib": "^2.4.0" + } + }, + "node_modules/@expo/devcert/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@expo/devcert/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/@expo/devcert/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/devcert/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/devcert/node_modules/sudo-prompt": { + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz", + "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==", + "license": "MIT" + }, + "node_modules/@expo/env": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@expo/env/-/env-0.3.0.tgz", + "integrity": "sha512-OtB9XVHWaXidLbHvrVDeeXa09yvTl3+IQN884sO6PhIi2/StXfgSH/9zC7IvzrDB8kW3EBJ1PPLuCUJ2hxAT7Q==", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "debug": "^4.3.4", + "dotenv": "~16.4.5", + "dotenv-expand": "~11.0.6", + "getenv": "^1.0.0" + } + }, + "node_modules/@expo/image-utils": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.5.1.tgz", + "integrity": "sha512-U/GsFfFox88lXULmFJ9Shfl2aQGcwoKPF7fawSCLixIKtMCpsI+1r0h+5i0nQnmt9tHuzXZDL8+Dg1z6OhkI9A==", + "license": "MIT", + "dependencies": { + "@expo/spawn-async": "^1.7.2", + "chalk": "^4.0.0", + "fs-extra": "9.0.0", + "getenv": "^1.0.0", + "jimp-compact": "0.16.1", + "node-fetch": "^2.6.0", + "parse-png": "^2.1.0", + "resolve-from": "^5.0.0", + "semver": "^7.6.0", + "tempy": "0.3.0" + } + }, + "node_modules/@expo/image-utils/node_modules/crypto-random-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", + "integrity": "sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/image-utils/node_modules/fs-extra": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.0.tgz", + "integrity": "sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^1.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@expo/image-utils/node_modules/temp-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/image-utils/node_modules/tempy": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.3.0.tgz", + "integrity": "sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==", + "license": "MIT", + "dependencies": { + "temp-dir": "^1.0.0", + "type-fest": "^0.3.1", + "unique-string": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@expo/image-utils/node_modules/type-fest": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", + "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=6" + } + }, + "node_modules/@expo/image-utils/node_modules/unique-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", + "integrity": "sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==", + "license": "MIT", + "dependencies": { + "crypto-random-string": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/image-utils/node_modules/universalify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz", + "integrity": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@expo/json-file": { + "version": "8.3.3", + "resolved": "https://registry.npmjs.org/@expo/json-file/-/json-file-8.3.3.tgz", + "integrity": "sha512-eZ5dld9AD0PrVRiIWpRkm5aIoWBw3kAyd8VkuWEy92sEthBKDDDHAnK2a0dw0Eil6j7rK7lS/Qaq/Zzngv2h5A==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "~7.10.4", + "json5": "^2.2.2", + "write-file-atomic": "^2.3.0" + } + }, + "node_modules/@expo/json-file/node_modules/@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@expo/metro-config": { + "version": "0.18.11", + "resolved": "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.18.11.tgz", + "integrity": "sha512-/uOq55VbSf9yMbUO1BudkUM2SsGW1c5hr9BnhIqYqcsFv0Jp5D3DtJ4rljDKaUeNLbwr6m7pqIrkSMq5NrYf4Q==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "@babel/generator": "^7.20.5", + "@babel/parser": "^7.20.0", + "@babel/types": "^7.20.0", + "@expo/config": "~9.0.0-beta.0", + "@expo/env": "~0.3.0", + "@expo/json-file": "~8.3.0", + "@expo/spawn-async": "^1.7.2", + "chalk": "^4.1.0", + "debug": "^4.3.2", + "find-yarn-workspace-root": "~2.0.0", + "fs-extra": "^9.1.0", + "getenv": "^1.0.0", + "glob": "^7.2.3", + "jsc-safe-url": "^0.2.4", + "lightningcss": "~1.19.0", + "postcss": "~8.4.32", + "resolve-from": "^5.0.0" + } + }, + "node_modules/@expo/metro-runtime": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/@expo/metro-runtime/-/metro-runtime-3.2.3.tgz", + "integrity": "sha512-v5ji+fAGi7B9YavrxvekuF8gXEV/5fz0+PhaED5AaFDnbGB4IJIbpaiqK9nqZV1axjGZNQSw6Q8TsnFetCR3bQ==", + "license": "MIT", + "peerDependencies": { + "react-native": "*" + } + }, + "node_modules/@expo/osascript": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@expo/osascript/-/osascript-2.1.3.tgz", + "integrity": "sha512-aOEkhPzDsaAfolSswObGiYW0Pf0ROfR9J2NBRLQACdQ6uJlyAMiPF45DVEVknAU9juKh0y8ZyvC9LXqLEJYohA==", + "license": "MIT", + "dependencies": { + "@expo/spawn-async": "^1.7.2", + "exec-async": "^2.2.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@expo/package-manager": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/@expo/package-manager/-/package-manager-1.5.2.tgz", + "integrity": "sha512-IuA9XtGBilce0q8cyxtWINqbzMB1Fia0Yrug/O53HNuRSwQguV/iqjV68bsa4z8mYerePhcFgtvISWLAlNEbUA==", + "license": "MIT", + "dependencies": { + "@expo/json-file": "^8.3.0", + "@expo/spawn-async": "^1.7.2", + "ansi-regex": "^5.0.0", + "chalk": "^4.0.0", + "find-up": "^5.0.0", + "find-yarn-workspace-root": "~2.0.0", + "js-yaml": "^3.13.1", + "micromatch": "^4.0.2", + "npm-package-arg": "^7.0.0", + "ora": "^3.4.0", + "split": "^1.0.1", + "sudo-prompt": "9.1.1" + } + }, + "node_modules/@expo/package-manager/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/package-manager/node_modules/cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", + "license": "MIT", + "dependencies": { + "restore-cursor": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/package-manager/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@expo/package-manager/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/@expo/package-manager/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@expo/package-manager/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/package-manager/node_modules/log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "license": "MIT", + "dependencies": { + "chalk": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/package-manager/node_modules/log-symbols/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/package-manager/node_modules/mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/package-manager/node_modules/onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/package-manager/node_modules/ora": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz", + "integrity": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==", + "license": "MIT", + "dependencies": { + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-spinners": "^2.0.0", + "log-symbols": "^2.2.0", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@expo/package-manager/node_modules/ora/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/package-manager/node_modules/restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", + "license": "MIT", + "dependencies": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/package-manager/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@expo/package-manager/node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@expo/package-manager/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@expo/plist": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@expo/plist/-/plist-0.1.3.tgz", + "integrity": "sha512-GW/7hVlAylYg1tUrEASclw1MMk9FP4ZwyFAY/SUTJIhPDQHtfOlXREyWV3hhrHdX/K+pS73GNgdfT6E/e+kBbg==", + "license": "MIT", + "dependencies": { + "@xmldom/xmldom": "~0.7.7", + "base64-js": "^1.2.3", + "xmlbuilder": "^14.0.0" + } + }, + "node_modules/@expo/plist/node_modules/xmlbuilder": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-14.0.0.tgz", + "integrity": "sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg==", + "license": "MIT", + "engines": { + "node": ">=8.0" + } + }, + "node_modules/@expo/prebuild-config": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-7.0.8.tgz", + "integrity": "sha512-wH9NVg6HiwF5y9x0TxiMEeBF+ITPGDXy5/i6OUheSrKpPgb0lF1Mwzl/f2fLPXBEpl+ZXOQ8LlLW32b7K9lrNg==", + "license": "MIT", + "dependencies": { + "@expo/config": "~9.0.0-beta.0", + "@expo/config-plugins": "~8.0.8", + "@expo/config-types": "^51.0.0-unreleased", + "@expo/image-utils": "^0.5.0", + "@expo/json-file": "^8.3.0", + "@react-native/normalize-colors": "0.74.85", + "debug": "^4.3.1", + "fs-extra": "^9.0.0", + "resolve-from": "^5.0.0", + "semver": "^7.6.0", + "xml2js": "0.6.0" + }, + "peerDependencies": { + "expo-modules-autolinking": ">=0.8.1" + } + }, + "node_modules/@expo/rudder-sdk-node": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@expo/rudder-sdk-node/-/rudder-sdk-node-1.1.1.tgz", + "integrity": "sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==", + "license": "MIT", + "dependencies": { + "@expo/bunyan": "^4.0.0", + "@segment/loosely-validate-event": "^2.0.0", + "fetch-retry": "^4.1.1", + "md5": "^2.2.1", + "node-fetch": "^2.6.1", + "remove-trailing-slash": "^0.1.0", + "uuid": "^8.3.2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@expo/rudder-sdk-node/node_modules/fetch-retry": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-4.1.1.tgz", + "integrity": "sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==", + "license": "MIT" + }, + "node_modules/@expo/sdk-runtime-versions": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@expo/sdk-runtime-versions/-/sdk-runtime-versions-1.0.0.tgz", + "integrity": "sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==", + "license": "MIT" + }, + "node_modules/@expo/server": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/@expo/server/-/server-0.4.4.tgz", + "integrity": "sha512-q9ADBzMN5rZ/fgQ2mz5YIJuZ8gelQlhG2CQqToD+UvBLZvbaHCNxTTSs2KI1LzJvAaW5CWgWMatGvGF6iUQ0LA==", + "license": "MIT", + "dependencies": { + "@remix-run/node": "^2.7.2", + "abort-controller": "^3.0.0", + "debug": "^4.3.4", + "source-map-support": "~0.5.21" + } + }, + "node_modules/@expo/spawn-async": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/@expo/spawn-async/-/spawn-async-1.7.2.tgz", + "integrity": "sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@expo/vector-icons": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/@expo/vector-icons/-/vector-icons-14.0.4.tgz", + "integrity": "sha512-+yKshcbpDfbV4zoXOgHxCwh7lkE9VVTT5T03OUlBsqfze1PLy6Hi4jp1vSb1GVbY6eskvMIivGVc9SKzIv0oEQ==", + "license": "MIT", + "dependencies": { + "prop-types": "^15.8.1" + } + }, + "node_modules/@expo/xcpretty": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@expo/xcpretty/-/xcpretty-4.3.1.tgz", + "integrity": "sha512-sqXgo1SCv+j4VtYEwl/bukuOIBrVgx6euIoCat3Iyx5oeoXwEA2USCoeL0IPubflMxncA2INkqJ/Wr3NGrSgzw==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/code-frame": "7.10.4", + "chalk": "^4.1.0", + "find-up": "^5.0.0", + "js-yaml": "^4.1.0" + }, + "bin": { + "excpretty": "build/cli.js" + } + }, + "node_modules/@expo/xcpretty/node_modules/@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@expo/xcpretty/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/@expo/xcpretty/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@graphql-typed-document-node/core": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz", + "integrity": "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==", + "license": "MIT", + "peerDependencies": { + "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@hexagon/base64": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@hexagon/base64/-/base64-2.0.3.tgz", + "integrity": "sha512-ZtQDPh0m9MXHK241Cutx4low/WwqtPr0fPeUsXTAEX5Nocrdk6oB9TvyUF9SePrZYkeTL4gFrd+ceMHVb/zC8A==", + "license": "MIT" + }, + "node_modules/@hookform/resolvers": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/@hookform/resolvers/-/resolvers-3.9.0.tgz", + "integrity": "sha512-bU0Gr4EepJ/EQsH/IwEzYLsT/PEj5C0ynLQ4m+GSHS+xKH4TfSelhluTgOaoc4kA5s7eCsQbM4wvZLzELmWzUg==", + "license": "MIT", + "peerDependencies": { + "react-hook-form": "^7.0.0" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/ttlcache": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@isaacs/ttlcache/-/ttlcache-1.4.1.tgz", + "integrity": "sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/create-cache-key-function": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-29.7.0.tgz", + "integrity": "sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "license": "MIT", + "dependencies": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-get-type": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/types": "^29.6.3", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^6.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", + "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.23.9", + "@babel/parser": "^7.23.9", + "@istanbuljs/schema": "^0.1.3", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.18", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/test-result": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform/node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jimp/bmp": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/bmp/-/bmp-0.16.13.tgz", + "integrity": "sha512-9edAxu7N2FX7vzkdl5Jo1BbACfycUtBQX+XBMcHA2bk62P8R0otgkHg798frgAk/WxQIzwxqOH6wMiCwrlAzdQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "@jimp/utils": "^0.16.13", + "bmp-js": "^0.1.0" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/core": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/core/-/core-0.16.13.tgz", + "integrity": "sha512-qXpA1tzTnlkTku9yqtuRtS/wVntvE6f3m3GNxdTdtmc+O+Wcg9Xo2ABPMh7Nc0AHbMKzwvwgB2JnjZmlmJEObg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "@jimp/utils": "^0.16.13", + "any-base": "^1.1.0", + "buffer": "^5.2.0", + "exif-parser": "^0.1.12", + "file-type": "^16.5.4", + "load-bmfont": "^1.3.1", + "mkdirp": "^0.5.1", + "phin": "^2.9.1", + "pixelmatch": "^4.0.2", + "tinycolor2": "^1.4.1" + } + }, + "node_modules/@jimp/custom": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/custom/-/custom-0.16.13.tgz", + "integrity": "sha512-LTATglVUPGkPf15zX1wTMlZ0+AU7cGEGF6ekVF1crA8eHUWsGjrYTB+Ht4E3HTrCok8weQG+K01rJndCp/l4XA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "@jimp/core": "^0.16.13" + } + }, + "node_modules/@jimp/gif": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/gif/-/gif-0.16.13.tgz", + "integrity": "sha512-yFAMZGv3o+YcjXilMWWwS/bv1iSqykFahFMSO169uVMtfQVfa90kt4/kDwrXNR6Q9i6VHpFiGZMlF2UnHClBvg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "@jimp/utils": "^0.16.13", + "gifwrap": "^0.9.2", + "omggif": "^1.0.9" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/jpeg": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/jpeg/-/jpeg-0.16.13.tgz", + "integrity": "sha512-BJHlDxzTlCqP2ThqP8J0eDrbBfod7npWCbJAcfkKqdQuFk0zBPaZ6KKaQKyKxmWJ87Z6ohANZoMKEbtvrwz1AA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "@jimp/utils": "^0.16.13", + "jpeg-js": "^0.4.2" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-resize": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/plugin-resize/-/plugin-resize-0.16.13.tgz", + "integrity": "sha512-qoqtN8LDknm3fJm9nuPygJv30O3vGhSBD2TxrsCnhtOsxKAqVPJtFVdGd/qVuZ8nqQANQmTlfqTiK9mVWQ7MiQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "@jimp/utils": "^0.16.13" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/png": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/png/-/png-0.16.13.tgz", + "integrity": "sha512-8cGqINvbWJf1G0Her9zbq9I80roEX0A+U45xFby3tDWfzn+Zz8XKDF1Nv9VUwVx0N3zpcG1RPs9hfheG4Cq2kg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "@jimp/utils": "^0.16.13", + "pngjs": "^3.3.3" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/tiff": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/tiff/-/tiff-0.16.13.tgz", + "integrity": "sha512-oJY8d9u95SwW00VPHuCNxPap6Q1+E/xM5QThb9Hu+P6EGuu6lIeLaNBMmFZyblwFbwrH+WBOZlvIzDhi4Dm/6Q==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "utif": "^2.0.1" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/types": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/types/-/types-0.16.13.tgz", + "integrity": "sha512-mC0yVNUobFDjoYLg4hoUwzMKgNlxynzwt3cDXzumGvRJ7Kb8qQGOWJQjQFo5OxmGExqzPphkirdbBF88RVLBCg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "@jimp/bmp": "^0.16.13", + "@jimp/gif": "^0.16.13", + "@jimp/jpeg": "^0.16.13", + "@jimp/png": "^0.16.13", + "@jimp/tiff": "^0.16.13", + "timm": "^1.6.1" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/utils": { + "version": "0.16.13", + "resolved": "https://registry.npmjs.org/@jimp/utils/-/utils-0.16.13.tgz", + "integrity": "sha512-VyCpkZzFTHXtKgVO35iKN0sYR10psGpV6SkcSeV4oF7eSYlR8Bl6aQLCzVeFjvESF7mxTmIiI3/XrMobVrtxDA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "regenerator-runtime": "^0.13.3" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@noble/curves": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.6.0.tgz", + "integrity": "sha512-TlaHRXDehJuRNR9TfZDNQ45mMEd5dwUwmicsafcIX4SsNiqnCHKjE/1alYPd/lDRVhxdhUAlv8uEhMCI5zjIJQ==", + "license": "MIT", + "dependencies": { + "@noble/hashes": "1.5.0" + }, + "engines": { + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@noble/hashes": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.5.0.tgz", + "integrity": "sha512-1j6kQFb7QRru7eKN3ZDvRcP13rugwdxZqCjbiAVZfIJwgj2A65UmT4TgARXGlXgnRkORLTDTrO19ZErt7+QXgA==", + "license": "MIT", + "engines": { + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@npmcli/fs": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.1.tgz", + "integrity": "sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==", + "license": "ISC", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@privy-io/api-base": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@privy-io/api-base/-/api-base-1.4.0.tgz", + "integrity": "sha512-8Pm/8bx6WvNt8uLtYOOj9acYL+JjUJxeChlBEvSywmre1l5o8naK6J4SeAb5v8b8p4178VNI4AYhd+rFh4HCsA==", + "dependencies": { + "zod": "^3.21.4" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + } + }, + "node_modules/@privy-io/expo": { + "version": "0.29.3", + "resolved": "https://registry.npmjs.org/@privy-io/expo/-/expo-0.29.3.tgz", + "integrity": "sha512-qwxCnYqw+v5w74db82t1V/J+E6ccFMR0hKHuZVluOa6bxpki0bSc4EgaWDRnjeWxJbSGafK20UxaiWJCvq4Mng==", + "license": "Apache-2.0", + "dependencies": { + "@privy-io/js-sdk-core": "0.30.3", + "react-fast-compare": "^3.2.2", + "zustand": "^4.4.1" + }, + "peerDependencies": { + "@expo-google-fonts/inter": "*", + "@privy-io/expo-native-extensions": "0.0.3", + "expo-apple-authentication": "*", + "expo-application": "*", + "expo-constants": "*", + "expo-crypto": "*", + "expo-font": "*", + "expo-linking": "*", + "expo-secure-store": "*", + "expo-web-browser": "*", + "react": "*", + "react-native": "*", + "react-native-passkeys": "^0.3.0", + "react-native-safe-area-context": "*", + "react-native-svg": "*", + "react-native-webview": "*" + }, + "peerDependenciesMeta": { + "@expo-google-fonts/inter": { + "optional": true + }, + "expo-font": { + "optional": true + } + } + }, + "node_modules/@privy-io/expo-native-extensions": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/@privy-io/expo-native-extensions/-/expo-native-extensions-0.0.3.tgz", + "integrity": "sha512-T6WgIISeSxj5Yf4kpo/YhyjTG4XASW0ky0vjHRZeqPSCrFjQm4ziIn5RMPFAHUaS8inKPM6FjSZgrcdA4a2adw==", + "license": "Apache-2.0", + "peerDependencies": { + "expo": "*", + "react": "*", + "react-native": "*" + } + }, + "node_modules/@privy-io/js-sdk-core": { + "version": "0.30.3", + "resolved": "https://registry.npmjs.org/@privy-io/js-sdk-core/-/js-sdk-core-0.30.3.tgz", + "integrity": "sha512-g/h3YABDiQ9rG555gax7vYwBVrWos9Uh8DNzGBxwjECYRGGkuNuVY8Nc9gq3TBeQySUAKRFfWgSDCHtq7uDXRQ==", + "license": "Apache-2.0", + "dependencies": { + "@ethersproject/abstract-signer": "^5.7.0", + "@ethersproject/bignumber": "^5.7.0", + "@ethersproject/contracts": "^5.7.0", + "@ethersproject/providers": "^5.7.2", + "@ethersproject/transactions": "^5.7.0", + "@ethersproject/units": "^5.7.0", + "@privy-io/api-base": "^1.4.0", + "@privy-io/public-api": "2.11.6", + "eventemitter3": "^5.0.1", + "fetch-retry": "^5.0.6", + "jose": "^4.15.5", + "js-cookie": "^3.0.5", + "libphonenumber-js": "^1.10.44", + "set-cookie-parser": "^2.6.0", + "uuid": ">=8 <10" + } + }, + "node_modules/@privy-io/js-sdk-core/node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/@privy-io/public-api": { + "version": "2.11.6", + "resolved": "https://registry.npmjs.org/@privy-io/public-api/-/public-api-2.11.6.tgz", + "integrity": "sha512-0xv9XpStuMPnZ8lJUXwybuzu3o1EW2iKtezIurM3X34d84wcYprdjEpcya8jZIzqozYrht2+3T2bnryvO3HrXA==", + "license": "Apache-2.0", + "dependencies": { + "@privy-io/api-base": "1.4.0", + "bs58": "^5.0.0", + "ethers": "^5.7.2", + "libphonenumber-js": "^1.10.31", + "zod": "^3.22.4" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + } + }, + "node_modules/@radix-ui/react-compose-refs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.0.tgz", + "integrity": "sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "react": "^16.8 || ^17.0 || ^18.0" + } + }, + "node_modules/@radix-ui/react-slot": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.1.tgz", + "integrity": "sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.0" + }, + "peerDependencies": { + "react": "^16.8 || ^17.0 || ^18.0" + } + }, + "node_modules/@react-native-async-storage/async-storage": { + "version": "1.23.1", + "resolved": "https://registry.npmjs.org/@react-native-async-storage/async-storage/-/async-storage-1.23.1.tgz", + "integrity": "sha512-Qd2kQ3yi6Y3+AcUlrHxSLlnBvpdCEMVGFlVBneVOjaFaPU61g1huc38g339ysXspwY1QZA2aNhrk/KlHGO+ewA==", + "license": "MIT", + "dependencies": { + "merge-options": "^3.0.4" + }, + "peerDependencies": { + "react-native": "^0.0.0-0 || >=0.60 <1.0" + } + }, + "node_modules/@react-native-clipboard/clipboard": { + "version": "1.14.2", + "resolved": "https://registry.npmjs.org/@react-native-clipboard/clipboard/-/clipboard-1.14.2.tgz", + "integrity": "sha512-Mb58f3neB6sM9oOtKYVGLvN8KVByea67OA9ekJ0c9FwdH24INu8RJoA7/fq+PRk+7oxbeamAcEoQPRv0uwbbMw==", + "license": "MIT", + "workspaces": [ + "example" + ], + "peerDependencies": { + "react": ">= 16.9.0", + "react-native": ">= 0.61.5", + "react-native-macos": ">= 0.61.0", + "react-native-windows": ">= 0.61.0" + }, + "peerDependenciesMeta": { + "react-native-macos": { + "optional": true + }, + "react-native-windows": { + "optional": true + } + } + }, + "node_modules/@react-native-community/cli": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli/-/cli-13.6.9.tgz", + "integrity": "sha512-hFJL4cgLPxncJJd/epQ4dHnMg5Jy/7Q56jFvA3MHViuKpzzfTCJCB+pGY54maZbtym53UJON9WTGpM3S81UfjQ==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-clean": "13.6.9", + "@react-native-community/cli-config": "13.6.9", + "@react-native-community/cli-debugger-ui": "13.6.9", + "@react-native-community/cli-doctor": "13.6.9", + "@react-native-community/cli-hermes": "13.6.9", + "@react-native-community/cli-server-api": "13.6.9", + "@react-native-community/cli-tools": "13.6.9", + "@react-native-community/cli-types": "13.6.9", + "chalk": "^4.1.2", + "commander": "^9.4.1", + "deepmerge": "^4.3.0", + "execa": "^5.0.0", + "find-up": "^4.1.0", + "fs-extra": "^8.1.0", + "graceful-fs": "^4.1.3", + "prompts": "^2.4.2", + "semver": "^7.5.2" + }, + "bin": { + "rnc-cli": "build/bin.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native-community/cli-clean": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-clean/-/cli-clean-13.6.9.tgz", + "integrity": "sha512-7Dj5+4p9JggxuVNOjPbduZBAP1SUgNhLKVw5noBUzT/3ZpUZkDM+RCSwyoyg8xKWoE4OrdUAXwAFlMcFDPKykA==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-tools": "13.6.9", + "chalk": "^4.1.2", + "execa": "^5.0.0", + "fast-glob": "^3.3.2" + } + }, + "node_modules/@react-native-community/cli-config": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-config/-/cli-config-13.6.9.tgz", + "integrity": "sha512-rFfVBcNojcMm+KKHE/xqpqXg8HoKl4EC7bFHUrahMJ+y/tZll55+oX/PGG37rzB8QzP2UbMQ19DYQKC1G7kXeg==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-tools": "13.6.9", + "chalk": "^4.1.2", + "cosmiconfig": "^5.1.0", + "deepmerge": "^4.3.0", + "fast-glob": "^3.3.2", + "joi": "^17.2.1" + } + }, + "node_modules/@react-native-community/cli-debugger-ui": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-13.6.9.tgz", + "integrity": "sha512-TkN7IdFmGPPvTpAo3nCAH9uwGCPxWBEAwpqEZDrq0NWllI7Tdie8vDpGdrcuCcKalmhq6OYnkXzeBah7O1Ztpw==", + "license": "MIT", + "dependencies": { + "serve-static": "^1.13.1" + } + }, + "node_modules/@react-native-community/cli-doctor": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-doctor/-/cli-doctor-13.6.9.tgz", + "integrity": "sha512-5quFaLdWFQB+677GXh5dGU9I5eg2z6Vg4jOX9vKnc9IffwyIFAyJfCZHrxLSRPDGNXD7biDQUdoezXYGwb6P/A==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-config": "13.6.9", + "@react-native-community/cli-platform-android": "13.6.9", + "@react-native-community/cli-platform-apple": "13.6.9", + "@react-native-community/cli-platform-ios": "13.6.9", + "@react-native-community/cli-tools": "13.6.9", + "chalk": "^4.1.2", + "command-exists": "^1.2.8", + "deepmerge": "^4.3.0", + "envinfo": "^7.10.0", + "execa": "^5.0.0", + "hermes-profile-transformer": "^0.0.6", + "node-stream-zip": "^1.9.1", + "ora": "^5.4.1", + "semver": "^7.5.2", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1", + "yaml": "^2.2.1" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@react-native-community/cli-hermes": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-hermes/-/cli-hermes-13.6.9.tgz", + "integrity": "sha512-GvwiwgvFw4Ws+krg2+gYj8sR3g05evmNjAHkKIKMkDTJjZ8EdyxbkifRUs1ZCq3TMZy2oeblZBXCJVOH4W7ZbA==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-platform-android": "13.6.9", + "@react-native-community/cli-tools": "13.6.9", + "chalk": "^4.1.2", + "hermes-profile-transformer": "^0.0.6" + } + }, + "node_modules/@react-native-community/cli-platform-android": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-android/-/cli-platform-android-13.6.9.tgz", + "integrity": "sha512-9KsYGdr08QhdvT3Ht7e8phQB3gDX9Fs427NJe0xnoBh+PDPTI2BD5ks5ttsH8CzEw8/P6H8tJCHq6hf2nxd9cw==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-tools": "13.6.9", + "chalk": "^4.1.2", + "execa": "^5.0.0", + "fast-glob": "^3.3.2", + "fast-xml-parser": "^4.2.4", + "logkitty": "^0.7.1" + } + }, + "node_modules/@react-native-community/cli-platform-apple": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-apple/-/cli-platform-apple-13.6.9.tgz", + "integrity": "sha512-KoeIHfhxMhKXZPXmhQdl6EE+jGKWwoO9jUVWgBvibpVmsNjo7woaG/tfJMEWfWF3najX1EkQAoJWpCDBMYWtlA==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-tools": "13.6.9", + "chalk": "^4.1.2", + "execa": "^5.0.0", + "fast-glob": "^3.3.2", + "fast-xml-parser": "^4.0.12", + "ora": "^5.4.1" + } + }, + "node_modules/@react-native-community/cli-platform-ios": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-ios/-/cli-platform-ios-13.6.9.tgz", + "integrity": "sha512-CiUcHlGs8vE0CAB4oi1f+dzniqfGuhWPNrDvae2nm8dewlahTBwIcK5CawyGezjcJoeQhjBflh9vloska+nlnw==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-platform-apple": "13.6.9" + } + }, + "node_modules/@react-native-community/cli-server-api": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-server-api/-/cli-server-api-13.6.9.tgz", + "integrity": "sha512-W8FSlCPWymO+tlQfM3E0JmM8Oei5HZsIk5S0COOl0MRi8h0NmHI4WSTF2GCfbFZkcr2VI/fRsocoN8Au4EZAug==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-debugger-ui": "13.6.9", + "@react-native-community/cli-tools": "13.6.9", + "compression": "^1.7.1", + "connect": "^3.6.5", + "errorhandler": "^1.5.1", + "nocache": "^3.0.1", + "pretty-format": "^26.6.2", + "serve-static": "^1.13.1", + "ws": "^6.2.2" + } + }, + "node_modules/@react-native-community/cli-server-api/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@react-native-community/cli-server-api/node_modules/@types/yargs": { + "version": "15.0.19", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.19.tgz", + "integrity": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@react-native-community/cli-server-api/node_modules/pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/@react-native-community/cli-server-api/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "license": "MIT" + }, + "node_modules/@react-native-community/cli-tools": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-tools/-/cli-tools-13.6.9.tgz", + "integrity": "sha512-OXaSjoN0mZVw3nrAwcY1PC0uMfyTd9fz7Cy06dh+EJc+h0wikABsVRzV8cIOPrVV+PPEEXE0DBrH20T2puZzgQ==", + "license": "MIT", + "dependencies": { + "appdirsjs": "^1.2.4", + "chalk": "^4.1.2", + "execa": "^5.0.0", + "find-up": "^5.0.0", + "mime": "^2.4.1", + "node-fetch": "^2.6.0", + "open": "^6.2.0", + "ora": "^5.4.1", + "semver": "^7.5.2", + "shell-quote": "^1.7.3", + "sudo-prompt": "^9.0.0" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/open": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/open/-/open-6.4.0.tgz", + "integrity": "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==", + "license": "MIT", + "dependencies": { + "is-wsl": "^1.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/sudo-prompt": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.2.1.tgz", + "integrity": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==", + "license": "MIT" + }, + "node_modules/@react-native-community/cli-types": { + "version": "13.6.9", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-types/-/cli-types-13.6.9.tgz", + "integrity": "sha512-RLxDppvRxXfs3hxceW/mShi+6o5yS+kFPnPqZTaMKKR5aSg7LwDpLQW4K2D22irEG8e6RKDkZUeH9aL3vO2O0w==", + "license": "MIT", + "dependencies": { + "joi": "^17.2.1" + } + }, + "node_modules/@react-native-community/cli/node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "license": "MIT", + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/@react-native-community/cli/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@react-native-community/cli/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "license": "MIT", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@react-native-community/cli/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@react-native-community/slider": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/@react-native-community/slider/-/slider-4.5.2.tgz", + "integrity": "sha512-DbFyCyI7rwl0FkBkp0lzEVp+5mNfS5qU/nM2sK2aSguWhj0Odkt1aKHP2iW/ljruOhgS/O4dEixXlne4OdZJDQ==", + "license": "MIT" + }, + "node_modules/@react-native-masked-view/masked-view": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@react-native-masked-view/masked-view/-/masked-view-0.3.1.tgz", + "integrity": "sha512-uVm8U6nwFIlUd1iDIB5cS+lDadApKR+l8k4k84d9hn+GN4lzAIJhUZ9syYX7c022MxNgAlbxoFLt0pqKoyaAGg==", + "license": "MIT", + "peerDependencies": { + "react": ">=16", + "react-native": ">=0.57" + } + }, + "node_modules/@react-native/assets-registry": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/assets-registry/-/assets-registry-0.74.87.tgz", + "integrity": "sha512-1XmRhqQchN+pXPKEKYdpJlwESxVomJOxtEnIkbo7GAlaN2sym84fHEGDXAjLilih5GVPpcpSmFzTy8jx3LtaFg==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/babel-plugin-codegen": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.74.87.tgz", + "integrity": "sha512-+vJYpMnENFrwtgvDfUj+CtVJRJuUnzAUYT0/Pb68Sq9RfcZ5xdcCuUgyf7JO+akW2VTBoJY427wkcxU30qrWWw==", + "license": "MIT", + "dependencies": { + "@react-native/codegen": "0.74.87" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/babel-preset": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/babel-preset/-/babel-preset-0.74.87.tgz", + "integrity": "sha512-hyKpfqzN2nxZmYYJ0tQIHG99FQO0OWXp/gVggAfEUgiT+yNKas1C60LuofUsK7cd+2o9jrpqgqW4WzEDZoBlTg==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "@babel/plugin-proposal-async-generator-functions": "^7.0.0", + "@babel/plugin-proposal-class-properties": "^7.18.0", + "@babel/plugin-proposal-export-default-from": "^7.0.0", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.0", + "@babel/plugin-proposal-numeric-separator": "^7.0.0", + "@babel/plugin-proposal-object-rest-spread": "^7.20.0", + "@babel/plugin-proposal-optional-catch-binding": "^7.0.0", + "@babel/plugin-proposal-optional-chaining": "^7.20.0", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "@babel/plugin-syntax-export-default-from": "^7.0.0", + "@babel/plugin-syntax-flow": "^7.18.0", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.0.0", + "@babel/plugin-syntax-optional-chaining": "^7.0.0", + "@babel/plugin-transform-arrow-functions": "^7.0.0", + "@babel/plugin-transform-async-to-generator": "^7.20.0", + "@babel/plugin-transform-block-scoping": "^7.0.0", + "@babel/plugin-transform-classes": "^7.0.0", + "@babel/plugin-transform-computed-properties": "^7.0.0", + "@babel/plugin-transform-destructuring": "^7.20.0", + "@babel/plugin-transform-flow-strip-types": "^7.20.0", + "@babel/plugin-transform-function-name": "^7.0.0", + "@babel/plugin-transform-literals": "^7.0.0", + "@babel/plugin-transform-modules-commonjs": "^7.0.0", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.0.0", + "@babel/plugin-transform-parameters": "^7.0.0", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/plugin-transform-private-property-in-object": "^7.22.11", + "@babel/plugin-transform-react-display-name": "^7.0.0", + "@babel/plugin-transform-react-jsx": "^7.0.0", + "@babel/plugin-transform-react-jsx-self": "^7.0.0", + "@babel/plugin-transform-react-jsx-source": "^7.0.0", + "@babel/plugin-transform-runtime": "^7.0.0", + "@babel/plugin-transform-shorthand-properties": "^7.0.0", + "@babel/plugin-transform-spread": "^7.0.0", + "@babel/plugin-transform-sticky-regex": "^7.0.0", + "@babel/plugin-transform-typescript": "^7.5.0", + "@babel/plugin-transform-unicode-regex": "^7.0.0", + "@babel/template": "^7.0.0", + "@react-native/babel-plugin-codegen": "0.74.87", + "babel-plugin-transform-flow-enums": "^0.0.2", + "react-refresh": "^0.14.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/core": "*" + } + }, + "node_modules/@react-native/codegen": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/codegen/-/codegen-0.74.87.tgz", + "integrity": "sha512-GMSYDiD+86zLKgMMgz9z0k6FxmRn+z6cimYZKkucW4soGbxWsbjUAZoZ56sJwt2FJ3XVRgXCrnOCgXoH/Bkhcg==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.0", + "glob": "^7.1.1", + "hermes-parser": "0.19.1", + "invariant": "^2.2.4", + "jscodeshift": "^0.14.0", + "mkdirp": "^0.5.1", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/preset-env": "^7.1.6" + } + }, + "node_modules/@react-native/community-cli-plugin": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/community-cli-plugin/-/community-cli-plugin-0.74.87.tgz", + "integrity": "sha512-EgJG9lSr8x3X67dHQKQvU6EkO+3ksVlJHYIVv6U/AmW9dN80BEFxgYbSJ7icXS4wri7m4kHdgeq2PQ7/3vvrTQ==", + "license": "MIT", + "dependencies": { + "@react-native-community/cli-server-api": "13.6.9", + "@react-native-community/cli-tools": "13.6.9", + "@react-native/dev-middleware": "0.74.87", + "@react-native/metro-babel-transformer": "0.74.87", + "chalk": "^4.0.0", + "execa": "^5.1.1", + "metro": "^0.80.3", + "metro-config": "^0.80.3", + "metro-core": "^0.80.3", + "node-fetch": "^2.2.0", + "querystring": "^0.2.1", + "readline": "^1.3.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/@react-native/debugger-frontend": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.74.87.tgz", + "integrity": "sha512-MN95DJLYTv4EqJc+9JajA3AJZSBYJz2QEJ3uWlHrOky2vKrbbRVaW1ityTmaZa2OXIvNc6CZwSRSE7xCoHbXhQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/@react-native/dev-middleware": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/dev-middleware/-/dev-middleware-0.74.87.tgz", + "integrity": "sha512-7TmZ3hTHwooYgIHqc/z87BMe1ryrIqAUi+AF7vsD+EHCGxHFdMjSpf1BZ2SUPXuLnF2cTiTfV2RwhbPzx0tYIA==", + "license": "MIT", + "dependencies": { + "@isaacs/ttlcache": "^1.4.1", + "@react-native/debugger-frontend": "0.74.87", + "@rnx-kit/chromium-edge-launcher": "^1.0.0", + "chrome-launcher": "^0.15.2", + "connect": "^3.6.5", + "debug": "^2.2.0", + "node-fetch": "^2.2.0", + "nullthrows": "^1.1.1", + "open": "^7.0.3", + "selfsigned": "^2.4.1", + "serve-static": "^1.13.1", + "temp-dir": "^2.0.0", + "ws": "^6.2.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/@react-native/debugger-frontend": { + "version": "0.74.85", + "resolved": "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.74.85.tgz", + "integrity": "sha512-gUIhhpsYLUTYWlWw4vGztyHaX/kNlgVspSvKe2XaPA7o3jYKUoNLc3Ov7u70u/MBWfKdcEffWq44eSe3j3s5JQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/dev-middleware": { + "version": "0.74.85", + "resolved": "https://registry.npmjs.org/@react-native/dev-middleware/-/dev-middleware-0.74.85.tgz", + "integrity": "sha512-BRmgCK5vnMmHaKRO+h8PKJmHHH3E6JFuerrcfE3wG2eZ1bcSr+QTu8DAlpxsDWvJvHpCi8tRJGauxd+Ssj/c7w==", + "license": "MIT", + "dependencies": { + "@isaacs/ttlcache": "^1.4.1", + "@react-native/debugger-frontend": "0.74.85", + "@rnx-kit/chromium-edge-launcher": "^1.0.0", + "chrome-launcher": "^0.15.2", + "connect": "^3.6.5", + "debug": "^2.2.0", + "node-fetch": "^2.2.0", + "nullthrows": "^1.1.1", + "open": "^7.0.3", + "selfsigned": "^2.4.1", + "serve-static": "^1.13.1", + "temp-dir": "^2.0.0", + "ws": "^6.2.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/dev-middleware/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/@react-native/dev-middleware/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/@react-native/gradle-plugin": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/gradle-plugin/-/gradle-plugin-0.74.87.tgz", + "integrity": "sha512-T+VX0N1qP+U9V4oAtn7FTX7pfsoVkd1ocyw9swYXgJqU2fK7hC9famW7b3s3ZiufPGPr1VPJe2TVGtSopBjL6A==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/js-polyfills": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/js-polyfills/-/js-polyfills-0.74.87.tgz", + "integrity": "sha512-M5Evdn76CuVEF0GsaXiGi95CBZ4IWubHqwXxV9vG9CC9kq0PSkoM2Pn7Lx7dgyp4vT7ccJ8a3IwHbe+5KJRnpw==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/metro-babel-transformer": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.74.87.tgz", + "integrity": "sha512-UsJCO24sNax2NSPBmV1zLEVVNkS88kcgAiYrZHtYSwSjpl4WZ656tIeedBfiySdJ94Hr3kQmBYLipV5zk0NI1A==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "@react-native/babel-preset": "0.74.87", + "hermes-parser": "0.19.1", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/core": "*" + } + }, + "node_modules/@react-native/normalize-colors": { + "version": "0.74.85", + "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.74.85.tgz", + "integrity": "sha512-pcE4i0X7y3hsAE0SpIl7t6dUc0B0NZLd1yv7ssm4FrLhWG+CGyIq4eFDXpmPU1XHmL5PPySxTAjEMiwv6tAmOw==", + "license": "MIT" + }, + "node_modules/@react-native/virtualized-lists": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/virtualized-lists/-/virtualized-lists-0.74.87.tgz", + "integrity": "sha512-lsGxoFMb0lyK/MiplNKJpD+A1EoEUumkLrCjH4Ht+ZlG8S0BfCxmskLZ6qXn3BiDSkLjfjI/qyZ3pnxNBvkXpQ==", + "license": "MIT", + "dependencies": { + "invariant": "^2.2.4", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/react": "^18.2.6", + "react": "*", + "react-native": "*" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@react-navigation/bottom-tabs": { + "version": "6.5.20", + "resolved": "https://registry.npmjs.org/@react-navigation/bottom-tabs/-/bottom-tabs-6.5.20.tgz", + "integrity": "sha512-ow6Z06iS4VqBO8d7FP+HsGjJLWt2xTWIvuWjpoCvsM/uQXzCRDIjBv9HaKcXbF0yTW7IMir0oDAbU5PFzEDdgA==", + "license": "MIT", + "dependencies": { + "@react-navigation/elements": "^1.3.30", + "color": "^4.2.3", + "warn-once": "^0.1.0" + }, + "peerDependencies": { + "@react-navigation/native": "^6.0.0", + "react": "*", + "react-native": "*", + "react-native-safe-area-context": ">= 3.0.0", + "react-native-screens": ">= 3.0.0" + } + }, + "node_modules/@react-navigation/core": { + "version": "6.4.17", + "resolved": "https://registry.npmjs.org/@react-navigation/core/-/core-6.4.17.tgz", + "integrity": "sha512-Nd76EpomzChWAosGqWOYE3ItayhDzIEzzZsT7PfGcRFDgW5miHV2t4MZcq9YIK4tzxZjVVpYbIynOOQQd1e0Cg==", + "license": "MIT", + "dependencies": { + "@react-navigation/routers": "^6.1.9", + "escape-string-regexp": "^4.0.0", + "nanoid": "^3.1.23", + "query-string": "^7.1.3", + "react-is": "^16.13.0", + "use-latest-callback": "^0.2.1" + }, + "peerDependencies": { + "react": "*" + } + }, + "node_modules/@react-navigation/core/node_modules/use-latest-callback": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/use-latest-callback/-/use-latest-callback-0.2.1.tgz", + "integrity": "sha512-QWlq8Is8BGWBf883QOEQP5HWYX/kMI+JTbJ5rdtvJLmXTIh9XoHIO3PQcmQl8BU44VKxow1kbQUHa6mQSMALDQ==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/@react-navigation/elements": { + "version": "1.3.31", + "resolved": "https://registry.npmjs.org/@react-navigation/elements/-/elements-1.3.31.tgz", + "integrity": "sha512-bUzP4Awlljx5RKEExw8WYtif8EuQni2glDaieYROKTnaxsu9kEIA515sXQgUDZU4Ob12VoL7+z70uO3qrlfXcQ==", + "license": "MIT", + "peerDependencies": { + "@react-navigation/native": "^6.0.0", + "react": "*", + "react-native": "*", + "react-native-safe-area-context": ">= 3.0.0" + } + }, + "node_modules/@react-navigation/material-top-tabs": { + "version": "6.6.14", + "resolved": "https://registry.npmjs.org/@react-navigation/material-top-tabs/-/material-top-tabs-6.6.14.tgz", + "integrity": "sha512-kfNQt3BInQusEc8A+PDWaKmRQNaCrSqngcOQwUe1uNizJdZJEFdfaInivtBFW2LcQqtzgIHK/am2TgK0Pos6og==", + "dev": true, + "license": "MIT", + "dependencies": { + "color": "^4.2.3", + "warn-once": "^0.1.0" + }, + "peerDependencies": { + "@react-navigation/native": "^6.0.0", + "react": "*", + "react-native": "*", + "react-native-pager-view": ">= 4.0.0", + "react-native-tab-view": ">= 3.0.0" + } + }, + "node_modules/@react-navigation/native": { + "version": "6.1.18", + "resolved": "https://registry.npmjs.org/@react-navigation/native/-/native-6.1.18.tgz", + "integrity": "sha512-mIT9MiL/vMm4eirLcmw2h6h/Nm5FICtnYSdohq4vTLA2FF/6PNhByM7s8ffqoVfE5L0uAa6Xda1B7oddolUiGg==", + "license": "MIT", + "dependencies": { + "@react-navigation/core": "^6.4.17", + "escape-string-regexp": "^4.0.0", + "fast-deep-equal": "^3.1.3", + "nanoid": "^3.1.23" + }, + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/@react-navigation/native-stack": { + "version": "6.9.26", + "resolved": "https://registry.npmjs.org/@react-navigation/native-stack/-/native-stack-6.9.26.tgz", + "integrity": "sha512-++dueQ+FDj2XkZ902DVrK79ub1vp19nSdAZWxKRgd6+Bc0Niiesua6rMCqymYOVaYh+dagwkA9r00bpt/U5WLw==", + "license": "MIT", + "dependencies": { + "@react-navigation/elements": "^1.3.30", + "warn-once": "^0.1.0" + }, + "peerDependencies": { + "@react-navigation/native": "^6.0.0", + "react": "*", + "react-native": "*", + "react-native-safe-area-context": ">= 3.0.0", + "react-native-screens": ">= 3.0.0" + } + }, + "node_modules/@react-navigation/routers": { + "version": "6.1.9", + "resolved": "https://registry.npmjs.org/@react-navigation/routers/-/routers-6.1.9.tgz", + "integrity": "sha512-lTM8gSFHSfkJvQkxacGM6VJtBt61ip2XO54aNfswD+KMw6eeZ4oehl7m0me3CR9hnDE4+60iAZR8sAhvCiI3NA==", + "license": "MIT", + "dependencies": { + "nanoid": "^3.1.23" + } + }, + "node_modules/@reduxjs/toolkit": { + "version": "2.2.8", + "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.2.8.tgz", + "integrity": "sha512-eK/ieXftPRQfaBSmzsamXEyDwkntMTY0e9SG5ETsEOv5JIPKhu3mj992t6B8FJjlnSrZBAAqdT8oMkPe4j+P9g==", + "license": "MIT", + "dependencies": { + "immer": "^10.0.3", + "redux": "^5.0.1", + "redux-thunk": "^3.1.0", + "reselect": "^5.1.0" + }, + "peerDependencies": { + "react": "^16.9.0 || ^17.0.0 || ^18", + "react-redux": "^7.2.1 || ^8.1.3 || ^9.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-redux": { + "optional": true + } + } + }, + "node_modules/@remix-run/node": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/@remix-run/node/-/node-2.13.1.tgz", + "integrity": "sha512-2ly7bENj2n2FNBdEN60ZEbNCs5dAOex/QJoo6EZ8RNFfUQxVKAZkMwfQ4ETV2SLWDgkRLj3Jo5n/dx7O2ZGhGw==", + "license": "MIT", + "dependencies": { + "@remix-run/server-runtime": "2.13.1", + "@remix-run/web-fetch": "^4.4.2", + "@web3-storage/multipart-parser": "^1.0.0", + "cookie-signature": "^1.1.0", + "source-map-support": "^0.5.21", + "stream-slice": "^0.1.2", + "undici": "^6.11.1" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "typescript": "^5.1.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@remix-run/router": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.20.0.tgz", + "integrity": "sha512-mUnk8rPJBI9loFDZ+YzPGdeniYK+FTmRD1TMCz7ev2SNIozyKKpnGgsxO34u6Z4z/t0ITuu7voi/AshfsGsgFg==", + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@remix-run/server-runtime": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/@remix-run/server-runtime/-/server-runtime-2.13.1.tgz", + "integrity": "sha512-2DfBPRcHKVzE4bCNsNkKB50BhCCKF73x+jiS836OyxSIAL+x0tguV2AEjmGXefEXc5AGGzoxkus0AUUEYa29Vg==", + "license": "MIT", + "dependencies": { + "@remix-run/router": "1.20.0", + "@types/cookie": "^0.6.0", + "@web3-storage/multipart-parser": "^1.0.0", + "cookie": "^0.6.0", + "set-cookie-parser": "^2.4.8", + "source-map": "^0.7.3", + "turbo-stream": "2.4.0" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "typescript": "^5.1.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@remix-run/server-runtime/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@remix-run/web-blob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@remix-run/web-blob/-/web-blob-3.1.0.tgz", + "integrity": "sha512-owGzFLbqPH9PlKb8KvpNJ0NO74HWE2euAn61eEiyCXX/oteoVzTVSN8mpLgDjaxBf2btj5/nUllSUgpyd6IH6g==", + "license": "MIT", + "dependencies": { + "@remix-run/web-stream": "^1.1.0", + "web-encoding": "1.1.5" + } + }, + "node_modules/@remix-run/web-fetch": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/@remix-run/web-fetch/-/web-fetch-4.4.2.tgz", + "integrity": "sha512-jgKfzA713/4kAW/oZ4bC3MoLWyjModOVDjFPNseVqcJKSafgIscrYL9G50SurEYLswPuoU3HzSbO0jQCMYWHhA==", + "license": "MIT", + "dependencies": { + "@remix-run/web-blob": "^3.1.0", + "@remix-run/web-file": "^3.1.0", + "@remix-run/web-form-data": "^3.1.0", + "@remix-run/web-stream": "^1.1.0", + "@web3-storage/multipart-parser": "^1.0.0", + "abort-controller": "^3.0.0", + "data-uri-to-buffer": "^3.0.1", + "mrmime": "^1.0.0" + }, + "engines": { + "node": "^10.17 || >=12.3" + } + }, + "node_modules/@remix-run/web-file": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@remix-run/web-file/-/web-file-3.1.0.tgz", + "integrity": "sha512-dW2MNGwoiEYhlspOAXFBasmLeYshyAyhIdrlXBi06Duex5tDr3ut2LFKVj7tyHLmn8nnNwFf1BjNbkQpygC2aQ==", + "license": "MIT", + "dependencies": { + "@remix-run/web-blob": "^3.1.0" + } + }, + "node_modules/@remix-run/web-form-data": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@remix-run/web-form-data/-/web-form-data-3.1.0.tgz", + "integrity": "sha512-NdeohLMdrb+pHxMQ/Geuzdp0eqPbea+Ieo8M8Jx2lGC6TBHsgHzYcBvr0LyPdPVycNRDEpWpiDdCOdCryo3f9A==", + "license": "MIT", + "dependencies": { + "web-encoding": "1.1.5" + } + }, + "node_modules/@remix-run/web-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@remix-run/web-stream/-/web-stream-1.1.0.tgz", + "integrity": "sha512-KRJtwrjRV5Bb+pM7zxcTJkhIqWWSy+MYsIxHK+0m5atcznsf15YwUBWHWulZerV2+vvHH1Lp1DD7pw6qKW8SgA==", + "license": "MIT", + "dependencies": { + "web-streams-polyfill": "^3.1.1" + } + }, + "node_modules/@rnx-kit/chromium-edge-launcher": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@rnx-kit/chromium-edge-launcher/-/chromium-edge-launcher-1.0.0.tgz", + "integrity": "sha512-lzD84av1ZQhYUS+jsGqJiCMaJO2dn9u+RTT9n9q6D3SaKVwWqv+7AoRKqBu19bkwyE+iFRl1ymr40QS90jVFYg==", + "license": "Apache-2.0", + "dependencies": { + "@types/node": "^18.0.0", + "escape-string-regexp": "^4.0.0", + "is-wsl": "^2.2.0", + "lighthouse-logger": "^1.0.0", + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=14.15" + } + }, + "node_modules/@rnx-kit/chromium-edge-launcher/node_modules/@types/node": { + "version": "18.19.55", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.55.tgz", + "integrity": "sha512-zzw5Vw52205Zr/nmErSEkN5FLqXPuKX/k5d1D7RKHATGqU7y6YfX9QxZraUzUrFGqH6XzOzG196BC35ltJC4Cw==", + "license": "MIT", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@rnx-kit/chromium-edge-launcher/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rnx-kit/chromium-edge-launcher/node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "license": "MIT" + }, + "node_modules/@scure/base": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/@scure/base/-/base-1.1.9.tgz", + "integrity": "sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==", + "license": "MIT", + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@scure/bip32": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.5.0.tgz", + "integrity": "sha512-8EnFYkqEQdnkuGBVpCzKxyIwDCBLDVj3oiX0EKUFre/tOjL/Hqba1D6n/8RcmaQy4f95qQFrO2A8Sr6ybh4NRw==", + "license": "MIT", + "dependencies": { + "@noble/curves": "~1.6.0", + "@noble/hashes": "~1.5.0", + "@scure/base": "~1.1.7" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@scure/bip39": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.4.0.tgz", + "integrity": "sha512-BEEm6p8IueV/ZTfQLp/0vhw4NPnT9oWf5+28nvmeUICjP99f4vr2d+qc7AVGDDtwRep6ifR43Yed9ERVmiITzw==", + "license": "MIT", + "dependencies": { + "@noble/hashes": "~1.5.0", + "@scure/base": "~1.1.8" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@segment/loosely-validate-event": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@segment/loosely-validate-event/-/loosely-validate-event-2.0.0.tgz", + "integrity": "sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw==", + "dependencies": { + "component-type": "^1.2.1", + "join-component": "^1.1.0" + } + }, + "node_modules/@sideway/address": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", + "integrity": "sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@sideway/formula": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", + "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", + "license": "BSD-3-Clause" + }, + "node_modules/@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "license": "MIT" + }, + "node_modules/@sinonjs/commons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@tokenizer/token": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", + "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==", + "license": "MIT" + }, + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", + "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==", + "license": "MIT" + }, + "node_modules/@types/d3-array": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz", + "integrity": "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==", + "license": "MIT" + }, + "node_modules/@types/d3-color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", + "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==", + "license": "MIT" + }, + "node_modules/@types/d3-ease": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", + "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==", + "license": "MIT" + }, + "node_modules/@types/d3-interpolate": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", + "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", + "license": "MIT", + "dependencies": { + "@types/d3-color": "*" + } + }, + "node_modules/@types/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==", + "license": "MIT" + }, + "node_modules/@types/d3-scale": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz", + "integrity": "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==", + "license": "MIT", + "dependencies": { + "@types/d3-time": "*" + } + }, + "node_modules/@types/d3-shape": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.6.tgz", + "integrity": "sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==", + "license": "MIT", + "dependencies": { + "@types/d3-path": "*" + } + }, + "node_modules/@types/d3-time": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.3.tgz", + "integrity": "sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==", + "license": "MIT" + }, + "node_modules/@types/d3-timer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz", + "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==", + "license": "MIT" + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/hammerjs": { + "version": "2.0.46", + "resolved": "https://registry.npmjs.org/@types/hammerjs/-/hammerjs-2.0.46.tgz", + "integrity": "sha512-ynRvcq6wvqexJ9brDMS4BnBLzmr0e14d6ZJTEShTBWKymQiHwlAyGu0ZPEFI2Fh1U53F7tN9ufClWM5KvqkKOw==", + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "29.5.13", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.13.tgz", + "integrity": "sha512-wd+MVEZCHt23V0/L642O5APvspWply/rGY5BcW4SUETo2UzPU3Z26qr8jC2qxpimI2jjx9h7+2cj2FwIr01bXg==", + "dev": true, + "license": "MIT", + "dependencies": { + "expect": "^29.0.0", + "pretty-format": "^29.0.0" + } + }, + "node_modules/@types/jsdom": { + "version": "20.0.1", + "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", + "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/tough-cookie": "*", + "parse5": "^7.0.0" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "license": "MIT" + }, + "node_modules/@types/lodash": { + "version": "4.17.10", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.10.tgz", + "integrity": "sha512-YpS0zzoduEhuOWjAotS6A5AVCva7X4lVlYLF0FYHAY9sdraBfnatttHItlWeZdGhuEkf+OzMNg2ZYAx8t+52uQ==", + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "22.7.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.7.5.tgz", + "integrity": "sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~6.19.2" + } + }, + "node_modules/@types/node-forge": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", + "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/prop-types": { + "version": "15.7.13", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.13.tgz", + "integrity": "sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.2.79", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.79.tgz", + "integrity": "sha512-RwGAGXPl9kSXwdNTafkOEuFrTBD5SA2B3iEB96xi8+xu5ddUa/cpvyVCSNn+asgLCTHkb5ZxN8gbuibYJi4s1w==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-test-renderer": { + "version": "18.3.0", + "resolved": "https://registry.npmjs.org/@types/react-test-renderer/-/react-test-renderer-18.3.0.tgz", + "integrity": "sha512-HW4MuEYxfDbOHQsVlY/XtOvNHftCVEPhJF2pQXXwcUiUF+Oyb0usgp48HSgpK5rt8m9KZb22yqOeZm+rrVG8gw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-test-renderer/node_modules/@types/react": { + "version": "18.3.11", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.11.tgz", + "integrity": "sha512-r6QZ069rFTjrEYgFdOck1gK7FLVsgJE7tTz0pQBczlBNUhBNk0MQH4UbnFSwjpQLMkLzgqvBBa+qGpLje16eTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", + "license": "MIT" + }, + "node_modules/@types/tough-cookie": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", + "integrity": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/use-sync-external-store": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz", + "integrity": "sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==", + "license": "MIT" + }, + "node_modules/@types/yargs": { + "version": "17.0.33", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", + "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", + "license": "MIT" + }, + "node_modules/@urql/core": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/@urql/core/-/core-2.3.6.tgz", + "integrity": "sha512-PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw==", + "license": "MIT", + "dependencies": { + "@graphql-typed-document-node/core": "^3.1.0", + "wonka": "^4.0.14" + }, + "peerDependencies": { + "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/@urql/exchange-retry": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@urql/exchange-retry/-/exchange-retry-0.3.0.tgz", + "integrity": "sha512-hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg==", + "license": "MIT", + "dependencies": { + "@urql/core": ">=2.3.1", + "wonka": "^4.0.14" + }, + "peerDependencies": { + "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" + } + }, + "node_modules/@urql/exchange-retry/node_modules/@urql/core": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@urql/core/-/core-5.0.6.tgz", + "integrity": "sha512-38rgSDqVNihFDauw1Pm9V7XLWIKuK8V9CKgrUF7/xEKinze8ENKP1ZeBhkG+dxWzJan7CHK+SLl46kAdvZwIlA==", + "license": "MIT", + "dependencies": { + "@0no-co/graphql.web": "^1.0.5", + "wonka": "^6.3.2" + } + }, + "node_modules/@urql/exchange-retry/node_modules/@urql/core/node_modules/wonka": { + "version": "6.3.4", + "resolved": "https://registry.npmjs.org/wonka/-/wonka-6.3.4.tgz", + "integrity": "sha512-CjpbqNtBGNAeyNS/9W6q3kSkKE52+FjIj7AkFlLr11s/VWGUu6a2CdYSdGxocIhIVjaW/zchesBQUKPVU69Cqg==", + "license": "MIT" + }, + "node_modules/@web3-storage/multipart-parser": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@web3-storage/multipart-parser/-/multipart-parser-1.0.0.tgz", + "integrity": "sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw==", + "license": "(Apache-2.0 AND MIT)" + }, + "node_modules/@xmldom/xmldom": { + "version": "0.7.13", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.13.tgz", + "integrity": "sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@zxing/text-encoding": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/@zxing/text-encoding/-/text-encoding-0.9.0.tgz", + "integrity": "sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==", + "license": "(Unlicense OR Apache-2.0)", + "optional": true + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/abitype": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/abitype/-/abitype-1.0.6.tgz", + "integrity": "sha512-MMSqYh4+C/aVqI2RQaWqbvI4Kxo5cQV40WQ4QFtDnNzCkqChm8MuENhElmynZlO0qUy/ObkEUaXtKqYnx1Kp3A==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/wevm" + }, + "peerDependencies": { + "typescript": ">=5.0.4", + "zod": "^3 >=3.22.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + }, + "zod": { + "optional": true + } + } + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "acorn": "^8.1.0", + "acorn-walk": "^8.0.2" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", + "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/aes-js": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.0.0.tgz", + "integrity": "sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==", + "license": "MIT" + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/anser": { + "version": "1.4.10", + "resolved": "https://registry.npmjs.org/anser/-/anser-1.4.10.tgz", + "integrity": "sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==", + "license": "MIT" + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-fragments": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/ansi-fragments/-/ansi-fragments-0.2.1.tgz", + "integrity": "sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==", + "license": "MIT", + "dependencies": { + "colorette": "^1.0.7", + "slice-ansi": "^2.0.0", + "strip-ansi": "^5.0.0" + } + }, + "node_modules/ansi-fragments/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-fragments/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-base": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/any-base/-/any-base-1.1.0.tgz", + "integrity": "sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==", + "license": "MIT" + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "license": "MIT" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/appdirsjs": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/appdirsjs/-/appdirsjs-1.2.7.tgz", + "integrity": "sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==", + "license": "MIT" + }, + "node_modules/application-config-path": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.1.tgz", + "integrity": "sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==", + "license": "MIT" + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "license": "MIT" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "license": "MIT" + }, + "node_modules/ast-types": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz", + "integrity": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "license": "MIT" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "license": "ISC", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/babel-core": { + "version": "7.0.0-bridge.0", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", + "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==", + "license": "MIT", + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/transform": "^29.7.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", + "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.2", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.10.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz", + "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.2", + "core-js-compat": "^3.38.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", + "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-react-compiler": { + "version": "0.0.0-experimental-592953e-20240517", + "resolved": "https://registry.npmjs.org/babel-plugin-react-compiler/-/babel-plugin-react-compiler-0.0.0-experimental-592953e-20240517.tgz", + "integrity": "sha512-OjG1SVaeQZaJrqkMFJatg8W/MTow8Ak5rx2SI0ETQBO1XvOk/XZGMbltNCPdFJLKghBYoBjC+Y3Ap/Xr7B01mA==", + "license": "MIT", + "dependencies": { + "@babel/generator": "7.2.0", + "@babel/types": "^7.19.0", + "chalk": "4", + "invariant": "^2.2.4", + "pretty-format": "^24", + "zod": "^3.22.4", + "zod-validation-error": "^2.1.0" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/@babel/generator": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.2.0.tgz", + "integrity": "sha512-BA75MVfRlFQG2EZgFYIwyT1r6xSkwfP2bdkY/kLZusEYWiJs4xCowab/alaEaT0wSvmVuXGqiefeBlP+7V1yKg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.2.0", + "jsesc": "^2.5.1", + "lodash": "^4.17.10", + "source-map": "^0.5.0", + "trim-right": "^1.0.1" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/@types/yargs": { + "version": "13.0.12", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.12.tgz", + "integrity": "sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/babel-plugin-react-compiler/node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/pretty-format": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz", + "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^24.9.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/babel-plugin-react-compiler/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-plugin-react-native-web": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.19.12.tgz", + "integrity": "sha512-eYZ4+P6jNcB37lObWIg0pUbi7+3PKoU1Oie2j0C8UF3cXyXoR74tO2NBjI/FORb2LJyItJZEAmjU5pSaJYEL1w==", + "license": "MIT" + }, + "node_modules/babel-plugin-transform-flow-enums": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-flow-enums/-/babel-plugin-transform-flow-enums-0.0.2.tgz", + "integrity": "sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==", + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-flow": "^7.12.1" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz", + "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-import-attributes": "^7.24.7", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-expo": { + "version": "11.0.15", + "resolved": "https://registry.npmjs.org/babel-preset-expo/-/babel-preset-expo-11.0.15.tgz", + "integrity": "sha512-rgiMTYwqIPULaO7iZdqyL7aAff9QLOX6OWUtLZBlOrOTreGY1yHah/5+l8MvI6NVc/8Zj5LY4Y5uMSnJIuzTLw==", + "license": "MIT", + "dependencies": { + "@babel/plugin-proposal-decorators": "^7.12.9", + "@babel/plugin-transform-export-namespace-from": "^7.22.11", + "@babel/plugin-transform-object-rest-spread": "^7.12.13", + "@babel/plugin-transform-parameters": "^7.22.15", + "@babel/preset-react": "^7.22.15", + "@babel/preset-typescript": "^7.23.0", + "@react-native/babel-preset": "0.74.87", + "babel-plugin-react-compiler": "0.0.0-experimental-592953e-20240517", + "babel-plugin-react-native-web": "~0.19.10", + "react-refresh": "^0.14.2" + } + }, + "node_modules/babel-preset-jest": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", + "dev": true, + "license": "MIT", + "dependencies": { + "babel-plugin-jest-hoist": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/base-x": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz", + "integrity": "sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw==", + "license": "MIT" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/bech32": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz", + "integrity": "sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==", + "license": "MIT" + }, + "node_modules/better-opn": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-3.0.2.tgz", + "integrity": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==", + "license": "MIT", + "dependencies": { + "open": "^8.0.4" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/better-opn/node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "license": "MIT", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/big-integer": { + "version": "1.6.52", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", + "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", + "license": "Unlicense", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/bmp-js": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz", + "integrity": "sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==", + "license": "MIT" + }, + "node_modules/bn.js": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", + "license": "MIT" + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "license": "ISC" + }, + "node_modules/bplist-creator": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.7.tgz", + "integrity": "sha512-xp/tcaV3T5PCiaY04mXga7o/TE+t95gqeLmADeBI1CvZtdWTbgBt3uLpvh4UWtenKeBhCV6oVxGk38yZr2uYEA==", + "license": "MIT", + "dependencies": { + "stream-buffers": "~2.2.0" + } + }, + "node_modules/bplist-parser": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.2.tgz", + "integrity": "sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==", + "license": "MIT", + "dependencies": { + "big-integer": "1.6.x" + }, + "engines": { + "node": ">= 5.10.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", + "license": "MIT" + }, + "node_modules/browserslist": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.0.tgz", + "integrity": "sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001663", + "electron-to-chromium": "^1.5.28", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bs58": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz", + "integrity": "sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==", + "license": "MIT", + "dependencies": { + "base-x": "^4.0.0" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "license": "Apache-2.0", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "license": "MIT", + "dependencies": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "node_modules/buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", + "license": "MIT" + }, + "node_modules/buffer-equal": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz", + "integrity": "sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==", + "license": "MIT" + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "license": "MIT" + }, + "node_modules/builtins": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz", + "integrity": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==", + "license": "MIT" + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacache": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.4.tgz", + "integrity": "sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==", + "license": "ISC", + "dependencies": { + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^10.0.1", + "minipass": "^7.0.3", + "minipass-collect": "^2.0.1", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/cacache/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/cacache/node_modules/fs-minipass": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz", + "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==", + "license": "ISC", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/cacache/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/cacache/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==", + "license": "MIT", + "dependencies": { + "callsites": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-callsite/node_modules/callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==", + "license": "MIT", + "dependencies": { + "caller-callsite": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001668", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001668.tgz", + "integrity": "sha512-nWLrdxqCdblixUO+27JtGJJE/txpJlyUy5YN1u53wLZkP0emYCo5zgS6QYft7VUYR42LGgi/S5hdLZTrnyIddw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/centra": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/centra/-/centra-2.7.0.tgz", + "integrity": "sha512-PbFMgMSrmgx6uxCdm57RUos9Tc3fclMvhLSATYN39XsDV29B89zZ3KA89jmY0vwSGazyU+uerqwa6t+KaodPcg==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-launcher": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.2.tgz", + "integrity": "sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==", + "license": "Apache-2.0", + "dependencies": { + "@types/node": "*", + "escape-string-regexp": "^4.0.0", + "is-wsl": "^2.2.0", + "lighthouse-logger": "^1.0.0" + }, + "bin": { + "print-chrome-path": "bin/print-chrome-path.js" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz", + "integrity": "sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==", + "dev": true, + "license": "MIT" + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "license": "MIT", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "engines": { + "node": ">=12.5.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "license": "MIT", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/colorette": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/command-exists": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", + "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==", + "license": "MIT" + }, + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "license": "MIT" + }, + "node_modules/component-type": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/component-type/-/component-type-1.2.2.tgz", + "integrity": "sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "license": "MIT", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compressible/node_modules/mime-db": { + "version": "1.53.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", + "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "license": "MIT" + }, + "node_modules/connect": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", + "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "finalhandler": "1.1.2", + "parseurl": "~1.3.3", + "utils-merge": "1.0.1" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/connect/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/connect/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "license": "MIT" + }, + "node_modules/cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.1.tgz", + "integrity": "sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw==", + "license": "MIT", + "engines": { + "node": ">=6.6.0" + } + }, + "node_modules/core-js-compat": { + "version": "3.38.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.38.1.tgz", + "integrity": "sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.23.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "license": "MIT" + }, + "node_modules/cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "license": "MIT", + "dependencies": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cosmiconfig/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "license": "MIT", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/cross-fetch": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz", + "integrity": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==", + "license": "MIT", + "dependencies": { + "node-fetch": "^2.6.12" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cross-spawn/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/css-in-js-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/css-in-js-utils/-/css-in-js-utils-3.1.0.tgz", + "integrity": "sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==", + "license": "MIT", + "dependencies": { + "hyphenate-style-name": "^1.0.3" + } + }, + "node_modules/css-select": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssom": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", + "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", + "dev": true, + "license": "MIT" + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "license": "MIT", + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true, + "license": "MIT" + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/d3-array": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", + "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", + "license": "ISC", + "dependencies": { + "internmap": "1 - 2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-format": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-scale": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "license": "ISC", + "dependencies": { + "d3-array": "2.10.0 - 3", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-shape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "license": "ISC", + "dependencies": { + "d3-path": "^3.1.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "license": "ISC", + "dependencies": { + "d3-array": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time-format": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", + "license": "ISC", + "dependencies": { + "d3-time": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-timer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-voronoi": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.4.tgz", + "integrity": "sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg==", + "license": "BSD-3-Clause" + }, + "node_modules/dag-map": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/dag-map/-/dag-map-1.0.2.tgz", + "integrity": "sha512-+LSAiGFwQ9dRnRdOeaj7g47ZFJcOUPukAP8J3A3fuZ1g9Y44BG+P1sgApjLXTQPOzC4+7S9Wr8kXsfpINM4jpw==", + "license": "MIT" + }, + "node_modules/data-uri-to-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz", + "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/data-urls": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", + "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "abab": "^2.0.6", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/dayjs": { + "version": "1.11.13", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.13.tgz", + "integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==", + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", + "dev": true, + "license": "MIT" + }, + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/dedent": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", + "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "license": "BSD-2-Clause", + "dependencies": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/default-gateway/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "license": "MIT", + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/default-gateway/node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/default-gateway/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "license": "MIT", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/default-gateway/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "license": "MIT", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/default-gateway/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/default-gateway/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "license": "MIT", + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/del": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", + "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", + "license": "MIT", + "dependencies": { + "globby": "^11.0.1", + "graceful-fs": "^4.2.4", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.2", + "p-map": "^4.0.0", + "rimraf": "^3.0.2", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/delaunator": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-4.0.1.tgz", + "integrity": "sha512-WNPWi1IRKZfCt/qIDMfERkDp93+iZEmOxN2yy4Jg+Xhv8SLk2UTqqbe1sfiipn0and9QrE914/ihdx82Y/Giag==", + "license": "ISC" + }, + "node_modules/delaunay-find": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/delaunay-find/-/delaunay-find-0.0.6.tgz", + "integrity": "sha512-1+almjfrnR7ZamBk0q3Nhg6lqSe6Le4vL0WJDSMx4IDbQwTpUTXPjxC00lqLBT8MYsJpPCbI16sIkw9cPsbi7Q==", + "license": "ISC", + "dependencies": { + "delaunator": "^4.0.0" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/denodeify": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/denodeify/-/denodeify-1.2.1.tgz", + "integrity": "sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==", + "license": "MIT" + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "license": "Apache-2.0", + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/dijkstrajs": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.3.tgz", + "integrity": "sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==", + "license": "MIT" + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/dom-walk": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", + "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domexception": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", + "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", + "dev": true, + "license": "MIT", + "dependencies": { + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dotenv": { + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/dotenv-expand": { + "version": "11.0.6", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-11.0.6.tgz", + "integrity": "sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==", + "license": "BSD-2-Clause", + "dependencies": { + "dotenv": "^16.4.4" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.37", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.37.tgz", + "integrity": "sha512-u7000ZB/X0K78TaQqXZ5ktoR7J79B9US7IkE4zyvcILYwOGY2Tx9GRPYstn7HmuPcMxZ+BDGqIsyLpZQi9ufPw==", + "license": "ISC" + }, + "node_modules/elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "license": "MIT", + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "license": "MIT" + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/env-editor": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/env-editor/-/env-editor-0.4.2.tgz", + "integrity": "sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/envinfo": { + "version": "7.14.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.14.0.tgz", + "integrity": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==", + "license": "MIT", + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eol": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz", + "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==", + "license": "MIT" + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-ex/node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "license": "MIT" + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "license": "MIT", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/errorhandler": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz", + "integrity": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.7", + "escape-html": "~1.0.3" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/es-abstract": { + "version": "1.23.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/ethers": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/ethers/-/ethers-5.7.2.tgz", + "integrity": "sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==", + "funding": [ + { + "type": "individual", + "url": "https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2" + }, + { + "type": "individual", + "url": "https://www.buymeacoffee.com/ricmoo" + } + ], + "license": "MIT", + "dependencies": { + "@ethersproject/abi": "5.7.0", + "@ethersproject/abstract-provider": "5.7.0", + "@ethersproject/abstract-signer": "5.7.0", + "@ethersproject/address": "5.7.0", + "@ethersproject/base64": "5.7.0", + "@ethersproject/basex": "5.7.0", + "@ethersproject/bignumber": "5.7.0", + "@ethersproject/bytes": "5.7.0", + "@ethersproject/constants": "5.7.0", + "@ethersproject/contracts": "5.7.0", + "@ethersproject/hash": "5.7.0", + "@ethersproject/hdnode": "5.7.0", + "@ethersproject/json-wallets": "5.7.0", + "@ethersproject/keccak256": "5.7.0", + "@ethersproject/logger": "5.7.0", + "@ethersproject/networks": "5.7.1", + "@ethersproject/pbkdf2": "5.7.0", + "@ethersproject/properties": "5.7.0", + "@ethersproject/providers": "5.7.2", + "@ethersproject/random": "5.7.0", + "@ethersproject/rlp": "5.7.0", + "@ethersproject/sha2": "5.7.0", + "@ethersproject/signing-key": "5.7.0", + "@ethersproject/solidity": "5.7.0", + "@ethersproject/strings": "5.7.0", + "@ethersproject/transactions": "5.7.0", + "@ethersproject/units": "5.7.0", + "@ethersproject/wallet": "5.7.0", + "@ethersproject/web": "5.7.1", + "@ethersproject/wordlists": "5.7.0" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", + "license": "MIT" + }, + "node_modules/exec-async": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/exec-async/-/exec-async-2.2.0.tgz", + "integrity": "sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==", + "license": "MIT" + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exif-parser": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz", + "integrity": "sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==" + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/expo": { + "version": "51.0.38", + "resolved": "https://registry.npmjs.org/expo/-/expo-51.0.38.tgz", + "integrity": "sha512-/B9npFkOPmv6WMIhdjQXEY0Z9k/67UZIVkodW8JxGIXwKUZAGHL+z1R5hTtWimpIrvVhyHUFU3f8uhfEKYhHNQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.20.0", + "@expo/cli": "0.18.30", + "@expo/config": "9.0.4", + "@expo/config-plugins": "8.0.10", + "@expo/metro-config": "0.18.11", + "@expo/vector-icons": "^14.0.3", + "babel-preset-expo": "~11.0.15", + "expo-asset": "~10.0.10", + "expo-file-system": "~17.0.1", + "expo-font": "~12.0.10", + "expo-keep-awake": "~13.0.2", + "expo-modules-autolinking": "1.11.3", + "expo-modules-core": "1.12.26", + "fbemitter": "^3.0.0", + "whatwg-url-without-unicode": "8.0.0-3" + }, + "bin": { + "expo": "bin/cli" + } + }, + "node_modules/expo-apple-authentication": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/expo-apple-authentication/-/expo-apple-authentication-6.4.2.tgz", + "integrity": "sha512-X4u1n3Ql1hOpztXHbKNq4I1l4+Ff82gC6RmEeW43Eht7VE6E8PrQBpYKw+JJv8osrCJt7R5O1PZwed6WLN5oig==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-application": { + "version": "5.9.1", + "resolved": "https://registry.npmjs.org/expo-application/-/expo-application-5.9.1.tgz", + "integrity": "sha512-uAfLBNZNahnDZLRU41ZFmNSKtetHUT9Ua557/q189ua0AWV7pQjoVAx49E4953feuvqc9swtU3ScZ/hN1XO/FQ==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-asset": { + "version": "10.0.10", + "resolved": "https://registry.npmjs.org/expo-asset/-/expo-asset-10.0.10.tgz", + "integrity": "sha512-0qoTIihB79k+wGus9wy0JMKq7DdenziVx3iUkGvMAy2azscSgWH6bd2gJ9CGnhC6JRd3qTMFBL0ou/fx7WZl7A==", + "license": "MIT", + "dependencies": { + "expo-constants": "~16.0.0", + "invariant": "^2.2.4", + "md5-file": "^3.2.3" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-build-properties": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/expo-build-properties/-/expo-build-properties-0.12.5.tgz", + "integrity": "sha512-donC1le0PYfLKCPKRMGQoixuWuwDWCngzXSoQXUPsgHTDHQUKr8aw+lcWkTwZcItgNovcnk784I0dyfYDcxybA==", + "license": "MIT", + "dependencies": { + "ajv": "^8.11.0", + "semver": "^7.6.0" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-constants": { + "version": "16.0.2", + "resolved": "https://registry.npmjs.org/expo-constants/-/expo-constants-16.0.2.tgz", + "integrity": "sha512-9tNY3OVO0jfiMzl7ngb6IOyR5VFzNoN5OOazUWoeGfmMqVB5kltTemRvKraK9JRbBKIw+SOYLEmF0sEqgFZ6OQ==", + "license": "MIT", + "dependencies": { + "@expo/config": "~9.0.0", + "@expo/env": "~0.3.0" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-crypto": { + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/expo-crypto/-/expo-crypto-13.0.2.tgz", + "integrity": "sha512-7f/IMPYJZkBM21LNEMXGrNo/0uXSVfZTwufUdpNKedJR0fm5fH4DCSN79ZddlV26nF90PuXjK2inIbI6lb0qRA==", + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.0" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-dev-client": { + "version": "4.0.28", + "resolved": "https://registry.npmjs.org/expo-dev-client/-/expo-dev-client-4.0.28.tgz", + "integrity": "sha512-wz5G4vY3Gbk5GuQTyijdqY4Hwr/NDt5OUTErbOu1vd4XRIAsI+8IkK5hsBUhGmqrdkYnP5NxxOxC/soFzX/9+w==", + "license": "MIT", + "dependencies": { + "expo-dev-launcher": "4.0.28", + "expo-dev-menu": "5.0.22", + "expo-dev-menu-interface": "1.8.3", + "expo-manifests": "~0.14.0", + "expo-updates-interface": "~0.16.2" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-dev-launcher": { + "version": "4.0.28", + "resolved": "https://registry.npmjs.org/expo-dev-launcher/-/expo-dev-launcher-4.0.28.tgz", + "integrity": "sha512-goE7jcaGVA2zu4gV3/hQ9RXqGhUZZAu339VYNLbwPdaNCzFaG6A8MZHg18gytCUnZ5QkRJsYi4q/8YcwUCASlQ==", + "license": "MIT", + "dependencies": { + "ajv": "8.11.0", + "expo-dev-menu": "5.0.22", + "expo-manifests": "~0.14.0", + "resolve-from": "^5.0.0", + "semver": "^7.6.0" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-dev-launcher/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/expo-dev-menu": { + "version": "5.0.22", + "resolved": "https://registry.npmjs.org/expo-dev-menu/-/expo-dev-menu-5.0.22.tgz", + "integrity": "sha512-VzpdQReAtjbI1qIuwOf0sUzf91HsfGThojgJD9Ez0eca12qY5tTGYzHa1EM9V+zIcNuNZ7+A8bHJJdmZ4zvU6g==", + "license": "MIT", + "dependencies": { + "expo-dev-menu-interface": "1.8.3", + "semver": "^7.5.4" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-dev-menu-interface": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/expo-dev-menu-interface/-/expo-dev-menu-interface-1.8.3.tgz", + "integrity": "sha512-QM0LRozeFT5Ek0N7XpV93M+HMdEKRLEOXn0aW5M3uoUlnqC1+PLtF3HMy3k3hMKTTE/kJ1y1Z7akH07T0lunCQ==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-file-system": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/expo-file-system/-/expo-file-system-17.0.1.tgz", + "integrity": "sha512-dYpnZJqTGj6HCYJyXAgpFkQWsiCH3HY1ek2cFZVHFoEc5tLz9gmdEgTF6nFHurvmvfmXqxi7a5CXyVm0aFYJBw==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-font": { + "version": "12.0.10", + "resolved": "https://registry.npmjs.org/expo-font/-/expo-font-12.0.10.tgz", + "integrity": "sha512-Q1i2NuYri3jy32zdnBaHHCya1wH1yMAsI+3CCmj9zlQzlhsS9Bdwcj2W3c5eU5FvH2hsNQy4O+O1NnM6o/pDaQ==", + "license": "MIT", + "dependencies": { + "fontfaceobserver": "^2.1.0" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-haptics": { + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/expo-haptics/-/expo-haptics-13.0.1.tgz", + "integrity": "sha512-qG0EOLDE4bROVT3DtUSyV9g3iB3YFu9j3711X7SNNEnBDXc+2/p3wGDPTnJvPW0ao6HG3/McAOrBQA5hVSdWng==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-json-utils": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/expo-json-utils/-/expo-json-utils-0.13.1.tgz", + "integrity": "sha512-mlfaSArGVb+oJmUcR22jEONlgPp0wj4iNIHfQ2je9Q8WTOqMc0Ws9tUciz3JdJnhffdHqo/k8fpvf0IRmN5HPA==", + "license": "MIT" + }, + "node_modules/expo-keep-awake": { + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/expo-keep-awake/-/expo-keep-awake-13.0.2.tgz", + "integrity": "sha512-kKiwkVg/bY0AJ5q1Pxnm/GvpeB6hbNJhcFsoOWDh2NlpibhCLaHL826KHUM+WsnJRbVRxJ+K9vbPRHEMvFpVyw==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-linking": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/expo-linking/-/expo-linking-6.3.1.tgz", + "integrity": "sha512-xuZCntSBGWCD/95iZ+mTUGTwHdy8Sx+immCqbUBxdvZ2TN61P02kKg7SaLS8A4a/hLrSCwrg5tMMwu5wfKr35g==", + "license": "MIT", + "dependencies": { + "expo-constants": "~16.0.0", + "invariant": "^2.2.4" + } + }, + "node_modules/expo-manifests": { + "version": "0.14.3", + "resolved": "https://registry.npmjs.org/expo-manifests/-/expo-manifests-0.14.3.tgz", + "integrity": "sha512-L3b5/qocBPiQjbW0cpOHfnqdKZbTJS7sA3mgeDJT+mWga/xYsdpma1EfNmsuvrOzjLGjStr1k1fceM9Bl49aqQ==", + "license": "MIT", + "dependencies": { + "@expo/config": "~9.0.0", + "expo-json-utils": "~0.13.0" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-modules-autolinking": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-1.11.3.tgz", + "integrity": "sha512-oYh8EZEvYF5TYppxEKUTTJmbr8j7eRRnrIxzZtMvxLTXoujThVPMFS/cbnSnf2bFm1lq50TdDNABhmEi7z0ngQ==", + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "commander": "^7.2.0", + "fast-glob": "^3.2.5", + "find-up": "^5.0.0", + "fs-extra": "^9.1.0", + "require-from-string": "^2.0.2", + "resolve-from": "^5.0.0" + }, + "bin": { + "expo-modules-autolinking": "bin/expo-modules-autolinking.js" + } + }, + "node_modules/expo-modules-core": { + "version": "1.12.26", + "resolved": "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-1.12.26.tgz", + "integrity": "sha512-y8yDWjOi+rQRdO+HY+LnUlz8qzHerUaw/LUjKPU/mX8PRXP4UUPEEp5fjAwBU44xjNmYSHWZDwet4IBBE+yQUA==", + "license": "MIT", + "dependencies": { + "invariant": "^2.2.4" + } + }, + "node_modules/expo-router": { + "version": "3.5.23", + "resolved": "https://registry.npmjs.org/expo-router/-/expo-router-3.5.23.tgz", + "integrity": "sha512-Re2kYcxov67hWrcjuu0+3ovsLxYn79PuX6hgtYN20MgigY5ttX79KOIBEVGTO3F3y9dxSrGHyy5Z14BcO+usGQ==", + "license": "MIT", + "dependencies": { + "@expo/metro-runtime": "3.2.3", + "@expo/server": "^0.4.0", + "@radix-ui/react-slot": "1.0.1", + "@react-navigation/bottom-tabs": "~6.5.7", + "@react-navigation/native": "~6.1.6", + "@react-navigation/native-stack": "~6.9.12", + "expo-splash-screen": "0.27.5", + "react-native-helmet-async": "2.0.4", + "schema-utils": "^4.0.1" + }, + "peerDependencies": { + "@react-navigation/drawer": "^6.5.8", + "expo": "*", + "expo-constants": "*", + "expo-linking": "*", + "expo-status-bar": "*", + "react-native-reanimated": "*", + "react-native-safe-area-context": "*", + "react-native-screens": "*" + }, + "peerDependenciesMeta": { + "@react-navigation/drawer": { + "optional": true + }, + "@testing-library/jest-native": { + "optional": true + }, + "react-native-reanimated": { + "optional": true + } + } + }, + "node_modules/expo-router/node_modules/@expo/prebuild-config": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-7.0.6.tgz", + "integrity": "sha512-Hts+iGBaG6OQ+N8IEMMgwQElzJeSTb7iUJ26xADEHkaexsucAK+V52dM8M4ceicvbZR9q8M+ebJEGj0MCNA3dQ==", + "license": "MIT", + "dependencies": { + "@expo/config": "~9.0.0-beta.0", + "@expo/config-plugins": "~8.0.0-beta.0", + "@expo/config-types": "^51.0.0-unreleased", + "@expo/image-utils": "^0.5.0", + "@expo/json-file": "^8.3.0", + "@react-native/normalize-colors": "0.74.84", + "debug": "^4.3.1", + "fs-extra": "^9.0.0", + "resolve-from": "^5.0.0", + "semver": "^7.6.0", + "xml2js": "0.6.0" + }, + "peerDependencies": { + "expo-modules-autolinking": ">=0.8.1" + } + }, + "node_modules/expo-router/node_modules/@react-native/normalize-colors": { + "version": "0.74.84", + "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.74.84.tgz", + "integrity": "sha512-Y5W6x8cC5RuakUcTVUFNAIhUZ/tYpuqHZlRBoAuakrTwVuoNHXfQki8lj1KsYU7rW6e3VWgdEx33AfOQpdNp6A==", + "license": "MIT" + }, + "node_modules/expo-router/node_modules/expo-splash-screen": { + "version": "0.27.5", + "resolved": "https://registry.npmjs.org/expo-splash-screen/-/expo-splash-screen-0.27.5.tgz", + "integrity": "sha512-9rdZuLkFCfgJBxrheUsOEOIW6Rp+9NVlpSE0hgXQwbTCLTncf00IHSE8/L2NbFyeDLNjof1yZBppaV7tXHRUzA==", + "license": "MIT", + "dependencies": { + "@expo/prebuild-config": "7.0.6" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-secure-store": { + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/expo-secure-store/-/expo-secure-store-13.0.2.tgz", + "integrity": "sha512-3QYgoneo8p8yeeBPBiAfokNNc2xq6+n8+Ob4fAlErEcf4H7Y72LH+K/dx0nQyWau2ZKZUXBxyyfuHFyVKrEVLg==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-splash-screen": { + "version": "0.27.6", + "resolved": "https://registry.npmjs.org/expo-splash-screen/-/expo-splash-screen-0.27.6.tgz", + "integrity": "sha512-joUwZQS48k3VMnucQ0Y8Dle1t1FyIvluQA4kjuPx2x7l2dRrfctbo34ahTnC0p1o2go5oN2iEnSTOElY4wRQHw==", + "license": "MIT", + "dependencies": { + "@expo/prebuild-config": "7.0.8" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-status-bar": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/expo-status-bar/-/expo-status-bar-1.12.1.tgz", + "integrity": "sha512-/t3xdbS8KB0prj5KG5w7z+wZPFlPtkgs95BsmrP/E7Q0xHXTcDcQ6Cu2FkFuRM+PKTb17cJDnLkawyS5vDLxMA==", + "license": "MIT" + }, + "node_modules/expo-system-ui": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/expo-system-ui/-/expo-system-ui-3.0.7.tgz", + "integrity": "sha512-KAs72F5JKhdIfPR9ZNVlRubTPK9uUuevPy5oYEp12xNEzSQcjZKvypH5NpwJuNWkXzrp3n3vZ+3pXsudA7J3KA==", + "license": "MIT", + "dependencies": { + "@react-native/normalize-colors": "0.74.85", + "debug": "^4.3.2" + }, + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-updates-interface": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/expo-updates-interface/-/expo-updates-interface-0.16.2.tgz", + "integrity": "sha512-929XBU70q5ELxkKADj1xL0UIm3HvhYhNAOZv5DSk7rrKvLo7QDdPyl+JVnwZm9LrkNbH4wuE2rLoKu1KMgZ+9A==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/expo-web-browser": { + "version": "13.0.3", + "resolved": "https://registry.npmjs.org/expo-web-browser/-/expo-web-browser-13.0.3.tgz", + "integrity": "sha512-HXb7y82ApVJtqk8tManyudtTrCtx8xcUnVzmJECeHCB0SsWSQ+penVLZxJkcyATWoJOsFMnfVSVdrTcpKKGszQ==", + "license": "MIT", + "peerDependencies": { + "expo": "*" + } + }, + "node_modules/exponential-backoff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz", + "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==", + "license": "Apache-2.0" + }, + "node_modules/fast-base64-decode": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fast-base64-decode/-/fast-base64-decode-1.0.0.tgz", + "integrity": "sha512-qwaScUgUGBYeDNRnbc/KyllVU88Jk1pRHPStuF/lO7B0/RTRLj7U0lkdTAutlBblY08rwZDff6tNU9cjv6j//Q==", + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-loops": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/fast-loops/-/fast-loops-1.1.4.tgz", + "integrity": "sha512-8dbd3XWoKCTms18ize6JmQF1SFnnfj5s0B7rRry22EofgMu7B6LKHVh+XfFqFGsqnbH54xgeO83PzpKI+ODhlg==", + "license": "MIT" + }, + "node_modules/fast-text-encoding": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/fast-text-encoding/-/fast-text-encoding-1.0.6.tgz", + "integrity": "sha512-VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w==", + "license": "Apache-2.0" + }, + "node_modules/fast-uri": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.2.tgz", + "integrity": "sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row==", + "license": "MIT" + }, + "node_modules/fast-xml-parser": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.0.tgz", + "integrity": "sha512-/PlTQCI96+fZMAOLMZK4CWG1ItCbfZ/0jx7UIJFChPNrx7tcEgerUgWbeieCM9MfHInUDyK8DWYZ+YrywDJuTg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + ], + "license": "MIT", + "dependencies": { + "strnum": "^1.0.5" + }, + "bin": { + "fxparser": "src/cli/cli.js" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "license": "Apache-2.0", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fbemitter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz", + "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", + "license": "BSD-3-Clause", + "dependencies": { + "fbjs": "^3.0.0" + } + }, + "node_modules/fbjs": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz", + "integrity": "sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==", + "license": "MIT", + "dependencies": { + "cross-fetch": "^3.1.5", + "fbjs-css-vars": "^1.0.0", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^1.0.35" + } + }, + "node_modules/fbjs-css-vars": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", + "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==", + "license": "MIT" + }, + "node_modules/fbjs/node_modules/promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "license": "MIT", + "dependencies": { + "asap": "~2.0.3" + } + }, + "node_modules/fetch-retry": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-5.0.6.tgz", + "integrity": "sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==", + "license": "MIT" + }, + "node_modules/file-type": { + "version": "16.5.4", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-16.5.4.tgz", + "integrity": "sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==", + "license": "MIT", + "dependencies": { + "readable-web-to-node-stream": "^3.0.0", + "strtok3": "^6.2.4", + "token-types": "^4.1.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/file-type?sponsor=1" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/filter-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz", + "integrity": "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/finalhandler/node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "license": "MIT", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "license": "MIT", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "license": "MIT", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-cache-dir/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/find-cache-dir/node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "license": "MIT", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-yarn-workspace-root": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz", + "integrity": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==", + "license": "Apache-2.0", + "dependencies": { + "micromatch": "^4.0.2" + } + }, + "node_modules/flow-enums-runtime": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/flow-enums-runtime/-/flow-enums-runtime-0.0.6.tgz", + "integrity": "sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==", + "license": "MIT" + }, + "node_modules/flow-parser": { + "version": "0.248.1", + "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.248.1.tgz", + "integrity": "sha512-fkCfVPelbTzSVp+jVwSvEyc+I4WG8MNhRG/EWSZZTlgHAMEdhXJaFEbfErXxMktboMhVGchvEFhWxkzNGM1m2A==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/fontfaceobserver": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/fontfaceobserver/-/fontfaceobserver-2.3.0.tgz", + "integrity": "sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==", + "license": "BSD-2-Clause" + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/foreground-child": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/form-data": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.2.tgz", + "integrity": "sha512-sJe+TQb2vIaIyO783qN6BlMYWMw3WBOHA1Ay2qxsnjuafEOQFJ2JakedOQirT6D5XPRxDvS7AHYyem9fTpb4LQ==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/freeport-async": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/freeport-async/-/freeport-async-2.0.0.tgz", + "integrity": "sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-port": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", + "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/getenv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/getenv/-/getenv-1.0.0.tgz", + "integrity": "sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/gifwrap": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/gifwrap/-/gifwrap-0.9.4.tgz", + "integrity": "sha512-MDMwbhASQuVeD4JKd1fKgNgCRL3fGqMM4WaqpNhWO0JiMOAjbQdumbs4BbBZEy9/M00EHEjKN3HieVhCUlwjeQ==", + "license": "MIT", + "dependencies": { + "image-q": "^4.0.0", + "omggif": "^1.0.10" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/global": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", + "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", + "license": "MIT", + "dependencies": { + "min-document": "^2.19.0", + "process": "^0.11.10" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/graphql": { + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-15.8.0.tgz", + "integrity": "sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==", + "license": "MIT", + "engines": { + "node": ">= 10.x" + } + }, + "node_modules/graphql-tag": { + "version": "2.12.6", + "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", + "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hermes-estree": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.19.1.tgz", + "integrity": "sha512-daLGV3Q2MKk8w4evNMKwS8zBE/rcpA800nu1Q5kM08IKijoSnPe9Uo1iIxzPKRkn95IxxsgBMPeYHt3VG4ej2g==", + "license": "MIT" + }, + "node_modules/hermes-parser": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.19.1.tgz", + "integrity": "sha512-Vp+bXzxYJWrpEuJ/vXxUsLnt0+y4q9zyi4zUlkLqD8FKv4LjIfOvP69R/9Lty3dCyKh0E2BU7Eypqr63/rKT/A==", + "license": "MIT", + "dependencies": { + "hermes-estree": "0.19.1" + } + }, + "node_modules/hermes-profile-transformer": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/hermes-profile-transformer/-/hermes-profile-transformer-0.0.6.tgz", + "integrity": "sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==", + "license": "MIT", + "dependencies": { + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/hermes-profile-transformer/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "license": "MIT", + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "license": "BSD-3-Clause", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/hosted-git-info": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.8.tgz", + "integrity": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", + "dev": true, + "license": "MIT", + "dependencies": { + "whatwg-encoding": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true, + "license": "MIT" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "license": "Apache-2.0", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/hyphenate-style-name": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.1.0.tgz", + "integrity": "sha512-WDC/ui2VVRrz3jOVi+XtjqkDjiVjTtFaAGiW37k6b+ohyQ5wYDOGkvCZa8+H0nx3gyvv0+BST9xuOgIyGQ00gw==", + "license": "BSD-3-Clause" + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/image-q": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/image-q/-/image-q-4.0.0.tgz", + "integrity": "sha512-PfJGVgIfKQJuq3s0tTDOKtztksibuUEbJQIYT3by6wctQo+Rdlh7ef4evJ5NCdxY4CfMbvFkocEwbl4BF8RlJw==", + "license": "MIT", + "dependencies": { + "@types/node": "16.9.1" + } + }, + "node_modules/image-q/node_modules/@types/node": { + "version": "16.9.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.9.1.tgz", + "integrity": "sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==", + "license": "MIT" + }, + "node_modules/image-size": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.1.1.tgz", + "integrity": "sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==", + "license": "MIT", + "dependencies": { + "queue": "6.0.2" + }, + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=16.x" + } + }, + "node_modules/immer": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/immer/-/immer-10.1.1.tgz", + "integrity": "sha512-s2MPrmjovJcoMaHtx6K11Ra7oD05NT97w1IC5zpMkT6Atjr7H8LjaDd81iIxUYpMKSRRNMJE703M1Fhr/TctHw==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", + "license": "MIT", + "dependencies": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "license": "ISC" + }, + "node_modules/inline-style-prefixer": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/inline-style-prefixer/-/inline-style-prefixer-6.0.4.tgz", + "integrity": "sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg==", + "license": "MIT", + "dependencies": { + "css-in-js-utils": "^3.1.0", + "fast-loops": "^1.1.3" + } + }, + "node_modules/internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "license": "MIT", + "dependencies": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "license": "MIT" + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "license": "MIT" + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "license": "MIT", + "dependencies": { + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", + "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==", + "license": "MIT" + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-invalid-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-invalid-path/-/is-invalid-path-0.1.0.tgz", + "integrity": "sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==", + "license": "MIT", + "dependencies": { + "is-glob": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-invalid-path/node_modules/is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-invalid-path/node_modules/is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==", + "license": "MIT", + "dependencies": { + "is-extglob": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-valid-path": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", + "integrity": "sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==", + "license": "MIT", + "dependencies": { + "is-invalid-path": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isows": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/isows/-/isows-1.0.6.tgz", + "integrity": "sha512-lPHCayd40oW98/I0uvgaHKWCSvkzY27LjWLbtzOm64yQ+G3Q5npjjbdppU65iZXkK1Zt+kH9pfegli0AYfwYYw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/wevm" + } + ], + "license": "MIT", + "peerDependencies": { + "ws": "*" + } + }, + "node_modules/isows/node_modules/ws": { + "version": "8.18.0", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/types": "^29.6.3", + "import-local": "^3.0.2", + "jest-cli": "^29.7.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", + "dev": true, + "license": "MIT", + "dependencies": { + "execa": "^5.0.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.7.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "create-jest": "^29.7.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-config": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-docblock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz", + "integrity": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/jsdom": "^20.0.0", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0", + "jsdom": "^20.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jest-environment-node": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-expo": { + "version": "51.0.4", + "resolved": "https://registry.npmjs.org/jest-expo/-/jest-expo-51.0.4.tgz", + "integrity": "sha512-WmlR4rUur1TNF/F14brKCmPdX3TWf7Bno/6A1PuxnflN79LEIXpXuPKMlMWwCCChTohGB5FRniknRibblWu1ug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@expo/config": "~9.0.0-beta.0", + "@expo/json-file": "^8.3.0", + "@jest/create-cache-key-function": "^29.2.1", + "babel-jest": "^29.2.1", + "find-up": "^5.0.0", + "jest-environment-jsdom": "^29.2.1", + "jest-watch-select-projects": "^2.0.0", + "jest-watch-typeahead": "2.2.1", + "json5": "^2.2.3", + "lodash": "^4.17.19", + "react-test-renderer": "18.2.0", + "stacktrace-js": "^2.0.2" + }, + "bin": { + "jest": "bin/jest.js" + } + }, + "node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner/node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/jest-runtime": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.7.0", + "semver": "^7.5.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-select-projects": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/jest-watch-select-projects/-/jest-watch-select-projects-2.0.0.tgz", + "integrity": "sha512-j00nW4dXc2NiCW6znXgFLF9g8PJ0zP25cpQ1xRro/HU2GBfZQFZD0SoXnAlaoKkIY4MlfTMkKGbNXFpvCdjl1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.3.0", + "chalk": "^3.0.0", + "prompts": "^2.2.1" + } + }, + "node_modules/jest-watch-select-projects/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-2.2.1.tgz", + "integrity": "sha512-jYpYmUnTzysmVnwq49TAxlmtOAwp8QIqvZyoofQFn8fiWhEDZj33ZXzg3JA4nGnzWFm1hbWf3ADpteUokvXgFA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^6.0.0", + "chalk": "^4.0.0", + "jest-regex-util": "^29.0.0", + "jest-watcher": "^29.0.0", + "slash": "^5.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": "^14.17.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "jest": "^27.0.0 || ^28.0.0 || ^29.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/ansi-escapes": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.1.tgz", + "integrity": "sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/jest-watch-typeahead/node_modules/char-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz", + "integrity": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.20" + } + }, + "node_modules/jest-watch-typeahead/node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead/node_modules/string-length": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", + "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", + "dev": true, + "license": "MIT", + "dependencies": { + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/jest-watcher": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.7.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jimp-compact": { + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/jimp-compact/-/jimp-compact-0.16.1.tgz", + "integrity": "sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==", + "license": "MIT" + }, + "node_modules/joi": { + "version": "17.13.3", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.13.3.tgz", + "integrity": "sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^9.3.0", + "@hapi/topo": "^5.1.0", + "@sideway/address": "^4.1.5", + "@sideway/formula": "^3.0.1", + "@sideway/pinpoint": "^2.0.0" + } + }, + "node_modules/join-component": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/join-component/-/join-component-1.1.0.tgz", + "integrity": "sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==", + "license": "MIT" + }, + "node_modules/jose": { + "version": "4.15.9", + "resolved": "https://registry.npmjs.org/jose/-/jose-4.15.9.tgz", + "integrity": "sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/panva" + } + }, + "node_modules/jpeg-js": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", + "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==", + "license": "BSD-3-Clause" + }, + "node_modules/js-cookie": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.5.tgz", + "integrity": "sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==", + "license": "MIT", + "engines": { + "node": ">=14" + } + }, + "node_modules/js-sha3": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", + "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==", + "license": "MIT" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsc-android": { + "version": "250231.0.0", + "resolved": "https://registry.npmjs.org/jsc-android/-/jsc-android-250231.0.0.tgz", + "integrity": "sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==", + "license": "BSD-2-Clause" + }, + "node_modules/jsc-safe-url": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/jsc-safe-url/-/jsc-safe-url-0.2.4.tgz", + "integrity": "sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==", + "license": "0BSD" + }, + "node_modules/jscodeshift": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.14.0.tgz", + "integrity": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.13.16", + "@babel/parser": "^7.13.16", + "@babel/plugin-proposal-class-properties": "^7.13.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8", + "@babel/plugin-proposal-optional-chaining": "^7.13.12", + "@babel/plugin-transform-modules-commonjs": "^7.13.8", + "@babel/preset-flow": "^7.13.13", + "@babel/preset-typescript": "^7.13.0", + "@babel/register": "^7.13.16", + "babel-core": "^7.0.0-bridge.0", + "chalk": "^4.1.2", + "flow-parser": "0.*", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.4", + "neo-async": "^2.5.0", + "node-dir": "^0.1.17", + "recast": "^0.21.0", + "temp": "^0.8.4", + "write-file-atomic": "^2.3.0" + }, + "bin": { + "jscodeshift": "bin/jscodeshift.js" + }, + "peerDependencies": { + "@babel/preset-env": "^7.1.6" + } + }, + "node_modules/jsdom": { + "version": "20.0.3", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", + "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "abab": "^2.0.6", + "acorn": "^8.8.1", + "acorn-globals": "^7.0.0", + "cssom": "^0.5.0", + "cssstyle": "^2.3.0", + "data-urls": "^3.0.2", + "decimal.js": "^10.4.2", + "domexception": "^4.0.0", + "escodegen": "^2.0.0", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^3.0.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.1", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.2", + "parse5": "^7.1.1", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.1.2", + "w3c-xmlserializer": "^4.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^2.0.0", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0", + "ws": "^8.11.0", + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsdom/node_modules/form-data": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", + "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", + "dev": true, + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jsdom/node_modules/ws": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "license": "MIT" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-deref-sync": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/json-schema-deref-sync/-/json-schema-deref-sync-0.13.0.tgz", + "integrity": "sha512-YBOEogm5w9Op337yb6pAT6ZXDqlxAsQCanM3grid8lMWNxRJO/zWEJi3ZzqDL8boWfwhTFym5EFrNgWwpqcBRg==", + "license": "MIT", + "dependencies": { + "clone": "^2.1.2", + "dag-map": "~1.0.0", + "is-valid-path": "^0.1.1", + "lodash": "^4.17.13", + "md5": "~2.2.0", + "memory-cache": "~0.2.0", + "traverse": "~0.6.6", + "valid-url": "~1.0.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/json-schema-deref-sync/node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/json-schema-deref-sync/node_modules/md5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz", + "integrity": "sha512-PlGG4z5mBANDGCKsYQe0CaUYHdZYZt8ZPZLmEt+Urf0W4GlpTX4HescwHU+dc9+Z/G/vZKYZYFrwgm9VxK6QOQ==", + "license": "BSD-3-Clause", + "dependencies": { + "charenc": "~0.0.1", + "crypt": "~0.0.1", + "is-buffer": "~1.1.1" + } + }, + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "license": "ISC" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/libphonenumber-js": { + "version": "1.11.12", + "resolved": "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.11.12.tgz", + "integrity": "sha512-QkJn9/D7zZ1ucvT++TQSvZuSA2xAWeUytU+DiEQwbPKLyrDpvbul2AFs1CGbRAPpSCCk47aRAb5DX5mmcayp4g==", + "license": "MIT" + }, + "node_modules/lighthouse-logger": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz", + "integrity": "sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==", + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.9", + "marky": "^1.2.2" + } + }, + "node_modules/lighthouse-logger/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/lighthouse-logger/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/lightningcss": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.19.0.tgz", + "integrity": "sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA==", + "license": "MPL-2.0", + "dependencies": { + "detect-libc": "^1.0.3" + }, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-darwin-arm64": "1.19.0", + "lightningcss-darwin-x64": "1.19.0", + "lightningcss-linux-arm-gnueabihf": "1.19.0", + "lightningcss-linux-arm64-gnu": "1.19.0", + "lightningcss-linux-arm64-musl": "1.19.0", + "lightningcss-linux-x64-gnu": "1.19.0", + "lightningcss-linux-x64-musl": "1.19.0", + "lightningcss-win32-x64-msvc": "1.19.0" + } + }, + "node_modules/lightningcss-darwin-arm64": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.19.0.tgz", + "integrity": "sha512-wIJmFtYX0rXHsXHSr4+sC5clwblEMji7HHQ4Ub1/CznVRxtCFha6JIt5JZaNf8vQrfdZnBxLLC6R8pC818jXqg==", + "cpu": [ + "arm64" + ], + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "license": "MIT" + }, + "node_modules/load-bmfont": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.2.tgz", + "integrity": "sha512-qElWkmjW9Oq1F9EI5Gt7aD9zcdHb9spJCW1L/dmPf7KzCCEJxq8nhHz5eCgI9aMf7vrG/wyaCqdsI+Iy9ZTlog==", + "license": "MIT", + "dependencies": { + "buffer-equal": "0.0.1", + "mime": "^1.3.4", + "parse-bmfont-ascii": "^1.0.3", + "parse-bmfont-binary": "^1.0.5", + "parse-bmfont-xml": "^1.1.4", + "phin": "^3.7.1", + "xhr": "^2.0.1", + "xtend": "^4.0.0" + } + }, + "node_modules/load-bmfont/node_modules/phin": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/phin/-/phin-3.7.1.tgz", + "integrity": "sha512-GEazpTWwTZaEQ9RhL7Nyz0WwqilbqgLahDM3D0hxWwmVDI52nXEybHqiN6/elwpkJBhcuj+WbBu+QfT0uhPGfQ==", + "license": "MIT", + "dependencies": { + "centra": "^2.7.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "license": "MIT" + }, + "node_modules/lodash.throttle": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", + "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==", + "license": "MIT" + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/logkitty": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/logkitty/-/logkitty-0.7.1.tgz", + "integrity": "sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==", + "license": "MIT", + "dependencies": { + "ansi-fragments": "^0.2.1", + "dayjs": "^1.8.15", + "yargs": "^15.1.0" + }, + "bin": { + "logkitty": "bin/logkitty.js" + } + }, + "node_modules/logkitty/node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/logkitty/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/logkitty/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/logkitty/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/logkitty/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/logkitty/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/logkitty/node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "license": "ISC" + }, + "node_modules/logkitty/node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "license": "MIT", + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/logkitty/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "license": "ISC", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, + "node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "license": "MIT", + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "license": "BSD-3-Clause", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/marky": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/marky/-/marky-1.2.5.tgz", + "integrity": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==", + "license": "Apache-2.0" + }, + "node_modules/md5": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", + "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "license": "BSD-3-Clause", + "dependencies": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } + }, + "node_modules/md5-file": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/md5-file/-/md5-file-3.2.3.tgz", + "integrity": "sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw==", + "license": "MIT", + "dependencies": { + "buffer-alloc": "^1.1.0" + }, + "bin": { + "md5-file": "cli.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/md5hex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/md5hex/-/md5hex-1.0.0.tgz", + "integrity": "sha512-c2YOUbp33+6thdCUi34xIyOU/a7bvGKj/3DB1iaPMTuPHf/Q2d5s4sn1FaCOO43XkXggnb08y5W2PU8UNYNLKQ==", + "license": "MIT" + }, + "node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "license": "CC0-1.0" + }, + "node_modules/memoize-one": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", + "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==", + "license": "MIT" + }, + "node_modules/memory-cache": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/memory-cache/-/memory-cache-0.2.0.tgz", + "integrity": "sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA==", + "license": "BSD-2-Clause" + }, + "node_modules/merge-options": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/merge-options/-/merge-options-3.0.4.tgz", + "integrity": "sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==", + "license": "MIT", + "dependencies": { + "is-plain-obj": "^2.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "license": "MIT" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/metro": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro/-/metro-0.80.12.tgz", + "integrity": "sha512-1UsH5FzJd9quUsD1qY+zUG4JY3jo3YEMxbMYH9jT6NK3j4iORhlwTK8fYTfAUBhDKjgLfKjAh7aoazNE23oIRA==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@babel/core": "^7.20.0", + "@babel/generator": "^7.20.0", + "@babel/parser": "^7.20.0", + "@babel/template": "^7.0.0", + "@babel/traverse": "^7.20.0", + "@babel/types": "^7.20.0", + "accepts": "^1.3.7", + "chalk": "^4.0.0", + "ci-info": "^2.0.0", + "connect": "^3.6.5", + "debug": "^2.2.0", + "denodeify": "^1.2.1", + "error-stack-parser": "^2.0.6", + "flow-enums-runtime": "^0.0.6", + "graceful-fs": "^4.2.4", + "hermes-parser": "0.23.1", + "image-size": "^1.0.2", + "invariant": "^2.2.4", + "jest-worker": "^29.6.3", + "jsc-safe-url": "^0.2.2", + "lodash.throttle": "^4.1.1", + "metro-babel-transformer": "0.80.12", + "metro-cache": "0.80.12", + "metro-cache-key": "0.80.12", + "metro-config": "0.80.12", + "metro-core": "0.80.12", + "metro-file-map": "0.80.12", + "metro-resolver": "0.80.12", + "metro-runtime": "0.80.12", + "metro-source-map": "0.80.12", + "metro-symbolicate": "0.80.12", + "metro-transform-plugins": "0.80.12", + "metro-transform-worker": "0.80.12", + "mime-types": "^2.1.27", + "nullthrows": "^1.1.1", + "serialize-error": "^2.1.0", + "source-map": "^0.5.6", + "strip-ansi": "^6.0.0", + "throat": "^5.0.0", + "ws": "^7.5.10", + "yargs": "^17.6.2" + }, + "bin": { + "metro": "src/cli.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-babel-transformer": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-babel-transformer/-/metro-babel-transformer-0.80.12.tgz", + "integrity": "sha512-YZziRs0MgA3pzCkkvOoQRXjIoVjvrpi/yRlJnObyIvMP6lFdtyG4nUGIwGY9VXnBvxmXD6mPY2e+NSw6JAyiRg==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "flow-enums-runtime": "^0.0.6", + "hermes-parser": "0.23.1", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-babel-transformer/node_modules/hermes-estree": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.23.1.tgz", + "integrity": "sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==", + "license": "MIT" + }, + "node_modules/metro-babel-transformer/node_modules/hermes-parser": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.23.1.tgz", + "integrity": "sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==", + "license": "MIT", + "dependencies": { + "hermes-estree": "0.23.1" + } + }, + "node_modules/metro-cache": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-cache/-/metro-cache-0.80.12.tgz", + "integrity": "sha512-p5kNHh2KJ0pbQI/H7ZBPCEwkyNcSz7OUkslzsiIWBMPQGFJ/xArMwkV7I+GJcWh+b4m6zbLxE5fk6fqbVK1xGA==", + "license": "MIT", + "dependencies": { + "exponential-backoff": "^3.1.1", + "flow-enums-runtime": "^0.0.6", + "metro-core": "0.80.12" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-cache-key": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-cache-key/-/metro-cache-key-0.80.12.tgz", + "integrity": "sha512-o4BspKnugg/pE45ei0LGHVuBJXwRgruW7oSFAeSZvBKA/sGr0UhOGY3uycOgWInnS3v5yTTfiBA9lHlNRhsvGA==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-config": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-config/-/metro-config-0.80.12.tgz", + "integrity": "sha512-4rwOWwrhm62LjB12ytiuR5NgK1ZBNr24/He8mqCsC+HXZ+ATbrewLNztzbAZHtFsrxP4D4GLTGgh96pCpYLSAQ==", + "license": "MIT", + "dependencies": { + "connect": "^3.6.5", + "cosmiconfig": "^5.0.5", + "flow-enums-runtime": "^0.0.6", + "jest-validate": "^29.6.3", + "metro": "0.80.12", + "metro-cache": "0.80.12", + "metro-core": "0.80.12", + "metro-runtime": "0.80.12" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-core": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-core/-/metro-core-0.80.12.tgz", + "integrity": "sha512-QqdJ/yAK+IpPs2HU/h5v2pKEdANBagSsc6DRSjnwSyJsCoHlmyJKCaCJ7KhWGx+N4OHxh37hoA8fc2CuZbx0Fw==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6", + "lodash.throttle": "^4.1.1", + "metro-resolver": "0.80.12" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-file-map": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-file-map/-/metro-file-map-0.80.12.tgz", + "integrity": "sha512-sYdemWSlk66bWzW2wp79kcPMzwuG32x1ZF3otI0QZTmrnTaaTiGyhE66P1z6KR4n2Eu5QXiABa6EWbAQv0r8bw==", + "license": "MIT", + "dependencies": { + "anymatch": "^3.0.3", + "debug": "^2.2.0", + "fb-watchman": "^2.0.0", + "flow-enums-runtime": "^0.0.6", + "graceful-fs": "^4.2.4", + "invariant": "^2.2.4", + "jest-worker": "^29.6.3", + "micromatch": "^4.0.4", + "node-abort-controller": "^3.1.1", + "nullthrows": "^1.1.1", + "walker": "^1.0.7" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/metro-file-map/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/metro-file-map/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/metro-minify-terser": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-minify-terser/-/metro-minify-terser-0.80.12.tgz", + "integrity": "sha512-muWzUw3y5k+9083ZoX9VaJLWEV2Jcgi+Oan0Mmb/fBNMPqP9xVDuy4pOMn/HOiGndgfh/MK7s4bsjkyLJKMnXQ==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6", + "terser": "^5.15.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-resolver": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.80.12.tgz", + "integrity": "sha512-PR24gYRZnYHM3xT9pg6BdbrGbM/Cu1TcyIFBVlAk7qDAuHkUNQ1nMzWumWs+kwSvtd9eZGzHoucGJpTUEeLZAw==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-runtime": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-runtime/-/metro-runtime-0.80.12.tgz", + "integrity": "sha512-LIx7+92p5rpI0i6iB4S4GBvvLxStNt6fF0oPMaUd1Weku7jZdfkCZzmrtDD9CSQ6EPb0T9NUZoyXIxlBa3wOCw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.25.0", + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-source-map": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.80.12.tgz", + "integrity": "sha512-o+AXmE7hpvM8r8MKsx7TI21/eerYYy2DCDkWfoBkv+jNkl61khvDHlQn0cXZa6lrcNZiZkl9oHSMcwLLIrFmpw==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.20.0", + "@babel/types": "^7.20.0", + "flow-enums-runtime": "^0.0.6", + "invariant": "^2.2.4", + "metro-symbolicate": "0.80.12", + "nullthrows": "^1.1.1", + "ob1": "0.80.12", + "source-map": "^0.5.6", + "vlq": "^1.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-source-map/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/metro-symbolicate": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.80.12.tgz", + "integrity": "sha512-/dIpNdHksXkGHZXARZpL7doUzHqSNxgQ8+kQGxwpJuHnDhGkENxB5PS2QBaTDdEcmyTMjS53CN1rl9n1gR6fmw==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6", + "invariant": "^2.2.4", + "metro-source-map": "0.80.12", + "nullthrows": "^1.1.1", + "source-map": "^0.5.6", + "through2": "^2.0.1", + "vlq": "^1.0.0" + }, + "bin": { + "metro-symbolicate": "src/index.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-symbolicate/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/metro-transform-plugins": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-transform-plugins/-/metro-transform-plugins-0.80.12.tgz", + "integrity": "sha512-WQWp00AcZvXuQdbjQbx1LzFR31IInlkCDYJNRs6gtEtAyhwpMMlL2KcHmdY+wjDO9RPcliZ+Xl1riOuBecVlPA==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "@babel/generator": "^7.20.0", + "@babel/template": "^7.0.0", + "@babel/traverse": "^7.20.0", + "flow-enums-runtime": "^0.0.6", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-transform-worker": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-transform-worker/-/metro-transform-worker-0.80.12.tgz", + "integrity": "sha512-KAPFN1y3eVqEbKLx1I8WOarHPqDMUa8WelWxaJCNKO/yHCP26zELeqTJvhsQup+8uwB6EYi/sp0b6TGoh6lOEA==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.0", + "@babel/generator": "^7.20.0", + "@babel/parser": "^7.20.0", + "@babel/types": "^7.20.0", + "flow-enums-runtime": "^0.0.6", + "metro": "0.80.12", + "metro-babel-transformer": "0.80.12", + "metro-cache": "0.80.12", + "metro-cache-key": "0.80.12", + "metro-minify-terser": "0.80.12", + "metro-source-map": "0.80.12", + "metro-transform-plugins": "0.80.12", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "license": "MIT" + }, + "node_modules/metro/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/metro/node_modules/hermes-estree": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.23.1.tgz", + "integrity": "sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==", + "license": "MIT" + }, + "node_modules/metro/node_modules/hermes-parser": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.23.1.tgz", + "integrity": "sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==", + "license": "MIT", + "dependencies": { + "hermes-estree": "0.23.1" + } + }, + "node_modules/metro/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/metro/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/metro/node_modules/ws": { + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", + "license": "MIT", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/min-document": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", + "integrity": "sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==", + "dependencies": { + "dom-walk": "^0.1.0" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "license": "ISC" + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", + "license": "MIT" + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/minipass-collect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-2.0.1.tgz", + "integrity": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==", + "license": "ISC", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-flush/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "license": "MIT", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mitt": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", + "dev": true, + "license": "MIT" + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/moment": { + "version": "2.30.1", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz", + "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/mrmime": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", + "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "license": "MIT" + }, + "node_modules/nested-error-stacks": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.0.1.tgz", + "integrity": "sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==", + "license": "MIT" + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "license": "MIT" + }, + "node_modules/nocache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/nocache/-/nocache-3.0.4.tgz", + "integrity": "sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==", + "license": "MIT", + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/node-abort-controller": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", + "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", + "license": "MIT" + }, + "node_modules/node-dir": { + "version": "0.1.17", + "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz", + "integrity": "sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==", + "license": "MIT", + "dependencies": { + "minimatch": "^3.0.2" + }, + "engines": { + "node": ">= 0.10.5" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" + }, + "node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", + "license": "MIT" + }, + "node_modules/node-stream-zip": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/node-stream-zip/-/node-stream-zip-1.15.0.tgz", + "integrity": "sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/antelle" + } + }, + "node_modules/node-vibrant": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/node-vibrant/-/node-vibrant-3.1.6.tgz", + "integrity": "sha512-Wlc/hQmBMOu6xon12ZJHS2N3M+I6J8DhrD3Yo6m5175v8sFkVIN+UjhKVRcO+fqvre89ASTpmiFEP3nPO13SwA==", + "license": "MIT", + "dependencies": { + "@jimp/custom": "^0.16.1", + "@jimp/plugin-resize": "^0.16.1", + "@jimp/types": "^0.16.1", + "@types/lodash": "^4.14.53", + "@types/node": "^10.11.7", + "lodash": "^4.17.20", + "url": "^0.11.0" + } + }, + "node_modules/node-vibrant/node_modules/@types/node": { + "version": "10.17.60", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz", + "integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==", + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-package-arg": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-7.0.0.tgz", + "integrity": "sha512-xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g==", + "license": "ISC", + "dependencies": { + "hosted-git-info": "^3.0.2", + "osenv": "^0.1.5", + "semver": "^5.6.0", + "validate-npm-package-name": "^3.0.0" + } + }, + "node_modules/npm-package-arg/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/nullthrows": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz", + "integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==", + "license": "MIT" + }, + "node_modules/nwsapi": { + "version": "2.2.13", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.13.tgz", + "integrity": "sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/ob1": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/ob1/-/ob1-0.80.12.tgz", + "integrity": "sha512-VMArClVT6LkhUGpnuEoBuyjG9rzUyEzg4PDkav6wK1cLhOK02gPCYFxoiB4mqVnrMhDpIzJcrGNAMVi9P+hXrw==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/omggif": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", + "integrity": "sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==", + "license": "MIT" + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "license": "MIT", + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/osenv": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "license": "ISC", + "dependencies": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "license": "(MIT AND Zlib)" + }, + "node_modules/parse-bmfont-ascii": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz", + "integrity": "sha512-U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA==", + "license": "MIT" + }, + "node_modules/parse-bmfont-binary": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz", + "integrity": "sha512-GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA==", + "license": "MIT" + }, + "node_modules/parse-bmfont-xml": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.6.tgz", + "integrity": "sha512-0cEliVMZEhrFDwMh4SxIyVJpqYoOWDJ9P895tFuS+XuNzI5UBmBk5U5O4KuJdTnZpSBI4LFA2+ZiJaiwfSwlMA==", + "license": "MIT", + "dependencies": { + "xml-parse-from-string": "^1.0.0", + "xml2js": "^0.5.0" + } + }, + "node_modules/parse-bmfont-xml/node_modules/xml2js": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.5.0.tgz", + "integrity": "sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==", + "license": "MIT", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/parse-headers": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.5.tgz", + "integrity": "sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==", + "license": "MIT" + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse-png": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/parse-png/-/parse-png-2.1.0.tgz", + "integrity": "sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==", + "license": "MIT", + "dependencies": { + "pngjs": "^3.3.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/parse5": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.2.0.tgz", + "integrity": "sha512-ZkDsAOcxsUMZ4Lz5fVciOehNcJ+Gb8gTzcA4yl3wnc273BAybYWrQ+Ks/OjCjSEpjvQkDSeZbybK9qj2VHHdGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "entities": "^4.5.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/password-prompt": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.3.tgz", + "integrity": "sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==", + "license": "0BSD", + "dependencies": { + "ansi-escapes": "^4.3.2", + "cross-spawn": "^7.0.3" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/peek-readable": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-4.1.0.tgz", + "integrity": "sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/permissionless": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/permissionless/-/permissionless-0.2.17.tgz", + "integrity": "sha512-M2+8qXNWTo2mmiriBhCFtNUOKd8UDJ1AXNnLflJw9VePIv5PNR1QqkTa76wWb1mzoZyc1hVObmA0pi7puCBj3A==", + "license": "MIT", + "peerDependencies": { + "viem": "^2.21.22" + } + }, + "node_modules/phin": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/phin/-/phin-2.9.3.tgz", + "integrity": "sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==", + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz", + "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pixelmatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/pixelmatch/-/pixelmatch-4.0.2.tgz", + "integrity": "sha512-J8B6xqiO37sU/gkcMglv6h5Jbd9xNER7aHzpfRdNmV4IbQBzBpe4l9XmbG+xPF/znacgu2jfEw+wHffaq/YkXA==", + "license": "ISC", + "dependencies": { + "pngjs": "^3.0.0" + }, + "bin": { + "pixelmatch": "bin/pixelmatch" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/plist": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/plist/-/plist-3.1.0.tgz", + "integrity": "sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==", + "license": "MIT", + "dependencies": { + "@xmldom/xmldom": "^0.8.8", + "base64-js": "^1.5.1", + "xmlbuilder": "^15.1.1" + }, + "engines": { + "node": ">=10.4.0" + } + }, + "node_modules/plist/node_modules/@xmldom/xmldom": { + "version": "0.8.10", + "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", + "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/plist/node_modules/xmlbuilder": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", + "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", + "license": "MIT", + "engines": { + "node": ">=8.0" + } + }, + "node_modules/pngjs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", + "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.4.47", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz", + "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.1.0", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "license": "MIT" + }, + "node_modules/prettier": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", + "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/pretty-format/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "license": "MIT" + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/promise": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "license": "MIT", + "dependencies": { + "asap": "~2.0.6" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "license": "MIT", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/property-expr": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-2.0.6.tgz", + "integrity": "sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==", + "license": "MIT" + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true, + "license": "MIT" + }, + "node_modules/pump": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", + "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/pure-rand": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", + "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ], + "license": "MIT" + }, + "node_modules/qrcode": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/qrcode/-/qrcode-1.5.4.tgz", + "integrity": "sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==", + "license": "MIT", + "dependencies": { + "dijkstrajs": "^1.0.1", + "pngjs": "^5.0.0", + "yargs": "^15.3.1" + }, + "bin": { + "qrcode": "bin/qrcode" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/qrcode-terminal": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.11.0.tgz", + "integrity": "sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==", + "bin": { + "qrcode-terminal": "bin/qrcode-terminal.js" + } + }, + "node_modules/qrcode/node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/qrcode/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/qrcode/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/qrcode/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/qrcode/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/qrcode/node_modules/pngjs": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-5.0.0.tgz", + "integrity": "sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==", + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/qrcode/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/qrcode/node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "license": "ISC" + }, + "node_modules/qrcode/node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "license": "MIT", + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/qrcode/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "license": "ISC", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/query-string": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-7.1.3.tgz", + "integrity": "sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==", + "license": "MIT", + "dependencies": { + "decode-uri-component": "^0.2.2", + "filter-obj": "^1.1.0", + "split-on-first": "^1.0.0", + "strict-uri-encode": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/querystring": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz", + "integrity": "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==", + "license": "MIT", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/queue": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", + "integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==", + "license": "MIT", + "dependencies": { + "inherits": "~2.0.3" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-devtools-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-5.3.2.tgz", + "integrity": "sha512-crr9HkVrDiJ0A4zot89oS0Cgv0Oa4OG1Em4jit3P3ZxZSKPMYyMjfwMqgcJna9o625g8oN87rBm8SWWrSTBZxg==", + "license": "MIT", + "dependencies": { + "shell-quote": "^1.6.1", + "ws": "^7" + } + }, + "node_modules/react-devtools-core/node_modules/ws": { + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", + "license": "MIT", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-fast-compare": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", + "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==", + "license": "MIT" + }, + "node_modules/react-freeze": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/react-freeze/-/react-freeze-1.0.4.tgz", + "integrity": "sha512-r4F0Sec0BLxWicc7HEyo2x3/2icUTrRmDjaaRyzzn+7aDyFZliszMDOgLVwSnQnYENOlL1o569Ze2HZefk8clA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "react": ">=17.0.0" + } + }, + "node_modules/react-hook-form": { + "version": "7.53.0", + "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.53.0.tgz", + "integrity": "sha512-M1n3HhqCww6S2hxLxciEXy2oISPnAzxY7gvwVPrtlczTM/1dDadXgUxDpHMrMTblDOcm/AXtXxHwZ3jpg1mqKQ==", + "license": "MIT", + "engines": { + "node": ">=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/react-hook-form" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17 || ^18 || ^19" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/react-native": { + "version": "0.74.5", + "resolved": "https://registry.npmjs.org/react-native/-/react-native-0.74.5.tgz", + "integrity": "sha512-Bgg2WvxaGODukJMTZFTZBNMKVaROHLwSb8VAGEdrlvKwfb1hHg/3aXTUICYk7dwgAnb+INbGMwnF8yeAgIUmqw==", + "license": "MIT", + "dependencies": { + "@jest/create-cache-key-function": "^29.6.3", + "@react-native-community/cli": "13.6.9", + "@react-native-community/cli-platform-android": "13.6.9", + "@react-native-community/cli-platform-ios": "13.6.9", + "@react-native/assets-registry": "0.74.87", + "@react-native/codegen": "0.74.87", + "@react-native/community-cli-plugin": "0.74.87", + "@react-native/gradle-plugin": "0.74.87", + "@react-native/js-polyfills": "0.74.87", + "@react-native/normalize-colors": "0.74.87", + "@react-native/virtualized-lists": "0.74.87", + "abort-controller": "^3.0.0", + "anser": "^1.4.9", + "ansi-regex": "^5.0.0", + "base64-js": "^1.5.1", + "chalk": "^4.0.0", + "event-target-shim": "^5.0.1", + "flow-enums-runtime": "^0.0.6", + "invariant": "^2.2.4", + "jest-environment-node": "^29.6.3", + "jsc-android": "^250231.0.0", + "memoize-one": "^5.0.0", + "metro-runtime": "^0.80.3", + "metro-source-map": "^0.80.3", + "mkdirp": "^0.5.1", + "nullthrows": "^1.1.1", + "pretty-format": "^26.5.2", + "promise": "^8.3.0", + "react-devtools-core": "^5.0.0", + "react-refresh": "^0.14.0", + "react-shallow-renderer": "^16.15.0", + "regenerator-runtime": "^0.13.2", + "scheduler": "0.24.0-canary-efb381bbf-20230505", + "stacktrace-parser": "^0.1.10", + "whatwg-fetch": "^3.0.0", + "ws": "^6.2.2", + "yargs": "^17.6.2" + }, + "bin": { + "react-native": "cli.js" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/react": "^18.2.6", + "react": "18.2.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-native-animatable": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/react-native-animatable/-/react-native-animatable-1.3.3.tgz", + "integrity": "sha512-2ckIxZQAsvWn25Ho+DK3d1mXIgj7tITkrS4pYDvx96WyOttSvzzFeQnM2od0+FUMzILbdHDsDEqZvnz1DYNQ1w==", + "license": "MIT", + "dependencies": { + "prop-types": "^15.7.2" + } + }, + "node_modules/react-native-draggable-flatlist": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/react-native-draggable-flatlist/-/react-native-draggable-flatlist-4.0.1.tgz", + "integrity": "sha512-ZO1QUTNx64KZfXGXeXcBfql67l38X7kBcJ3rxUVZzPHt5r035GnGzIC0F8rqSXp6zgnwgUYMfB6zQc5PKmPL9Q==", + "license": "MIT", + "dependencies": { + "@babel/preset-typescript": "^7.17.12" + }, + "peerDependencies": { + "react-native": ">=0.64.0", + "react-native-gesture-handler": ">=2.0.0", + "react-native-reanimated": ">=2.8.0" + } + }, + "node_modules/react-native-draggable-flatlist/node_modules/@babel/plugin-syntax-jsx": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz", + "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-native-draggable-flatlist/node_modules/@babel/plugin-syntax-typescript": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz", + "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-native-draggable-flatlist/node_modules/@babel/plugin-transform-typescript": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.3.tgz", + "integrity": "sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/plugin-syntax-typescript": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-native-draggable-flatlist/node_modules/@babel/preset-typescript": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.26.0.tgz", + "integrity": "sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-syntax-jsx": "^7.25.9", + "@babel/plugin-transform-modules-commonjs": "^7.25.9", + "@babel/plugin-transform-typescript": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-native-fast-image": { + "version": "8.6.3", + "resolved": "https://registry.npmjs.org/react-native-fast-image/-/react-native-fast-image-8.6.3.tgz", + "integrity": "sha512-Sdw4ESidXCXOmQ9EcYguNY2swyoWmx53kym2zRsvi+VeFCHEdkO+WG1DK+6W81juot40bbfLNhkc63QnWtesNg==", + "license": "(MIT AND Apache-2.0)", + "peerDependencies": { + "react": "^17 || ^18", + "react-native": ">=0.60.0" + } + }, + "node_modules/react-native-flipper": { + "version": "0.164.0", + "resolved": "https://registry.npmjs.org/react-native-flipper/-/react-native-flipper-0.164.0.tgz", + "integrity": "sha512-iJhIe3rqx6okuzBp4AJsTa2b8VRAOGzoLRFx/4HGbaGvu8AurZjz8TTQkhJsRma8dsHN2b6KKZPvGGW3wdWzvA==", + "dev": true, + "license": "MIT", + "optional": true, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-native": ">0.62.0" + } + }, + "node_modules/react-native-gesture-handler": { + "version": "2.16.2", + "resolved": "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-2.16.2.tgz", + "integrity": "sha512-vGFlrDKlmyI+BT+FemqVxmvO7nqxU33cgXVsn6IKAFishvlG3oV2Ds67D5nPkHMea8T+s1IcuMm0bF8ntZtAyg==", + "license": "MIT", + "dependencies": { + "@egjs/hammerjs": "^2.0.17", + "hoist-non-react-statics": "^3.3.0", + "invariant": "^2.2.4", + "lodash": "^4.17.21", + "prop-types": "^15.7.2" + }, + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-get-random-values": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/react-native-get-random-values/-/react-native-get-random-values-1.11.0.tgz", + "integrity": "sha512-4BTbDbRmS7iPdhYLRcz3PGFIpFJBwNZg9g42iwa2P6FOv9vZj/xJc678RZXnLNZzd0qd7Q3CCF6Yd+CU2eoXKQ==", + "license": "MIT", + "dependencies": { + "fast-base64-decode": "^1.0.0" + }, + "peerDependencies": { + "react-native": ">=0.56" + } + }, + "node_modules/react-native-helmet-async": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/react-native-helmet-async/-/react-native-helmet-async-2.0.4.tgz", + "integrity": "sha512-m3CkXWss6B1dd6mCMleLpzDCJJGGaHOLQsUzZv8kAASJmMfmVT4d2fx375iXKTRWT25ThBfae3dECuX5cq/8hg==", + "license": "Apache-2.0", + "dependencies": { + "invariant": "^2.2.4", + "react-fast-compare": "^3.2.2", + "shallowequal": "^1.1.0" + }, + "peerDependencies": { + "react": "^16.6.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-native-image-colors": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/react-native-image-colors/-/react-native-image-colors-2.4.0.tgz", + "integrity": "sha512-qlC31+UNVthByNLVuYSEQeZghOXn3uy1GLF6lHKlvT1HM1GGFH/LXNhU8iXAoQvUyzNa1bEAOTo09Hwinvp/rA==", + "license": "MIT", + "dependencies": { + "node-vibrant": "3.1.6" + }, + "peerDependencies": { + "expo": "*", + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-linear-gradient": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/react-native-linear-gradient/-/react-native-linear-gradient-2.8.3.tgz", + "integrity": "sha512-KflAXZcEg54PXkLyflaSZQ3PJp4uC4whM7nT/Uot9m0e/qxFV3p6uor1983D1YOBJbJN7rrWdqIjq0T42jOJyA==", + "license": "MIT", + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-modal": { + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/react-native-modal/-/react-native-modal-13.0.1.tgz", + "integrity": "sha512-UB+mjmUtf+miaG/sDhOikRfBOv0gJdBU2ZE1HtFWp6UixW9jCk/bhGdHUgmZljbPpp0RaO/6YiMmQSSK3kkMaw==", + "license": "MIT", + "dependencies": { + "prop-types": "^15.6.2", + "react-native-animatable": "1.3.3" + }, + "peerDependencies": { + "react": "*", + "react-native": ">=0.65.0" + } + }, + "node_modules/react-native-otp-entry": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/react-native-otp-entry/-/react-native-otp-entry-1.7.3.tgz", + "integrity": "sha512-BN/oEpNMfA0cnw9tB9Oq6PZZQztOiq1Ow/M+rAFd0Nll9aO1gwfCwymgIGI89/+63FkmMbv39LcgsfkZNAYzWw==", + "license": "MIT", + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-pager-view": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/react-native-pager-view/-/react-native-pager-view-6.3.0.tgz", + "integrity": "sha512-ufJOoVa9pFL1J/yb4hpsCqp8n1qTlcF5VvwqvCacHX//D7hSeRscsiIXg1u1pXNWwllvACb+mqxec/3Uj2mxrA==", + "license": "MIT", + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-passkeys": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/react-native-passkeys/-/react-native-passkeys-0.3.0.tgz", + "integrity": "sha512-xjdoZVRInwFXXD92jpUvSM1OGiEmJgPWm6xc4WFSHb7LnypJ4LjSbfofi59WwA/n7Z/25mcnqZNh5Xq4Viuk+Q==", + "license": "MIT", + "peerDependencies": { + "expo": "*", + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-qrcode-svg": { + "version": "6.3.2", + "resolved": "https://registry.npmjs.org/react-native-qrcode-svg/-/react-native-qrcode-svg-6.3.2.tgz", + "integrity": "sha512-IJ0UoKd33ATm08K569SOAQx0tP/MTmSjwhIPfEfgbCUGQuU6JTfgDT7sm1TVgAwPbTuA10wwJJYgWXnnFBQ4FQ==", + "license": "MIT", + "dependencies": { + "prop-types": "^15.8.0", + "qrcode": "^1.5.1", + "text-encoding": "^0.7.0" + }, + "peerDependencies": { + "react": "*", + "react-native": ">=0.63.4", + "react-native-svg": ">=13.2.0" + } + }, + "node_modules/react-native-reanimated": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/react-native-reanimated/-/react-native-reanimated-3.10.1.tgz", + "integrity": "sha512-sfxg6vYphrDc/g4jf/7iJ7NRi+26z2+BszPmvmk0Vnrz6FL7HYljJqTf531F1x6tFmsf+FEAmuCtTUIXFLVo9w==", + "license": "MIT", + "dependencies": { + "@babel/plugin-transform-arrow-functions": "^7.0.0-0", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.0.0-0", + "@babel/plugin-transform-optional-chaining": "^7.0.0-0", + "@babel/plugin-transform-shorthand-properties": "^7.0.0-0", + "@babel/plugin-transform-template-literals": "^7.0.0-0", + "@babel/preset-typescript": "^7.16.7", + "convert-source-map": "^2.0.0", + "invariant": "^2.2.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0", + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-safe-area-context": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-4.10.5.tgz", + "integrity": "sha512-Wyb0Nqw2XJ6oZxW/cK8k5q7/UAhg/wbEG6UVf89rQqecDZTDA5ic//P9J6VvJRVZerzGmxWQpVuM7f+PRYUM4g==", + "license": "MIT", + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-screens": { + "version": "3.31.1", + "resolved": "https://registry.npmjs.org/react-native-screens/-/react-native-screens-3.31.1.tgz", + "integrity": "sha512-8fRW362pfZ9y4rS8KY5P3DFScrmwo/vu1RrRMMx0PNHbeC9TLq0Kw1ubD83591yz64gLNHFLTVkTJmWeWCXKtQ==", + "license": "MIT", + "dependencies": { + "react-freeze": "^1.0.0", + "warn-once": "^0.1.0" + }, + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-svg": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/react-native-svg/-/react-native-svg-15.2.0.tgz", + "integrity": "sha512-R0E6IhcJfVLsL0lRmnUSm72QO+mTqcAOM5Jb8FVGxJqX3NfJMlMP0YyvcajZiaRR8CqQUpEoqrY25eyZb006kw==", + "license": "MIT", + "dependencies": { + "css-select": "^5.1.0", + "css-tree": "^1.1.3" + }, + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native-tab-view": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/react-native-tab-view/-/react-native-tab-view-3.5.2.tgz", + "integrity": "sha512-nE5WqjbeEPsWQx4mtz81QGVvgHRhujTNIIZiMCx3Bj6CBFDafbk7XZp9ocmtzXUQaZ4bhtVS43R4FIiR4LboJw==", + "license": "MIT", + "dependencies": { + "use-latest-callback": "^0.1.5" + }, + "peerDependencies": { + "react": "*", + "react-native": "*", + "react-native-pager-view": "*" + } + }, + "node_modules/react-native-web": { + "version": "0.19.12", + "resolved": "https://registry.npmjs.org/react-native-web/-/react-native-web-0.19.12.tgz", + "integrity": "sha512-o2T0oztoVDQjztt4YksO9S1XRjoH/AqcSvifgWLrPJgGVbMWsfhILgl6lfUdEamVZzZSVV/2gqDVMAk/qq7mZw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.6", + "@react-native/normalize-colors": "^0.74.1", + "fbjs": "^3.0.4", + "inline-style-prefixer": "^6.0.1", + "memoize-one": "^6.0.0", + "nullthrows": "^1.1.1", + "postcss-value-parser": "^4.2.0", + "styleq": "^0.1.3" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/react-native-web/node_modules/@react-native/normalize-colors": { + "version": "0.74.88", + "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.74.88.tgz", + "integrity": "sha512-He5oTwPBxvXrxJ91dZzpxR7P+VYmc9IkJfhuH8zUiU50ckrt+xWNjtVugPdUv4LuVjmZ36Vk2EX8bl1gVn2dVA==", + "license": "MIT" + }, + "node_modules/react-native-web/node_modules/memoize-one": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz", + "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==", + "license": "MIT" + }, + "node_modules/react-native-webview": { + "version": "13.12.3", + "resolved": "https://registry.npmjs.org/react-native-webview/-/react-native-webview-13.12.3.tgz", + "integrity": "sha512-Y1I5YyDYyE7NC96RHLhd2nxh7ymLYOYLTefgx5ixxw2OToQK0ow3OJ+o77QcI1Tuevj5PCxwqC/14ceS/7yPJQ==", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^4.0.0", + "invariant": "2.2.4" + }, + "peerDependencies": { + "react": "*", + "react-native": "*" + } + }, + "node_modules/react-native/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/react-native/node_modules/@react-native/normalize-colors": { + "version": "0.74.87", + "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.74.87.tgz", + "integrity": "sha512-Xh7Nyk/MPefkb0Itl5Z+3oOobeG9lfLb7ZOY2DKpFnoCE1TzBmib9vMNdFaLdSxLIP+Ec6icgKtdzYg8QUPYzA==", + "license": "MIT" + }, + "node_modules/react-native/node_modules/@types/yargs": { + "version": "15.0.19", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.19.tgz", + "integrity": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/react-native/node_modules/pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/react-native/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "license": "MIT" + }, + "node_modules/react-native/node_modules/scheduler": { + "version": "0.24.0-canary-efb381bbf-20230505", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.24.0-canary-efb381bbf-20230505.tgz", + "integrity": "sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/react-redux": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-9.1.2.tgz", + "integrity": "sha512-0OA4dhM1W48l3uzmv6B7TXPCGmokUU4p1M44DGN2/D9a1FjVPukVjER1PcPX97jIg6aUeLq1XJo1IpfbgULn0w==", + "license": "MIT", + "dependencies": { + "@types/use-sync-external-store": "^0.0.3", + "use-sync-external-store": "^1.0.0" + }, + "peerDependencies": { + "@types/react": "^18.2.25", + "react": "^18.0", + "redux": "^5.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "redux": { + "optional": true + } + } + }, + "node_modules/react-refresh": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", + "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-shallow-renderer": { + "version": "16.15.0", + "resolved": "https://registry.npmjs.org/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz", + "integrity": "sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==", + "license": "MIT", + "dependencies": { + "object-assign": "^4.1.1", + "react-is": "^16.12.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependencies": { + "react": "^16.0.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-shallow-renderer/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" + }, + "node_modules/react-test-renderer": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-18.2.0.tgz", + "integrity": "sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "react-is": "^18.2.0", + "react-shallow-renderer": "^16.15.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-test-renderer/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true, + "license": "MIT" + }, + "node_modules/reactotron-core-client": { + "version": "2.9.4", + "resolved": "https://registry.npmjs.org/reactotron-core-client/-/reactotron-core-client-2.9.4.tgz", + "integrity": "sha512-0MVo8R2YVC0t6uEkFJbdelC0lOzJun/+qIOlEpIYh08VKiNVR7GYXevhZvJfSmMAUSVFoGVpeQyTbeW3brgSDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "reactotron-core-contract": "0.2.4" + } + }, + "node_modules/reactotron-core-contract": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/reactotron-core-contract/-/reactotron-core-contract-0.2.4.tgz", + "integrity": "sha512-CmNYahBdk9uES4vimlRsoM1gAQA6T5gXTuJzDvduOjKd0IZufZjkxzBAvhpkX5OIkPl4Xlsv+1AHXLWSJSwFLA==", + "dev": true, + "license": "MIT" + }, + "node_modules/reactotron-react-native": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/reactotron-react-native/-/reactotron-react-native-5.1.9.tgz", + "integrity": "sha512-tHkC5ZADXBJ9vRcs8TFEWOcK1QzHEzI3UnorwDDSU3hnWpwVt5MtxBcgQkicLIRWcPROe4lIJMf6SG9uc+opuA==", + "dev": true, + "license": "MIT", + "dependencies": { + "mitt": "^3.0.1", + "reactotron-core-client": "2.9.4" + }, + "optionalDependencies": { + "react-native-flipper": "^0.164.0" + }, + "peerDependencies": { + "react-native": ">=0.40.0" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readable-web-to-node-stream": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", + "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", + "license": "MIT", + "dependencies": { + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/readline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/readline/-/readline-1.3.0.tgz", + "integrity": "sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==", + "license": "BSD" + }, + "node_modules/recast": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz", + "integrity": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==", + "license": "MIT", + "dependencies": { + "ast-types": "0.15.2", + "esprima": "~4.0.0", + "source-map": "~0.6.1", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/redux": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/redux/-/redux-5.0.1.tgz", + "integrity": "sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==", + "license": "MIT" + }, + "node_modules/redux-persist": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/redux-persist/-/redux-persist-6.0.0.tgz", + "integrity": "sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ==", + "license": "MIT", + "peerDependencies": { + "redux": ">4.0.0" + } + }, + "node_modules/redux-thunk": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-3.1.0.tgz", + "integrity": "sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==", + "license": "MIT", + "peerDependencies": { + "redux": "^5.0.0" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "license": "MIT" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", + "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "license": "MIT" + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz", + "integrity": "sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpu-core": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz", + "integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==", + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.2.0", + "regjsgen": "^0.8.0", + "regjsparser": "^0.12.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", + "license": "MIT" + }, + "node_modules/regjsparser": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz", + "integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==", + "license": "BSD-2-Clause", + "dependencies": { + "jsesc": "~3.0.2" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/remove-trailing-slash": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/remove-trailing-slash/-/remove-trailing-slash-0.1.1.tgz", + "integrity": "sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==", + "license": "MIT" + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "license": "ISC" + }, + "node_modules/requireg": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/requireg/-/requireg-0.2.2.tgz", + "integrity": "sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==", + "dependencies": { + "nested-error-stacks": "~2.0.1", + "rc": "~1.2.7", + "resolve": "~1.7.1" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/requireg/node_modules/resolve": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz", + "integrity": "sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==", + "license": "MIT", + "dependencies": { + "path-parse": "^1.0.5" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/reselect": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/reselect/-/reselect-5.1.1.tgz", + "integrity": "sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==", + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-array-concat/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "license": "MIT" + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "license": "MIT" + }, + "node_modules/sax": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", + "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==", + "license": "ISC" + }, + "node_modules/saxes": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", + "dev": true, + "license": "ISC", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=v12.22.7" + } + }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/scrypt-js": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz", + "integrity": "sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==", + "license": "MIT" + }, + "node_modules/selfsigned": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", + "license": "MIT", + "dependencies": { + "@types/node-forge": "^1.3.0", + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/serialize-error": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz", + "integrity": "sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/serve-static": { + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", + "license": "MIT", + "dependencies": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.19.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-static/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-static/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/serve-static/node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/serve-static/node_modules/send": { + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-static/node_modules/send/node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "license": "ISC" + }, + "node_modules/set-cookie-parser": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz", + "integrity": "sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==", + "license": "MIT" + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "license": "MIT" + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "license": "MIT", + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shallowequal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==", + "license": "MIT" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "license": "ISC" + }, + "node_modules/simple-plist": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/simple-plist/-/simple-plist-1.3.1.tgz", + "integrity": "sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==", + "license": "MIT", + "dependencies": { + "bplist-creator": "0.1.0", + "bplist-parser": "0.3.1", + "plist": "^3.0.5" + } + }, + "node_modules/simple-plist/node_modules/bplist-creator": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.1.0.tgz", + "integrity": "sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==", + "license": "MIT", + "dependencies": { + "stream-buffers": "2.2.x" + } + }, + "node_modules/simple-plist/node_modules/bplist-parser": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.1.tgz", + "integrity": "sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==", + "license": "MIT", + "dependencies": { + "big-integer": "1.6.x" + }, + "engines": { + "node": ">= 5.10.0" + } + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "license": "MIT" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", + "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.0", + "astral-regex": "^1.0.0", + "is-fullwidth-code-point": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/slice-ansi/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/slice-ansi/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "license": "MIT" + }, + "node_modules/slice-ansi/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/slugify": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/split": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", + "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", + "license": "MIT", + "dependencies": { + "through": "2" + }, + "engines": { + "node": "*" + } + }, + "node_modules/split-on-first": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", + "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "license": "BSD-3-Clause" + }, + "node_modules/ssri": { + "version": "10.0.6", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.6.tgz", + "integrity": "sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==", + "license": "ISC", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/stack-generator": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/stack-generator/-/stack-generator-2.0.10.tgz", + "integrity": "sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", + "license": "MIT" + }, + "node_modules/stacktrace-gps": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/stacktrace-gps/-/stacktrace-gps-3.1.2.tgz", + "integrity": "sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "source-map": "0.5.6", + "stackframe": "^1.3.4" + } + }, + "node_modules/stacktrace-gps/node_modules/source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stacktrace-js": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stacktrace-js/-/stacktrace-js-2.0.2.tgz", + "integrity": "sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==", + "dev": true, + "license": "MIT", + "dependencies": { + "error-stack-parser": "^2.0.6", + "stack-generator": "^2.0.5", + "stacktrace-gps": "^3.0.4" + } + }, + "node_modules/stacktrace-parser": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz", + "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.7.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/stacktrace-parser/node_modules/type-fest": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", + "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=8" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stream-buffers": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/stream-buffers/-/stream-buffers-2.2.0.tgz", + "integrity": "sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==", + "license": "Unlicense", + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/stream-slice": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/stream-slice/-/stream-slice-0.1.2.tgz", + "integrity": "sha512-QzQxpoacatkreL6jsxnVb7X5R/pGw9OUv2qWTYWnmLpg4NdN31snPy/f3TdQE1ZUXaThRvj1Zw4/OGg0ZkaLMA==", + "license": "MIT" + }, + "node_modules/strict-uri-encode": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", + "integrity": "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strnum": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==", + "license": "MIT" + }, + "node_modules/strtok3": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-6.3.0.tgz", + "integrity": "sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==", + "license": "MIT", + "dependencies": { + "@tokenizer/token": "^0.3.0", + "peek-readable": "^4.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/structured-headers": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/structured-headers/-/structured-headers-0.4.1.tgz", + "integrity": "sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==", + "license": "MIT" + }, + "node_modules/styleq": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/styleq/-/styleq-0.1.3.tgz", + "integrity": "sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA==", + "license": "MIT" + }, + "node_modules/sucrase": { + "version": "3.34.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.34.0.tgz", + "integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "7.1.6", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sudo-prompt": { + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.1.1.tgz", + "integrity": "sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA==", + "license": "MIT" + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true, + "license": "MIT" + }, + "node_modules/tar": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", + "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", + "license": "ISC", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "license": "ISC", + "engines": { + "node": ">=8" + } + }, + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/temp": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz", + "integrity": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==", + "license": "MIT", + "dependencies": { + "rimraf": "~2.6.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/temp/node_modules/rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/tempy": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.7.1.tgz", + "integrity": "sha512-vXPxwOyaNVi9nyczO16mxmHGpl6ASC5/TVhRRHpqeYHvKQm58EaWNvZXxAhR0lYYnBOQFjXjhzeLsaXdjxLjRg==", + "license": "MIT", + "dependencies": { + "del": "^6.0.0", + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser": { + "version": "5.34.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.34.1.tgz", + "integrity": "sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA==", + "license": "BSD-2-Clause", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "license": "MIT" + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/text-encoding": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/text-encoding/-/text-encoding-0.7.0.tgz", + "integrity": "sha512-oJQ3f1hrOnbRLOcwKz0Liq2IcrvDeZRHXhd9RgLrsT+DjWY/nty1Hi7v3dtkaEYbPYe0mUoOfzRrMwfXXwgPUA==", + "license": "(Unlicense OR Apache-2.0)" + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "license": "MIT" + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/throat": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", + "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==", + "license": "MIT" + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "license": "MIT" + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "license": "MIT", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/through2/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/through2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/timm": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/timm/-/timm-1.7.1.tgz", + "integrity": "sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==", + "license": "MIT" + }, + "node_modules/tiny-case": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-case/-/tiny-case-1.0.3.tgz", + "integrity": "sha512-Eet/eeMhkO6TX8mnUteS9zgPbUMQa4I6Kkp5ORiBD5476/m+PIRiumP5tmh5ioJpH7k51Kehawy2UDfsnxxY8Q==", + "license": "MIT" + }, + "node_modules/tinycolor2": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", + "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==", + "license": "MIT" + }, + "node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "license": "MIT", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "license": "BSD-3-Clause" + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/token-types": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/token-types/-/token-types-4.2.1.tgz", + "integrity": "sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==", + "license": "MIT", + "dependencies": { + "@tokenizer/token": "^0.3.0", + "ieee754": "^1.2.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/toposort": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz", + "integrity": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==", + "license": "MIT" + }, + "node_modules/tough-cookie": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz", + "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/traverse": { + "version": "0.6.10", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.10.tgz", + "integrity": "sha512-hN4uFRxbK+PX56DxYiGHsTn2dME3TVr9vbNqlQGcGcPhJAn+tdP126iA+TArMpI4YSgnTkMWyoLl5bf81Hi5TA==", + "license": "MIT", + "dependencies": { + "gopd": "^1.0.1", + "typedarray.prototype.slice": "^1.0.3", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/trim-right": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", + "integrity": "sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "license": "Apache-2.0" + }, + "node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", + "license": "0BSD" + }, + "node_modules/turbo-stream": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/turbo-stream/-/turbo-stream-2.4.0.tgz", + "integrity": "sha512-FHncC10WpBd2eOmGwpmQsWLDoK4cqsA/UT/GqNoaKOQnT8uzhtCbg3EoUDMvqpOSAI0S26mr0rkjzbOO6S3v1g==", + "license": "ISC" + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.3.tgz", + "integrity": "sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-errors": "^1.3.0", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-offset": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "devOptional": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/ua-parser-js": { + "version": "1.0.39", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.39.tgz", + "integrity": "sha512-k24RCVWlEcjkdOxYmVJgeD/0a1TiSpqLg+ZalVGV9lsnr4yqu0w7tX/x2xX6G4zpkgQnRf89lxuZ1wsbjXM8lw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/ua-parser-js" + }, + { + "type": "paypal", + "url": "https://paypal.me/faisalman" + }, + { + "type": "github", + "url": "https://github.com/sponsors/faisalman" + } + ], + "license": "MIT", + "bin": { + "ua-parser-js": "script/cli.js" + }, + "engines": { + "node": "*" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/undici": { + "version": "6.20.1", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.20.1.tgz", + "integrity": "sha512-AjQF1QsmqfJys+LXfGTNum+qw4S88CojRInG/6t31W/1fk6G59s92bnAvGz5Cmur+kQv2SURXEvvudLmbrE8QA==", + "license": "MIT", + "engines": { + "node": ">=18.17" + } + }, + "node_modules/undici-types": { + "version": "6.19.8", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", + "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", + "license": "MIT" + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "license": "MIT", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", + "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unique-filename": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", + "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", + "license": "ISC", + "dependencies": { + "unique-slug": "^4.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/unique-slug": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", + "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "license": "MIT", + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.4.tgz", + "integrity": "sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==", + "license": "MIT", + "dependencies": { + "punycode": "^1.4.1", + "qs": "^6.12.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/url-join": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.0.tgz", + "integrity": "sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==", + "license": "MIT" + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/url/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "license": "MIT" + }, + "node_modules/use-latest-callback": { + "version": "0.1.11", + "resolved": "https://registry.npmjs.org/use-latest-callback/-/use-latest-callback-0.1.11.tgz", + "integrity": "sha512-8nhb73STSD/z3GTHklvNjL8F9wMOo0bj0AFnulpIYuFTm6aQlT3ZcNbXF2YurKImIY8+kpSFSDHZZyQmurGrhw==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/use-sync-external-store": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz", + "integrity": "sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/utif": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/utif/-/utif-2.0.1.tgz", + "integrity": "sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg==", + "license": "MIT", + "dependencies": { + "pako": "^1.0.5" + } + }, + "node_modules/util": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "which-typed-array": "^1.1.2" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-to-istanbul": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", + "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", + "dev": true, + "license": "ISC", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^2.0.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/valid-url": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz", + "integrity": "sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==" + }, + "node_modules/validate-npm-package-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz", + "integrity": "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==", + "license": "ISC", + "dependencies": { + "builtins": "^1.0.3" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/victory": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory/-/victory-37.1.2.tgz", + "integrity": "sha512-V1YkJiWQ/vu5MSZ/Yf9/AJQeE+N1p1eUW6r5xJgOjbhioIbnL7FBTyJW1AXqqDZN9WdyECI3TkFQ1l/QbgztoA==", + "license": "MIT", + "dependencies": { + "victory-area": "37.1.2", + "victory-axis": "37.1.2", + "victory-bar": "37.1.2", + "victory-box-plot": "37.1.2", + "victory-brush-container": "37.1.2", + "victory-brush-line": "37.1.2", + "victory-candlestick": "37.1.2", + "victory-canvas": "37.1.2", + "victory-chart": "37.1.2", + "victory-core": "37.1.2", + "victory-create-container": "37.1.2", + "victory-cursor-container": "37.1.2", + "victory-errorbar": "37.1.2", + "victory-group": "37.1.2", + "victory-histogram": "37.1.2", + "victory-legend": "37.1.2", + "victory-line": "37.1.2", + "victory-pie": "37.1.2", + "victory-polar-axis": "37.1.2", + "victory-scatter": "37.1.2", + "victory-selection-container": "37.1.2", + "victory-shared-events": "37.1.2", + "victory-stack": "37.1.2", + "victory-tooltip": "37.1.2", + "victory-voronoi": "37.1.2", + "victory-voronoi-container": "37.1.2", + "victory-zoom-container": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-area": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-area/-/victory-area-37.1.2.tgz", + "integrity": "sha512-72i02xTD47i7P+X02AHhZ32yO16VcM1h/7gulgAioLEx+8m3zShBKu46Md/vqmbyS2Bypr3xpUvd+8mCDIvCbw==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2", + "victory-vendor": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-axis": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-axis/-/victory-axis-37.1.2.tgz", + "integrity": "sha512-TuivC84cHrFoDetWDhU2VXQ34froIXBrtjYYPdmwBrMEFSu+FfrakYWUr3r25XNEPyOyk4z3a8lL/sqrxWYSRQ==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-bar": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-bar/-/victory-bar-37.1.2.tgz", + "integrity": "sha512-VJDE+TGSgyIchvln189cPMuG3LYqa8zCjHa8kYValP3bFTa5c+D1Y8R/FjVger40uEL3aQz1teHJODJCOxuXGA==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2", + "victory-vendor": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-box-plot": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-box-plot/-/victory-box-plot-37.1.2.tgz", + "integrity": "sha512-i7JIjpaPTr3uaoW6ibfX4PrH1QcUeLXNxeCbmPRb+Hs+ug0d16J4RELPCaeNo/ZNg4rEzfueNTvExsYFIpHaWw==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2", + "victory-vendor": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-brush-container": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-brush-container/-/victory-brush-container-37.1.2.tgz", + "integrity": "sha512-pJrMSo815UJxOT5OTXnq1tI5qQxQLnrlgDRNF8pxVF9dSxm7BhETjZSQfZgcLmCe3N931U19j8oCxw8sMSpJJw==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-brush-line": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-brush-line/-/victory-brush-line-37.1.2.tgz", + "integrity": "sha512-Bq9JGu/o4p/NQ/ZOASUm6MmomS+2b0EvAHjULa06z7nsElNePpedTYPk2aAb7mr4sJZe6u/AsDMthG+C8Zc32Q==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-candlestick": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-candlestick/-/victory-candlestick-37.1.2.tgz", + "integrity": "sha512-X+pLwvdIj/+nrvk1bZxhdJ9UBj7QLN4jdkIPDl6ekjfZ9Ylhi8/I/ttAkBu+7w7ilpGudIK6fr7PVHyZyYU6TA==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-canvas": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-canvas/-/victory-canvas-37.1.2.tgz", + "integrity": "sha512-4Qmz7YpFBj2KaBSe+j5zLVrKAJLG3HtXVVaKI3oUzw4GzHlYXf77dJLYe2EqJVEFCMgVsmASqE3xVTklioMV7g==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-bar": "37.1.2", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-chart": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-chart/-/victory-chart-37.1.2.tgz", + "integrity": "sha512-efV7lnqwu4+zLzB6aY3jjYbbfYJ9+1VC6uwx+8AGjbb8vGkbByUOKC6Fhdcuca2mLqNQHM0Ynvevs3+4XrBz1g==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-axis": "37.1.2", + "victory-core": "37.1.2", + "victory-polar-axis": "37.1.2", + "victory-shared-events": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-core": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-core/-/victory-core-37.1.2.tgz", + "integrity": "sha512-9fskAQw9MvYEBL+0cDk2lihKyECdrh+8HGicDfSKGOWtsSLk+x7R6PKCpOzhmSgc9fG+HjWYfs2uTWSPNTjF9A==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.21", + "react-fast-compare": "^3.2.0", + "victory-vendor": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-create-container": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-create-container/-/victory-create-container-37.1.2.tgz", + "integrity": "sha512-GvWA+N3SXf6he+hW1IQqaRjKG7XSV9WBr06mZixRVyOeHJGGZ5g7Vsse1WrwUz5/DM8HcqF34PTfhTs39v6zaw==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-brush-container": "37.1.2", + "victory-core": "37.1.2", + "victory-cursor-container": "37.1.2", + "victory-selection-container": "37.1.2", + "victory-voronoi-container": "37.1.2", + "victory-zoom-container": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-cursor-container": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-cursor-container/-/victory-cursor-container-37.1.2.tgz", + "integrity": "sha512-GqOVB/Emas/ODw7Sb7FX1FmUyH3jb5eNF+2sR+DdYfDMTFmjVUyqGkSpi1bIgHoSWTrdG9C2tkxA69gI9JDtLA==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-errorbar": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-errorbar/-/victory-errorbar-37.1.2.tgz", + "integrity": "sha512-sgs1nla57Ctt9slG5WXWdxqTXtTdKcZM+u83C5j1ceKKmMjCiqiNYmMQpF7yz7Nj2ewJTrOzZON9h2zgurr2Cg==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-group": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-group/-/victory-group-37.1.2.tgz", + "integrity": "sha512-Zwdvs6pSfF02xax8rQbahSqRP7eua4mS0so0gFYr/M2sNiKN4hxnM72j3dLo9nQ63kQpYhcUZe8U/hEjlhHxYQ==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-core": "37.1.2", + "victory-shared-events": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-histogram": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-histogram/-/victory-histogram-37.1.2.tgz", + "integrity": "sha512-IGeQZ2HGuvmMyYxoKOczIILNH6ARDJaWcDG3h5BX4jP4JH2+eWeEukCVHGT3b1VM1OFxuvPijJrePXYzKgQ+AQ==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-bar": "37.1.2", + "victory-core": "37.1.2", + "victory-vendor": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-legend": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-legend/-/victory-legend-37.1.2.tgz", + "integrity": "sha512-dmwwHtFpEXPIelY9iH1a2Q/V2Ji8DaF0a2g+hLH4SM/xbA9YwjP2/9DIQcwS7/OVl4l1AnSbLFcu5RyDPJ0kww==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-line": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-line/-/victory-line-37.1.2.tgz", + "integrity": "sha512-DjttWkQG0iZtQ9SM/KphN168dQUgw1xwyr0qR1aN12VtVb1jspI1LkBH8XqUeYXgfuI1vKQJWcV/zMOK2Q1n8g==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2", + "victory-vendor": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-native": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-native/-/victory-native-37.1.2.tgz", + "integrity": "sha512-df9RRGv9S4Im6jEo2u/RHT2IhDvkzbsoXXZW8ib7IzDOK4ZWd9l7p4shB+Za8NRdfbqYJMoLA0h5bhpxM4VmWg==", + "license": "MIT", + "dependencies": { + "hoist-non-react-statics": "^3.3.2", + "lodash": "^4.17.21", + "react-fast-compare": "^3.2.0", + "victory": "^37.1.2", + "victory-area": "^37.1.2", + "victory-axis": "^37.1.2", + "victory-bar": "^37.1.2", + "victory-box-plot": "^37.1.2", + "victory-brush-container": "^37.1.2", + "victory-brush-line": "^37.1.2", + "victory-candlestick": "^37.1.2", + "victory-chart": "^37.1.2", + "victory-core": "^37.1.2", + "victory-create-container": "^37.1.2", + "victory-cursor-container": "^37.1.2", + "victory-errorbar": "^37.1.2", + "victory-group": "^37.1.2", + "victory-histogram": "^37.1.2", + "victory-legend": "^37.1.2", + "victory-line": "^37.1.2", + "victory-pie": "^37.1.2", + "victory-polar-axis": "^37.1.2", + "victory-scatter": "^37.1.2", + "victory-selection-container": "^37.1.2", + "victory-shared-events": "^37.1.2", + "victory-stack": "^37.1.2", + "victory-tooltip": "^37.1.2", + "victory-voronoi": "^37.1.2", + "victory-voronoi-container": "^37.1.2", + "victory-zoom-container": "^37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-pie": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-pie/-/victory-pie-37.1.2.tgz", + "integrity": "sha512-lwPMAtkcGDJ4gdpKFmR7hRnowJZIGQ6XIvyPj7Ir+QfL6ew64kl7YiIsQpDnC4zqwAjDPIbIW/kRROiSKRjXjQ==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2", + "victory-vendor": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-polar-axis": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-polar-axis/-/victory-polar-axis-37.1.2.tgz", + "integrity": "sha512-cvELVQ5MwDjDfC/n/g8QVfUhexLNKcp7kXxbjp6IGbzQMCfNtROHaVaHaISNH7/EV5zinwBhNj0+ISWatROtrQ==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-scatter": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-scatter/-/victory-scatter-37.1.2.tgz", + "integrity": "sha512-6orfcqdfZCuTHqf/wE+B+sQbpzf2/TyEvLZhvYIXFr5GzdVu39psNl74K3GQ2Ky0db+e6oLEHV8nZYO2IvWoWg==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-selection-container": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-selection-container/-/victory-selection-container-37.1.2.tgz", + "integrity": "sha512-1sp1CV9LrBADnsBcFgVQuYUNCLeANuybtOS9/5TvPPELBGWQQ55nBN3mH/laVPDy9gGyPARh1lmdPgREHmSkmQ==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-shared-events": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-shared-events/-/victory-shared-events-37.1.2.tgz", + "integrity": "sha512-fpgpe6eI0A9dD39ZsFaid3sXdrCf1WIzFnpkNFT6hBYrDDD5Fd2/2SgqOxuul64PlYJAk6NOY+F1agmEtmB+/Q==", + "license": "MIT", + "dependencies": { + "json-stringify-safe": "^5.0.1", + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-stack": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-stack/-/victory-stack-37.1.2.tgz", + "integrity": "sha512-H3FWiv3c6s/++PB3pBZ/9r8mcry1FHg8JK+03DZhRKHtJIti/38iIYUUiFOoQKmjVUQ7wrLdftYiemy3st77Dg==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-core": "37.1.2", + "victory-shared-events": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-tooltip": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-tooltip/-/victory-tooltip-37.1.2.tgz", + "integrity": "sha512-j1r1t83X0epSwivhf4eYSD2DoWRVy5fkINbLk4sVnnV2EUT4Lt4yH3uelIhYQuT4Y+Ez9KFLoQvR6bfwmHyfZw==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-vendor": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-37.1.2.tgz", + "integrity": "sha512-kZ2UVcoINrisEW7JDaxws2v17D4n4ShRzsPUcYnF37/avByNbjzybhvs8JrqO6+vUmoP2W1DrTEI2L/86PEQjw==", + "license": "MIT AND ISC", + "dependencies": { + "@types/d3-array": "^3.0.3", + "@types/d3-ease": "^3.0.0", + "@types/d3-interpolate": "^3.0.1", + "@types/d3-scale": "^4.0.2", + "@types/d3-shape": "^3.1.0", + "@types/d3-time": "^3.0.0", + "@types/d3-timer": "^3.0.0", + "d3-array": "^3.1.6", + "d3-ease": "^3.0.1", + "d3-interpolate": "^3.0.1", + "d3-scale": "^4.0.2", + "d3-shape": "^3.1.0", + "d3-time": "^3.0.0", + "d3-timer": "^3.0.1" + } + }, + "node_modules/victory-voronoi": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-voronoi/-/victory-voronoi-37.1.2.tgz", + "integrity": "sha512-rbihVJMDLmrMKfm6mbzTft9BbaJWZkymFkYxZZT0ZdHjsyaFm7t3jjrtvG1cq6HsTI10AfCh7iWmD9aky69eMQ==", + "license": "MIT", + "dependencies": { + "d3-voronoi": "^1.1.4", + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-voronoi-container": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-voronoi-container/-/victory-voronoi-container-37.1.2.tgz", + "integrity": "sha512-uFnZmRWp+QP7mH9jqetmoSR/KYhnFr4sFGR9+HrQkUbOzBQpT7Q2SNrDcr5l29Hm7Lb+3iUuF/l0E//EzuS+Ig==", + "license": "MIT", + "dependencies": { + "delaunay-find": "0.0.6", + "lodash": "^4.17.19", + "react-fast-compare": "^3.2.0", + "victory-core": "37.1.2", + "victory-tooltip": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/victory-zoom-container": { + "version": "37.1.2", + "resolved": "https://registry.npmjs.org/victory-zoom-container/-/victory-zoom-container-37.1.2.tgz", + "integrity": "sha512-OI0AgskIpruWaFWF1BkJWi4UZGyEJ+ol3uzlIMk3tPmYkuw5Gh4pTW6kEw/0E1BP+PwJjv+IRGBbT46/YxV3UQ==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.19", + "victory-core": "37.1.2" + }, + "peerDependencies": { + "react": ">=16.6.0" + } + }, + "node_modules/viem": { + "version": "2.21.29", + "resolved": "https://registry.npmjs.org/viem/-/viem-2.21.29.tgz", + "integrity": "sha512-n9LoCJjmI1XsE33nl+M4p3Wy5hczv7YC682RpX4Qk9cw8s9HJU+hUi5eDcNDPBcAwIHGCPKsf8yFBEYnE2XYVg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/wevm" + } + ], + "license": "MIT", + "dependencies": { + "@adraffy/ens-normalize": "1.11.0", + "@noble/curves": "1.6.0", + "@noble/hashes": "1.5.0", + "@scure/bip32": "1.5.0", + "@scure/bip39": "1.4.0", + "abitype": "1.0.6", + "isows": "1.0.6", + "webauthn-p256": "0.0.10", + "ws": "8.18.0" + }, + "peerDependencies": { + "typescript": ">=5.0.4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/viem/node_modules/ws": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/vlq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/vlq/-/vlq-1.0.1.tgz", + "integrity": "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==", + "license": "MIT" + }, + "node_modules/w3c-xmlserializer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", + "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", + "dev": true, + "license": "MIT", + "dependencies": { + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "license": "Apache-2.0", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/warn-once": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/warn-once/-/warn-once-0.1.1.tgz", + "integrity": "sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==", + "license": "MIT" + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "license": "MIT", + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/web-encoding": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/web-encoding/-/web-encoding-1.1.5.tgz", + "integrity": "sha512-HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA==", + "license": "MIT", + "dependencies": { + "util": "^0.12.3" + }, + "optionalDependencies": { + "@zxing/text-encoding": "0.9.0" + } + }, + "node_modules/web-streams-polyfill": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz", + "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/webauthn-p256": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/webauthn-p256/-/webauthn-p256-0.0.10.tgz", + "integrity": "sha512-EeYD+gmIT80YkSIDb2iWq0lq2zbHo1CxHlQTeJ+KkCILWpVy3zASH3ByD4bopzfk0uCwXxLqKGLqp2W4O28VFA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/wevm" + } + ], + "license": "MIT", + "dependencies": { + "@noble/curves": "^1.4.0", + "@noble/hashes": "^1.4.0" + } + }, + "node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-encoding": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "dev": true, + "license": "MIT", + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-fetch": { + "version": "3.6.20", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", + "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==", + "license": "MIT" + }, + "node_modules/whatwg-mimetype": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-url-without-unicode": { + "version": "8.0.0-3", + "resolved": "https://registry.npmjs.org/whatwg-url-without-unicode/-/whatwg-url-without-unicode-8.0.0-3.tgz", + "integrity": "sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig==", + "license": "MIT", + "dependencies": { + "buffer": "^5.4.3", + "punycode": "^2.1.1", + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/whatwg-url-without-unicode/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "license": "MIT", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-module": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", + "license": "ISC" + }, + "node_modules/which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wonka": { + "version": "4.0.15", + "resolved": "https://registry.npmjs.org/wonka/-/wonka-4.0.15.tgz", + "integrity": "sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==", + "license": "MIT" + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC" + }, + "node_modules/write-file-atomic": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "license": "ISC", + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/ws": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", + "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", + "license": "MIT", + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/xcode": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/xcode/-/xcode-3.0.1.tgz", + "integrity": "sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==", + "license": "Apache-2.0", + "dependencies": { + "simple-plist": "^1.1.0", + "uuid": "^7.0.3" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/xcode/node_modules/uuid": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-7.0.3.tgz", + "integrity": "sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/xhr": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz", + "integrity": "sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==", + "license": "MIT", + "dependencies": { + "global": "~4.4.0", + "is-function": "^1.0.1", + "parse-headers": "^2.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/xml-name-validator": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12" + } + }, + "node_modules/xml-parse-from-string": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz", + "integrity": "sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g==", + "license": "MIT" + }, + "node_modules/xml2js": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.6.0.tgz", + "integrity": "sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==", + "license": "MIT", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/xmlbuilder": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", + "license": "MIT", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true, + "license": "MIT" + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "license": "MIT", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "license": "ISC" + }, + "node_modules/yaml": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.0.tgz", + "integrity": "sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==", + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yup": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/yup/-/yup-1.4.0.tgz", + "integrity": "sha512-wPbgkJRCqIf+OHyiTBQoJiP5PFuAXaWiJK6AmYkzQAh5/c2K9hzSApBZG5wV9KoKSePF7sAxmNSvh/13YHkFDg==", + "license": "MIT", + "dependencies": { + "property-expr": "^2.0.5", + "tiny-case": "^1.0.3", + "toposort": "^2.0.2", + "type-fest": "^2.19.0" + } + }, + "node_modules/yup/node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "3.23.8", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz", + "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-validation-error": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-2.1.0.tgz", + "integrity": "sha512-VJh93e2wb4c3tWtGgTa0OF/dTt/zoPCPzXq4V11ZjxmEAFaPi/Zss1xIZdEB5RD8GD00U0/iVXgqkF77RV7pdQ==", + "license": "MIT", + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "zod": "^3.18.0" + } + }, + "node_modules/zustand": { + "version": "4.5.5", + "resolved": "https://registry.npmjs.org/zustand/-/zustand-4.5.5.tgz", + "integrity": "sha512-+0PALYNJNgK6hldkgDq2vLrw5f6g/jCInz52n9RTpropGgeAf/ioFUCdtsjCqu4gNhW9D01rUQBROoRjdzyn2Q==", + "license": "MIT", + "dependencies": { + "use-sync-external-store": "1.2.2" + }, + "engines": { + "node": ">=12.7.0" + }, + "peerDependencies": { + "@types/react": ">=16.8", + "immer": ">=9.0.6", + "react": ">=16.8" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "immer": { + "optional": true + }, + "react": { + "optional": true + } + } + } + } +} diff --git a/package.json b/package.json index 52cbd41..e0162fc 100644 --- a/package.json +++ b/package.json @@ -53,12 +53,15 @@ "expo-web-browser": "^13.0.3", "fast-text-encoding": "^1.0.6", "lodash": "^4.17.21", + "lottie-ios": "3.4.0", + "lottie-react-native": "^5.1.5", "moment": "^2.30.1", "permissionless": "^0.2.17", "react": "18.2.0", "react-dom": "18.2.0", "react-hook-form": "^7.53.0", "react-native": "0.74.5", + "react-native-draggable-flatlist": "^4.0.1", "react-native-fast-image": "^8.6.3", "react-native-gesture-handler": "~2.16.1", "react-native-get-random-values": "^1.11.0", diff --git a/screens/create-strategy/actions.tsx b/screens/create-strategy/actions.tsx new file mode 100644 index 0000000..5da8969 --- /dev/null +++ b/screens/create-strategy/actions.tsx @@ -0,0 +1,145 @@ +import React, { useState } from 'react'; +import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; +import DraggableFlatList, { ScaleDecorator } from 'react-native-draggable-flatlist'; +import { + AerodromeIcon, + BorrowIcon, + DepositIcon, + DragHandleIcon, + EditProfileIcon, + MoonWellIcon, + MorphoIcon, + PlusIcon, + StakeIcon, +} from '@/assets/icons'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; + +const ActionItem = ({ title, action }: IActionItem) => { + return ( + + + + + + {title} + + + + + + + + ); +}; + +const Actions = ({ action }: IActions) => { + const [actionList, setActionList] = useState([ + { id: '1', title: 'Stake', icon: 'stake' }, + { id: '2', title: 'Deposit', icon: 'deposit' }, + ]); + + const actions = () => { + setActionList((prevData) => [...prevData, { id: '1', title: 'Stake', icon: 'stake' }]); + }; + + const icons = { + stake: , + deposit: , + borrow: , + supply: null, + }; + + const renderItem = ({ item, drag, isActive }: IActionsRenderItem) => { + return ( + + + + + + + {icons[item.icon]} + {item.title} + + + + + + + ); + }; + + return ( + + Actions + setActionList(data)} + keyExtractor={(item) => item.id} + renderItem={renderItem} + contentContainerStyle={styles.listContainer} + ListFooterComponent={() => } + /> + + ); +}; + +export default Actions; + +const styles = StyleSheet.create({ + container: { + backgroundColor: '#fff', + }, + title: { + fontWeight: '500', + marginBottom: 16, + color: '#181E00', + fontSize: adjustFontSizeForIOS(14, 2), + lineHeight: 18.48, + fontFamily: 'AeonikMedium', + }, + listContainer: { + padding: 10, + borderRadius: 18, + borderWidth: 1, + borderColor: '#F1F5F9', + }, + actionText: { + flex: 1, + fontSize: adjustFontSizeForIOS(13, 2), + color: '#64748B', + lineHeight: 18.48, + fontFamily: 'AeonikRegular', + }, + actionItem: { + flexDirection: 'row', + alignItems: 'center', + paddingVertical: 14, + paddingHorizontal: 10, + backgroundColor: '#fff', + borderWidth: 1, + borderRadius: 16, + borderColor: '#EAEEF4', + gap: 16, + }, + innerWrapper: { + flex: 1, + flexDirection: 'row', + alignItems: 'center', + gap: 10, + }, + activeActionText: { + fontSize: adjustFontSizeForIOS(14, 2), + color: '#0F172A', + lineHeight: 19.48, + fontFamily: 'Aeonik', + fontWeight: '500', + }, + addButton: {}, + actionItemContainer: { flexDirection: 'row', alignItems: 'center', gap: 10, padding: 10 }, + dragWrapper: { flexDirection: 'row', alignItems: 'center', gap: 10, padding: 10 }, +}); diff --git a/screens/create-strategy/index.tsx b/screens/create-strategy/index.tsx new file mode 100644 index 0000000..75f6e5f --- /dev/null +++ b/screens/create-strategy/index.tsx @@ -0,0 +1,103 @@ +import { Pressable, StyleSheet, Text, View } from 'react-native'; +import React from 'react'; +import { LQDButton, LQDInput } from '@/components'; +import { useForm } from 'react-hook-form'; +import useAppActions from '@/store/app/actions'; +import Actions from './actions'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; + +const CreateStrategy = () => { + const { control, watch } = useForm(); + const { searchIsFocused: focusSearch, showSearch } = useAppActions(); + const { router } = useSystemFunctions(); + const focusInput = () => { + focusSearch(true); + }; + + const blurInput = () => { + focusSearch(false); + }; + + const navigateNewAction = () => { + router.push('/new-action-strategy'); + }; + + const navigateToPreview = () => { + router.push('/preview-strategy'); + }; + + return ( + + + + + + + + + + + + + + + + Cancel + + + + ); +}; + +export default CreateStrategy; + +const styles = StyleSheet.create({ + container: { + backgroundColor: '#fff', + flex: 1, + paddingTop: 20, + paddingHorizontal: 16, + }, + cancel: { + fontSize: adjustFontSizeForIOS(16, 2), + lineHeight: 16, + color: '#64748B', + fontFamily: 'QuantaGroteskProSemiBold', + fontWeight: '600', + alignSelf: 'center', + marginTop: 20, + }, + btnBottomWrapper: { + justifyContent: 'flex-end', + marginBottom: 25, + }, +}); diff --git a/screens/create-strategy/loader.tsx b/screens/create-strategy/loader.tsx new file mode 100644 index 0000000..f913dfd --- /dev/null +++ b/screens/create-strategy/loader.tsx @@ -0,0 +1,36 @@ +import { StyleSheet, View } from 'react-native'; +import React from 'react'; +import LottieView from 'lottie-react-native'; +import Modal from 'react-native-modal'; + +const Loader = ({ + visible = true, + backgroundColor = 'rgba(87, 87, 87, 0.73)', + animationSource = require('../../assets/json/liquid loader animation.json'), +}) => { + if (!visible) return null; + + return ( + + + + + + + + ); +}; + +export default Loader; + +const styles = StyleSheet.create({ + innerWrapper: { + flex: 1, + justifyContent: 'center', + alignItems: 'center', + }, + image: { + width: 100, + height: 130, + }, +}); diff --git a/screens/create-strategy/new-action-strategy.tsx b/screens/create-strategy/new-action-strategy.tsx new file mode 100644 index 0000000..23ef4a6 --- /dev/null +++ b/screens/create-strategy/new-action-strategy.tsx @@ -0,0 +1,197 @@ +import { Platform, StyleSheet, StatusBar as RNStatusBar, Text, TouchableOpacity, View } from 'react-native'; +import React, { useState } from 'react'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { + AerodromeIcon, + ArrowDropdownDownIcon, + BorrowIcon, + DepositIcon, + MoonWellIcon, + MorphoIcon, + PlusIcon, + StakeIcon, + SupplyIcon, +} from '@/assets/icons'; +import { LQDActionCard, LQDBottomSheet, LQDButton, LQDFlatlist, LQDImage, LQDProtocolCard, SearchUI } from '@/components'; +import { actionList, protocolList } from '../discover/dummy'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import useAppActions from '@/store/app/actions'; +import { IActionIconVariant } from '@/components/action-card/types'; +import { IProtocolIconVariant } from '@/components/protocol-card/types'; + +const ActionItem = ({ title = '', label = '', icon = '', action }: IActionItem) => { + const icons = { + aerodrome: , + moonwell: , + morpho: , + stake: , + deposit: , + borrow: , + supply: , + }; + return ( + + {label} + + + {icons[icon]} + {title} + + + + + + + ); +}; + +const NewAction = () => { + const { router, appState } = useSystemFunctions(); + const { searchIsFocused, showSearch } = useAppActions(); + const [selectedProtocal, setSelectedProtocal]: any = useState(protocolList[0]); + const [selectedAction, setSelectedAction]: any = useState(actionList[0]); + const [selectedAsset, setSelectedAsset] = useState(protocolList[2]); + + const [showProtocal, setShowProtocal] = useState(false); + const [showActions, setShowActions] = useState(false); + const [showAssets, setShowAssets] = useState(false); + + const openProtocal = () => { + setShowProtocal((prev) => !prev); + }; + + const openActions = () => { + setShowActions((prev) => !prev); + }; + + const openAssets = () => { + searchIsFocused(false); + showSearch(true); + }; + + if (appState.showSearch) { + return ( + + + + ); + } + + return ( + + Njoku’s Aerodrome wealth builder + + + + + + + + + + + + + ( + setSelectedProtocal(item)} + /> + )} + keyExtractor={(_, index) => index.toString()} + showsHorizontalScrollIndicator={false} + contentContainerStyle={styles.protocalContainerStyle} + /> + + + ( + setSelectedAction(item)} + /> + )} + keyExtractor={(_, index) => index.toString()} + showsHorizontalScrollIndicator={false} + contentContainerStyle={styles.protocalContainerStyle} + /> + + + ); +}; + +export default NewAction; + +const styles = StyleSheet.create({ + container: { + backgroundColor: '#fff', + flex: 1, + paddingTop: 20, + paddingHorizontal: 16, + }, + + itemWrapper: { + gap: 12, + borderWidth: 1, + borderColor: '#F1F5F9', + padding: 20, + borderRadius: 18, + }, + + username: { + fontWeight: '500', + marginBottom: 16, + color: '#64748B', + fontSize: adjustFontSizeForIOS(13, 2), + lineHeight: 18.48, + fontFamily: 'AeonikMedium', + }, + + label: { + fontSize: adjustFontSizeForIOS(13, 2), + color: '#1E293B', + lineHeight: 18.48, + fontFamily: 'AeonikRegular', + marginBottom: 8, + fontWeight: '500', + }, + + actionText: { + fontSize: adjustFontSizeForIOS(13, 2), + color: '#334155', + lineHeight: 18.48, + fontFamily: 'AeonikRegular', + fontWeight: '400', + }, + addButton: { + padding: 8, + }, + actionItem: { + flexDirection: 'row', + alignItems: 'center', + borderWidth: 1, + borderRadius: 16, + borderColor: '#EAEEF4', + paddingHorizontal: 10, + paddingVertical: 5, + }, + protocalContainerStyle: { gap: 20, paddingBottom: 50 }, + searchWrapper: { + flex: 1, + paddingHorizontal: 16, + backgroundColor: '#fff', + paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, + paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, + }, + bottomWrapper: { paddingHorizontal: 20, marginTop: 30 }, + iconFlex: { flexDirection: 'row', gap: 10, flex: 1 }, +}); diff --git a/screens/create-strategy/preview-strategy.tsx b/screens/create-strategy/preview-strategy.tsx new file mode 100644 index 0000000..4995113 --- /dev/null +++ b/screens/create-strategy/preview-strategy.tsx @@ -0,0 +1,136 @@ +import { StyleSheet, Text, View } from 'react-native'; +import React, { useState } from 'react'; +import { LQDButton } from '@/components'; +import FeedStep from '@/components/feed-card/feed-step'; +import { steps } from '../home/dummy'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { IActionIconVariant } from '@/components/action-card/types'; +import Loader from './loader'; + +const RreviewStrategy = () => { + const [loading, setLoading] = useState(false); + if (loading) { + return ; + } + + const openModal = () => { + setLoading((prev) => !prev); + setTimeout(() => { + setLoading(false); + }, 2000); + }; + + return ( + + + + {steps.map((step, index: number) => ( + + ))} + + + + Moonwell - USDC + + Est. APY + 65.45% + + This strategy starts as an ease in for first and second quaterss of 2025 + This strategy starts as an ease in for first and second quaterss of 2025 + This strategy starts as an ease in for first and second quaterss of 2025 + + + + + + + + ); +}; + +export default RreviewStrategy; + +const styles = StyleSheet.create({ + container: { + backgroundColor: '#fff', + flex: 1, + paddingTop: 20, + paddingHorizontal: 16, + }, + feedStep: { + borderColor: '#F1F5F9', + borderWidth: 1, + borderRadius: 10, + overflow: 'hidden', + paddingHorizontal: 12, + paddingVertical: 12, + marginTop: 20, + }, + contentWrapper: { + borderColor: '#F1F5F9', + borderWidth: 1, + borderRadius: 10, + overflow: 'hidden', + paddingHorizontal: 12, + paddingVertical: 12, + marginTop: 20, + gap: 15, + }, + estWrapper: { flexDirection: 'row', gap: 10 }, + title: { + fontSize: adjustFontSizeForIOS(15, 3), + fontFamily: 'AeonikBold', + fontWeight: '500', + color: '#1E293B', + }, + address: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 16.8, + }, + time: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(12, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 15.84, + }, + estimate: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(12, 2), + fontFamily: 'AeonikRegular', + fontWeight: '500', + lineHeight: 15.84, + }, + actionText: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(12, 2), + fontFamily: 'AeonikRegular', + fontWeight: '500', + lineHeight: 15.84, + }, + percentage: { + color: '#4691FE', + fontSize: adjustFontSizeForIOS(14, 3), + fontFamily: 'AeonikRegular', + fontWeight: '500', + lineHeight: 15.84, + }, + description: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(14, 2), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 18.4, + }, +}); diff --git a/screens/create-strategy/types.ts b/screens/create-strategy/types.ts new file mode 100644 index 0000000..74b32a1 --- /dev/null +++ b/screens/create-strategy/types.ts @@ -0,0 +1,21 @@ +type IconVariant = 'moonwell' | 'aerodrome' | 'morpho' | 'deposit' | 'stake' | 'borrow' | 'supply'; + +interface IActionItem { + label?: string; + title?: string; + icon?: IconVariant; + action?: () => void; +} +interface IActions { + action?: () => void; +} +interface IActionsListItem { + id: string; + title: string; + icon: 'deposit' | 'stake' | 'borrow' | 'supply'; +} +interface IActionsRenderItem { + drag?: () => void; + item: IActionsListItem; + isActive: boolean; +} diff --git a/screens/discover/dummy.ts b/screens/discover/dummy.ts index 1f77507..29c4a9b 100644 --- a/screens/discover/dummy.ts +++ b/screens/discover/dummy.ts @@ -2,20 +2,52 @@ const image = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb84 export const protocolList = [ { id: '1', - icon: image, + icon: 'moonwell', title: 'Moonwell', }, { id: '2', - icon: image, + icon: 'aerodrome', title: 'Aerodrome', }, { id: '3', - icon: image, + icon: 'morpho', title: 'Morpho', }, ]; + +export const actionList = [ + { + id: '1', + icon: 'deposit', + title: 'Deposit', + }, + { + id: '2', + icon: 'stake', + title: 'Stake', + }, + { + id: '3', + icon: 'borrow', + title: 'Borrow', + }, +]; + +export const sortList = [ + { + id: '1', + icon: 'deposit', + title: 'Popular', + }, + { + id: '2', + icon: 'stake', + title: 'New', + }, +]; + export const strategyies: Array = [ { id: '1', diff --git a/screens/discover/index.tsx b/screens/discover/index.tsx index c26f1ad..cfdb4c8 100644 --- a/screens/discover/index.tsx +++ b/screens/discover/index.tsx @@ -2,7 +2,7 @@ import { StyleSheet, View, Text, StatusBar as RNStatusBar, Pressable, Platform, import React, { useCallback, useEffect, useRef, useState } from 'react'; import { LQDBottomSheet, LQDButton, LQDFlatlist, LQDImage, LQDInput, LQDProtocolCard, LQDStrategyCard, SearchUI } from '@/components'; import { SearchBar } from 'react-native-screens'; -import { ArrowCircleDownIcon, DiscoverTVLIcon, SearchIcon, DiscoverUSDIcon, DiscoverAerodromeIcon } from '@/assets/icons'; +import { ArrowCircleDownIcon, DiscoverTVLIcon, SearchIcon, DiscoverUSDIcon, AerodromeIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import RecentCard from '@/components/search-ui/popular-asset-card'; import useSystemFunctions from '@/hooks/useSystemFunctions'; @@ -10,6 +10,7 @@ import { protocolList, strategyies } from './dummy'; import { useForm } from 'react-hook-form'; import PercentageSetter from '../liquidity-actions/remove/percentage-setter'; import useAppActions from '@/store/app/actions'; +import { IProtocolIconVariant } from '@/components/protocol-card/types'; const Discover = () => { const { router, poolsState, dispatch, appState } = useSystemFunctions(); @@ -110,7 +111,7 @@ const Discover = () => { - + @@ -162,7 +163,14 @@ const Discover = () => { setSelected(item.id)} />} + renderItem={({ item }) => ( + setSelected(item.id)} + /> + )} keyExtractor={(_, index) => index.toString()} showsHorizontalScrollIndicator={false} contentContainerStyle={styles.protocalContainerStyle} @@ -215,6 +223,6 @@ const styles = StyleSheet.create({ strategyContainerStyle: { gap: 20, paddingBottom: 120, paddingHorizontal: 12 }, protocalContainerStyle: { gap: 20, paddingBottom: 50 }, recentContainerStyle: { gap: 10, paddingBottom: 0, paddingHorizontal: 12 }, - searchModalWrapper: { paddingHorizontal: 12 }, + searchModalWrapper: { paddingHorizontal: 12, paddingBottom: 10 }, discoverTopWrapper: { flexDirection: 'row', alignItems: 'center', marginHorizontal: 16, paddingVertical: 10 }, }); diff --git a/screens/home/dummy.ts b/screens/home/dummy.ts index fb22053..a9e0f08 100644 --- a/screens/home/dummy.ts +++ b/screens/home/dummy.ts @@ -90,3 +90,36 @@ export const feeds: Array = [ ], }, ]; + +export const steps = [ + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, +]; diff --git a/screens/home/index.tsx b/screens/home/index.tsx index 33e048e..d5e4a53 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -10,7 +10,6 @@ import { usePoolActions } from '@/store/pools/actions'; import { useOnMount } from '@/hooks/useOnMount'; import Loader from './loader'; import { feeds } from './dummy'; -const image = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; const Home = () => { const { router, poolsState, smartAccountState, accountState, appState } = useSystemFunctions(); @@ -34,10 +33,12 @@ const Home = () => { return ( <> - + router.navigate('/(create-strategy)/create-strategy')} style={styles.addIcon}> + {globalLoading && } + {!globalLoading && ( =2.3.1": version "5.0.6" - resolved "https://registry.yarnpkg.com/@urql/core/-/core-5.0.6.tgz#0d6624e30084f9137f78dc6c5bb8a599cba7f9dc" + resolved "https://registry.npmjs.org/@urql/core/-/core-5.0.6.tgz" integrity sha512-38rgSDqVNihFDauw1Pm9V7XLWIKuK8V9CKgrUF7/xEKinze8ENKP1ZeBhkG+dxWzJan7CHK+SLl46kAdvZwIlA== dependencies: "@0no-co/graphql.web" "^1.0.5" @@ -2949,7 +2976,7 @@ "@urql/exchange-retry@0.3.0": version "0.3.0" - resolved "https://registry.yarnpkg.com/@urql/exchange-retry/-/exchange-retry-0.3.0.tgz#13252108b5a111aab45f9982f4db18d1a286e423" + resolved "https://registry.npmjs.org/@urql/exchange-retry/-/exchange-retry-0.3.0.tgz" integrity sha512-hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg== dependencies: "@urql/core" ">=2.3.1" @@ -2957,44 +2984,44 @@ "@web3-storage/multipart-parser@^1.0.0": version "1.0.0" - resolved "https://registry.yarnpkg.com/@web3-storage/multipart-parser/-/multipart-parser-1.0.0.tgz#6b69dc2a32a5b207ba43e556c25cc136a56659c4" + resolved "https://registry.npmjs.org/@web3-storage/multipart-parser/-/multipart-parser-1.0.0.tgz" integrity sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw== "@xmldom/xmldom@^0.8.8": version "0.8.10" - resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz#a1337ca426aa61cef9fe15b5b28e340a72f6fa99" + resolved "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz" integrity sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw== "@xmldom/xmldom@~0.7.7": version "0.7.13" - resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.7.13.tgz#ff34942667a4e19a9f4a0996a76814daac364cf3" + resolved "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.13.tgz" integrity sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g== "@zxing/text-encoding@0.9.0": version "0.9.0" - resolved "https://registry.yarnpkg.com/@zxing/text-encoding/-/text-encoding-0.9.0.tgz#fb50ffabc6c7c66a0c96b4c03e3d9be74864b70b" + resolved "https://registry.npmjs.org/@zxing/text-encoding/-/text-encoding-0.9.0.tgz" integrity sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA== abab@^2.0.6: version "2.0.6" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" + resolved "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz" integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== abitype@1.0.6: version "1.0.6" - resolved "https://registry.yarnpkg.com/abitype/-/abitype-1.0.6.tgz#76410903e1d88e34f1362746e2d407513c38565b" + resolved "https://registry.npmjs.org/abitype/-/abitype-1.0.6.tgz" integrity sha512-MMSqYh4+C/aVqI2RQaWqbvI4Kxo5cQV40WQ4QFtDnNzCkqChm8MuENhElmynZlO0qUy/ObkEUaXtKqYnx1Kp3A== abort-controller@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" + resolved "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz" integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== dependencies: event-target-shim "^5.0.0" accepts@^1.3.7, accepts@^1.3.8, accepts@~1.3.5, accepts@~1.3.7: version "1.3.8" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" + resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz" integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== dependencies: mime-types "~2.1.34" @@ -3002,7 +3029,7 @@ accepts@^1.3.7, accepts@^1.3.8, accepts@~1.3.5, accepts@~1.3.7: acorn-globals@^7.0.0: version "7.0.1" - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-7.0.1.tgz#0dbf05c44fa7c94332914c02066d5beff62c40c3" + resolved "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz" integrity sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q== dependencies: acorn "^8.1.0" @@ -3010,31 +3037,31 @@ acorn-globals@^7.0.0: acorn-walk@^8.0.2: version "8.3.4" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.4.tgz#794dd169c3977edf4ba4ea47583587c5866236b7" + resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz" integrity sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g== dependencies: acorn "^8.11.0" acorn@^8.1.0, acorn@^8.11.0, acorn@^8.8.1, acorn@^8.8.2: version "8.12.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248" + resolved "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz" integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== aes-js@3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/aes-js/-/aes-js-3.0.0.tgz#e21df10ad6c2053295bcbb8dab40b09dbea87e4d" + resolved "https://registry.npmjs.org/aes-js/-/aes-js-3.0.0.tgz" integrity sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw== agent-base@6: version "6.0.2" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" + resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz" integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== dependencies: debug "4" aggregate-error@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + resolved "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz" integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== dependencies: clean-stack "^2.0.0" @@ -3042,21 +3069,21 @@ aggregate-error@^3.0.0: ajv-formats@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520" + resolved "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz" integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== dependencies: ajv "^8.0.0" ajv-keywords@^5.1.0: version "5.1.0" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16" + resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz" integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== dependencies: fast-deep-equal "^3.1.3" ajv@8.11.0: version "8.11.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.11.0.tgz#977e91dd96ca669f54a11e23e378e33b884a565f" + resolved "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz" integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg== dependencies: fast-deep-equal "^3.1.1" @@ -3066,7 +3093,7 @@ ajv@8.11.0: ajv@^8.0.0, ajv@^8.11.0, ajv@^8.9.0: version "8.17.1" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6" + resolved "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz" integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g== dependencies: fast-deep-equal "^3.1.3" @@ -3076,24 +3103,24 @@ ajv@^8.0.0, ajv@^8.11.0, ajv@^8.9.0: anser@^1.4.9: version "1.4.10" - resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.10.tgz#befa3eddf282684bd03b63dcda3927aef8c2e35b" + resolved "https://registry.npmjs.org/anser/-/anser-1.4.10.tgz" integrity sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww== ansi-escapes@^4.2.1, ansi-escapes@^4.3.0, ansi-escapes@^4.3.2: version "4.3.2" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz" integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== dependencies: type-fest "^0.21.3" ansi-escapes@^6.0.0: version "6.2.1" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-6.2.1.tgz#76c54ce9b081dad39acec4b5d53377913825fb0f" + resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.1.tgz" integrity sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig== ansi-fragments@^0.2.1: version "0.2.1" - resolved "https://registry.yarnpkg.com/ansi-fragments/-/ansi-fragments-0.2.1.tgz#24409c56c4cc37817c3d7caa99d8969e2de5a05e" + resolved "https://registry.npmjs.org/ansi-fragments/-/ansi-fragments-0.2.1.tgz" integrity sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w== dependencies: colorette "^1.0.7" @@ -3102,56 +3129,56 @@ ansi-fragments@^0.2.1: ansi-regex@^4.0.0, ansi-regex@^4.1.0: version "4.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz" integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== ansi-regex@^5.0.0, ansi-regex@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== ansi-regex@^6.0.1: version "6.1.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.1.0.tgz#95ec409c69619d6cb1b8b34f14b660ef28ebd654" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz" integrity sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA== ansi-styles@^3.2.0, ansi-styles@^3.2.1: version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== dependencies: color-convert "^1.9.0" ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: color-convert "^2.0.1" ansi-styles@^5.0.0: version "5.2.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz" integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== ansi-styles@^6.1.0: version "6.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz" integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== any-base@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/any-base/-/any-base-1.1.0.tgz#ae101a62bc08a597b4c9ab5b7089d456630549fe" + resolved "https://registry.npmjs.org/any-base/-/any-base-1.1.0.tgz" integrity sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg== any-promise@^1.0.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + resolved "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz" integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== anymatch@^3.0.3: version "3.1.3" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz" integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== dependencies: normalize-path "^3.0.0" @@ -3159,34 +3186,34 @@ anymatch@^3.0.3: appdirsjs@^1.2.4: version "1.2.7" - resolved "https://registry.yarnpkg.com/appdirsjs/-/appdirsjs-1.2.7.tgz#50b4b7948a26ba6090d4aede2ae2dc2b051be3b3" + resolved "https://registry.npmjs.org/appdirsjs/-/appdirsjs-1.2.7.tgz" integrity sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw== application-config-path@^0.1.0: version "0.1.1" - resolved "https://registry.yarnpkg.com/application-config-path/-/application-config-path-0.1.1.tgz#8b5ac64ff6afdd9bd70ce69f6f64b6998f5f756e" + resolved "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.1.tgz" integrity sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw== arg@5.0.2: version "5.0.2" - resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" + resolved "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz" integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== argparse@^1.0.7: version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== dependencies: sprintf-js "~1.0.2" argparse@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== array-buffer-byte-length@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz#1e5583ec16763540a27ae52eed99ff899223568f" + resolved "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz" integrity sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg== dependencies: call-bind "^1.0.5" @@ -3194,12 +3221,12 @@ array-buffer-byte-length@^1.0.1: array-union@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== arraybuffer.prototype.slice@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz#097972f4255e41bc3425e37dc3f6421cf9aefde6" + resolved "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz" integrity sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A== dependencies: array-buffer-byte-length "^1.0.1" @@ -3213,51 +3240,51 @@ arraybuffer.prototype.slice@^1.0.3: asap@~2.0.3, asap@~2.0.6: version "2.0.6" - resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + resolved "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz" integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== ast-types@0.15.2: version "0.15.2" - resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.15.2.tgz#39ae4809393c4b16df751ee563411423e85fb49d" + resolved "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz" integrity sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg== dependencies: tslib "^2.0.1" astral-regex@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" + resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz" integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== async-limiter@~1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" + resolved "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz" integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== asynckit@^0.4.0: version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== at-least-node@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" + resolved "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz" integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== available-typed-arrays@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846" + resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz" integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ== dependencies: possible-typed-array-names "^1.0.0" babel-core@^7.0.0-bridge.0: version "7.0.0-bridge.0" - resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz#95a492ddd90f9b4e9a4a1da14eb335b87b634ece" + resolved "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz" integrity sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg== babel-jest@^29.2.1, babel-jest@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.7.0.tgz#f4369919225b684c56085998ac63dbd05be020d5" + resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz" integrity sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg== dependencies: "@jest/transform" "^29.7.0" @@ -3270,7 +3297,7 @@ babel-jest@^29.2.1, babel-jest@^29.7.0: babel-plugin-istanbul@^6.1.1: version "6.1.1" - resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" + resolved "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz" integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -3281,7 +3308,7 @@ babel-plugin-istanbul@^6.1.1: babel-plugin-jest-hoist@^29.6.3: version "29.6.3" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz#aadbe943464182a8922c3c927c3067ff40d24626" + resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz" integrity sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg== dependencies: "@babel/template" "^7.3.3" @@ -3291,7 +3318,7 @@ babel-plugin-jest-hoist@^29.6.3: babel-plugin-polyfill-corejs2@^0.4.10: version "0.4.11" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz#30320dfe3ffe1a336c15afdcdafd6fd615b25e33" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz" integrity sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q== dependencies: "@babel/compat-data" "^7.22.6" @@ -3300,7 +3327,7 @@ babel-plugin-polyfill-corejs2@^0.4.10: babel-plugin-polyfill-corejs3@^0.10.6: version "0.10.6" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz#2deda57caef50f59c525aeb4964d3b2f867710c7" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz" integrity sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA== dependencies: "@babel/helper-define-polyfill-provider" "^0.6.2" @@ -3308,14 +3335,14 @@ babel-plugin-polyfill-corejs3@^0.10.6: babel-plugin-polyfill-regenerator@^0.6.1: version "0.6.2" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz#addc47e240edd1da1058ebda03021f382bba785e" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz" integrity sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg== dependencies: "@babel/helper-define-polyfill-provider" "^0.6.2" babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517: version "0.0.0-experimental-592953e-20240517" - resolved "https://registry.yarnpkg.com/babel-plugin-react-compiler/-/babel-plugin-react-compiler-0.0.0-experimental-592953e-20240517.tgz#e800fa1550d03573cd5637218dc711f12f642249" + resolved "https://registry.npmjs.org/babel-plugin-react-compiler/-/babel-plugin-react-compiler-0.0.0-experimental-592953e-20240517.tgz" integrity sha512-OjG1SVaeQZaJrqkMFJatg8W/MTow8Ak5rx2SI0ETQBO1XvOk/XZGMbltNCPdFJLKghBYoBjC+Y3Ap/Xr7B01mA== dependencies: "@babel/generator" "7.2.0" @@ -3328,19 +3355,19 @@ babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517: babel-plugin-react-native-web@~0.19.10: version "0.19.12" - resolved "https://registry.yarnpkg.com/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.19.12.tgz#90481ee72b515020b06cb644abe1e8a16590bd86" + resolved "https://registry.npmjs.org/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.19.12.tgz" integrity sha512-eYZ4+P6jNcB37lObWIg0pUbi7+3PKoU1Oie2j0C8UF3cXyXoR74tO2NBjI/FORb2LJyItJZEAmjU5pSaJYEL1w== babel-plugin-transform-flow-enums@^0.0.2: version "0.0.2" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-enums/-/babel-plugin-transform-flow-enums-0.0.2.tgz#d1d0cc9bdc799c850ca110d0ddc9f21b9ec3ef25" + resolved "https://registry.npmjs.org/babel-plugin-transform-flow-enums/-/babel-plugin-transform-flow-enums-0.0.2.tgz" integrity sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ== dependencies: "@babel/plugin-syntax-flow" "^7.12.1" babel-preset-current-node-syntax@^1.0.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz#9a929eafece419612ef4ae4f60b1862ebad8ef30" + resolved "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz" integrity sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw== dependencies: "@babel/plugin-syntax-async-generators" "^7.8.4" @@ -3361,7 +3388,7 @@ babel-preset-current-node-syntax@^1.0.0: babel-preset-expo@~11.0.15: version "11.0.15" - resolved "https://registry.yarnpkg.com/babel-preset-expo/-/babel-preset-expo-11.0.15.tgz#f29b1ac1f59f8739f63c80515906186586c24d3c" + resolved "https://registry.npmjs.org/babel-preset-expo/-/babel-preset-expo-11.0.15.tgz" integrity sha512-rgiMTYwqIPULaO7iZdqyL7aAff9QLOX6OWUtLZBlOrOTreGY1yHah/5+l8MvI6NVc/8Zj5LY4Y5uMSnJIuzTLw== dependencies: "@babel/plugin-proposal-decorators" "^7.12.9" @@ -3377,7 +3404,7 @@ babel-preset-expo@~11.0.15: babel-preset-jest@^29.6.3: version "29.6.3" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz#fa05fa510e7d493896d7b0dd2033601c840f171c" + resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz" integrity sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA== dependencies: babel-plugin-jest-hoist "^29.6.3" @@ -3385,39 +3412,39 @@ babel-preset-jest@^29.6.3: balanced-match@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== base-x@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/base-x/-/base-x-4.0.0.tgz#d0e3b7753450c73f8ad2389b5c018a4af7b2224a" + resolved "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz" integrity sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw== base64-js@^1.2.3, base64-js@^1.3.0, base64-js@^1.3.1, base64-js@^1.5.1: version "1.5.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== bech32@1.1.4: version "1.1.4" - resolved "https://registry.yarnpkg.com/bech32/-/bech32-1.1.4.tgz#e38c9f37bf179b8eb16ae3a772b40c356d4832e9" + resolved "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz" integrity sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ== better-opn@~3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/better-opn/-/better-opn-3.0.2.tgz#f96f35deaaf8f34144a4102651babcf00d1d8817" + resolved "https://registry.npmjs.org/better-opn/-/better-opn-3.0.2.tgz" integrity sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ== dependencies: open "^8.0.4" big-integer@1.6.x: version "1.6.52" - resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.52.tgz#60a887f3047614a8e1bffe5d7173490a97dc8c85" + resolved "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz" integrity sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg== bl@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + resolved "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz" integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== dependencies: buffer "^5.5.0" @@ -3426,55 +3453,55 @@ bl@^4.1.0: bmp-js@^0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/bmp-js/-/bmp-js-0.1.0.tgz#e05a63f796a6c1ff25f4771ec7adadc148c07233" + resolved "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz" integrity sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw== bn.js@^4.11.9: version "4.12.0" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz" integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== bn.js@^5.2.1: version "5.2.1" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz" integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== boolbase@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz" integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== bplist-creator@0.0.7: version "0.0.7" - resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.0.7.tgz#37df1536092824b87c42f957b01344117372ae45" + resolved "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.7.tgz" integrity sha512-xp/tcaV3T5PCiaY04mXga7o/TE+t95gqeLmADeBI1CvZtdWTbgBt3uLpvh4UWtenKeBhCV6oVxGk38yZr2uYEA== dependencies: stream-buffers "~2.2.0" bplist-creator@0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.1.0.tgz#018a2d1b587f769e379ef5519103730f8963ba1e" + resolved "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.1.0.tgz" integrity sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg== dependencies: stream-buffers "2.2.x" bplist-parser@0.3.1: version "0.3.1" - resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.3.1.tgz#e1c90b2ca2a9f9474cc72f6862bbf3fee8341fd1" + resolved "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.1.tgz" integrity sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA== dependencies: big-integer "1.6.x" bplist-parser@^0.3.1: version "0.3.2" - resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.3.2.tgz#3ac79d67ec52c4c107893e0237eb787cbacbced7" + resolved "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.2.tgz" integrity sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ== dependencies: big-integer "1.6.x" brace-expansion@^1.1.7: version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== dependencies: balanced-match "^1.0.0" @@ -3482,26 +3509,26 @@ brace-expansion@^1.1.7: brace-expansion@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz" integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== dependencies: balanced-match "^1.0.0" braces@^3.0.3: version "3.0.3" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz" integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== dependencies: fill-range "^7.1.1" brorand@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz" integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== browserslist@^4.23.3, browserslist@^4.24.0: version "4.24.0" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.0.tgz#a1325fe4bc80b64fda169629fc01b3d6cecd38d4" + resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.24.0.tgz" integrity sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A== dependencies: caniuse-lite "^1.0.30001663" @@ -3511,26 +3538,26 @@ browserslist@^4.23.3, browserslist@^4.24.0: bs58@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/bs58/-/bs58-5.0.0.tgz#865575b4d13c09ea2a84622df6c8cbeb54ffc279" + resolved "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz" integrity sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ== dependencies: base-x "^4.0.0" bser@2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" + resolved "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz" integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== dependencies: node-int64 "^0.4.0" buffer-alloc-unsafe@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" + resolved "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz" integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== buffer-alloc@^1.1.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" + resolved "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz" integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== dependencies: buffer-alloc-unsafe "^1.1.0" @@ -3538,22 +3565,22 @@ buffer-alloc@^1.1.0: buffer-equal@0.0.1: version "0.0.1" - resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-0.0.1.tgz#91bc74b11ea405bc916bc6aa908faafa5b4aac4b" + resolved "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz" integrity sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA== buffer-fill@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" + resolved "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz" integrity sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ== buffer-from@^1.0.0: version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz" integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== buffer@^5.2.0, buffer@^5.4.3, buffer@^5.5.0: version "5.7.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz" integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== dependencies: base64-js "^1.3.1" @@ -3561,17 +3588,17 @@ buffer@^5.2.0, buffer@^5.4.3, buffer@^5.5.0: builtins@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" + resolved "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz" integrity sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ== bytes@3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + resolved "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz" integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== cacache@^18.0.2: version "18.0.4" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-18.0.4.tgz#4601d7578dadb59c66044e157d02a3314682d6a5" + resolved "https://registry.npmjs.org/cacache/-/cacache-18.0.4.tgz" integrity sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ== dependencies: "@npmcli/fs" "^3.1.0" @@ -3589,7 +3616,7 @@ cacache@^18.0.2: call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz" integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== dependencies: es-define-property "^1.0.0" @@ -3600,53 +3627,53 @@ call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: caller-callsite@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" + resolved "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz" integrity sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ== dependencies: callsites "^2.0.0" caller-path@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" + resolved "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz" integrity sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A== dependencies: caller-callsite "^2.0.0" callsites@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" + resolved "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz" integrity sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ== callsites@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== camelcase@^5.0.0, camelcase@^5.3.1: version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== camelcase@^6.2.0: version "6.3.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz" integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== caniuse-lite@^1.0.30001663: version "1.0.30001668" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001668.tgz#98e214455329f54bf7a4d70b49c9794f0fbedbed" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001668.tgz" integrity sha512-nWLrdxqCdblixUO+27JtGJJE/txpJlyUy5YN1u53wLZkP0emYCo5zgS6QYft7VUYR42LGgi/S5hdLZTrnyIddw== centra@^2.7.0: version "2.7.0" - resolved "https://registry.yarnpkg.com/centra/-/centra-2.7.0.tgz#4c8312a58436e8a718302011561db7e6a2b0ec18" + resolved "https://registry.npmjs.org/centra/-/centra-2.7.0.tgz" integrity sha512-PbFMgMSrmgx6uxCdm57RUos9Tc3fclMvhLSATYN39XsDV29B89zZ3KA89jmY0vwSGazyU+uerqwa6t+KaodPcg== dependencies: follow-redirects "^1.15.6" chalk@4, chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== dependencies: ansi-styles "^4.1.0" @@ -3654,7 +3681,7 @@ chalk@4, chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: chalk@^2.0.1, chalk@^2.4.2: version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== dependencies: ansi-styles "^3.2.1" @@ -3663,7 +3690,7 @@ chalk@^2.0.1, chalk@^2.4.2: chalk@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" + resolved "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz" integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== dependencies: ansi-styles "^4.1.0" @@ -3671,27 +3698,27 @@ chalk@^3.0.0: char-regex@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" + resolved "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz" integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== char-regex@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-2.0.1.tgz#6dafdb25f9d3349914079f010ba8d0e6ff9cd01e" + resolved "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz" integrity sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw== charenc@0.0.2, charenc@~0.0.1: version "0.0.2" - resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" + resolved "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz" integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== chownr@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" + resolved "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz" integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== chrome-launcher@^0.15.2: version "0.15.2" - resolved "https://registry.yarnpkg.com/chrome-launcher/-/chrome-launcher-0.15.2.tgz#4e6404e32200095fdce7f6a1e1004f9bd36fa5da" + resolved "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.2.tgz" integrity sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ== dependencies: "@types/node" "*" @@ -3701,46 +3728,46 @@ chrome-launcher@^0.15.2: ci-info@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" + resolved "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz" integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== ci-info@^3.2.0, ci-info@^3.3.0: version "3.9.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" + resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz" integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== cjs-module-lexer@^1.0.0: version "1.4.1" - resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz#707413784dbb3a72aa11c2f2b042a0bef4004170" + resolved "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz" integrity sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA== clean-stack@^2.0.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + resolved "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz" integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== cli-cursor@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" + resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz" integrity sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw== dependencies: restore-cursor "^2.0.0" cli-cursor@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz" integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== dependencies: restore-cursor "^3.1.0" cli-spinners@^2.0.0, cli-spinners@^2.5.0: version "2.9.2" - resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz#1773a8f4b9c4d6ac31563df53b3fc1d79462fe41" + resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz" integrity sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg== cliui@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" + resolved "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz" integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== dependencies: string-width "^4.2.0" @@ -3749,7 +3776,7 @@ cliui@^6.0.0: cliui@^8.0.1: version "8.0.1" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" + resolved "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz" integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== dependencies: string-width "^4.2.0" @@ -3758,7 +3785,7 @@ cliui@^8.0.1: clone-deep@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + resolved "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz" integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== dependencies: is-plain-object "^2.0.4" @@ -3767,51 +3794,51 @@ clone-deep@^4.0.1: clone@^1.0.2: version "1.0.4" - resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + resolved "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz" integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== clone@^2.1.2: version "2.1.2" - resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" + resolved "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz" integrity sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w== co@^4.6.0: version "4.6.0" - resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz" integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== collect-v8-coverage@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz#c0b29bcd33bcd0779a1344c2136051e6afd3d9e9" + resolved "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz" integrity sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q== color-convert@^1.9.0: version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== dependencies: color-name "1.1.3" color-convert@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== dependencies: color-name "~1.1.4" color-name@1.1.3: version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== color-name@^1.0.0, color-name@~1.1.4: version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== color-string@^1.9.0: version "1.9.1" - resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4" + resolved "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz" integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg== dependencies: color-name "^1.0.0" @@ -3819,7 +3846,7 @@ color-string@^1.9.0: color@^4.2.3: version "4.2.3" - resolved "https://registry.yarnpkg.com/color/-/color-4.2.3.tgz#d781ecb5e57224ee43ea9627560107c0e0c6463a" + resolved "https://registry.npmjs.org/color/-/color-4.2.3.tgz" integrity sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A== dependencies: color-convert "^2.0.1" @@ -3827,61 +3854,61 @@ color@^4.2.3: colorette@^1.0.7: version "1.4.0" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40" + resolved "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz" integrity sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g== combined-stream@^1.0.8: version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz" integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== dependencies: delayed-stream "~1.0.0" command-exists@^1.2.4, command-exists@^1.2.8: version "1.2.9" - resolved "https://registry.yarnpkg.com/command-exists/-/command-exists-1.2.9.tgz#c50725af3808c8ab0260fd60b01fbfa25b954f69" + resolved "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz" integrity sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w== commander@^2.20.0: version "2.20.3" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== commander@^4.0.0: version "4.1.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" + resolved "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz" integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== commander@^7.2.0: version "7.2.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" + resolved "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz" integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== commander@^9.4.1: version "9.5.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz#bc08d1eb5cedf7ccb797a96199d41c7bc3e60d30" + resolved "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz" integrity sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ== commondir@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + resolved "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz" integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== component-type@^1.2.1: version "1.2.2" - resolved "https://registry.yarnpkg.com/component-type/-/component-type-1.2.2.tgz#4458ecc0c1871efc6288bfaff0cbdab08141d079" + resolved "https://registry.npmjs.org/component-type/-/component-type-1.2.2.tgz" integrity sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA== compressible@~2.0.16: version "2.0.18" - resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" + resolved "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz" integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== dependencies: mime-db ">= 1.43.0 < 2" compression@^1.7.1: version "1.7.4" - resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" + resolved "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz" integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== dependencies: accepts "~1.3.5" @@ -3894,12 +3921,12 @@ compression@^1.7.1: concat-map@0.0.1: version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== connect@^3.6.5, connect@^3.7.0: version "3.7.0" - resolved "https://registry.yarnpkg.com/connect/-/connect-3.7.0.tgz#5d49348910caa5e07a01800b030d0c35f20484f8" + resolved "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz" integrity sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ== dependencies: debug "2.6.9" @@ -3909,34 +3936,34 @@ connect@^3.6.5, connect@^3.7.0: convert-source-map@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz" integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== cookie-signature@^1.1.0: version "1.2.1" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.2.1.tgz#790dea2cce64638c7ae04d9fabed193bd7ccf3b4" + resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.1.tgz" integrity sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw== cookie@^0.6.0: version "0.6.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051" + resolved "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz" integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== core-js-compat@^3.38.0: version "3.38.1" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.38.1.tgz#2bc7a298746ca5a7bcb9c164bcb120f2ebc09a09" + resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.38.1.tgz" integrity sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw== dependencies: browserslist "^4.23.3" core-util-is@~1.0.0: version "1.0.3" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz" integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== cosmiconfig@^5.0.5, cosmiconfig@^5.1.0: version "5.2.1" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" + resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz" integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== dependencies: import-fresh "^2.0.0" @@ -3946,7 +3973,7 @@ cosmiconfig@^5.0.5, cosmiconfig@^5.1.0: create-jest@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/create-jest/-/create-jest-29.7.0.tgz#a355c5b3cb1e1af02ba177fe7afd7feee49a5320" + resolved "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz" integrity sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q== dependencies: "@jest/types" "^29.6.3" @@ -3959,14 +3986,14 @@ create-jest@^29.7.0: cross-fetch@^3.1.5: version "3.1.8" - resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.8.tgz#0327eba65fd68a7d119f8fb2bf9334a1a7956f82" + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz" integrity sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg== dependencies: node-fetch "^2.6.12" cross-spawn@^6.0.0: version "6.0.5" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz" integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== dependencies: nice-try "^1.0.4" @@ -3977,7 +4004,7 @@ cross-spawn@^6.0.0: cross-spawn@^7.0.0, cross-spawn@^7.0.3: version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== dependencies: path-key "^3.1.0" @@ -3986,29 +4013,29 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.3: crypt@0.0.2, crypt@~0.0.1: version "0.0.2" - resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" + resolved "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz" integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow== crypto-random-string@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" + resolved "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz" integrity sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg== crypto-random-string@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" + resolved "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz" integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== css-in-js-utils@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/css-in-js-utils/-/css-in-js-utils-3.1.0.tgz#640ae6a33646d401fc720c54fc61c42cd76ae2bb" + resolved "https://registry.npmjs.org/css-in-js-utils/-/css-in-js-utils-3.1.0.tgz" integrity sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A== dependencies: hyphenate-style-name "^1.0.3" css-select@^5.1.0: version "5.1.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6" + resolved "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz" integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg== dependencies: boolbase "^1.0.0" @@ -4019,7 +4046,7 @@ css-select@^5.1.0: css-tree@^1.1.3: version "1.1.3" - resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" + resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz" integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== dependencies: mdn-data "2.0.14" @@ -4027,68 +4054,68 @@ css-tree@^1.1.3: css-what@^6.1.0: version "6.1.0" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" + resolved "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz" integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== cssom@^0.5.0: version "0.5.0" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.5.0.tgz#d254fa92cd8b6fbd83811b9fbaed34663cc17c36" + resolved "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz" integrity sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw== cssom@~0.3.6: version "0.3.8" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" + resolved "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz" integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== cssstyle@^2.3.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" + resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz" integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== dependencies: cssom "~0.3.6" csstype@^3.0.2: version "3.1.3" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" + resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz" integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== "d3-array@2 - 3", "d3-array@2.10.0 - 3", d3-array@^3.1.6: version "3.2.4" - resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-3.2.4.tgz#15fec33b237f97ac5d7c986dc77da273a8ed0bb5" + resolved "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz" integrity sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg== dependencies: internmap "1 - 2" "d3-color@1 - 3": version "3.1.0" - resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-3.1.0.tgz#395b2833dfac71507f12ac2f7af23bf819de24e2" + resolved "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz" integrity sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA== d3-ease@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-ease/-/d3-ease-3.0.1.tgz#9658ac38a2140d59d346160f1f6c30fda0bd12f4" + resolved "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz" integrity sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w== "d3-format@1 - 3": version "3.1.0" - resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-3.1.0.tgz#9260e23a28ea5cb109e93b21a06e24e2ebd55641" + resolved "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz" integrity sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA== "d3-interpolate@1.2.0 - 3", d3-interpolate@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-3.0.1.tgz#3c47aa5b32c5b3dfb56ef3fd4342078a632b400d" + resolved "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz" integrity sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g== dependencies: d3-color "1 - 3" d3-path@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-3.1.0.tgz#22df939032fb5a71ae8b1800d61ddb7851c42526" + resolved "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz" integrity sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ== d3-scale@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-4.0.2.tgz#82b38e8e8ff7080764f8dcec77bd4be393689396" + resolved "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz" integrity sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ== dependencies: d3-array "2.10.0 - 3" @@ -4099,48 +4126,48 @@ d3-scale@^4.0.2: d3-shape@^3.1.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-3.2.0.tgz#a1a839cbd9ba45f28674c69d7f855bcf91dfc6a5" + resolved "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz" integrity sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA== dependencies: d3-path "^3.1.0" "d3-time-format@2 - 4": version "4.1.0" - resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-4.1.0.tgz#7ab5257a5041d11ecb4fe70a5c7d16a195bb408a" + resolved "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz" integrity sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg== dependencies: d3-time "1 - 3" "d3-time@1 - 3", "d3-time@2.1.1 - 3", d3-time@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-3.1.0.tgz#9310db56e992e3c0175e1ef385e545e48a9bb5c7" + resolved "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz" integrity sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q== dependencies: d3-array "2 - 3" d3-timer@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-3.0.1.tgz#6284d2a2708285b1abb7e201eda4380af35e63b0" + resolved "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz" integrity sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA== d3-voronoi@^1.1.4: version "1.1.4" - resolved "https://registry.yarnpkg.com/d3-voronoi/-/d3-voronoi-1.1.4.tgz#dd3c78d7653d2bb359284ae478645d95944c8297" + resolved "https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.4.tgz" integrity sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg== dag-map@~1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/dag-map/-/dag-map-1.0.2.tgz#e8379f041000ed561fc515475c1ed2c85eece8d7" + resolved "https://registry.npmjs.org/dag-map/-/dag-map-1.0.2.tgz" integrity sha512-+LSAiGFwQ9dRnRdOeaj7g47ZFJcOUPukAP8J3A3fuZ1g9Y44BG+P1sgApjLXTQPOzC4+7S9Wr8kXsfpINM4jpw== data-uri-to-buffer@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz#594b8973938c5bc2c33046535785341abc4f3636" + resolved "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz" integrity sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og== data-urls@^3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-3.0.2.tgz#9cf24a477ae22bcef5cd5f6f0bfbc1d2d3be9143" + resolved "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz" integrity sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ== dependencies: abab "^2.0.6" @@ -4149,7 +4176,7 @@ data-urls@^3.0.2: data-view-buffer@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.1.tgz#8ea6326efec17a2e42620696e671d7d5a8bc66b2" + resolved "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz" integrity sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA== dependencies: call-bind "^1.0.6" @@ -4158,7 +4185,7 @@ data-view-buffer@^1.0.1: data-view-byte-length@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz#90721ca95ff280677eb793749fce1011347669e2" + resolved "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz" integrity sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ== dependencies: call-bind "^1.0.7" @@ -4167,7 +4194,7 @@ data-view-byte-length@^1.0.1: data-view-byte-offset@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz#5e0bbfb4828ed2d1b9b400cd8a7d119bca0ff18a" + resolved "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz" integrity sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA== dependencies: call-bind "^1.0.6" @@ -4176,63 +4203,68 @@ data-view-byte-offset@^1.0.0: dayjs@^1.8.15: version "1.11.13" - resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.13.tgz#92430b0139055c3ebb60150aa13e860a4b5a366c" + resolved "https://registry.npmjs.org/dayjs/-/dayjs-1.11.13.tgz" integrity sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg== debug@2.6.9, debug@^2.2.0, debug@^2.6.9: version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: version "4.3.7" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz" integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== dependencies: ms "^2.1.3" debug@^3.1.0: version "3.2.7" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== dependencies: ms "^2.1.1" decamelize@^1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== decimal.js@^10.4.2: version "10.4.3" - resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.3.tgz#1044092884d245d1b7f65725fa4ad4c6f781cc23" + resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz" integrity sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA== decode-uri-component@^0.2.2: version "0.2.2" - resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" + resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz" integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== +dedent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.6.0.tgz#0e6da8f0ce52838ef5cec5c8f9396b0c1b64a3cb" + integrity sha512-cSfRWjXJtZQeRuZGVvDrJroCR5V2UvBNUMHsPCdNYzuAG8b9V8aAy3KUcdQrGQPXs17Y+ojbPh1aOCplg9YR9g== + dedent@^1.0.0: version "1.5.3" - resolved "https://registry.yarnpkg.com/dedent/-/dedent-1.5.3.tgz#99aee19eb9bae55a67327717b6e848d0bf777e5a" + resolved "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz" integrity sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ== deep-extend@^0.6.0: version "0.6.0" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz" integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== deepmerge@^4.2.2, deepmerge@^4.3.0: version "4.3.1" - resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" + resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz" integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== default-gateway@^4.2.0: version "4.2.0" - resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-4.2.0.tgz#167104c7500c2115f6dd69b0a536bb8ed720552b" + resolved "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz" integrity sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA== dependencies: execa "^1.0.0" @@ -4240,14 +4272,14 @@ default-gateway@^4.2.0: defaults@^1.0.3: version "1.0.4" - resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" + resolved "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz" integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== dependencies: clone "^1.0.2" define-data-property@^1.0.1, define-data-property@^1.1.4: version "1.1.4" - resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" + resolved "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz" integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== dependencies: es-define-property "^1.0.0" @@ -4256,12 +4288,12 @@ define-data-property@^1.0.1, define-data-property@^1.1.4: define-lazy-prop@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" + resolved "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz" integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== define-properties@^1.2.0, define-properties@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" + resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz" integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== dependencies: define-data-property "^1.0.1" @@ -4270,7 +4302,7 @@ define-properties@^1.2.0, define-properties@^1.2.1: del@^6.0.0: version "6.1.1" - resolved "https://registry.yarnpkg.com/del/-/del-6.1.1.tgz#3b70314f1ec0aa325c6b14eb36b95786671edb7a" + resolved "https://registry.npmjs.org/del/-/del-6.1.1.tgz" integrity sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg== dependencies: globby "^11.0.1" @@ -4284,66 +4316,66 @@ del@^6.0.0: delaunator@^4.0.0: version "4.0.1" - resolved "https://registry.yarnpkg.com/delaunator/-/delaunator-4.0.1.tgz#3d779687f57919a7a418f8ab947d3bddb6846957" + resolved "https://registry.npmjs.org/delaunator/-/delaunator-4.0.1.tgz" integrity sha512-WNPWi1IRKZfCt/qIDMfERkDp93+iZEmOxN2yy4Jg+Xhv8SLk2UTqqbe1sfiipn0and9QrE914/ihdx82Y/Giag== delaunay-find@0.0.6: version "0.0.6" - resolved "https://registry.yarnpkg.com/delaunay-find/-/delaunay-find-0.0.6.tgz#2ed017a79410013717fa7d9422e082c2502d4ae3" + resolved "https://registry.npmjs.org/delaunay-find/-/delaunay-find-0.0.6.tgz" integrity sha512-1+almjfrnR7ZamBk0q3Nhg6lqSe6Le4vL0WJDSMx4IDbQwTpUTXPjxC00lqLBT8MYsJpPCbI16sIkw9cPsbi7Q== dependencies: delaunator "^4.0.0" delayed-stream@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== denodeify@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/denodeify/-/denodeify-1.2.1.tgz#3a36287f5034e699e7577901052c2e6c94251631" + resolved "https://registry.npmjs.org/denodeify/-/denodeify-1.2.1.tgz" integrity sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg== depd@2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + resolved "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz" integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== destroy@1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" + resolved "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz" integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== detect-libc@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz" integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg== detect-newline@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" + resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz" integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== diff-sequences@^29.6.3: version "29.6.3" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.6.3.tgz#4deaf894d11407c51efc8418012f9e70b84ea921" + resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz" integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== dijkstrajs@^1.0.1: version "1.0.3" - resolved "https://registry.yarnpkg.com/dijkstrajs/-/dijkstrajs-1.0.3.tgz#4c8dbdea1f0f6478bff94d9c49c784d623e4fc23" + resolved "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.3.tgz" integrity sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA== dir-glob@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== dependencies: path-type "^4.0.0" dom-serializer@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" + resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz" integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== dependencies: domelementtype "^2.3.0" @@ -4352,31 +4384,31 @@ dom-serializer@^2.0.0: dom-walk@^0.1.0: version "0.1.2" - resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84" + resolved "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz" integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w== domelementtype@^2.3.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz" integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== domexception@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/domexception/-/domexception-4.0.0.tgz#4ad1be56ccadc86fc76d033353999a8037d03673" + resolved "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz" integrity sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw== dependencies: webidl-conversions "^7.0.0" domhandler@^5.0.2, domhandler@^5.0.3: version "5.0.3" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" + resolved "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz" integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== dependencies: domelementtype "^2.3.0" domutils@^3.0.1: version "3.1.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e" + resolved "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz" integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA== dependencies: dom-serializer "^2.0.0" @@ -4385,34 +4417,34 @@ domutils@^3.0.1: dotenv-expand@~11.0.6: version "11.0.6" - resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-11.0.6.tgz#f2c840fd924d7c77a94eff98f153331d876882d3" + resolved "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-11.0.6.tgz" integrity sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g== dependencies: dotenv "^16.4.4" dotenv@^16.4.4, dotenv@~16.4.5: version "16.4.5" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz" integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg== eastasianwidth@^0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" + resolved "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz" integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== ee-first@1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== electron-to-chromium@^1.5.28: version "1.5.37" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.37.tgz#1660fb87d2bc82a3f8a652ef78eed17cc0d3ef4f" + resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.37.tgz" integrity sha512-u7000ZB/X0K78TaQqXZ5ktoR7J79B9US7IkE4zyvcILYwOGY2Tx9GRPYstn7HmuPcMxZ+BDGqIsyLpZQi9ufPw== elliptic@6.5.4: version "6.5.4" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" + resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz" integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== dependencies: bn.js "^4.11.9" @@ -4425,73 +4457,73 @@ elliptic@6.5.4: emittery@^0.13.1: version "0.13.1" - resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.13.1.tgz#c04b8c3457490e0847ae51fced3af52d338e3dad" + resolved "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz" integrity sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ== emoji-regex@^8.0.0: version "8.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== emoji-regex@^9.2.2: version "9.2.2" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz" integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== encodeurl@~1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz" integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== encodeurl@~2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58" + resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz" integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== end-of-stream@^1.1.0: version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== dependencies: once "^1.4.0" entities@^4.2.0, entities@^4.5.0: version "4.5.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" + resolved "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz" integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== env-editor@^0.4.1: version "0.4.2" - resolved "https://registry.yarnpkg.com/env-editor/-/env-editor-0.4.2.tgz#4e76568d0bd8f5c2b6d314a9412c8fe9aa3ae861" + resolved "https://registry.npmjs.org/env-editor/-/env-editor-0.4.2.tgz" integrity sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA== envinfo@^7.10.0: version "7.14.0" - resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.14.0.tgz#26dac5db54418f2a4c1159153a0b2ae980838aae" + resolved "https://registry.npmjs.org/envinfo/-/envinfo-7.14.0.tgz" integrity sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg== eol@^0.9.1: version "0.9.1" - resolved "https://registry.yarnpkg.com/eol/-/eol-0.9.1.tgz#f701912f504074be35c6117a5c4ade49cd547acd" + resolved "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz" integrity sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg== error-ex@^1.3.1: version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== dependencies: is-arrayish "^0.2.1" error-stack-parser@^2.0.6: version "2.1.4" - resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.1.4.tgz#229cb01cdbfa84440bfa91876285b94680188286" + resolved "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz" integrity sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ== dependencies: stackframe "^1.3.4" errorhandler@^1.5.1: version "1.5.1" - resolved "https://registry.yarnpkg.com/errorhandler/-/errorhandler-1.5.1.tgz#b9ba5d17cf90744cd1e851357a6e75bf806a9a91" + resolved "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz" integrity sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A== dependencies: accepts "~1.3.7" @@ -4499,7 +4531,7 @@ errorhandler@^1.5.1: es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0: version "1.23.3" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.3.tgz#8f0c5a35cd215312573c5a27c87dfd6c881a0aa0" + resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz" integrity sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A== dependencies: array-buffer-byte-length "^1.0.1" @@ -4551,26 +4583,26 @@ es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0: es-define-property@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" + resolved "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz" integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== dependencies: get-intrinsic "^1.2.4" es-errors@^1.2.1, es-errors@^1.3.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" + resolved "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz" integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== es-object-atoms@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.0.0.tgz#ddb55cd47ac2e240701260bc2a8e31ecb643d941" + resolved "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz" integrity sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw== dependencies: es-errors "^1.3.0" es-set-tostringtag@^2.0.3: version "2.0.3" - resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz#8bb60f0a440c2e4281962428438d58545af39777" + resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz" integrity sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ== dependencies: get-intrinsic "^1.2.4" @@ -4579,7 +4611,7 @@ es-set-tostringtag@^2.0.3: es-to-primitive@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz" integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== dependencies: is-callable "^1.1.4" @@ -4588,32 +4620,32 @@ es-to-primitive@^1.2.1: escalade@^3.1.1, escalade@^3.2.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" + resolved "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz" integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== escape-html@~1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz" integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== escape-string-regexp@^1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== escape-string-regexp@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== escape-string-regexp@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== escodegen@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.1.0.tgz#ba93bbb7a43986d29d6041f99f5262da773e2e17" + resolved "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz" integrity sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w== dependencies: esprima "^4.0.1" @@ -4624,27 +4656,27 @@ escodegen@^2.0.0: esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0: version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== estraverse@^5.2.0: version "5.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== esutils@^2.0.2: version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== etag@~1.8.1: version "1.8.1" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz" integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== ethers@^5.7.2: version "5.7.2" - resolved "https://registry.yarnpkg.com/ethers/-/ethers-5.7.2.tgz#3a7deeabbb8c030d4126b24f84e525466145872e" + resolved "https://registry.npmjs.org/ethers/-/ethers-5.7.2.tgz" integrity sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg== dependencies: "@ethersproject/abi" "5.7.0" @@ -4680,22 +4712,22 @@ ethers@^5.7.2: event-target-shim@^5.0.0, event-target-shim@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" + resolved "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz" integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== eventemitter3@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz#53f5ffd0a492ac800721bb42c66b841de96423c4" + resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz" integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA== exec-async@^2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/exec-async/-/exec-async-2.2.0.tgz#c7c5ad2eef3478d38390c6dd3acfe8af0efc8301" + resolved "https://registry.npmjs.org/exec-async/-/exec-async-2.2.0.tgz" integrity sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw== execa@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" + resolved "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz" integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== dependencies: cross-spawn "^6.0.0" @@ -4708,7 +4740,7 @@ execa@^1.0.0: execa@^5.0.0, execa@^5.1.1: version "5.1.1" - resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz" integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== dependencies: cross-spawn "^7.0.3" @@ -4723,17 +4755,17 @@ execa@^5.0.0, execa@^5.1.1: exif-parser@^0.1.12: version "0.1.12" - resolved "https://registry.yarnpkg.com/exif-parser/-/exif-parser-0.1.12.tgz#58a9d2d72c02c1f6f02a0ef4a9166272b7760922" + resolved "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz" integrity sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw== exit@^0.1.2: version "0.1.2" - resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz" integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== expect@^29.0.0, expect@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/expect/-/expect-29.7.0.tgz#578874590dcb3214514084c08115d8aee61e11bc" + resolved "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz" integrity sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw== dependencies: "@jest/expect-utils" "^29.7.0" @@ -4744,17 +4776,17 @@ expect@^29.0.0, expect@^29.7.0: expo-apple-authentication@^6.4.2: version "6.4.2" - resolved "https://registry.yarnpkg.com/expo-apple-authentication/-/expo-apple-authentication-6.4.2.tgz#1c2ea4fcbd1de5736483dccd370cdd6b8e3de15d" + resolved "https://registry.npmjs.org/expo-apple-authentication/-/expo-apple-authentication-6.4.2.tgz" integrity sha512-X4u1n3Ql1hOpztXHbKNq4I1l4+Ff82gC6RmEeW43Eht7VE6E8PrQBpYKw+JJv8osrCJt7R5O1PZwed6WLN5oig== expo-application@^5.9.1: version "5.9.1" - resolved "https://registry.yarnpkg.com/expo-application/-/expo-application-5.9.1.tgz#a12e0cf2741b6f084cc49cd0121ad0a70c770459" + resolved "https://registry.npmjs.org/expo-application/-/expo-application-5.9.1.tgz" integrity sha512-uAfLBNZNahnDZLRU41ZFmNSKtetHUT9Ua557/q189ua0AWV7pQjoVAx49E4953feuvqc9swtU3ScZ/hN1XO/FQ== expo-asset@~10.0.10: version "10.0.10" - resolved "https://registry.yarnpkg.com/expo-asset/-/expo-asset-10.0.10.tgz#9e6e02c1a6ec3d19b50d5e615e4dd8e5cc30e857" + resolved "https://registry.npmjs.org/expo-asset/-/expo-asset-10.0.10.tgz" integrity sha512-0qoTIihB79k+wGus9wy0JMKq7DdenziVx3iUkGvMAy2azscSgWH6bd2gJ9CGnhC6JRd3qTMFBL0ou/fx7WZl7A== dependencies: expo-constants "~16.0.0" @@ -4763,7 +4795,7 @@ expo-asset@~10.0.10: expo-build-properties@~0.12.5: version "0.12.5" - resolved "https://registry.yarnpkg.com/expo-build-properties/-/expo-build-properties-0.12.5.tgz#4d6232389f00c846ba37ca5df2c0b5527c2d94ca" + resolved "https://registry.npmjs.org/expo-build-properties/-/expo-build-properties-0.12.5.tgz" integrity sha512-donC1le0PYfLKCPKRMGQoixuWuwDWCngzXSoQXUPsgHTDHQUKr8aw+lcWkTwZcItgNovcnk784I0dyfYDcxybA== dependencies: ajv "^8.11.0" @@ -4771,7 +4803,7 @@ expo-build-properties@~0.12.5: expo-constants@^16.0.2, expo-constants@~16.0.0: version "16.0.2" - resolved "https://registry.yarnpkg.com/expo-constants/-/expo-constants-16.0.2.tgz#eb5a1bddb7308fd8cadac8fc44decaf4784cac5e" + resolved "https://registry.npmjs.org/expo-constants/-/expo-constants-16.0.2.tgz" integrity sha512-9tNY3OVO0jfiMzl7ngb6IOyR5VFzNoN5OOazUWoeGfmMqVB5kltTemRvKraK9JRbBKIw+SOYLEmF0sEqgFZ6OQ== dependencies: "@expo/config" "~9.0.0" @@ -4779,14 +4811,14 @@ expo-constants@^16.0.2, expo-constants@~16.0.0: expo-crypto@^13.0.2: version "13.0.2" - resolved "https://registry.yarnpkg.com/expo-crypto/-/expo-crypto-13.0.2.tgz#e892874f571967f588b1f1e2e4924cafaf4f6823" + resolved "https://registry.npmjs.org/expo-crypto/-/expo-crypto-13.0.2.tgz" integrity sha512-7f/IMPYJZkBM21LNEMXGrNo/0uXSVfZTwufUdpNKedJR0fm5fH4DCSN79ZddlV26nF90PuXjK2inIbI6lb0qRA== dependencies: base64-js "^1.3.0" expo-dev-client@~4.0.26: version "4.0.28" - resolved "https://registry.yarnpkg.com/expo-dev-client/-/expo-dev-client-4.0.28.tgz#3a345662ca2b2dfd7d0fa18e537cb75abd9a563c" + resolved "https://registry.npmjs.org/expo-dev-client/-/expo-dev-client-4.0.28.tgz" integrity sha512-wz5G4vY3Gbk5GuQTyijdqY4Hwr/NDt5OUTErbOu1vd4XRIAsI+8IkK5hsBUhGmqrdkYnP5NxxOxC/soFzX/9+w== dependencies: expo-dev-launcher "4.0.28" @@ -4797,7 +4829,7 @@ expo-dev-client@~4.0.26: expo-dev-launcher@4.0.28: version "4.0.28" - resolved "https://registry.yarnpkg.com/expo-dev-launcher/-/expo-dev-launcher-4.0.28.tgz#6097f4beb4d000bcc201f1b69dcd516e2b10247c" + resolved "https://registry.npmjs.org/expo-dev-launcher/-/expo-dev-launcher-4.0.28.tgz" integrity sha512-goE7jcaGVA2zu4gV3/hQ9RXqGhUZZAu339VYNLbwPdaNCzFaG6A8MZHg18gytCUnZ5QkRJsYi4q/8YcwUCASlQ== dependencies: ajv "8.11.0" @@ -4808,12 +4840,12 @@ expo-dev-launcher@4.0.28: expo-dev-menu-interface@1.8.3: version "1.8.3" - resolved "https://registry.yarnpkg.com/expo-dev-menu-interface/-/expo-dev-menu-interface-1.8.3.tgz#8c1262e29e0124fc5932a129c95b36de56656b20" + resolved "https://registry.npmjs.org/expo-dev-menu-interface/-/expo-dev-menu-interface-1.8.3.tgz" integrity sha512-QM0LRozeFT5Ek0N7XpV93M+HMdEKRLEOXn0aW5M3uoUlnqC1+PLtF3HMy3k3hMKTTE/kJ1y1Z7akH07T0lunCQ== expo-dev-menu@5.0.22: version "5.0.22" - resolved "https://registry.yarnpkg.com/expo-dev-menu/-/expo-dev-menu-5.0.22.tgz#30e16b6709759edb027e492fc96d262ee063b0c8" + resolved "https://registry.npmjs.org/expo-dev-menu/-/expo-dev-menu-5.0.22.tgz" integrity sha512-VzpdQReAtjbI1qIuwOf0sUzf91HsfGThojgJD9Ez0eca12qY5tTGYzHa1EM9V+zIcNuNZ7+A8bHJJdmZ4zvU6g== dependencies: expo-dev-menu-interface "1.8.3" @@ -4821,34 +4853,34 @@ expo-dev-menu@5.0.22: expo-file-system@~17.0.1: version "17.0.1" - resolved "https://registry.yarnpkg.com/expo-file-system/-/expo-file-system-17.0.1.tgz#b9f8af8c1c06ec71d96fd7a0d2567fa9e1c88f15" + resolved "https://registry.npmjs.org/expo-file-system/-/expo-file-system-17.0.1.tgz" integrity sha512-dYpnZJqTGj6HCYJyXAgpFkQWsiCH3HY1ek2cFZVHFoEc5tLz9gmdEgTF6nFHurvmvfmXqxi7a5CXyVm0aFYJBw== expo-font@~12.0.10, expo-font@~12.0.9: version "12.0.10" - resolved "https://registry.yarnpkg.com/expo-font/-/expo-font-12.0.10.tgz#62deaf1f46159d7839f01305f44079268781b1db" + resolved "https://registry.npmjs.org/expo-font/-/expo-font-12.0.10.tgz" integrity sha512-Q1i2NuYri3jy32zdnBaHHCya1wH1yMAsI+3CCmj9zlQzlhsS9Bdwcj2W3c5eU5FvH2hsNQy4O+O1NnM6o/pDaQ== dependencies: fontfaceobserver "^2.1.0" expo-haptics@~13.0.1: version "13.0.1" - resolved "https://registry.yarnpkg.com/expo-haptics/-/expo-haptics-13.0.1.tgz#35679c7fde4ae1c21ae3bc2d2cb34c266049dc2c" + resolved "https://registry.npmjs.org/expo-haptics/-/expo-haptics-13.0.1.tgz" integrity sha512-qG0EOLDE4bROVT3DtUSyV9g3iB3YFu9j3711X7SNNEnBDXc+2/p3wGDPTnJvPW0ao6HG3/McAOrBQA5hVSdWng== expo-json-utils@~0.13.0: version "0.13.1" - resolved "https://registry.yarnpkg.com/expo-json-utils/-/expo-json-utils-0.13.1.tgz#e49b697198e11c573d346f08ab91c467095934a9" + resolved "https://registry.npmjs.org/expo-json-utils/-/expo-json-utils-0.13.1.tgz" integrity sha512-mlfaSArGVb+oJmUcR22jEONlgPp0wj4iNIHfQ2je9Q8WTOqMc0Ws9tUciz3JdJnhffdHqo/k8fpvf0IRmN5HPA== expo-keep-awake@~13.0.2: version "13.0.2" - resolved "https://registry.yarnpkg.com/expo-keep-awake/-/expo-keep-awake-13.0.2.tgz#5ef31311a339671eec9921b934fdd90ab9652b0e" + resolved "https://registry.npmjs.org/expo-keep-awake/-/expo-keep-awake-13.0.2.tgz" integrity sha512-kKiwkVg/bY0AJ5q1Pxnm/GvpeB6hbNJhcFsoOWDh2NlpibhCLaHL826KHUM+WsnJRbVRxJ+K9vbPRHEMvFpVyw== expo-linking@^6.3.1: version "6.3.1" - resolved "https://registry.yarnpkg.com/expo-linking/-/expo-linking-6.3.1.tgz#05aef8a42bd310391d0b00644be40d80ece038d9" + resolved "https://registry.npmjs.org/expo-linking/-/expo-linking-6.3.1.tgz" integrity sha512-xuZCntSBGWCD/95iZ+mTUGTwHdy8Sx+immCqbUBxdvZ2TN61P02kKg7SaLS8A4a/hLrSCwrg5tMMwu5wfKr35g== dependencies: expo-constants "~16.0.0" @@ -4856,7 +4888,7 @@ expo-linking@^6.3.1: expo-manifests@~0.14.0: version "0.14.3" - resolved "https://registry.yarnpkg.com/expo-manifests/-/expo-manifests-0.14.3.tgz#17854c45c8c9ced4a07031ae0838c38ac3115fbc" + resolved "https://registry.npmjs.org/expo-manifests/-/expo-manifests-0.14.3.tgz" integrity sha512-L3b5/qocBPiQjbW0cpOHfnqdKZbTJS7sA3mgeDJT+mWga/xYsdpma1EfNmsuvrOzjLGjStr1k1fceM9Bl49aqQ== dependencies: "@expo/config" "~9.0.0" @@ -4864,7 +4896,7 @@ expo-manifests@~0.14.0: expo-modules-autolinking@1.11.3: version "1.11.3" - resolved "https://registry.yarnpkg.com/expo-modules-autolinking/-/expo-modules-autolinking-1.11.3.tgz#bc64d278c04015014bb5802e3cfcd942d7c07168" + resolved "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-1.11.3.tgz" integrity sha512-oYh8EZEvYF5TYppxEKUTTJmbr8j7eRRnrIxzZtMvxLTXoujThVPMFS/cbnSnf2bFm1lq50TdDNABhmEi7z0ngQ== dependencies: chalk "^4.1.0" @@ -4877,14 +4909,14 @@ expo-modules-autolinking@1.11.3: expo-modules-core@1.12.26: version "1.12.26" - resolved "https://registry.yarnpkg.com/expo-modules-core/-/expo-modules-core-1.12.26.tgz#86c4087dc6246abfc4d7f5e61097dc8cc4b22262" + resolved "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-1.12.26.tgz" integrity sha512-y8yDWjOi+rQRdO+HY+LnUlz8qzHerUaw/LUjKPU/mX8PRXP4UUPEEp5fjAwBU44xjNmYSHWZDwet4IBBE+yQUA== dependencies: invariant "^2.2.4" expo-router@~3.5.23: version "3.5.23" - resolved "https://registry.yarnpkg.com/expo-router/-/expo-router-3.5.23.tgz#da038e28c64cb69f19d046d7c651c389c5207a3e" + resolved "https://registry.npmjs.org/expo-router/-/expo-router-3.5.23.tgz" integrity sha512-Re2kYcxov67hWrcjuu0+3ovsLxYn79PuX6hgtYN20MgigY5ttX79KOIBEVGTO3F3y9dxSrGHyy5Z14BcO+usGQ== dependencies: "@expo/metro-runtime" "3.2.3" @@ -4899,31 +4931,31 @@ expo-router@~3.5.23: expo-secure-store@^13.0.2: version "13.0.2" - resolved "https://registry.yarnpkg.com/expo-secure-store/-/expo-secure-store-13.0.2.tgz#ba8f6076fc38062a28bb2ce5edab9cd28ef88598" + resolved "https://registry.npmjs.org/expo-secure-store/-/expo-secure-store-13.0.2.tgz" integrity sha512-3QYgoneo8p8yeeBPBiAfokNNc2xq6+n8+Ob4fAlErEcf4H7Y72LH+K/dx0nQyWau2ZKZUXBxyyfuHFyVKrEVLg== expo-splash-screen@0.27.5: version "0.27.5" - resolved "https://registry.yarnpkg.com/expo-splash-screen/-/expo-splash-screen-0.27.5.tgz#bcc1ebb4e761e19a1f2112469f3d424a36fb1e2c" + resolved "https://registry.npmjs.org/expo-splash-screen/-/expo-splash-screen-0.27.5.tgz" integrity sha512-9rdZuLkFCfgJBxrheUsOEOIW6Rp+9NVlpSE0hgXQwbTCLTncf00IHSE8/L2NbFyeDLNjof1yZBppaV7tXHRUzA== dependencies: "@expo/prebuild-config" "7.0.6" expo-splash-screen@~0.27.5: version "0.27.6" - resolved "https://registry.yarnpkg.com/expo-splash-screen/-/expo-splash-screen-0.27.6.tgz#d57f3f80d22f4ada90fd2edf573bbc148f956f67" + resolved "https://registry.npmjs.org/expo-splash-screen/-/expo-splash-screen-0.27.6.tgz" integrity sha512-joUwZQS48k3VMnucQ0Y8Dle1t1FyIvluQA4kjuPx2x7l2dRrfctbo34ahTnC0p1o2go5oN2iEnSTOElY4wRQHw== dependencies: "@expo/prebuild-config" "7.0.8" expo-status-bar@~1.12.1: version "1.12.1" - resolved "https://registry.yarnpkg.com/expo-status-bar/-/expo-status-bar-1.12.1.tgz#52ce594aab5064a0511d14375364d718ab78aa66" + resolved "https://registry.npmjs.org/expo-status-bar/-/expo-status-bar-1.12.1.tgz" integrity sha512-/t3xdbS8KB0prj5KG5w7z+wZPFlPtkgs95BsmrP/E7Q0xHXTcDcQ6Cu2FkFuRM+PKTb17cJDnLkawyS5vDLxMA== expo-system-ui@~3.0.7: version "3.0.7" - resolved "https://registry.yarnpkg.com/expo-system-ui/-/expo-system-ui-3.0.7.tgz#73fee2a61db435e5d66cbf6407e0987f39c25b4e" + resolved "https://registry.npmjs.org/expo-system-ui/-/expo-system-ui-3.0.7.tgz" integrity sha512-KAs72F5JKhdIfPR9ZNVlRubTPK9uUuevPy5oYEp12xNEzSQcjZKvypH5NpwJuNWkXzrp3n3vZ+3pXsudA7J3KA== dependencies: "@react-native/normalize-colors" "0.74.85" @@ -4931,17 +4963,17 @@ expo-system-ui@~3.0.7: expo-updates-interface@~0.16.2: version "0.16.2" - resolved "https://registry.yarnpkg.com/expo-updates-interface/-/expo-updates-interface-0.16.2.tgz#ad1ac2ca8ee5a8cc84052ea3c18a11da64da569b" + resolved "https://registry.npmjs.org/expo-updates-interface/-/expo-updates-interface-0.16.2.tgz" integrity sha512-929XBU70q5ELxkKADj1xL0UIm3HvhYhNAOZv5DSk7rrKvLo7QDdPyl+JVnwZm9LrkNbH4wuE2rLoKu1KMgZ+9A== expo-web-browser@^13.0.3: version "13.0.3" - resolved "https://registry.yarnpkg.com/expo-web-browser/-/expo-web-browser-13.0.3.tgz#dceb05dbc187b498ca937b02adf385b0232a4e92" + resolved "https://registry.npmjs.org/expo-web-browser/-/expo-web-browser-13.0.3.tgz" integrity sha512-HXb7y82ApVJtqk8tManyudtTrCtx8xcUnVzmJECeHCB0SsWSQ+penVLZxJkcyATWoJOsFMnfVSVdrTcpKKGszQ== expo@~51.0.38: version "51.0.38" - resolved "https://registry.yarnpkg.com/expo/-/expo-51.0.38.tgz#e4127b230454a34a507cfb9f1a2e4b3855cb0579" + resolved "https://registry.npmjs.org/expo/-/expo-51.0.38.tgz" integrity sha512-/B9npFkOPmv6WMIhdjQXEY0Z9k/67UZIVkodW8JxGIXwKUZAGHL+z1R5hTtWimpIrvVhyHUFU3f8uhfEKYhHNQ== dependencies: "@babel/runtime" "^7.20.0" @@ -4962,22 +4994,22 @@ expo@~51.0.38: exponential-backoff@^3.1.1: version "3.1.1" - resolved "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.1.tgz#64ac7526fe341ab18a39016cd22c787d01e00bf6" + resolved "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz" integrity sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw== fast-base64-decode@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/fast-base64-decode/-/fast-base64-decode-1.0.0.tgz#b434a0dd7d92b12b43f26819300d2dafb83ee418" + resolved "https://registry.npmjs.org/fast-base64-decode/-/fast-base64-decode-1.0.0.tgz" integrity sha512-qwaScUgUGBYeDNRnbc/KyllVU88Jk1pRHPStuF/lO7B0/RTRLj7U0lkdTAutlBblY08rwZDff6tNU9cjv6j//Q== fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== fast-glob@^3.2.5, fast-glob@^3.2.9, fast-glob@^3.3.2: version "3.3.2" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz" integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== dependencies: "@nodelib/fs.stat" "^2.0.2" @@ -4988,60 +5020,60 @@ fast-glob@^3.2.5, fast-glob@^3.2.9, fast-glob@^3.3.2: fast-json-stable-stringify@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== fast-loops@^1.1.3: version "1.1.4" - resolved "https://registry.yarnpkg.com/fast-loops/-/fast-loops-1.1.4.tgz#61bc77d518c0af5073a638c6d9d5c7683f069ce2" + resolved "https://registry.npmjs.org/fast-loops/-/fast-loops-1.1.4.tgz" integrity sha512-8dbd3XWoKCTms18ize6JmQF1SFnnfj5s0B7rRry22EofgMu7B6LKHVh+XfFqFGsqnbH54xgeO83PzpKI+ODhlg== fast-text-encoding@^1.0.6: version "1.0.6" - resolved "https://registry.yarnpkg.com/fast-text-encoding/-/fast-text-encoding-1.0.6.tgz#0aa25f7f638222e3396d72bf936afcf1d42d6867" + resolved "https://registry.npmjs.org/fast-text-encoding/-/fast-text-encoding-1.0.6.tgz" integrity sha512-VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w== fast-uri@^3.0.1: version "3.0.2" - resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.2.tgz#d78b298cf70fd3b752fd951175a3da6a7b48f024" + resolved "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.2.tgz" integrity sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row== fast-xml-parser@^4.0.12, fast-xml-parser@^4.2.4: version "4.5.0" - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.5.0.tgz#2882b7d01a6825dfdf909638f2de0256351def37" + resolved "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.0.tgz" integrity sha512-/PlTQCI96+fZMAOLMZK4CWG1ItCbfZ/0jx7UIJFChPNrx7tcEgerUgWbeieCM9MfHInUDyK8DWYZ+YrywDJuTg== dependencies: strnum "^1.0.5" fastq@^1.6.0: version "1.17.1" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + resolved "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz" integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== dependencies: reusify "^1.0.4" fb-watchman@^2.0.0: version "2.0.2" - resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" + resolved "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz" integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== dependencies: bser "2.1.1" fbemitter@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/fbemitter/-/fbemitter-3.0.0.tgz#00b2a1af5411254aab416cd75f9e6289bee4bff3" + resolved "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz" integrity sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw== dependencies: fbjs "^3.0.0" fbjs-css-vars@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz#216551136ae02fe255932c3ec8775f18e2c078b8" + resolved "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz" integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ== fbjs@^3.0.0, fbjs@^3.0.4: version "3.0.5" - resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-3.0.5.tgz#aa0edb7d5caa6340011790bd9249dbef8a81128d" + resolved "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz" integrity sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg== dependencies: cross-fetch "^3.1.5" @@ -5054,17 +5086,17 @@ fbjs@^3.0.0, fbjs@^3.0.4: fetch-retry@^4.1.1: version "4.1.1" - resolved "https://registry.yarnpkg.com/fetch-retry/-/fetch-retry-4.1.1.tgz#fafe0bb22b54f4d0a9c788dff6dd7f8673ca63f3" + resolved "https://registry.npmjs.org/fetch-retry/-/fetch-retry-4.1.1.tgz" integrity sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA== fetch-retry@^5.0.6: version "5.0.6" - resolved "https://registry.yarnpkg.com/fetch-retry/-/fetch-retry-5.0.6.tgz#17d0bc90423405b7a88b74355bf364acd2a7fa56" + resolved "https://registry.npmjs.org/fetch-retry/-/fetch-retry-5.0.6.tgz" integrity sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ== file-type@^16.5.4: version "16.5.4" - resolved "https://registry.yarnpkg.com/file-type/-/file-type-16.5.4.tgz#474fb4f704bee427681f98dd390058a172a6c2fd" + resolved "https://registry.npmjs.org/file-type/-/file-type-16.5.4.tgz" integrity sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw== dependencies: readable-web-to-node-stream "^3.0.0" @@ -5073,19 +5105,19 @@ file-type@^16.5.4: fill-range@^7.1.1: version "7.1.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz" integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== dependencies: to-regex-range "^5.0.1" filter-obj@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/filter-obj/-/filter-obj-1.1.0.tgz#9b311112bc6c6127a16e016c6c5d7f19e0805c5b" + resolved "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz" integrity sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ== finalhandler@1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" + resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz" integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== dependencies: debug "2.6.9" @@ -5098,7 +5130,7 @@ finalhandler@1.1.2: find-cache-dir@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" + resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz" integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== dependencies: commondir "^1.0.1" @@ -5107,14 +5139,14 @@ find-cache-dir@^2.0.0: find-up@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + resolved "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz" integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== dependencies: locate-path "^3.0.0" find-up@^4.0.0, find-up@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== dependencies: locate-path "^5.0.0" @@ -5122,7 +5154,7 @@ find-up@^4.0.0, find-up@^4.1.0: find-up@^5.0.0, find-up@~5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz" integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== dependencies: locate-path "^6.0.0" @@ -5130,41 +5162,41 @@ find-up@^5.0.0, find-up@~5.0.0: find-yarn-workspace-root@~2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz#f47fb8d239c900eb78179aa81b66673eac88f7bd" + resolved "https://registry.npmjs.org/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz" integrity sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ== dependencies: micromatch "^4.0.2" flow-enums-runtime@^0.0.6: version "0.0.6" - resolved "https://registry.yarnpkg.com/flow-enums-runtime/-/flow-enums-runtime-0.0.6.tgz#5bb0cd1b0a3e471330f4d109039b7eba5cb3e787" + resolved "https://registry.npmjs.org/flow-enums-runtime/-/flow-enums-runtime-0.0.6.tgz" integrity sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw== flow-parser@0.*: version "0.248.1" - resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.248.1.tgz#0de3af63d27970d145a02d2c9e0e7e698fb6e92d" + resolved "https://registry.npmjs.org/flow-parser/-/flow-parser-0.248.1.tgz" integrity sha512-fkCfVPelbTzSVp+jVwSvEyc+I4WG8MNhRG/EWSZZTlgHAMEdhXJaFEbfErXxMktboMhVGchvEFhWxkzNGM1m2A== follow-redirects@^1.15.6: version "1.15.9" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.9.tgz#a604fa10e443bf98ca94228d9eebcc2e8a2c8ee1" + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz" integrity sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ== fontfaceobserver@^2.1.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/fontfaceobserver/-/fontfaceobserver-2.3.0.tgz#5fb392116e75d5024b7ec8e4f2ce92106d1488c8" + resolved "https://registry.npmjs.org/fontfaceobserver/-/fontfaceobserver-2.3.0.tgz" integrity sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg== for-each@^0.3.3: version "0.3.3" - resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz" integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== dependencies: is-callable "^1.1.3" foreground-child@^3.1.0: version "3.3.0" - resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.0.tgz#0ac8644c06e431439f8561db8ecf29a7b5519c77" + resolved "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz" integrity sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg== dependencies: cross-spawn "^7.0.0" @@ -5172,7 +5204,7 @@ foreground-child@^3.1.0: form-data@^3.0.1: version "3.0.2" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.2.tgz#83ad9ced7c03feaad97e293d6f6091011e1659c8" + resolved "https://registry.npmjs.org/form-data/-/form-data-3.0.2.tgz" integrity sha512-sJe+TQb2vIaIyO783qN6BlMYWMw3WBOHA1Ay2qxsnjuafEOQFJ2JakedOQirT6D5XPRxDvS7AHYyem9fTpb4LQ== dependencies: asynckit "^0.4.0" @@ -5181,7 +5213,7 @@ form-data@^3.0.1: form-data@^4.0.0: version "4.0.1" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.1.tgz#ba1076daaaa5bfd7e99c1a6cb02aa0a5cff90d48" + resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz" integrity sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw== dependencies: asynckit "^0.4.0" @@ -5190,17 +5222,17 @@ form-data@^4.0.0: freeport-async@2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/freeport-async/-/freeport-async-2.0.0.tgz#6adf2ec0c629d11abff92836acd04b399135bab4" + resolved "https://registry.npmjs.org/freeport-async/-/freeport-async-2.0.0.tgz" integrity sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ== fresh@0.5.2: version "0.5.2" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz" integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== fs-extra@9.0.0: version "9.0.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.0.tgz#b6afc31036e247b2466dc99c29ae797d5d4580a3" + resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.0.tgz" integrity sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g== dependencies: at-least-node "^1.0.0" @@ -5210,7 +5242,7 @@ fs-extra@9.0.0: fs-extra@^8.1.0, fs-extra@~8.1.0: version "8.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" + resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz" integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== dependencies: graceful-fs "^4.2.0" @@ -5219,7 +5251,7 @@ fs-extra@^8.1.0, fs-extra@~8.1.0: fs-extra@^9.0.0, fs-extra@^9.1.0: version "9.1.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" + resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz" integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== dependencies: at-least-node "^1.0.0" @@ -5229,36 +5261,36 @@ fs-extra@^9.0.0, fs-extra@^9.1.0: fs-minipass@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" + resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz" integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== dependencies: minipass "^3.0.0" fs-minipass@^3.0.0: version "3.0.3" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz#79a85981c4dc120065e96f62086bf6f9dc26cc54" + resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz" integrity sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw== dependencies: minipass "^7.0.3" fs.realpath@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== fsevents@^2.3.2: version "2.3.3" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz" integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== function-bind@^1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== function.prototype.name@^1.1.6: version "1.1.6" - resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd" + resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz" integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg== dependencies: call-bind "^1.0.2" @@ -5268,22 +5300,22 @@ function.prototype.name@^1.1.6: functions-have-names@^1.2.3: version "1.2.3" - resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz" integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== gensync@^1.0.0-beta.2: version "1.0.0-beta.2" - resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== get-caller-file@^2.0.1, get-caller-file@^2.0.5: version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: version "1.2.4" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz" integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== dependencies: es-errors "^1.3.0" @@ -5294,29 +5326,29 @@ get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@ get-package-type@^0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" + resolved "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz" integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== get-port@^3.2.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.2.0.tgz#dd7ce7de187c06c8bf353796ac71e099f0980ebc" + resolved "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz" integrity sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg== get-stream@^4.0.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" + resolved "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz" integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== dependencies: pump "^3.0.0" get-stream@^6.0.0: version "6.0.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz" integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== get-symbol-description@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.2.tgz#533744d5aa20aca4e079c8e5daf7fd44202821f5" + resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz" integrity sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg== dependencies: call-bind "^1.0.5" @@ -5325,12 +5357,12 @@ get-symbol-description@^1.0.2: getenv@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/getenv/-/getenv-1.0.0.tgz#874f2e7544fbca53c7a4738f37de8605c3fcfc31" + resolved "https://registry.npmjs.org/getenv/-/getenv-1.0.0.tgz" integrity sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg== gifwrap@^0.9.2: version "0.9.4" - resolved "https://registry.yarnpkg.com/gifwrap/-/gifwrap-0.9.4.tgz#f4eb6169ba027d61df64aafbdcb1f8ae58ccc0c5" + resolved "https://registry.npmjs.org/gifwrap/-/gifwrap-0.9.4.tgz" integrity sha512-MDMwbhASQuVeD4JKd1fKgNgCRL3fGqMM4WaqpNhWO0JiMOAjbQdumbs4BbBZEy9/M00EHEjKN3HieVhCUlwjeQ== dependencies: image-q "^4.0.0" @@ -5338,14 +5370,14 @@ gifwrap@^0.9.2: glob-parent@^5.1.2: version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== dependencies: is-glob "^4.0.1" glob@7.1.6: version "7.1.6" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" + resolved "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz" integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== dependencies: fs.realpath "^1.0.0" @@ -5357,7 +5389,7 @@ glob@7.1.6: glob@^10.2.2, glob@^10.4.2: version "10.4.5" - resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz#f4d9f0b90ffdbab09c9d77f5f29b4262517b0956" + resolved "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz" integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg== dependencies: foreground-child "^3.1.0" @@ -5369,7 +5401,7 @@ glob@^10.2.2, glob@^10.4.2: glob@^7.1.1, glob@^7.1.3, glob@^7.1.4, glob@^7.1.7, glob@^7.2.3: version "7.2.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== dependencies: fs.realpath "^1.0.0" @@ -5381,7 +5413,7 @@ glob@^7.1.1, glob@^7.1.3, glob@^7.1.4, glob@^7.1.7, glob@^7.2.3: global@~4.4.0: version "4.4.0" - resolved "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406" + resolved "https://registry.npmjs.org/global/-/global-4.4.0.tgz" integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w== dependencies: min-document "^2.19.0" @@ -5389,12 +5421,12 @@ global@~4.4.0: globals@^11.1.0: version "11.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== globalthis@^1.0.3: version "1.0.4" - resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz#7430ed3a975d97bfb59bcce41f5cabbafa651236" + resolved "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz" integrity sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ== dependencies: define-properties "^1.2.1" @@ -5402,7 +5434,7 @@ globalthis@^1.0.3: globby@^11.0.1: version "11.1.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz" integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== dependencies: array-union "^2.1.0" @@ -5414,70 +5446,70 @@ globby@^11.0.1: gopd@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + resolved "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz" integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== dependencies: get-intrinsic "^1.1.3" graceful-fs@^4.1.11, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9: version "4.2.11" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== graphql-tag@^2.10.1: version "2.12.6" - resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.12.6.tgz#d441a569c1d2537ef10ca3d1633b48725329b5f1" + resolved "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz" integrity sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg== dependencies: tslib "^2.1.0" graphql@15.8.0: version "15.8.0" - resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.8.0.tgz#33410e96b012fa3bdb1091cc99a94769db212b38" + resolved "https://registry.npmjs.org/graphql/-/graphql-15.8.0.tgz" integrity sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw== has-bigints@^1.0.1, has-bigints@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz" integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== has-flag@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== has-flag@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" + resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz" integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== dependencies: es-define-property "^1.0.0" has-proto@^1.0.1, has-proto@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" + resolved "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz" integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== has-symbols@^1.0.2, has-symbols@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" + resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz" integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== dependencies: has-symbols "^1.0.3" hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3: version "1.1.7" - resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + resolved "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz" integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== dependencies: inherits "^2.0.3" @@ -5485,45 +5517,45 @@ hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3: hasown@^2.0.0, hasown@^2.0.1, hasown@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + resolved "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz" integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== dependencies: function-bind "^1.1.2" hermes-estree@0.19.1: version "0.19.1" - resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.19.1.tgz#d5924f5fac2bf0532547ae9f506d6db8f3c96392" + resolved "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.19.1.tgz" integrity sha512-daLGV3Q2MKk8w4evNMKwS8zBE/rcpA800nu1Q5kM08IKijoSnPe9Uo1iIxzPKRkn95IxxsgBMPeYHt3VG4ej2g== hermes-estree@0.23.1: version "0.23.1" - resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.23.1.tgz#d0bac369a030188120ee7024926aabe5a9f84fdb" + resolved "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.23.1.tgz" integrity sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg== hermes-parser@0.19.1: version "0.19.1" - resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.19.1.tgz#1044348097165b7c93dc198a80b04ed5130d6b1a" + resolved "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.19.1.tgz" integrity sha512-Vp+bXzxYJWrpEuJ/vXxUsLnt0+y4q9zyi4zUlkLqD8FKv4LjIfOvP69R/9Lty3dCyKh0E2BU7Eypqr63/rKT/A== dependencies: hermes-estree "0.19.1" hermes-parser@0.23.1: version "0.23.1" - resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.23.1.tgz#e5de648e664f3b3d84d01b48fc7ab164f4b68205" + resolved "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.23.1.tgz" integrity sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA== dependencies: hermes-estree "0.23.1" hermes-profile-transformer@^0.0.6: version "0.0.6" - resolved "https://registry.yarnpkg.com/hermes-profile-transformer/-/hermes-profile-transformer-0.0.6.tgz#bd0f5ecceda80dd0ddaae443469ab26fb38fc27b" + resolved "https://registry.npmjs.org/hermes-profile-transformer/-/hermes-profile-transformer-0.0.6.tgz" integrity sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ== dependencies: source-map "^0.7.3" hmac-drbg@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + resolved "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz" integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== dependencies: hash.js "^1.0.3" @@ -5532,33 +5564,33 @@ hmac-drbg@^1.0.1: hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.2: version "3.3.2" - resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" + resolved "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz" integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== dependencies: react-is "^16.7.0" hosted-git-info@^3.0.2: version "3.0.8" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.8.tgz#6e35d4cc87af2c5f816e4cb9ce350ba87a3f370d" + resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.8.tgz" integrity sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw== dependencies: lru-cache "^6.0.0" html-encoding-sniffer@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz#2cb1a8cf0db52414776e5b2a7a04d5dd98158de9" + resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz" integrity sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA== dependencies: whatwg-encoding "^2.0.0" html-escaper@^2.0.0: version "2.0.2" - resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" + resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz" integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== http-errors@2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" + resolved "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz" integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== dependencies: depd "2.0.0" @@ -5569,7 +5601,7 @@ http-errors@2.0.0: http-proxy-agent@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" + resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz" integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== dependencies: "@tootallnate/once" "2" @@ -5578,7 +5610,7 @@ http-proxy-agent@^5.0.0: https-proxy-agent@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" + resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz" integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== dependencies: agent-base "6" @@ -5586,53 +5618,53 @@ https-proxy-agent@^5.0.1: human-signals@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz" integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== hyphenate-style-name@^1.0.3: version "1.1.0" - resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.1.0.tgz#1797bf50369588b47b72ca6d5e65374607cf4436" + resolved "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.1.0.tgz" integrity sha512-WDC/ui2VVRrz3jOVi+XtjqkDjiVjTtFaAGiW37k6b+ohyQ5wYDOGkvCZa8+H0nx3gyvv0+BST9xuOgIyGQ00gw== iconv-lite@0.6.3: version "0.6.3" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz" integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== dependencies: safer-buffer ">= 2.1.2 < 3.0.0" ieee754@^1.1.13, ieee754@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== ignore@^5.2.0: version "5.3.2" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" + resolved "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz" integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== image-q@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/image-q/-/image-q-4.0.0.tgz#31e075be7bae3c1f42a85c469b4732c358981776" + resolved "https://registry.npmjs.org/image-q/-/image-q-4.0.0.tgz" integrity sha512-PfJGVgIfKQJuq3s0tTDOKtztksibuUEbJQIYT3by6wctQo+Rdlh7ef4evJ5NCdxY4CfMbvFkocEwbl4BF8RlJw== dependencies: "@types/node" "16.9.1" image-size@^1.0.2: version "1.1.1" - resolved "https://registry.yarnpkg.com/image-size/-/image-size-1.1.1.tgz#ddd67d4dc340e52ac29ce5f546a09f4e29e840ac" + resolved "https://registry.npmjs.org/image-size/-/image-size-1.1.1.tgz" integrity sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ== dependencies: queue "6.0.2" immer@^10.0.3: version "10.1.1" - resolved "https://registry.yarnpkg.com/immer/-/immer-10.1.1.tgz#206f344ea372d8ea176891545ee53ccc062db7bc" + resolved "https://registry.npmjs.org/immer/-/immer-10.1.1.tgz" integrity sha512-s2MPrmjovJcoMaHtx6K11Ra7oD05NT97w1IC5zpMkT6Atjr7H8LjaDd81iIxUYpMKSRRNMJE703M1Fhr/TctHw== import-fresh@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" + resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz" integrity sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg== dependencies: caller-path "^2.0.0" @@ -5640,7 +5672,7 @@ import-fresh@^2.0.0: import-local@^3.0.2: version "3.2.0" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.2.0.tgz#c3d5c745798c02a6f8b897726aba5100186ee260" + resolved "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz" integrity sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA== dependencies: pkg-dir "^4.2.0" @@ -5648,17 +5680,17 @@ import-local@^3.0.2: imurmurhash@^0.1.4: version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== indent-string@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz" integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== inflight@^1.0.4: version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== dependencies: once "^1.3.0" @@ -5666,17 +5698,17 @@ inflight@^1.0.4: inherits@2, inherits@2.0.4, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== ini@~1.3.0: version "1.3.8" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" + resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz" integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== inline-style-prefixer@^6.0.1: version "6.0.4" - resolved "https://registry.yarnpkg.com/inline-style-prefixer/-/inline-style-prefixer-6.0.4.tgz#4290ed453ab0e4441583284ad86e41ad88384f44" + resolved "https://registry.npmjs.org/inline-style-prefixer/-/inline-style-prefixer-6.0.4.tgz" integrity sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg== dependencies: css-in-js-utils "^3.1.0" @@ -5684,7 +5716,7 @@ inline-style-prefixer@^6.0.1: internal-ip@4.3.0: version "4.3.0" - resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907" + resolved "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz" integrity sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg== dependencies: default-gateway "^4.2.0" @@ -5692,7 +5724,7 @@ internal-ip@4.3.0: internal-slot@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.7.tgz#c06dcca3ed874249881007b0a5523b172a190802" + resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz" integrity sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g== dependencies: es-errors "^1.3.0" @@ -5701,29 +5733,29 @@ internal-slot@^1.0.7: "internmap@1 - 2": version "2.0.3" - resolved "https://registry.yarnpkg.com/internmap/-/internmap-2.0.3.tgz#6685f23755e43c524e251d29cbc97248e3061009" + resolved "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz" integrity sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg== -invariant@2.2.4, invariant@^2.2.4: +invariant@2.2.4, invariant@^2.2.2, invariant@^2.2.4: version "2.2.4" - resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + resolved "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz" integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== dependencies: loose-envify "^1.0.0" ip-regex@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" + resolved "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz" integrity sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw== ipaddr.js@^1.9.0: version "1.9.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz" integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== is-arguments@^1.0.4: version "1.1.1" - resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz" integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== dependencies: call-bind "^1.0.2" @@ -5731,7 +5763,7 @@ is-arguments@^1.0.4: is-array-buffer@^3.0.4: version "3.0.4" - resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.4.tgz#7a1f92b3d61edd2bc65d24f130530ea93d7fae98" + resolved "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz" integrity sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw== dependencies: call-bind "^1.0.2" @@ -5739,24 +5771,24 @@ is-array-buffer@^3.0.4: is-arrayish@^0.2.1: version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== is-arrayish@^0.3.1: version "0.3.2" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" + resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz" integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== is-bigint@^1.0.1: version "1.0.4" - resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz" integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== dependencies: has-bigints "^1.0.1" is-boolean-object@^1.1.0: version "1.1.2" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz" integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== dependencies: call-bind "^1.0.2" @@ -5764,155 +5796,155 @@ is-boolean-object@^1.1.0: is-buffer@~1.1.1, is-buffer@~1.1.6: version "1.1.6" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: version "1.2.7" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz" integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== is-core-module@^2.13.0: version "2.15.1" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.15.1.tgz#a7363a25bee942fefab0de13bf6aa372c82dcc37" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz" integrity sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ== dependencies: hasown "^2.0.2" is-data-view@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.1.tgz#4b4d3a511b70f3dc26d42c03ca9ca515d847759f" + resolved "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz" integrity sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w== dependencies: is-typed-array "^1.1.13" is-date-object@^1.0.1: version "1.0.5" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz" integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== dependencies: has-tostringtag "^1.0.0" is-directory@^0.3.1: version "0.3.1" - resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + resolved "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz" integrity sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw== is-docker@^2.0.0, is-docker@^2.1.1: version "2.2.1" - resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz" integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== is-extglob@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz" integrity sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww== is-extglob@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== is-fullwidth-code-point@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz" integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== is-fullwidth-code-point@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== is-function@^1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.2.tgz#4f097f30abf6efadac9833b17ca5dc03f8144e08" + resolved "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz" integrity sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ== is-generator-fn@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" + resolved "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz" integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== is-generator-function@^1.0.7: version "1.0.10" - resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" + resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz" integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== dependencies: has-tostringtag "^1.0.0" is-glob@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" + resolved "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz" integrity sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg== dependencies: is-extglob "^1.0.0" is-glob@^4.0.1: version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== dependencies: is-extglob "^2.1.1" is-interactive@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" + resolved "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz" integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== is-invalid-path@^0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/is-invalid-path/-/is-invalid-path-0.1.0.tgz#307a855b3cf1a938b44ea70d2c61106053714f34" + resolved "https://registry.npmjs.org/is-invalid-path/-/is-invalid-path-0.1.0.tgz" integrity sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ== dependencies: is-glob "^2.0.0" is-negative-zero@^2.0.3: version "2.0.3" - resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747" + resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz" integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== is-number-object@^1.0.4: version "1.0.7" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz" integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== dependencies: has-tostringtag "^1.0.0" is-number@^7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== is-path-cwd@^2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" + resolved "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz" integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== is-path-inside@^3.0.2: version "3.0.3" - resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz" integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== is-plain-obj@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz" integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== is-plain-object@^2.0.4: version "2.0.4" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz" integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== dependencies: isobject "^3.0.1" is-potential-custom-element-name@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" + resolved "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz" integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== is-regex@^1.1.4: version "1.1.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz" integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== dependencies: call-bind "^1.0.2" @@ -5920,106 +5952,106 @@ is-regex@^1.1.4: is-shared-array-buffer@^1.0.2, is-shared-array-buffer@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz#1237f1cba059cdb62431d378dcc37d9680181688" + resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz" integrity sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg== dependencies: call-bind "^1.0.7" is-stream@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz" integrity sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ== is-stream@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== is-string@^1.0.5, is-string@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz" integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== dependencies: has-tostringtag "^1.0.0" is-symbol@^1.0.2, is-symbol@^1.0.3: version "1.0.4" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz" integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== dependencies: has-symbols "^1.0.2" is-typed-array@^1.1.13, is-typed-array@^1.1.3: version "1.1.13" - resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.13.tgz#d6c5ca56df62334959322d7d7dd1cca50debe229" + resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz" integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw== dependencies: which-typed-array "^1.1.14" is-unicode-supported@^0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz" integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== is-valid-path@^0.1.1: version "0.1.1" - resolved "https://registry.yarnpkg.com/is-valid-path/-/is-valid-path-0.1.1.tgz#110f9ff74c37f663e1ec7915eb451f2db93ac9df" + resolved "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz" integrity sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A== dependencies: is-invalid-path "^0.1.0" is-weakref@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz" integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== dependencies: call-bind "^1.0.2" is-wsl@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" + resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz" integrity sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw== is-wsl@^2.1.1, is-wsl@^2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz" integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== dependencies: is-docker "^2.0.0" isarray@^2.0.5: version "2.0.5" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz" integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== isarray@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== isexe@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== isobject@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== isows@1.0.6: version "1.0.6" - resolved "https://registry.yarnpkg.com/isows/-/isows-1.0.6.tgz#0da29d706fa51551c663c627ace42769850f86e7" + resolved "https://registry.npmjs.org/isows/-/isows-1.0.6.tgz" integrity sha512-lPHCayd40oW98/I0uvgaHKWCSvkzY27LjWLbtzOm64yQ+G3Q5npjjbdppU65iZXkK1Zt+kH9pfegli0AYfwYYw== istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: version "3.2.2" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz#2d166c4b0644d43a39f04bf6c2edd1e585f31756" + resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz" integrity sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg== istanbul-lib-instrument@^5.0.4: version "5.2.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" + resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz" integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== dependencies: "@babel/core" "^7.12.3" @@ -6030,7 +6062,7 @@ istanbul-lib-instrument@^5.0.4: istanbul-lib-instrument@^6.0.0: version "6.0.3" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz#fa15401df6c15874bcb2105f773325d78c666765" + resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz" integrity sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q== dependencies: "@babel/core" "^7.23.9" @@ -6041,7 +6073,7 @@ istanbul-lib-instrument@^6.0.0: istanbul-lib-report@^3.0.0: version "3.0.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz#908305bac9a5bd175ac6a74489eafd0fc2445a7d" + resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz" integrity sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw== dependencies: istanbul-lib-coverage "^3.0.0" @@ -6050,7 +6082,7 @@ istanbul-lib-report@^3.0.0: istanbul-lib-source-maps@^4.0.0: version "4.0.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" + resolved "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz" integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== dependencies: debug "^4.1.1" @@ -6059,7 +6091,7 @@ istanbul-lib-source-maps@^4.0.0: istanbul-reports@^3.1.3: version "3.1.7" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.7.tgz#daed12b9e1dca518e15c056e1e537e741280fa0b" + resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz" integrity sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g== dependencies: html-escaper "^2.0.0" @@ -6067,7 +6099,7 @@ istanbul-reports@^3.1.3: jackspeak@^3.1.2: version "3.4.3" - resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz#8833a9d89ab4acde6188942bd1c53b6390ed5a8a" + resolved "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz" integrity sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw== dependencies: "@isaacs/cliui" "^8.0.2" @@ -6076,7 +6108,7 @@ jackspeak@^3.1.2: jest-changed-files@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.7.0.tgz#1c06d07e77c78e1585d020424dedc10d6e17ac3a" + resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz" integrity sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w== dependencies: execa "^5.0.0" @@ -6085,7 +6117,7 @@ jest-changed-files@^29.7.0: jest-circus@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.7.0.tgz#b6817a45fcc835d8b16d5962d0c026473ee3668a" + resolved "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz" integrity sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw== dependencies: "@jest/environment" "^29.7.0" @@ -6111,7 +6143,7 @@ jest-circus@^29.7.0: jest-cli@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.7.0.tgz#5592c940798e0cae677eec169264f2d839a37995" + resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz" integrity sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg== dependencies: "@jest/core" "^29.7.0" @@ -6128,7 +6160,7 @@ jest-cli@^29.7.0: jest-config@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.7.0.tgz#bcbda8806dbcc01b1e316a46bb74085a84b0245f" + resolved "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz" integrity sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ== dependencies: "@babel/core" "^7.11.6" @@ -6156,7 +6188,7 @@ jest-config@^29.7.0: jest-diff@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.7.0.tgz#017934a66ebb7ecf6f205e84699be10afd70458a" + resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz" integrity sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw== dependencies: chalk "^4.0.0" @@ -6166,14 +6198,14 @@ jest-diff@^29.7.0: jest-docblock@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.7.0.tgz#8fddb6adc3cdc955c93e2a87f61cfd350d5d119a" + resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz" integrity sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g== dependencies: detect-newline "^3.0.0" jest-each@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.7.0.tgz#162a9b3f2328bdd991beaabffbb74745e56577d1" + resolved "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz" integrity sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ== dependencies: "@jest/types" "^29.6.3" @@ -6184,7 +6216,7 @@ jest-each@^29.7.0: jest-environment-jsdom@^29.2.1: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz#d206fa3551933c3fd519e5dfdb58a0f5139a837f" + resolved "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz" integrity sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA== dependencies: "@jest/environment" "^29.7.0" @@ -6198,7 +6230,7 @@ jest-environment-jsdom@^29.2.1: jest-environment-node@^29.6.3, jest-environment-node@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.7.0.tgz#0b93e111dda8ec120bc8300e6d1fb9576e164376" + resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz" integrity sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw== dependencies: "@jest/environment" "^29.7.0" @@ -6210,7 +6242,7 @@ jest-environment-node@^29.6.3, jest-environment-node@^29.7.0: jest-expo@~51.0.3: version "51.0.4" - resolved "https://registry.yarnpkg.com/jest-expo/-/jest-expo-51.0.4.tgz#a780e5a2f7d3c54534f799666fd00a5a11de0ac7" + resolved "https://registry.npmjs.org/jest-expo/-/jest-expo-51.0.4.tgz" integrity sha512-WmlR4rUur1TNF/F14brKCmPdX3TWf7Bno/6A1PuxnflN79LEIXpXuPKMlMWwCCChTohGB5FRniknRibblWu1ug== dependencies: "@expo/config" "~9.0.0-beta.0" @@ -6228,12 +6260,12 @@ jest-expo@~51.0.3: jest-get-type@^29.6.3: version "29.6.3" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.6.3.tgz#36f499fdcea197c1045a127319c0481723908fd1" + resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz" integrity sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw== jest-haste-map@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.7.0.tgz#3c2396524482f5a0506376e6c858c3bbcc17b104" + resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz" integrity sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA== dependencies: "@jest/types" "^29.6.3" @@ -6252,7 +6284,7 @@ jest-haste-map@^29.7.0: jest-leak-detector@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz#5b7ec0dadfdfec0ca383dc9aa016d36b5ea4c728" + resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz" integrity sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw== dependencies: jest-get-type "^29.6.3" @@ -6260,7 +6292,7 @@ jest-leak-detector@^29.7.0: jest-matcher-utils@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz#ae8fec79ff249fd592ce80e3ee474e83a6c44f12" + resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz" integrity sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g== dependencies: chalk "^4.0.0" @@ -6270,7 +6302,7 @@ jest-matcher-utils@^29.7.0: jest-message-util@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.7.0.tgz#8bc392e204e95dfe7564abbe72a404e28e51f7f3" + resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz" integrity sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w== dependencies: "@babel/code-frame" "^7.12.13" @@ -6285,7 +6317,7 @@ jest-message-util@^29.7.0: jest-mock@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.7.0.tgz#4e836cf60e99c6fcfabe9f99d017f3fdd50a6347" + resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz" integrity sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw== dependencies: "@jest/types" "^29.6.3" @@ -6294,17 +6326,17 @@ jest-mock@^29.7.0: jest-pnp-resolver@^1.2.2: version "1.2.3" - resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" + resolved "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz" integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== jest-regex-util@^29.0.0, jest-regex-util@^29.6.3: version "29.6.3" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.6.3.tgz#4a556d9c776af68e1c5f48194f4d0327d24e8a52" + resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz" integrity sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg== jest-resolve-dependencies@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz#1b04f2c095f37fc776ff40803dc92921b1e88428" + resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz" integrity sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA== dependencies: jest-regex-util "^29.6.3" @@ -6312,7 +6344,7 @@ jest-resolve-dependencies@^29.7.0: jest-resolve@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.7.0.tgz#64d6a8992dd26f635ab0c01e5eef4399c6bcbc30" + resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz" integrity sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA== dependencies: chalk "^4.0.0" @@ -6327,7 +6359,7 @@ jest-resolve@^29.7.0: jest-runner@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.7.0.tgz#809af072d408a53dcfd2e849a4c976d3132f718e" + resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz" integrity sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ== dependencies: "@jest/console" "^29.7.0" @@ -6354,7 +6386,7 @@ jest-runner@^29.7.0: jest-runtime@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.7.0.tgz#efecb3141cf7d3767a3a0cc8f7c9990587d3d817" + resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz" integrity sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ== dependencies: "@jest/environment" "^29.7.0" @@ -6382,7 +6414,7 @@ jest-runtime@^29.7.0: jest-snapshot@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.7.0.tgz#c2c574c3f51865da1bb329036778a69bf88a6be5" + resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz" integrity sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw== dependencies: "@babel/core" "^7.11.6" @@ -6408,7 +6440,7 @@ jest-snapshot@^29.7.0: jest-util@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc" + resolved "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz" integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== dependencies: "@jest/types" "^29.6.3" @@ -6420,7 +6452,7 @@ jest-util@^29.7.0: jest-validate@^29.6.3, jest-validate@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.7.0.tgz#7bf705511c64da591d46b15fce41400d52147d9c" + resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz" integrity sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw== dependencies: "@jest/types" "^29.6.3" @@ -6432,7 +6464,7 @@ jest-validate@^29.6.3, jest-validate@^29.7.0: jest-watch-select-projects@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/jest-watch-select-projects/-/jest-watch-select-projects-2.0.0.tgz#4373d7e4de862aae28b46e036b669a4c913ea867" + resolved "https://registry.npmjs.org/jest-watch-select-projects/-/jest-watch-select-projects-2.0.0.tgz" integrity sha512-j00nW4dXc2NiCW6znXgFLF9g8PJ0zP25cpQ1xRro/HU2GBfZQFZD0SoXnAlaoKkIY4MlfTMkKGbNXFpvCdjl1w== dependencies: ansi-escapes "^4.3.0" @@ -6441,7 +6473,7 @@ jest-watch-select-projects@^2.0.0: jest-watch-typeahead@2.2.1: version "2.2.1" - resolved "https://registry.yarnpkg.com/jest-watch-typeahead/-/jest-watch-typeahead-2.2.1.tgz#36601520a2a30fd561788552dbda9c76bb44814a" + resolved "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-2.2.1.tgz" integrity sha512-jYpYmUnTzysmVnwq49TAxlmtOAwp8QIqvZyoofQFn8fiWhEDZj33ZXzg3JA4nGnzWFm1hbWf3ADpteUokvXgFA== dependencies: ansi-escapes "^6.0.0" @@ -6454,7 +6486,7 @@ jest-watch-typeahead@2.2.1: jest-watcher@^29.0.0, jest-watcher@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.7.0.tgz#7810d30d619c3a62093223ce6bb359ca1b28a2f2" + resolved "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz" integrity sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g== dependencies: "@jest/test-result" "^29.7.0" @@ -6468,7 +6500,7 @@ jest-watcher@^29.0.0, jest-watcher@^29.7.0: jest-worker@^29.6.3, jest-worker@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.7.0.tgz#acad073acbbaeb7262bd5389e1bcf43e10058d4a" + resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz" integrity sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw== dependencies: "@types/node" "*" @@ -6478,7 +6510,7 @@ jest-worker@^29.6.3, jest-worker@^29.7.0: jest@^29.2.1: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest/-/jest-29.7.0.tgz#994676fc24177f088f1c5e3737f5697204ff2613" + resolved "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz" integrity sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw== dependencies: "@jest/core" "^29.7.0" @@ -6488,12 +6520,12 @@ jest@^29.2.1: jimp-compact@0.16.1: version "0.16.1" - resolved "https://registry.yarnpkg.com/jimp-compact/-/jimp-compact-0.16.1.tgz#9582aea06548a2c1e04dd148d7c3ab92075aefa3" + resolved "https://registry.npmjs.org/jimp-compact/-/jimp-compact-0.16.1.tgz" integrity sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww== joi@^17.2.1: version "17.13.3" - resolved "https://registry.yarnpkg.com/joi/-/joi-17.13.3.tgz#0f5cc1169c999b30d344366d384b12d92558bcec" + resolved "https://registry.npmjs.org/joi/-/joi-17.13.3.tgz" integrity sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA== dependencies: "@hapi/hoek" "^9.3.0" @@ -6504,37 +6536,37 @@ joi@^17.2.1: join-component@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/join-component/-/join-component-1.1.0.tgz#b8417b750661a392bee2c2537c68b2a9d4977cd5" + resolved "https://registry.npmjs.org/join-component/-/join-component-1.1.0.tgz" integrity sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ== jose@^4.15.5: version "4.15.9" - resolved "https://registry.yarnpkg.com/jose/-/jose-4.15.9.tgz#9b68eda29e9a0614c042fa29387196c7dd800100" + resolved "https://registry.npmjs.org/jose/-/jose-4.15.9.tgz" integrity sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA== jpeg-js@^0.4.2: version "0.4.4" - resolved "https://registry.yarnpkg.com/jpeg-js/-/jpeg-js-0.4.4.tgz#a9f1c6f1f9f0fa80cdb3484ed9635054d28936aa" + resolved "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz" integrity sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg== js-cookie@^3.0.5: version "3.0.5" - resolved "https://registry.yarnpkg.com/js-cookie/-/js-cookie-3.0.5.tgz#0b7e2fd0c01552c58ba86e0841f94dc2557dcdbc" + resolved "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.5.tgz" integrity sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw== js-sha3@0.8.0: version "0.8.0" - resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" + resolved "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz" integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== js-yaml@^3.13.1: version "3.14.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== dependencies: argparse "^1.0.7" @@ -6542,24 +6574,24 @@ js-yaml@^3.13.1: js-yaml@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== dependencies: argparse "^2.0.1" jsc-android@^250231.0.0: version "250231.0.0" - resolved "https://registry.yarnpkg.com/jsc-android/-/jsc-android-250231.0.0.tgz#91720f8df382a108872fa4b3f558f33ba5e95262" + resolved "https://registry.npmjs.org/jsc-android/-/jsc-android-250231.0.0.tgz" integrity sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw== jsc-safe-url@^0.2.2, jsc-safe-url@^0.2.4: version "0.2.4" - resolved "https://registry.yarnpkg.com/jsc-safe-url/-/jsc-safe-url-0.2.4.tgz#141c14fbb43791e88d5dc64e85a374575a83477a" + resolved "https://registry.npmjs.org/jsc-safe-url/-/jsc-safe-url-0.2.4.tgz" integrity sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q== jscodeshift@^0.14.0: version "0.14.0" - resolved "https://registry.yarnpkg.com/jscodeshift/-/jscodeshift-0.14.0.tgz#7542e6715d6d2e8bde0b4e883f0ccea358b46881" + resolved "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.14.0.tgz" integrity sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA== dependencies: "@babel/core" "^7.13.16" @@ -6584,7 +6616,7 @@ jscodeshift@^0.14.0: jsdom@^20.0.0: version "20.0.3" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-20.0.3.tgz#886a41ba1d4726f67a8858028c99489fed6ad4db" + resolved "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz" integrity sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ== dependencies: abab "^2.0.6" @@ -6616,27 +6648,27 @@ jsdom@^20.0.0: jsesc@^2.5.1: version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz" integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== jsesc@^3.0.2, jsesc@~3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.0.2.tgz#bb8b09a6597ba426425f2e4a07245c3d00b9343e" + resolved "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz" integrity sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g== json-parse-better-errors@^1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz" integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== json-parse-even-better-errors@^2.3.0: version "2.3.1" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== json-schema-deref-sync@^0.13.0: version "0.13.0" - resolved "https://registry.yarnpkg.com/json-schema-deref-sync/-/json-schema-deref-sync-0.13.0.tgz#cb08b4ff435a48b5a149652d7750fdd071009823" + resolved "https://registry.npmjs.org/json-schema-deref-sync/-/json-schema-deref-sync-0.13.0.tgz" integrity sha512-YBOEogm5w9Op337yb6pAT6ZXDqlxAsQCanM3grid8lMWNxRJO/zWEJi3ZzqDL8boWfwhTFym5EFrNgWwpqcBRg== dependencies: clone "^2.1.2" @@ -6650,29 +6682,29 @@ json-schema-deref-sync@^0.13.0: json-schema-traverse@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz" integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== json-stringify-safe@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== json5@^2.2.2, json5@^2.2.3: version "2.2.3" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + resolved "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== jsonfile@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz" integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== optionalDependencies: graceful-fs "^4.1.6" jsonfile@^6.0.1: version "6.1.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz" integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== dependencies: universalify "^2.0.0" @@ -6681,27 +6713,27 @@ jsonfile@^6.0.1: kind-of@^6.0.2: version "6.0.3" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== kleur@^3.0.3: version "3.0.3" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz" integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== leven@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + resolved "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz" integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== libphonenumber-js@^1.10.31, libphonenumber-js@^1.10.44: version "1.11.12" - resolved "https://registry.yarnpkg.com/libphonenumber-js/-/libphonenumber-js-1.11.12.tgz#e108a4632048255f30b872bb1abbb3356f290fbb" + resolved "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.11.12.tgz" integrity sha512-QkJn9/D7zZ1ucvT++TQSvZuSA2xAWeUytU+DiEQwbPKLyrDpvbul2AFs1CGbRAPpSCCk47aRAb5DX5mmcayp4g== lighthouse-logger@^1.0.0: version "1.4.2" - resolved "https://registry.yarnpkg.com/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz#aef90f9e97cd81db367c7634292ee22079280aaa" + resolved "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz" integrity sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g== dependencies: debug "^2.6.9" @@ -6709,7 +6741,7 @@ lighthouse-logger@^1.0.0: lightningcss-darwin-arm64@1.19.0: version "1.19.0" - resolved "https://registry.yarnpkg.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.19.0.tgz#56ab071e932f845dbb7667f44f5b78441175a343" + resolved "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.19.0.tgz" integrity sha512-wIJmFtYX0rXHsXHSr4+sC5clwblEMji7HHQ4Ub1/CznVRxtCFha6JIt5JZaNf8vQrfdZnBxLLC6R8pC818jXqg== lightningcss-darwin-x64@1.19.0: @@ -6749,7 +6781,7 @@ lightningcss-win32-x64-msvc@1.19.0: lightningcss@~1.19.0: version "1.19.0" - resolved "https://registry.yarnpkg.com/lightningcss/-/lightningcss-1.19.0.tgz#fbbad0975de66252e38d96b5bdd2a62f2dd0ffbf" + resolved "https://registry.npmjs.org/lightningcss/-/lightningcss-1.19.0.tgz" integrity sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA== dependencies: detect-libc "^1.0.3" @@ -6765,12 +6797,12 @@ lightningcss@~1.19.0: lines-and-columns@^1.1.6: version "1.2.4" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== load-bmfont@^1.3.1: version "1.4.2" - resolved "https://registry.yarnpkg.com/load-bmfont/-/load-bmfont-1.4.2.tgz#e0f4516064fa5be8439f9c3696c01423a64e8717" + resolved "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.2.tgz" integrity sha512-qElWkmjW9Oq1F9EI5Gt7aD9zcdHb9spJCW1L/dmPf7KzCCEJxq8nhHz5eCgI9aMf7vrG/wyaCqdsI+Iy9ZTlog== dependencies: buffer-equal "0.0.1" @@ -6784,7 +6816,7 @@ load-bmfont@^1.3.1: locate-path@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz" integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== dependencies: p-locate "^3.0.0" @@ -6792,43 +6824,43 @@ locate-path@^3.0.0: locate-path@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== dependencies: p-locate "^4.1.0" locate-path@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz" integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== dependencies: p-locate "^5.0.0" lodash.debounce@^4.0.8: version "4.0.8" - resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + resolved "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz" integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== lodash.throttle@^4.1.1: version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" + resolved "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz" integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ== lodash@^4.17.10, lodash@^4.17.13, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21: version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== log-symbols@^2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz" integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== dependencies: chalk "^2.0.1" log-symbols@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz" integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== dependencies: chalk "^4.1.0" @@ -6836,7 +6868,7 @@ log-symbols@^4.1.0: logkitty@^0.7.1: version "0.7.1" - resolved "https://registry.yarnpkg.com/logkitty/-/logkitty-0.7.1.tgz#8e8d62f4085a826e8d38987722570234e33c6aa7" + resolved "https://registry.npmjs.org/logkitty/-/logkitty-0.7.1.tgz" integrity sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ== dependencies: ansi-fragments "^0.2.1" @@ -6845,33 +6877,46 @@ logkitty@^0.7.1: loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== dependencies: js-tokens "^3.0.0 || ^4.0.0" +lottie-ios@3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/lottie-ios/-/lottie-ios-3.4.0.tgz#a23be299760aefb44298b9cb5f60df489030adbf" + integrity sha512-qnV8UrawwnBRf5V0no2yxlPUE69vzfFqpxEEXGTZhb1/WX1xewqVNYvtbguqwQkdu9IT9D5WC1U9CHZ1KbkGDw== + +lottie-react-native@^5.1.5: + version "5.1.6" + resolved "https://registry.yarnpkg.com/lottie-react-native/-/lottie-react-native-5.1.6.tgz#6ae72829c3c0b95952dddd3d78c043f4dfbcb487" + integrity sha512-vhdeZstXMfuVKwnddYWjJgQ/1whGL58IJEJu/iSf0XQ5gAb4pp/+vy91mdYQLezlb8Aw4Vu3fKnqErJL2hwchg== + dependencies: + invariant "^2.2.2" + react-native-safe-modules "^1.0.3" + lru-cache@^10.0.1, lru-cache@^10.2.0: version "10.4.3" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz" integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== lru-cache@^5.1.1: version "5.1.1" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz" integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== dependencies: yallist "^3.0.2" lru-cache@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== dependencies: yallist "^4.0.0" make-dir@^2.0.0, make-dir@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" + resolved "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz" integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== dependencies: pify "^4.0.1" @@ -6879,33 +6924,33 @@ make-dir@^2.0.0, make-dir@^2.1.0: make-dir@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-4.0.0.tgz#c3c2307a771277cd9638305f915c29ae741b614e" + resolved "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz" integrity sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw== dependencies: semver "^7.5.3" makeerror@1.0.12: version "1.0.12" - resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" + resolved "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz" integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== dependencies: tmpl "1.0.5" marky@^1.2.2: version "1.2.5" - resolved "https://registry.yarnpkg.com/marky/-/marky-1.2.5.tgz#55796b688cbd72390d2d399eaaf1832c9413e3c0" + resolved "https://registry.npmjs.org/marky/-/marky-1.2.5.tgz" integrity sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q== md5-file@^3.2.3: version "3.2.3" - resolved "https://registry.yarnpkg.com/md5-file/-/md5-file-3.2.3.tgz#f9bceb941eca2214a4c0727f5e700314e770f06f" + resolved "https://registry.npmjs.org/md5-file/-/md5-file-3.2.3.tgz" integrity sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw== dependencies: buffer-alloc "^1.1.0" md5@^2.2.1: version "2.3.0" - resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" + resolved "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz" integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== dependencies: charenc "0.0.2" @@ -6914,7 +6959,7 @@ md5@^2.2.1: md5@~2.2.0: version "2.2.1" - resolved "https://registry.yarnpkg.com/md5/-/md5-2.2.1.tgz#53ab38d5fe3c8891ba465329ea23fac0540126f9" + resolved "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz" integrity sha512-PlGG4z5mBANDGCKsYQe0CaUYHdZYZt8ZPZLmEt+Urf0W4GlpTX4HescwHU+dc9+Z/G/vZKYZYFrwgm9VxK6QOQ== dependencies: charenc "~0.0.1" @@ -6923,49 +6968,49 @@ md5@~2.2.0: md5hex@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/md5hex/-/md5hex-1.0.0.tgz#ed74b477a2ee9369f75efee2f08d5915e52a42e8" + resolved "https://registry.npmjs.org/md5hex/-/md5hex-1.0.0.tgz" integrity sha512-c2YOUbp33+6thdCUi34xIyOU/a7bvGKj/3DB1iaPMTuPHf/Q2d5s4sn1FaCOO43XkXggnb08y5W2PU8UNYNLKQ== mdn-data@2.0.14: version "2.0.14" - resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" + resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz" integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== memoize-one@^5.0.0: version "5.2.1" - resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.2.1.tgz#8337aa3c4335581839ec01c3d594090cebe8f00e" + resolved "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz" integrity sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q== memoize-one@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-6.0.0.tgz#b2591b871ed82948aee4727dc6abceeeac8c1045" + resolved "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz" integrity sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw== memory-cache@~0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/memory-cache/-/memory-cache-0.2.0.tgz#7890b01d52c00c8ebc9d533e1f8eb17e3034871a" + resolved "https://registry.npmjs.org/memory-cache/-/memory-cache-0.2.0.tgz" integrity sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA== merge-options@^3.0.4: version "3.0.4" - resolved "https://registry.yarnpkg.com/merge-options/-/merge-options-3.0.4.tgz#84709c2aa2a4b24c1981f66c179fe5565cc6dbb7" + resolved "https://registry.npmjs.org/merge-options/-/merge-options-3.0.4.tgz" integrity sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ== dependencies: is-plain-obj "^2.1.0" merge-stream@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== merge2@^1.3.0, merge2@^1.4.1: version "1.4.1" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== metro-babel-transformer@0.80.12: version "0.80.12" - resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.80.12.tgz#ad02ade921dd4ced27b26b18ff31eb60608e3f56" + resolved "https://registry.npmjs.org/metro-babel-transformer/-/metro-babel-transformer-0.80.12.tgz" integrity sha512-YZziRs0MgA3pzCkkvOoQRXjIoVjvrpi/yRlJnObyIvMP6lFdtyG4nUGIwGY9VXnBvxmXD6mPY2e+NSw6JAyiRg== dependencies: "@babel/core" "^7.20.0" @@ -6975,14 +7020,14 @@ metro-babel-transformer@0.80.12: metro-cache-key@0.80.12: version "0.80.12" - resolved "https://registry.yarnpkg.com/metro-cache-key/-/metro-cache-key-0.80.12.tgz#52f5de698b85866503ace45d0ad76f75aaec92a4" + resolved "https://registry.npmjs.org/metro-cache-key/-/metro-cache-key-0.80.12.tgz" integrity sha512-o4BspKnugg/pE45ei0LGHVuBJXwRgruW7oSFAeSZvBKA/sGr0UhOGY3uycOgWInnS3v5yTTfiBA9lHlNRhsvGA== dependencies: flow-enums-runtime "^0.0.6" metro-cache@0.80.12: version "0.80.12" - resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.80.12.tgz#bd81af02c4f17b5aeab19bb030566b14147cee8b" + resolved "https://registry.npmjs.org/metro-cache/-/metro-cache-0.80.12.tgz" integrity sha512-p5kNHh2KJ0pbQI/H7ZBPCEwkyNcSz7OUkslzsiIWBMPQGFJ/xArMwkV7I+GJcWh+b4m6zbLxE5fk6fqbVK1xGA== dependencies: exponential-backoff "^3.1.1" @@ -6991,7 +7036,7 @@ metro-cache@0.80.12: metro-config@0.80.12, metro-config@^0.80.3: version "0.80.12" - resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.80.12.tgz#1543009f37f7ad26352ffc493fc6305d38bdf1c0" + resolved "https://registry.npmjs.org/metro-config/-/metro-config-0.80.12.tgz" integrity sha512-4rwOWwrhm62LjB12ytiuR5NgK1ZBNr24/He8mqCsC+HXZ+ATbrewLNztzbAZHtFsrxP4D4GLTGgh96pCpYLSAQ== dependencies: connect "^3.6.5" @@ -7005,7 +7050,7 @@ metro-config@0.80.12, metro-config@^0.80.3: metro-core@0.80.12, metro-core@^0.80.3: version "0.80.12" - resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.80.12.tgz#5ae337923ab19ff524077efa1aeacdf4480cfa28" + resolved "https://registry.npmjs.org/metro-core/-/metro-core-0.80.12.tgz" integrity sha512-QqdJ/yAK+IpPs2HU/h5v2pKEdANBagSsc6DRSjnwSyJsCoHlmyJKCaCJ7KhWGx+N4OHxh37hoA8fc2CuZbx0Fw== dependencies: flow-enums-runtime "^0.0.6" @@ -7014,7 +7059,7 @@ metro-core@0.80.12, metro-core@^0.80.3: metro-file-map@0.80.12: version "0.80.12" - resolved "https://registry.yarnpkg.com/metro-file-map/-/metro-file-map-0.80.12.tgz#b03240166a68aa16c5a168c26e190d9da547eefb" + resolved "https://registry.npmjs.org/metro-file-map/-/metro-file-map-0.80.12.tgz" integrity sha512-sYdemWSlk66bWzW2wp79kcPMzwuG32x1ZF3otI0QZTmrnTaaTiGyhE66P1z6KR4n2Eu5QXiABa6EWbAQv0r8bw== dependencies: anymatch "^3.0.3" @@ -7033,7 +7078,7 @@ metro-file-map@0.80.12: metro-minify-terser@0.80.12: version "0.80.12" - resolved "https://registry.yarnpkg.com/metro-minify-terser/-/metro-minify-terser-0.80.12.tgz#9951030e3bc52d7f3ac8664ce5862401c673e3c6" + resolved "https://registry.npmjs.org/metro-minify-terser/-/metro-minify-terser-0.80.12.tgz" integrity sha512-muWzUw3y5k+9083ZoX9VaJLWEV2Jcgi+Oan0Mmb/fBNMPqP9xVDuy4pOMn/HOiGndgfh/MK7s4bsjkyLJKMnXQ== dependencies: flow-enums-runtime "^0.0.6" @@ -7041,14 +7086,14 @@ metro-minify-terser@0.80.12: metro-resolver@0.80.12: version "0.80.12" - resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.80.12.tgz#e3815914c21315b04db200032c3243a4cc22dfb6" + resolved "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.80.12.tgz" integrity sha512-PR24gYRZnYHM3xT9pg6BdbrGbM/Cu1TcyIFBVlAk7qDAuHkUNQ1nMzWumWs+kwSvtd9eZGzHoucGJpTUEeLZAw== dependencies: flow-enums-runtime "^0.0.6" metro-runtime@0.80.12, metro-runtime@^0.80.3: version "0.80.12" - resolved "https://registry.yarnpkg.com/metro-runtime/-/metro-runtime-0.80.12.tgz#a68af3a2a013f5372d3b8cee234fdd467455550b" + resolved "https://registry.npmjs.org/metro-runtime/-/metro-runtime-0.80.12.tgz" integrity sha512-LIx7+92p5rpI0i6iB4S4GBvvLxStNt6fF0oPMaUd1Weku7jZdfkCZzmrtDD9CSQ6EPb0T9NUZoyXIxlBa3wOCw== dependencies: "@babel/runtime" "^7.25.0" @@ -7056,7 +7101,7 @@ metro-runtime@0.80.12, metro-runtime@^0.80.3: metro-source-map@0.80.12, metro-source-map@^0.80.3: version "0.80.12" - resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.80.12.tgz#36a2768c880f8c459d6d758e2d0975e36479f49c" + resolved "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.80.12.tgz" integrity sha512-o+AXmE7hpvM8r8MKsx7TI21/eerYYy2DCDkWfoBkv+jNkl61khvDHlQn0cXZa6lrcNZiZkl9oHSMcwLLIrFmpw== dependencies: "@babel/traverse" "^7.20.0" @@ -7071,7 +7116,7 @@ metro-source-map@0.80.12, metro-source-map@^0.80.3: metro-symbolicate@0.80.12: version "0.80.12" - resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.80.12.tgz#3a6aa783c6e494e2879342d88d5379fab69d1ed2" + resolved "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.80.12.tgz" integrity sha512-/dIpNdHksXkGHZXARZpL7doUzHqSNxgQ8+kQGxwpJuHnDhGkENxB5PS2QBaTDdEcmyTMjS53CN1rl9n1gR6fmw== dependencies: flow-enums-runtime "^0.0.6" @@ -7084,7 +7129,7 @@ metro-symbolicate@0.80.12: metro-transform-plugins@0.80.12: version "0.80.12" - resolved "https://registry.yarnpkg.com/metro-transform-plugins/-/metro-transform-plugins-0.80.12.tgz#4a3853630ad0f36cc2bffd53bae659ee171a389c" + resolved "https://registry.npmjs.org/metro-transform-plugins/-/metro-transform-plugins-0.80.12.tgz" integrity sha512-WQWp00AcZvXuQdbjQbx1LzFR31IInlkCDYJNRs6gtEtAyhwpMMlL2KcHmdY+wjDO9RPcliZ+Xl1riOuBecVlPA== dependencies: "@babel/core" "^7.20.0" @@ -7096,7 +7141,7 @@ metro-transform-plugins@0.80.12: metro-transform-worker@0.80.12: version "0.80.12" - resolved "https://registry.yarnpkg.com/metro-transform-worker/-/metro-transform-worker-0.80.12.tgz#80be8a185b7deb93402b682f58a1dd6724317ad1" + resolved "https://registry.npmjs.org/metro-transform-worker/-/metro-transform-worker-0.80.12.tgz" integrity sha512-KAPFN1y3eVqEbKLx1I8WOarHPqDMUa8WelWxaJCNKO/yHCP26zELeqTJvhsQup+8uwB6EYi/sp0b6TGoh6lOEA== dependencies: "@babel/core" "^7.20.0" @@ -7115,7 +7160,7 @@ metro-transform-worker@0.80.12: metro@0.80.12, metro@^0.80.3: version "0.80.12" - resolved "https://registry.yarnpkg.com/metro/-/metro-0.80.12.tgz#29a61fb83581a71e50c4d8d5d8458270edfe34cc" + resolved "https://registry.npmjs.org/metro/-/metro-0.80.12.tgz" integrity sha512-1UsH5FzJd9quUsD1qY+zUG4JY3jo3YEMxbMYH9jT6NK3j4iORhlwTK8fYTfAUBhDKjgLfKjAh7aoazNE23oIRA== dependencies: "@babel/code-frame" "^7.0.0" @@ -7163,7 +7208,7 @@ metro@0.80.12, metro@^0.80.3: micromatch@^4.0.2, micromatch@^4.0.4: version "4.0.8" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" + resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz" integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== dependencies: braces "^3.0.3" @@ -7171,118 +7216,118 @@ micromatch@^4.0.2, micromatch@^4.0.4: mime-db@1.52.0: version "1.52.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== "mime-db@>= 1.43.0 < 2": version "1.53.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.53.0.tgz#3cb63cd820fc29896d9d4e8c32ab4fcd74ccb447" + resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz" integrity sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg== mime-types@^2.1.12, mime-types@^2.1.27, mime-types@~2.1.34: version "2.1.35" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: mime-db "1.52.0" mime@1.6.0, mime@^1.3.4: version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== mime@^2.4.1: version "2.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" + resolved "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz" integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== mimic-fn@^1.0.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" + resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz" integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== mimic-fn@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== min-document@^2.19.0: version "2.19.0" - resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" + resolved "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz" integrity sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ== dependencies: dom-walk "^0.1.0" minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz" integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== minimalistic-crypto-utils@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz" integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== minimatch@^3.0.2, minimatch@^3.0.4, minimatch@^3.1.1: version "3.1.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== dependencies: brace-expansion "^1.1.7" minimatch@^9.0.4: version "9.0.5" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz" integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== dependencies: brace-expansion "^2.0.1" minimist@^1.2.0, minimist@^1.2.6: version "1.2.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== minipass-collect@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz#1621bc77e12258a12c60d34e2276ec5c20680863" + resolved "https://registry.npmjs.org/minipass-collect/-/minipass-collect-2.0.1.tgz" integrity sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw== dependencies: minipass "^7.0.3" minipass-flush@^1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" + resolved "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz" integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== dependencies: minipass "^3.0.0" minipass-pipeline@^1.2.4: version "1.2.4" - resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" + resolved "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz" integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== dependencies: minipass "^3.0.0" minipass@^3.0.0: version "3.3.6" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" + resolved "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz" integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== dependencies: yallist "^4.0.0" minipass@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" + resolved "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz" integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== "minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.3, minipass@^7.1.2: version "7.1.2" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707" + resolved "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz" integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== minizlib@^2.1.1: version "2.1.2" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" + resolved "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz" integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== dependencies: minipass "^3.0.0" @@ -7290,44 +7335,44 @@ minizlib@^2.1.1: mitt@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/mitt/-/mitt-3.0.1.tgz#ea36cf0cc30403601ae074c8f77b7092cdab36d1" + resolved "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz" integrity sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw== mkdirp@^0.5.1: version "0.5.6" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz" integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== dependencies: minimist "^1.2.6" mkdirp@^1.0.3, mkdirp@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== moment@^2.30.1: version "2.30.1" - resolved "https://registry.yarnpkg.com/moment/-/moment-2.30.1.tgz#f8c91c07b7a786e30c59926df530b4eac96974ae" + resolved "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz" integrity sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how== mrmime@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/mrmime/-/mrmime-1.0.1.tgz#5f90c825fad4bdd41dc914eff5d1a8cfdaf24f27" + resolved "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz" integrity sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw== ms@2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== ms@2.1.3, ms@^2.1.1, ms@^2.1.3: version "2.1.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== mz@^2.7.0: version "2.7.0" - resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + resolved "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz" integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== dependencies: any-promise "^1.0.0" @@ -7336,81 +7381,81 @@ mz@^2.7.0: nanoid@^3.1.23, nanoid@^3.3.7: version "3.3.7" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz" integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== natural-compare@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== negotiator@0.6.3: version "0.6.3" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz" integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== neo-async@^2.5.0: version "2.6.2" - resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz" integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== nested-error-stacks@~2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-2.0.1.tgz#d2cc9fc5235ddb371fc44d506234339c8e4b0a4b" + resolved "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.0.1.tgz" integrity sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A== nice-try@^1.0.4: version "1.0.5" - resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz" integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== nocache@^3.0.1: version "3.0.4" - resolved "https://registry.yarnpkg.com/nocache/-/nocache-3.0.4.tgz#5b37a56ec6e09fc7d401dceaed2eab40c8bfdf79" + resolved "https://registry.npmjs.org/nocache/-/nocache-3.0.4.tgz" integrity sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw== node-abort-controller@^3.1.1: version "3.1.1" - resolved "https://registry.yarnpkg.com/node-abort-controller/-/node-abort-controller-3.1.1.tgz#a94377e964a9a37ac3976d848cb5c765833b8548" + resolved "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz" integrity sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ== node-dir@^0.1.17: version "0.1.17" - resolved "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.17.tgz#5f5665d93351335caabef8f1c554516cf5f1e4e5" + resolved "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz" integrity sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg== dependencies: minimatch "^3.0.2" node-fetch@^2.2.0, node-fetch@^2.6.0, node-fetch@^2.6.1, node-fetch@^2.6.12, node-fetch@^2.6.7: version "2.7.0" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz" integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== dependencies: whatwg-url "^5.0.0" node-forge@^1, node-forge@^1.2.1, node-forge@^1.3.1: version "1.3.1" - resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" + resolved "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz" integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== node-int64@^0.4.0: version "0.4.0" - resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz" integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== node-releases@^2.0.18: version "2.0.18" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f" + resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz" integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== node-stream-zip@^1.9.1: version "1.15.0" - resolved "https://registry.yarnpkg.com/node-stream-zip/-/node-stream-zip-1.15.0.tgz#158adb88ed8004c6c49a396b50a6a5de3bca33ea" + resolved "https://registry.npmjs.org/node-stream-zip/-/node-stream-zip-1.15.0.tgz" integrity sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw== node-vibrant@3.1.6: version "3.1.6" - resolved "https://registry.yarnpkg.com/node-vibrant/-/node-vibrant-3.1.6.tgz#8554c3108903232cbe1e722f928469ee4379aa18" + resolved "https://registry.npmjs.org/node-vibrant/-/node-vibrant-3.1.6.tgz" integrity sha512-Wlc/hQmBMOu6xon12ZJHS2N3M+I6J8DhrD3Yo6m5175v8sFkVIN+UjhKVRcO+fqvre89ASTpmiFEP3nPO13SwA== dependencies: "@jimp/custom" "^0.16.1" @@ -7423,12 +7468,12 @@ node-vibrant@3.1.6: normalize-path@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== npm-package-arg@^7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-7.0.0.tgz#52cdf08b491c0c59df687c4c925a89102ef794a5" + resolved "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-7.0.0.tgz" integrity sha512-xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g== dependencies: hosted-git-info "^3.0.2" @@ -7438,60 +7483,60 @@ npm-package-arg@^7.0.0: npm-run-path@^2.0.0: version "2.0.2" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz" integrity sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw== dependencies: path-key "^2.0.0" npm-run-path@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== dependencies: path-key "^3.0.0" nth-check@^2.0.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" + resolved "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz" integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== dependencies: boolbase "^1.0.0" nullthrows@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1" + resolved "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz" integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw== nwsapi@^2.2.2: version "2.2.13" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.13.tgz#e56b4e98960e7a040e5474536587e599c4ff4655" + resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.13.tgz" integrity sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ== ob1@0.80.12: version "0.80.12" - resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.80.12.tgz#0451944ba6e5be225cc9751d8cd0d7309d2d1537" + resolved "https://registry.npmjs.org/ob1/-/ob1-0.80.12.tgz" integrity sha512-VMArClVT6LkhUGpnuEoBuyjG9rzUyEzg4PDkav6wK1cLhOK02gPCYFxoiB4mqVnrMhDpIzJcrGNAMVi9P+hXrw== dependencies: flow-enums-runtime "^0.0.6" object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== object-inspect@^1.13.1: version "1.13.2" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.2.tgz#dea0088467fb991e67af4058147a24824a3043ff" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz" integrity sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g== object-keys@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== object.assign@^4.1.5: version "4.1.5" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0" + resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz" integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== dependencies: call-bind "^1.0.5" @@ -7501,59 +7546,59 @@ object.assign@^4.1.5: omggif@^1.0.10, omggif@^1.0.9: version "1.0.10" - resolved "https://registry.yarnpkg.com/omggif/-/omggif-1.0.10.tgz#ddaaf90d4a42f532e9e7cb3a95ecdd47f17c7b19" + resolved "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz" integrity sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw== on-finished@2.4.1: version "2.4.1" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" + resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz" integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== dependencies: ee-first "1.1.1" on-finished@~2.3.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz" integrity sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww== dependencies: ee-first "1.1.1" on-headers@~1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + resolved "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz" integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== dependencies: wrappy "1" onetime@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" + resolved "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz" integrity sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ== dependencies: mimic-fn "^1.0.0" onetime@^5.1.0, onetime@^5.1.2: version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== dependencies: mimic-fn "^2.1.0" open@^6.2.0: version "6.4.0" - resolved "https://registry.yarnpkg.com/open/-/open-6.4.0.tgz#5c13e96d0dc894686164f18965ecfe889ecfc8a9" + resolved "https://registry.npmjs.org/open/-/open-6.4.0.tgz" integrity sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg== dependencies: is-wsl "^1.1.0" open@^7.0.3: version "7.4.2" - resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321" + resolved "https://registry.npmjs.org/open/-/open-7.4.2.tgz" integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q== dependencies: is-docker "^2.0.0" @@ -7561,7 +7606,7 @@ open@^7.0.3: open@^8.0.4, open@^8.3.0: version "8.4.2" - resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" + resolved "https://registry.npmjs.org/open/-/open-8.4.2.tgz" integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ== dependencies: define-lazy-prop "^2.0.0" @@ -7570,7 +7615,7 @@ open@^8.0.4, open@^8.3.0: ora@3.4.0, ora@^3.4.0: version "3.4.0" - resolved "https://registry.yarnpkg.com/ora/-/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318" + resolved "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz" integrity sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg== dependencies: chalk "^2.4.2" @@ -7582,7 +7627,7 @@ ora@3.4.0, ora@^3.4.0: ora@^5.4.1: version "5.4.1" - resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" + resolved "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz" integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== dependencies: bl "^4.1.0" @@ -7597,17 +7642,17 @@ ora@^5.4.1: os-homedir@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + resolved "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz" integrity sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ== os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz" integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== osenv@^0.1.5: version "0.1.5" - resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" + resolved "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz" integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== dependencies: os-homedir "^1.0.0" @@ -7615,79 +7660,79 @@ osenv@^0.1.5: p-finally@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz" integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== p-limit@^2.0.0, p-limit@^2.2.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== dependencies: p-try "^2.0.0" p-limit@^3.0.2, p-limit@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== dependencies: yocto-queue "^0.1.0" p-locate@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz" integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== dependencies: p-limit "^2.0.0" p-locate@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== dependencies: p-limit "^2.2.0" p-locate@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz" integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== dependencies: p-limit "^3.0.2" p-map@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + resolved "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz" integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== dependencies: aggregate-error "^3.0.0" p-try@^2.0.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== package-json-from-dist@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505" + resolved "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz" integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== pako@^1.0.5: version "1.0.11" - resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" + resolved "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz" integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== parse-bmfont-ascii@^1.0.3: version "1.0.6" - resolved "https://registry.yarnpkg.com/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz#11ac3c3ff58f7c2020ab22769079108d4dfa0285" + resolved "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz" integrity sha512-U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA== parse-bmfont-binary@^1.0.5: version "1.0.6" - resolved "https://registry.yarnpkg.com/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz#d038b476d3e9dd9db1e11a0b0e53a22792b69006" + resolved "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz" integrity sha512-GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA== parse-bmfont-xml@^1.1.4: version "1.1.6" - resolved "https://registry.yarnpkg.com/parse-bmfont-xml/-/parse-bmfont-xml-1.1.6.tgz#016b655da7aebe6da38c906aca16bf0415773767" + resolved "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.6.tgz" integrity sha512-0cEliVMZEhrFDwMh4SxIyVJpqYoOWDJ9P895tFuS+XuNzI5UBmBk5U5O4KuJdTnZpSBI4LFA2+ZiJaiwfSwlMA== dependencies: xml-parse-from-string "^1.0.0" @@ -7695,12 +7740,12 @@ parse-bmfont-xml@^1.1.4: parse-headers@^2.0.0: version "2.0.5" - resolved "https://registry.yarnpkg.com/parse-headers/-/parse-headers-2.0.5.tgz#069793f9356a54008571eb7f9761153e6c770da9" + resolved "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.5.tgz" integrity sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA== parse-json@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz" integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== dependencies: error-ex "^1.3.1" @@ -7708,7 +7753,7 @@ parse-json@^4.0.0: parse-json@^5.2.0: version "5.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== dependencies: "@babel/code-frame" "^7.0.0" @@ -7718,26 +7763,26 @@ parse-json@^5.2.0: parse-png@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/parse-png/-/parse-png-2.1.0.tgz#2a42ad719fedf90f81c59ebee7ae59b280d6b338" + resolved "https://registry.npmjs.org/parse-png/-/parse-png-2.1.0.tgz" integrity sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ== dependencies: pngjs "^3.3.0" parse5@^7.0.0, parse5@^7.1.1: version "7.2.0" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.2.0.tgz#8a0591ce9b7c5e2027173ab737d4d3fc3d826fab" + resolved "https://registry.npmjs.org/parse5/-/parse5-7.2.0.tgz" integrity sha512-ZkDsAOcxsUMZ4Lz5fVciOehNcJ+Gb8gTzcA4yl3wnc273BAybYWrQ+Ks/OjCjSEpjvQkDSeZbybK9qj2VHHdGA== dependencies: entities "^4.5.0" parseurl@~1.3.3: version "1.3.3" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz" integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== password-prompt@^1.0.4: version "1.1.3" - resolved "https://registry.yarnpkg.com/password-prompt/-/password-prompt-1.1.3.tgz#05e539f4e7ca4d6c865d479313f10eb9db63ee5f" + resolved "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.3.tgz" integrity sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw== dependencies: ansi-escapes "^4.3.2" @@ -7745,37 +7790,37 @@ password-prompt@^1.0.4: path-exists@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz" integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== path-exists@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== path-is-absolute@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== path-key@^2.0.0, path-key@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz" integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== path-key@^3.0.0, path-key@^3.1.0: version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== path-parse@^1.0.5, path-parse@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== path-scurry@^1.11.1: version "1.11.1" - resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2" + resolved "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz" integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== dependencies: lru-cache "^10.2.0" @@ -7783,80 +7828,80 @@ path-scurry@^1.11.1: path-type@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== peek-readable@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/peek-readable/-/peek-readable-4.1.0.tgz#4ece1111bf5c2ad8867c314c81356847e8a62e72" + resolved "https://registry.npmjs.org/peek-readable/-/peek-readable-4.1.0.tgz" integrity sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg== permissionless@^0.2.17: version "0.2.17" - resolved "https://registry.yarnpkg.com/permissionless/-/permissionless-0.2.17.tgz#fca70dededbd4a7006de08988003042c184dc6f3" + resolved "https://registry.npmjs.org/permissionless/-/permissionless-0.2.17.tgz" integrity sha512-M2+8qXNWTo2mmiriBhCFtNUOKd8UDJ1AXNnLflJw9VePIv5PNR1QqkTa76wWb1mzoZyc1hVObmA0pi7puCBj3A== phin@^2.9.1: version "2.9.3" - resolved "https://registry.yarnpkg.com/phin/-/phin-2.9.3.tgz#f9b6ac10a035636fb65dfc576aaaa17b8743125c" + resolved "https://registry.npmjs.org/phin/-/phin-2.9.3.tgz" integrity sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA== phin@^3.7.1: version "3.7.1" - resolved "https://registry.yarnpkg.com/phin/-/phin-3.7.1.tgz#bf841da75ee91286691b10e41522a662aa628fd6" + resolved "https://registry.npmjs.org/phin/-/phin-3.7.1.tgz" integrity sha512-GEazpTWwTZaEQ9RhL7Nyz0WwqilbqgLahDM3D0hxWwmVDI52nXEybHqiN6/elwpkJBhcuj+WbBu+QfT0uhPGfQ== dependencies: centra "^2.7.0" picocolors@^1.0.0, picocolors@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59" + resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz" integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw== picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: version "2.3.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== picomatch@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-3.0.1.tgz#817033161def55ec9638567a2f3bbc876b3e7516" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-3.0.1.tgz" integrity sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag== pify@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + resolved "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz" integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== pirates@^4.0.1, pirates@^4.0.4, pirates@^4.0.6: version "4.0.6" - resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz" integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== pixelmatch@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/pixelmatch/-/pixelmatch-4.0.2.tgz#8f47dcec5011b477b67db03c243bc1f3085e8854" + resolved "https://registry.npmjs.org/pixelmatch/-/pixelmatch-4.0.2.tgz" integrity sha512-J8B6xqiO37sU/gkcMglv6h5Jbd9xNER7aHzpfRdNmV4IbQBzBpe4l9XmbG+xPF/znacgu2jfEw+wHffaq/YkXA== dependencies: pngjs "^3.0.0" pkg-dir@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" + resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz" integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== dependencies: find-up "^3.0.0" pkg-dir@^4.2.0: version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== dependencies: find-up "^4.0.0" plist@^3.0.5: version "3.1.0" - resolved "https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz#797a516a93e62f5bde55e0b9cc9c967f860893c9" + resolved "https://registry.npmjs.org/plist/-/plist-3.1.0.tgz" integrity sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ== dependencies: "@xmldom/xmldom" "^0.8.8" @@ -7865,27 +7910,27 @@ plist@^3.0.5: pngjs@^3.0.0, pngjs@^3.3.0, pngjs@^3.3.3: version "3.4.0" - resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-3.4.0.tgz#99ca7d725965fb655814eaf65f38f12bbdbf555f" + resolved "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz" integrity sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w== pngjs@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-5.0.0.tgz#e79dd2b215767fd9c04561c01236df960bce7fbb" + resolved "https://registry.npmjs.org/pngjs/-/pngjs-5.0.0.tgz" integrity sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw== possible-typed-array-names@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz#89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f" + resolved "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz" integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== postcss-value-parser@^4.2.0: version "4.2.0" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== postcss@~8.4.32: version "8.4.47" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365" + resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz" integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ== dependencies: nanoid "^3.3.7" @@ -7894,17 +7939,17 @@ postcss@~8.4.32: prettier@^3.3.3: version "3.3.3" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.3.tgz#30c54fe0be0d8d12e6ae61dbb10109ea00d53105" + resolved "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz" integrity sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew== pretty-bytes@5.6.0: version "5.6.0" - resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" + resolved "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz" integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== pretty-format@^24: version "24.9.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.9.0.tgz#12fac31b37019a4eea3c11aa9a959eb7628aa7c9" + resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz" integrity sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA== dependencies: "@jest/types" "^24.9.0" @@ -7914,7 +7959,7 @@ pretty-format@^24: pretty-format@^26.5.2, pretty-format@^26.6.2: version "26.6.2" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93" + resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz" integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg== dependencies: "@jest/types" "^26.6.2" @@ -7924,7 +7969,7 @@ pretty-format@^26.5.2, pretty-format@^26.6.2: pretty-format@^29.0.0, pretty-format@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.7.0.tgz#ca42c758310f365bfa71a0bda0a807160b776812" + resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz" integrity sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ== dependencies: "@jest/schemas" "^29.6.3" @@ -7933,36 +7978,36 @@ pretty-format@^29.0.0, pretty-format@^29.7.0: process-nextick-args@~2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== process@^0.11.10: version "0.11.10" - resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + resolved "https://registry.npmjs.org/process/-/process-0.11.10.tgz" integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== progress@2.0.3: version "2.0.3" - resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== promise@^7.1.1: version "7.3.1" - resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" + resolved "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz" integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== dependencies: asap "~2.0.3" promise@^8.3.0: version "8.3.0" - resolved "https://registry.yarnpkg.com/promise/-/promise-8.3.0.tgz#8cb333d1edeb61ef23869fbb8a4ea0279ab60e0a" + resolved "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz" integrity sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg== dependencies: asap "~2.0.6" prompts@^2.0.1, prompts@^2.2.1, prompts@^2.3.2, prompts@^2.4.2: version "2.4.2" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz" integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== dependencies: kleur "^3.0.3" @@ -7970,7 +8015,7 @@ prompts@^2.0.1, prompts@^2.2.1, prompts@^2.3.2, prompts@^2.4.2: prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.0, prop-types@^15.8.1: version "15.8.1" - resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" + resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz" integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== dependencies: loose-envify "^1.4.0" @@ -7979,17 +8024,17 @@ prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.0, prop-types@^15.8.1: property-expr@^2.0.5: version "2.0.6" - resolved "https://registry.yarnpkg.com/property-expr/-/property-expr-2.0.6.tgz#f77bc00d5928a6c748414ad12882e83f24aec1e8" + resolved "https://registry.npmjs.org/property-expr/-/property-expr-2.0.6.tgz" integrity sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA== psl@^1.1.33: version "1.9.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" + resolved "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz" integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== pump@^3.0.0: version "3.0.2" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.2.tgz#836f3edd6bc2ee599256c924ffe0d88573ddcbf8" + resolved "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz" integrity sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw== dependencies: end-of-stream "^1.1.0" @@ -7997,27 +8042,27 @@ pump@^3.0.0: punycode@^1.4.1: version "1.4.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + resolved "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz" integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== punycode@^2.1.0, punycode@^2.1.1: version "2.3.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz" integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== pure-rand@^6.0.0: version "6.1.0" - resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.1.0.tgz#d173cf23258231976ccbdb05247c9787957604f2" + resolved "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz" integrity sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA== qrcode-terminal@0.11.0: version "0.11.0" - resolved "https://registry.yarnpkg.com/qrcode-terminal/-/qrcode-terminal-0.11.0.tgz#ffc6c28a2fc0bfb47052b47e23f4f446a5fbdb9e" + resolved "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.11.0.tgz" integrity sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ== qrcode@^1.5.1: version "1.5.4" - resolved "https://registry.yarnpkg.com/qrcode/-/qrcode-1.5.4.tgz#5cb81d86eb57c675febb08cf007fff963405da88" + resolved "https://registry.npmjs.org/qrcode/-/qrcode-1.5.4.tgz" integrity sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg== dependencies: dijkstrajs "^1.0.1" @@ -8026,14 +8071,14 @@ qrcode@^1.5.1: qs@^6.12.3: version "6.13.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.13.0.tgz#6ca3bd58439f7e245655798997787b0d88a51906" + resolved "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz" integrity sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg== dependencies: side-channel "^1.0.6" query-string@^7.1.3: version "7.1.3" - resolved "https://registry.yarnpkg.com/query-string/-/query-string-7.1.3.tgz#a1cf90e994abb113a325804a972d98276fe02328" + resolved "https://registry.npmjs.org/query-string/-/query-string-7.1.3.tgz" integrity sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg== dependencies: decode-uri-component "^0.2.2" @@ -8043,34 +8088,34 @@ query-string@^7.1.3: querystring@^0.2.1: version "0.2.1" - resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.1.tgz#40d77615bb09d16902a85c3e38aa8b5ed761c2dd" + resolved "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz" integrity sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg== querystringify@^2.1.1: version "2.2.0" - resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" + resolved "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz" integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== queue-microtask@^1.2.2: version "1.2.3" - resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== queue@6.0.2: version "6.0.2" - resolved "https://registry.yarnpkg.com/queue/-/queue-6.0.2.tgz#b91525283e2315c7553d2efa18d83e76432fed65" + resolved "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz" integrity sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA== dependencies: inherits "~2.0.3" range-parser@~1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== rc@~1.2.7: version "1.2.8" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + resolved "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz" integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== dependencies: deep-extend "^0.6.0" @@ -8080,7 +8125,7 @@ rc@~1.2.7: react-devtools-core@^5.0.0: version "5.3.2" - resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-5.3.2.tgz#d5df92f8ef2a587986d094ef2c47d84cf4ae46ec" + resolved "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-5.3.2.tgz" integrity sha512-crr9HkVrDiJ0A4zot89oS0Cgv0Oa4OG1Em4jit3P3ZxZSKPMYyMjfwMqgcJna9o625g8oN87rBm8SWWrSTBZxg== dependencies: shell-quote "^1.6.1" @@ -8088,7 +8133,7 @@ react-devtools-core@^5.0.0: react-dom@18.2.0: version "18.2.0" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" + resolved "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz" integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== dependencies: loose-envify "^1.1.0" @@ -8096,54 +8141,61 @@ react-dom@18.2.0: react-fast-compare@^3.2.0, react-fast-compare@^3.2.2: version "3.2.2" - resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.2.tgz#929a97a532304ce9fee4bcae44234f1ce2c21d49" + resolved "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz" integrity sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ== react-freeze@^1.0.0: version "1.0.4" - resolved "https://registry.yarnpkg.com/react-freeze/-/react-freeze-1.0.4.tgz#cbbea2762b0368b05cbe407ddc9d518c57c6f3ad" + resolved "https://registry.npmjs.org/react-freeze/-/react-freeze-1.0.4.tgz" integrity sha512-r4F0Sec0BLxWicc7HEyo2x3/2icUTrRmDjaaRyzzn+7aDyFZliszMDOgLVwSnQnYENOlL1o569Ze2HZefk8clA== react-hook-form@^7.53.0: version "7.53.0" - resolved "https://registry.yarnpkg.com/react-hook-form/-/react-hook-form-7.53.0.tgz#3cf70951bf41fa95207b34486203ebefbd3a05ab" + resolved "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.53.0.tgz" integrity sha512-M1n3HhqCww6S2hxLxciEXy2oISPnAzxY7gvwVPrtlczTM/1dDadXgUxDpHMrMTblDOcm/AXtXxHwZ3jpg1mqKQ== "react-is@^16.12.0 || ^17.0.0 || ^18.0.0", react-is@^18.0.0, react-is@^18.2.0: version "18.3.1" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e" + resolved "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz" integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg== react-is@^16.13.0, react-is@^16.13.1, react-is@^16.7.0, react-is@^16.8.4: version "16.13.1" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== react-is@^17.0.1: version "17.0.2" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" + resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz" integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== react-native-animatable@1.3.3: version "1.3.3" - resolved "https://registry.yarnpkg.com/react-native-animatable/-/react-native-animatable-1.3.3.tgz#a13a4af8258e3bb14d0a9d839917e9bb9274ec8a" + resolved "https://registry.npmjs.org/react-native-animatable/-/react-native-animatable-1.3.3.tgz" integrity sha512-2ckIxZQAsvWn25Ho+DK3d1mXIgj7tITkrS4pYDvx96WyOttSvzzFeQnM2od0+FUMzILbdHDsDEqZvnz1DYNQ1w== dependencies: prop-types "^15.7.2" +react-native-draggable-flatlist@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/react-native-draggable-flatlist/-/react-native-draggable-flatlist-4.0.1.tgz" + integrity sha512-ZO1QUTNx64KZfXGXeXcBfql67l38X7kBcJ3rxUVZzPHt5r035GnGzIC0F8rqSXp6zgnwgUYMfB6zQc5PKmPL9Q== + dependencies: + "@babel/preset-typescript" "^7.17.12" + react-native-fast-image@^8.6.3: version "8.6.3" - resolved "https://registry.yarnpkg.com/react-native-fast-image/-/react-native-fast-image-8.6.3.tgz#6edc3f9190092a909d636d93eecbcc54a8822255" + resolved "https://registry.npmjs.org/react-native-fast-image/-/react-native-fast-image-8.6.3.tgz" integrity sha512-Sdw4ESidXCXOmQ9EcYguNY2swyoWmx53kym2zRsvi+VeFCHEdkO+WG1DK+6W81juot40bbfLNhkc63QnWtesNg== react-native-flipper@^0.164.0: version "0.164.0" - resolved "https://registry.yarnpkg.com/react-native-flipper/-/react-native-flipper-0.164.0.tgz#64f6269a86a13a72e30f53ba9f5281d2073a7697" + resolved "https://registry.npmjs.org/react-native-flipper/-/react-native-flipper-0.164.0.tgz" integrity sha512-iJhIe3rqx6okuzBp4AJsTa2b8VRAOGzoLRFx/4HGbaGvu8AurZjz8TTQkhJsRma8dsHN2b6KKZPvGGW3wdWzvA== react-native-gesture-handler@~2.16.1: version "2.16.2" - resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.16.2.tgz#032bd2a07334292d7f6cff1dc9d1ec928f72e26d" + resolved "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-2.16.2.tgz" integrity sha512-vGFlrDKlmyI+BT+FemqVxmvO7nqxU33cgXVsn6IKAFishvlG3oV2Ds67D5nPkHMea8T+s1IcuMm0bF8ntZtAyg== dependencies: "@egjs/hammerjs" "^2.0.17" @@ -8154,14 +8206,14 @@ react-native-gesture-handler@~2.16.1: react-native-get-random-values@^1.11.0: version "1.11.0" - resolved "https://registry.yarnpkg.com/react-native-get-random-values/-/react-native-get-random-values-1.11.0.tgz#1ca70d1271f4b08af92958803b89dccbda78728d" + resolved "https://registry.npmjs.org/react-native-get-random-values/-/react-native-get-random-values-1.11.0.tgz" integrity sha512-4BTbDbRmS7iPdhYLRcz3PGFIpFJBwNZg9g42iwa2P6FOv9vZj/xJc678RZXnLNZzd0qd7Q3CCF6Yd+CU2eoXKQ== dependencies: fast-base64-decode "^1.0.0" react-native-helmet-async@2.0.4: version "2.0.4" - resolved "https://registry.yarnpkg.com/react-native-helmet-async/-/react-native-helmet-async-2.0.4.tgz#93f53a1ff22d6898039688a541653a2d6b6866bb" + resolved "https://registry.npmjs.org/react-native-helmet-async/-/react-native-helmet-async-2.0.4.tgz" integrity sha512-m3CkXWss6B1dd6mCMleLpzDCJJGGaHOLQsUzZv8kAASJmMfmVT4d2fx375iXKTRWT25ThBfae3dECuX5cq/8hg== dependencies: invariant "^2.2.4" @@ -8170,19 +8222,19 @@ react-native-helmet-async@2.0.4: react-native-image-colors@^2.4.0: version "2.4.0" - resolved "https://registry.yarnpkg.com/react-native-image-colors/-/react-native-image-colors-2.4.0.tgz#6af1d5fe0e994331de789c1fa33788971f755aec" + resolved "https://registry.npmjs.org/react-native-image-colors/-/react-native-image-colors-2.4.0.tgz" integrity sha512-qlC31+UNVthByNLVuYSEQeZghOXn3uy1GLF6lHKlvT1HM1GGFH/LXNhU8iXAoQvUyzNa1bEAOTo09Hwinvp/rA== dependencies: node-vibrant "3.1.6" react-native-linear-gradient@^2.8.3: version "2.8.3" - resolved "https://registry.yarnpkg.com/react-native-linear-gradient/-/react-native-linear-gradient-2.8.3.tgz#9a116649f86d74747304ee13db325e20b21e564f" + resolved "https://registry.npmjs.org/react-native-linear-gradient/-/react-native-linear-gradient-2.8.3.tgz" integrity sha512-KflAXZcEg54PXkLyflaSZQ3PJp4uC4whM7nT/Uot9m0e/qxFV3p6uor1983D1YOBJbJN7rrWdqIjq0T42jOJyA== react-native-modal@^13.0.1: version "13.0.1" - resolved "https://registry.yarnpkg.com/react-native-modal/-/react-native-modal-13.0.1.tgz#691f1e646abb96fa82c1788bf18a16d585da37cd" + resolved "https://registry.npmjs.org/react-native-modal/-/react-native-modal-13.0.1.tgz" integrity sha512-UB+mjmUtf+miaG/sDhOikRfBOv0gJdBU2ZE1HtFWp6UixW9jCk/bhGdHUgmZljbPpp0RaO/6YiMmQSSK3kkMaw== dependencies: prop-types "^15.6.2" @@ -8190,22 +8242,22 @@ react-native-modal@^13.0.1: react-native-otp-entry@^1.7.3: version "1.7.3" - resolved "https://registry.yarnpkg.com/react-native-otp-entry/-/react-native-otp-entry-1.7.3.tgz#16bc161eb9f30ab60840973fdaad629cb260e610" + resolved "https://registry.npmjs.org/react-native-otp-entry/-/react-native-otp-entry-1.7.3.tgz" integrity sha512-BN/oEpNMfA0cnw9tB9Oq6PZZQztOiq1Ow/M+rAFd0Nll9aO1gwfCwymgIGI89/+63FkmMbv39LcgsfkZNAYzWw== react-native-pager-view@6.3.0: version "6.3.0" - resolved "https://registry.yarnpkg.com/react-native-pager-view/-/react-native-pager-view-6.3.0.tgz#7e734e84b1692f877591335373f6fd92f0d67aa6" + resolved "https://registry.npmjs.org/react-native-pager-view/-/react-native-pager-view-6.3.0.tgz" integrity sha512-ufJOoVa9pFL1J/yb4hpsCqp8n1qTlcF5VvwqvCacHX//D7hSeRscsiIXg1u1pXNWwllvACb+mqxec/3Uj2mxrA== react-native-passkeys@^0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/react-native-passkeys/-/react-native-passkeys-0.3.0.tgz#83bf8aacacfb7d2dc8577f5091cd176957b42333" + resolved "https://registry.npmjs.org/react-native-passkeys/-/react-native-passkeys-0.3.0.tgz" integrity sha512-xjdoZVRInwFXXD92jpUvSM1OGiEmJgPWm6xc4WFSHb7LnypJ4LjSbfofi59WwA/n7Z/25mcnqZNh5Xq4Viuk+Q== react-native-qrcode-svg@^6.3.2: version "6.3.2" - resolved "https://registry.yarnpkg.com/react-native-qrcode-svg/-/react-native-qrcode-svg-6.3.2.tgz#84b2bb37201589cff1ab58e7f7c884c5133fe47f" + resolved "https://registry.npmjs.org/react-native-qrcode-svg/-/react-native-qrcode-svg-6.3.2.tgz" integrity sha512-IJ0UoKd33ATm08K569SOAQx0tP/MTmSjwhIPfEfgbCUGQuU6JTfgDT7sm1TVgAwPbTuA10wwJJYgWXnnFBQ4FQ== dependencies: prop-types "^15.8.0" @@ -8214,7 +8266,7 @@ react-native-qrcode-svg@^6.3.2: react-native-reanimated@~3.10.1: version "3.10.1" - resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-3.10.1.tgz#3c37d1100bbba0065df39c96aab0c1ff1b50c0fa" + resolved "https://registry.npmjs.org/react-native-reanimated/-/react-native-reanimated-3.10.1.tgz" integrity sha512-sfxg6vYphrDc/g4jf/7iJ7NRi+26z2+BszPmvmk0Vnrz6FL7HYljJqTf531F1x6tFmsf+FEAmuCtTUIXFLVo9w== dependencies: "@babel/plugin-transform-arrow-functions" "^7.0.0-0" @@ -8228,12 +8280,19 @@ react-native-reanimated@~3.10.1: react-native-safe-area-context@4.10.5: version "4.10.5" - resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-4.10.5.tgz#a9c677a48bd273afa6876772062ce08e8af1f18d" + resolved "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-4.10.5.tgz" integrity sha512-Wyb0Nqw2XJ6oZxW/cK8k5q7/UAhg/wbEG6UVf89rQqecDZTDA5ic//P9J6VvJRVZerzGmxWQpVuM7f+PRYUM4g== +react-native-safe-modules@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/react-native-safe-modules/-/react-native-safe-modules-1.0.3.tgz#f5f29bb9d09d17581193843d4173ad3054f74890" + integrity sha512-DUxti4Z+AgJ/ZsO5U7p3uSCUBko8JT8GvFlCeOXk9bMd+4qjpoDvMYpfbixXKgL88M+HwmU/KI1YFN6gsQZyBA== + dependencies: + dedent "^0.6.0" + react-native-screens@3.31.1: version "3.31.1" - resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-3.31.1.tgz#909a890f669e32b0fb1b1410278b71ad2f8238f6" + resolved "https://registry.npmjs.org/react-native-screens/-/react-native-screens-3.31.1.tgz" integrity sha512-8fRW362pfZ9y4rS8KY5P3DFScrmwo/vu1RrRMMx0PNHbeC9TLq0Kw1ubD83591yz64gLNHFLTVkTJmWeWCXKtQ== dependencies: react-freeze "^1.0.0" @@ -8241,7 +8300,7 @@ react-native-screens@3.31.1: react-native-svg@15.2.0: version "15.2.0" - resolved "https://registry.yarnpkg.com/react-native-svg/-/react-native-svg-15.2.0.tgz#9561a6b3bd6b44689f437ba13182afee33bd5557" + resolved "https://registry.npmjs.org/react-native-svg/-/react-native-svg-15.2.0.tgz" integrity sha512-R0E6IhcJfVLsL0lRmnUSm72QO+mTqcAOM5Jb8FVGxJqX3NfJMlMP0YyvcajZiaRR8CqQUpEoqrY25eyZb006kw== dependencies: css-select "^5.1.0" @@ -8249,14 +8308,14 @@ react-native-svg@15.2.0: react-native-tab-view@^3.5.2: version "3.5.2" - resolved "https://registry.yarnpkg.com/react-native-tab-view/-/react-native-tab-view-3.5.2.tgz#2789b8af6148b16835869566bf13dc3b0e6c1b46" + resolved "https://registry.npmjs.org/react-native-tab-view/-/react-native-tab-view-3.5.2.tgz" integrity sha512-nE5WqjbeEPsWQx4mtz81QGVvgHRhujTNIIZiMCx3Bj6CBFDafbk7XZp9ocmtzXUQaZ4bhtVS43R4FIiR4LboJw== dependencies: use-latest-callback "^0.1.5" react-native-web@~0.19.10: version "0.19.12" - resolved "https://registry.yarnpkg.com/react-native-web/-/react-native-web-0.19.12.tgz#30d1fd70bdff7886f43c0c2698629d830fade6bc" + resolved "https://registry.npmjs.org/react-native-web/-/react-native-web-0.19.12.tgz" integrity sha512-o2T0oztoVDQjztt4YksO9S1XRjoH/AqcSvifgWLrPJgGVbMWsfhILgl6lfUdEamVZzZSVV/2gqDVMAk/qq7mZw== dependencies: "@babel/runtime" "^7.18.6" @@ -8270,7 +8329,7 @@ react-native-web@~0.19.10: react-native-webview@^13.12.3: version "13.12.3" - resolved "https://registry.yarnpkg.com/react-native-webview/-/react-native-webview-13.12.3.tgz#3aa9d2fc982ba2681e56d3e96e22b63a0d929270" + resolved "https://registry.npmjs.org/react-native-webview/-/react-native-webview-13.12.3.tgz" integrity sha512-Y1I5YyDYyE7NC96RHLhd2nxh7ymLYOYLTefgx5ixxw2OToQK0ow3OJ+o77QcI1Tuevj5PCxwqC/14ceS/7yPJQ== dependencies: escape-string-regexp "^4.0.0" @@ -8278,7 +8337,7 @@ react-native-webview@^13.12.3: react-native@0.74.5: version "0.74.5" - resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.74.5.tgz#80e556690fc2583d46714d5618ecd30d93c24e81" + resolved "https://registry.npmjs.org/react-native/-/react-native-0.74.5.tgz" integrity sha512-Bgg2WvxaGODukJMTZFTZBNMKVaROHLwSb8VAGEdrlvKwfb1hHg/3aXTUICYk7dwgAnb+INbGMwnF8yeAgIUmqw== dependencies: "@jest/create-cache-key-function" "^29.6.3" @@ -8321,7 +8380,7 @@ react-native@0.74.5: react-redux@^9.1.2: version "9.1.2" - resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-9.1.2.tgz#deba38c64c3403e9abd0c3fbeab69ffd9d8a7e4b" + resolved "https://registry.npmjs.org/react-redux/-/react-redux-9.1.2.tgz" integrity sha512-0OA4dhM1W48l3uzmv6B7TXPCGmokUU4p1M44DGN2/D9a1FjVPukVjER1PcPX97jIg6aUeLq1XJo1IpfbgULn0w== dependencies: "@types/use-sync-external-store" "^0.0.3" @@ -8329,12 +8388,12 @@ react-redux@^9.1.2: react-refresh@^0.14.0, react-refresh@^0.14.2: version "0.14.2" - resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.2.tgz#3833da01ce32da470f1f936b9d477da5c7028bf9" + resolved "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz" integrity sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA== react-shallow-renderer@^16.15.0: version "16.15.0" - resolved "https://registry.yarnpkg.com/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz#48fb2cf9b23d23cde96708fe5273a7d3446f4457" + resolved "https://registry.npmjs.org/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz" integrity sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA== dependencies: object-assign "^4.1.1" @@ -8342,7 +8401,7 @@ react-shallow-renderer@^16.15.0: react-test-renderer@18.2.0: version "18.2.0" - resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-18.2.0.tgz#1dd912bd908ff26da5b9fca4fd1c489b9523d37e" + resolved "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-18.2.0.tgz" integrity sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA== dependencies: react-is "^18.2.0" @@ -8351,26 +8410,26 @@ react-test-renderer@18.2.0: react@18.2.0: version "18.2.0" - resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" + resolved "https://registry.npmjs.org/react/-/react-18.2.0.tgz" integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== dependencies: loose-envify "^1.1.0" reactotron-core-client@2.9.4: version "2.9.4" - resolved "https://registry.yarnpkg.com/reactotron-core-client/-/reactotron-core-client-2.9.4.tgz#eabc520ca8b270ee264e20172279f921778b0a4b" + resolved "https://registry.npmjs.org/reactotron-core-client/-/reactotron-core-client-2.9.4.tgz" integrity sha512-0MVo8R2YVC0t6uEkFJbdelC0lOzJun/+qIOlEpIYh08VKiNVR7GYXevhZvJfSmMAUSVFoGVpeQyTbeW3brgSDQ== dependencies: reactotron-core-contract "0.2.4" reactotron-core-contract@0.2.4: version "0.2.4" - resolved "https://registry.yarnpkg.com/reactotron-core-contract/-/reactotron-core-contract-0.2.4.tgz#c7038ce6bac5b8674b462895d7fe5e30661b24e8" + resolved "https://registry.npmjs.org/reactotron-core-contract/-/reactotron-core-contract-0.2.4.tgz" integrity sha512-CmNYahBdk9uES4vimlRsoM1gAQA6T5gXTuJzDvduOjKd0IZufZjkxzBAvhpkX5OIkPl4Xlsv+1AHXLWSJSwFLA== reactotron-react-native@^5.1.9: version "5.1.9" - resolved "https://registry.yarnpkg.com/reactotron-react-native/-/reactotron-react-native-5.1.9.tgz#1d9d557817e9f10f9c33c1339c54b46690f6ed97" + resolved "https://registry.npmjs.org/reactotron-react-native/-/reactotron-react-native-5.1.9.tgz" integrity sha512-tHkC5ZADXBJ9vRcs8TFEWOcK1QzHEzI3UnorwDDSU3hnWpwVt5MtxBcgQkicLIRWcPROe4lIJMf6SG9uc+opuA== dependencies: mitt "^3.0.1" @@ -8380,7 +8439,7 @@ reactotron-react-native@^5.1.9: readable-stream@^3.4.0, readable-stream@^3.6.0: version "3.6.2" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz" integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== dependencies: inherits "^2.0.3" @@ -8389,7 +8448,7 @@ readable-stream@^3.4.0, readable-stream@^3.6.0: readable-stream@~2.3.6: version "2.3.8" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz" integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== dependencies: core-util-is "~1.0.0" @@ -8402,19 +8461,19 @@ readable-stream@~2.3.6: readable-web-to-node-stream@^3.0.0: version "3.0.2" - resolved "https://registry.yarnpkg.com/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz#5d52bb5df7b54861fd48d015e93a2cb87b3ee0bb" + resolved "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz" integrity sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw== dependencies: readable-stream "^3.6.0" readline@^1.3.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/readline/-/readline-1.3.0.tgz#c580d77ef2cfc8752b132498060dc9793a7ac01c" + resolved "https://registry.npmjs.org/readline/-/readline-1.3.0.tgz" integrity sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg== recast@^0.21.0: version "0.21.5" - resolved "https://registry.yarnpkg.com/recast/-/recast-0.21.5.tgz#e8cd22bb51bcd6130e54f87955d33a2b2e57b495" + resolved "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz" integrity sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg== dependencies: ast-types "0.15.2" @@ -8424,44 +8483,44 @@ recast@^0.21.0: redux-persist@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/redux-persist/-/redux-persist-6.0.0.tgz#b4d2972f9859597c130d40d4b146fecdab51b3a8" + resolved "https://registry.npmjs.org/redux-persist/-/redux-persist-6.0.0.tgz" integrity sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ== redux-thunk@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-3.1.0.tgz#94aa6e04977c30e14e892eae84978c1af6058ff3" + resolved "https://registry.npmjs.org/redux-thunk/-/redux-thunk-3.1.0.tgz" integrity sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw== redux@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/redux/-/redux-5.0.1.tgz#97fa26881ce5746500125585d5642c77b6e9447b" + resolved "https://registry.npmjs.org/redux/-/redux-5.0.1.tgz" integrity sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w== regenerate-unicode-properties@^10.2.0: version "10.2.0" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz#626e39df8c372338ea9b8028d1f99dc3fd9c3db0" + resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz" integrity sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA== dependencies: regenerate "^1.4.2" regenerate@^1.4.2: version "1.4.2" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" + resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz" integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.3: version "0.13.11" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz" integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== regenerator-runtime@^0.14.0: version "0.14.1" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz" integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== regexp.prototype.flags@^1.5.2: version "1.5.3" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz#b3ae40b1d2499b8350ab2c3fe6ef3845d3a96f42" + resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz" integrity sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ== dependencies: call-bind "^1.0.7" @@ -8469,53 +8528,53 @@ regexp.prototype.flags@^1.5.2: es-errors "^1.3.0" set-function-name "^2.0.2" -regexpu-core@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-6.1.1.tgz#b469b245594cb2d088ceebc6369dceb8c00becac" - integrity sha512-k67Nb9jvwJcJmVpw0jPttR1/zVfnKf8Km0IPatrU/zJ5XeG3+Slx0xLXs9HByJSzXzrlz5EDvN6yLNMDc2qdnw== +regexpu-core@^6.2.0: + version "6.2.0" + resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz" + integrity sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA== dependencies: regenerate "^1.4.2" regenerate-unicode-properties "^10.2.0" regjsgen "^0.8.0" - regjsparser "^0.11.0" + regjsparser "^0.12.0" unicode-match-property-ecmascript "^2.0.0" unicode-match-property-value-ecmascript "^2.1.0" regjsgen@^0.8.0: version "0.8.0" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.8.0.tgz#df23ff26e0c5b300a6470cad160a9d090c3a37ab" + resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz" integrity sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q== -regjsparser@^0.11.0: - version "0.11.1" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.11.1.tgz#ae55c74f646db0c8fcb922d4da635e33da405149" - integrity sha512-1DHODs4B8p/mQHU9kr+jv8+wIC9mtG4eBHxWxIq5mhjE3D5oORhCc6deRKzTjs9DcfRFmj9BHSDguZklqCGFWQ== +regjsparser@^0.12.0: + version "0.12.0" + resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz" + integrity sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ== dependencies: jsesc "~3.0.2" remove-trailing-slash@^0.1.0: version "0.1.1" - resolved "https://registry.yarnpkg.com/remove-trailing-slash/-/remove-trailing-slash-0.1.1.tgz#be2285a59f39c74d1bce4f825950061915e3780d" + resolved "https://registry.npmjs.org/remove-trailing-slash/-/remove-trailing-slash-0.1.1.tgz" integrity sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA== require-directory@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== require-from-string@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz" integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== require-main-filename@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz" integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== requireg@^0.2.2: version "0.2.2" - resolved "https://registry.yarnpkg.com/requireg/-/requireg-0.2.2.tgz#437e77a5316a54c9bcdbbf5d1f755fe093089830" + resolved "https://registry.npmjs.org/requireg/-/requireg-0.2.2.tgz" integrity sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg== dependencies: nested-error-stacks "~2.0.1" @@ -8524,39 +8583,39 @@ requireg@^0.2.2: requires-port@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + resolved "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz" integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== reselect@^5.1.0: version "5.1.1" - resolved "https://registry.yarnpkg.com/reselect/-/reselect-5.1.1.tgz#c766b1eb5d558291e5e550298adb0becc24bb72e" + resolved "https://registry.npmjs.org/reselect/-/reselect-5.1.1.tgz" integrity sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w== resolve-cwd@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" + resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz" integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== dependencies: resolve-from "^5.0.0" resolve-from@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" + resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz" integrity sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw== resolve-from@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== resolve.exports@^2.0.0, resolve.exports@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" + resolved "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz" integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== resolve@^1.14.2, resolve@^1.20.0, resolve@^1.22.2: version "1.22.8" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz" integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== dependencies: is-core-module "^2.13.0" @@ -8565,14 +8624,14 @@ resolve@^1.14.2, resolve@^1.20.0, resolve@^1.22.2: resolve@~1.7.1: version "1.7.1" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.7.1.tgz#aadd656374fd298aee895bc026b8297418677fd3" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz" integrity sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw== dependencies: path-parse "^1.0.5" restore-cursor@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" + resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz" integrity sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q== dependencies: onetime "^2.0.0" @@ -8580,7 +8639,7 @@ restore-cursor@^2.0.0: restore-cursor@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz" integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== dependencies: onetime "^5.1.0" @@ -8588,33 +8647,33 @@ restore-cursor@^3.1.0: reusify@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== rimraf@^3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== dependencies: glob "^7.1.3" rimraf@~2.6.2: version "2.6.3" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz" integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== dependencies: glob "^7.1.3" run-parallel@^1.1.9: version "1.2.0" - resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== dependencies: queue-microtask "^1.2.2" safe-array-concat@^1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.2.tgz#81d77ee0c4e8b863635227c721278dd524c20edb" + resolved "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz" integrity sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q== dependencies: call-bind "^1.0.7" @@ -8624,17 +8683,17 @@ safe-array-concat@^1.1.2: safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== safe-buffer@~5.2.0: version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== safe-regex-test@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.3.tgz#a5b4c0f06e0ab50ea2c395c14d8371232924c377" + resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz" integrity sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw== dependencies: call-bind "^1.0.6" @@ -8643,38 +8702,38 @@ safe-regex-test@^1.0.3: "safer-buffer@>= 2.1.2 < 3.0.0": version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== sax@>=0.6.0: version "1.4.1" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.4.1.tgz#44cc8988377f126304d3b3fc1010c733b929ef0f" + resolved "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz" integrity sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg== saxes@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/saxes/-/saxes-6.0.0.tgz#fe5b4a4768df4f14a201b1ba6a65c1f3d9988cc5" + resolved "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz" integrity sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA== dependencies: xmlchars "^2.2.0" scheduler@0.24.0-canary-efb381bbf-20230505: version "0.24.0-canary-efb381bbf-20230505" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.24.0-canary-efb381bbf-20230505.tgz#5dddc60e29f91cd7f8b983d7ce4a99c2202d178f" + resolved "https://registry.npmjs.org/scheduler/-/scheduler-0.24.0-canary-efb381bbf-20230505.tgz" integrity sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA== dependencies: loose-envify "^1.1.0" scheduler@^0.23.0: version "0.23.2" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.2.tgz#414ba64a3b282892e944cf2108ecc078d115cdc3" + resolved "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz" integrity sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ== dependencies: loose-envify "^1.1.0" schema-utils@^4.0.1: version "4.2.0" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.2.0.tgz#70d7c93e153a273a805801882ebd3bff20d89c8b" + resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz" integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw== dependencies: "@types/json-schema" "^7.0.9" @@ -8684,12 +8743,12 @@ schema-utils@^4.0.1: scrypt-js@3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/scrypt-js/-/scrypt-js-3.0.1.tgz#d314a57c2aef69d1ad98a138a21fe9eafa9ee312" + resolved "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz" integrity sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA== selfsigned@^2.4.1: version "2.4.1" - resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.4.1.tgz#560d90565442a3ed35b674034cec4e95dceb4ae0" + resolved "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz" integrity sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q== dependencies: "@types/node-forge" "^1.3.0" @@ -8697,22 +8756,22 @@ selfsigned@^2.4.1: semver@^5.5.0, semver@^5.6.0: version "5.7.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== semver@^6.3.0, semver@^6.3.1: version "6.3.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== semver@^7.3.5, semver@^7.5.2, semver@^7.5.3, semver@^7.5.4, semver@^7.6.0: version "7.6.3" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" + resolved "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz" integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== send@0.19.0: version "0.19.0" - resolved "https://registry.yarnpkg.com/send/-/send-0.19.0.tgz#bbc5a388c8ea6c048967049dbeac0e4a3f09d7f8" + resolved "https://registry.npmjs.org/send/-/send-0.19.0.tgz" integrity sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw== dependencies: debug "2.6.9" @@ -8731,7 +8790,7 @@ send@0.19.0: send@^0.18.0: version "0.18.0" - resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" + resolved "https://registry.npmjs.org/send/-/send-0.18.0.tgz" integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== dependencies: debug "2.6.9" @@ -8750,12 +8809,12 @@ send@^0.18.0: serialize-error@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-2.1.0.tgz#50b679d5635cdf84667bdc8e59af4e5b81d5f60a" + resolved "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz" integrity sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw== serve-static@^1.13.1: version "1.16.2" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.16.2.tgz#b6a5343da47f6bdd2673848bf45754941e803296" + resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz" integrity sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw== dependencies: encodeurl "~2.0.0" @@ -8765,22 +8824,17 @@ serve-static@^1.13.1: set-blocking@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz" integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== -set-cookie-parser@^2.4.8: - version "2.7.0" - resolved "https://registry.yarnpkg.com/set-cookie-parser/-/set-cookie-parser-2.7.0.tgz#ef5552b56dc01baae102acb5fc9fb8cd060c30f9" - integrity sha512-lXLOiqpkUumhRdFF3k1osNXCy9akgx/dyPZ5p8qAg9seJzXr5ZrlqZuWIMuY6ejOsVLE6flJ5/h3lsn57fQ/PQ== - -set-cookie-parser@^2.6.0: +set-cookie-parser@^2.4.8, set-cookie-parser@^2.6.0: version "2.7.1" - resolved "https://registry.yarnpkg.com/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz#3016f150072202dfbe90fadee053573cc89d2943" + resolved "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz" integrity sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ== set-function-length@^1.2.1: version "1.2.2" - resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" + resolved "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz" integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== dependencies: define-data-property "^1.1.4" @@ -8792,7 +8846,7 @@ set-function-length@^1.2.1: set-function-name@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985" + resolved "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz" integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== dependencies: define-data-property "^1.1.4" @@ -8802,58 +8856,58 @@ set-function-name@^2.0.2: setimmediate@^1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + resolved "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz" integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== setprototypeof@1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz" integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== shallow-clone@^3.0.0: version "3.0.1" - resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + resolved "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz" integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== dependencies: kind-of "^6.0.2" shallowequal@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8" + resolved "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz" integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ== shebang-command@^1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz" integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== dependencies: shebang-regex "^1.0.0" shebang-command@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== dependencies: shebang-regex "^3.0.0" shebang-regex@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz" integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== shebang-regex@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== shell-quote@^1.6.1, shell-quote@^1.7.3: version "1.8.1" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" + resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz" integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== side-channel@^1.0.4, side-channel@^1.0.6: version "1.0.6" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz" integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== dependencies: call-bind "^1.0.7" @@ -8863,17 +8917,17 @@ side-channel@^1.0.4, side-channel@^1.0.6: signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: version "3.0.7" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== signal-exit@^4.0.1: version "4.1.0" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz" integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== simple-plist@^1.1.0: version "1.3.1" - resolved "https://registry.yarnpkg.com/simple-plist/-/simple-plist-1.3.1.tgz#16e1d8f62c6c9b691b8383127663d834112fb017" + resolved "https://registry.npmjs.org/simple-plist/-/simple-plist-1.3.1.tgz" integrity sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw== dependencies: bplist-creator "0.1.0" @@ -8882,29 +8936,29 @@ simple-plist@^1.1.0: simple-swizzle@^0.2.2: version "0.2.2" - resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" + resolved "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz" integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg== dependencies: is-arrayish "^0.3.1" sisteransi@^1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz" integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== slash@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== slash@^5.0.0: version "5.1.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-5.1.0.tgz#be3adddcdf09ac38eebe8dcdc7b1a57a75b095ce" + resolved "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz" integrity sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg== slice-ansi@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" + resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz" integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== dependencies: ansi-styles "^3.2.0" @@ -8913,17 +8967,17 @@ slice-ansi@^2.0.0: slugify@^1.3.4, slugify@^1.6.6: version "1.6.6" - resolved "https://registry.yarnpkg.com/slugify/-/slugify-1.6.6.tgz#2d4ac0eacb47add6af9e04d3be79319cbcc7924b" + resolved "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz" integrity sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw== source-map-js@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" + resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz" integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== source-map-support@0.5.13: version "0.5.13" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" + resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz" integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== dependencies: buffer-from "^1.0.0" @@ -8931,7 +8985,7 @@ source-map-support@0.5.13: source-map-support@^0.5.16, source-map-support@^0.5.21, source-map-support@~0.5.20, source-map-support@~0.5.21: version "0.5.21" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz" integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== dependencies: buffer-from "^1.0.0" @@ -8939,70 +8993,70 @@ source-map-support@^0.5.16, source-map-support@^0.5.21, source-map-support@~0.5. source-map@0.5.6: version "0.5.6" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz" integrity sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA== source-map@^0.5.0, source-map@^0.5.6: version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== source-map@^0.7.3: version "0.7.4" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz" integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== split-on-first@^1.0.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/split-on-first/-/split-on-first-1.1.0.tgz#f610afeee3b12bce1d0c30425e76398b78249a5f" + resolved "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz" integrity sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw== split@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" + resolved "https://registry.npmjs.org/split/-/split-1.0.1.tgz" integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== dependencies: through "2" sprintf-js@~1.0.2: version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== ssri@^10.0.0: version "10.0.6" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-10.0.6.tgz#a8aade2de60ba2bce8688e3fa349bad05c7dc1e5" + resolved "https://registry.npmjs.org/ssri/-/ssri-10.0.6.tgz" integrity sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ== dependencies: minipass "^7.0.3" stack-generator@^2.0.5: version "2.0.10" - resolved "https://registry.yarnpkg.com/stack-generator/-/stack-generator-2.0.10.tgz#8ae171e985ed62287d4f1ed55a1633b3fb53bb4d" + resolved "https://registry.npmjs.org/stack-generator/-/stack-generator-2.0.10.tgz" integrity sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ== dependencies: stackframe "^1.3.4" stack-utils@^2.0.3: version "2.0.6" - resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" + resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz" integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== dependencies: escape-string-regexp "^2.0.0" stackframe@^1.3.4: version "1.3.4" - resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.3.4.tgz#b881a004c8c149a5e8efef37d51b16e412943310" + resolved "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz" integrity sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw== stacktrace-gps@^3.0.4: version "3.1.2" - resolved "https://registry.yarnpkg.com/stacktrace-gps/-/stacktrace-gps-3.1.2.tgz#0c40b24a9b119b20da4525c398795338966a2fb0" + resolved "https://registry.npmjs.org/stacktrace-gps/-/stacktrace-gps-3.1.2.tgz" integrity sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ== dependencies: source-map "0.5.6" @@ -9010,7 +9064,7 @@ stacktrace-gps@^3.0.4: stacktrace-js@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/stacktrace-js/-/stacktrace-js-2.0.2.tgz#4ca93ea9f494752d55709a081d400fdaebee897b" + resolved "https://registry.npmjs.org/stacktrace-js/-/stacktrace-js-2.0.2.tgz" integrity sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg== dependencies: error-stack-parser "^2.0.6" @@ -9019,39 +9073,39 @@ stacktrace-js@^2.0.2: stacktrace-parser@^0.1.10: version "0.1.10" - resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz#29fb0cae4e0d0b85155879402857a1639eb6051a" + resolved "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz" integrity sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg== dependencies: type-fest "^0.7.1" statuses@2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" + resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz" integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== statuses@~1.5.0: version "1.5.0" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz" integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== stream-buffers@2.2.x, stream-buffers@~2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4" + resolved "https://registry.npmjs.org/stream-buffers/-/stream-buffers-2.2.0.tgz" integrity sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg== stream-slice@^0.1.2: version "0.1.2" - resolved "https://registry.yarnpkg.com/stream-slice/-/stream-slice-0.1.2.tgz#2dc4f4e1b936fb13f3eb39a2def1932798d07a4b" + resolved "https://registry.npmjs.org/stream-slice/-/stream-slice-0.1.2.tgz" integrity sha512-QzQxpoacatkreL6jsxnVb7X5R/pGw9OUv2qWTYWnmLpg4NdN31snPy/f3TdQE1ZUXaThRvj1Zw4/OGg0ZkaLMA== strict-uri-encode@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" + resolved "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz" integrity sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ== string-length@^4.0.1: version "4.0.2" - resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" + resolved "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz" integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== dependencies: char-regex "^1.0.2" @@ -9059,7 +9113,7 @@ string-length@^4.0.1: string-length@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/string-length/-/string-length-5.0.1.tgz#3d647f497b6e8e8d41e422f7e0b23bc536c8381e" + resolved "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz" integrity sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow== dependencies: char-regex "^2.0.0" @@ -9067,7 +9121,7 @@ string-length@^5.0.1: "string-width-cjs@npm:string-width@^4.2.0": version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== dependencies: emoji-regex "^8.0.0" @@ -9076,7 +9130,7 @@ string-length@^5.0.1: string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== dependencies: emoji-regex "^8.0.0" @@ -9085,7 +9139,7 @@ string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: string-width@^5.0.1, string-width@^5.1.2: version "5.1.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" + resolved "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz" integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== dependencies: eastasianwidth "^0.2.0" @@ -9094,7 +9148,7 @@ string-width@^5.0.1, string-width@^5.1.2: string.prototype.trim@^1.2.9: version "1.2.9" - resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz#b6fa326d72d2c78b6df02f7759c73f8f6274faa4" + resolved "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz" integrity sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw== dependencies: call-bind "^1.0.7" @@ -9104,7 +9158,7 @@ string.prototype.trim@^1.2.9: string.prototype.trimend@^1.0.8: version "1.0.8" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz#3651b8513719e8a9f48de7f2f77640b26652b229" + resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz" integrity sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ== dependencies: call-bind "^1.0.7" @@ -9113,7 +9167,7 @@ string.prototype.trimend@^1.0.8: string.prototype.trimstart@^1.0.8: version "1.0.8" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz#7ee834dda8c7c17eff3118472bb35bfedaa34dde" + resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz" integrity sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg== dependencies: call-bind "^1.0.7" @@ -9122,79 +9176,79 @@ string.prototype.trimstart@^1.0.8: string_decoder@^1.1.1: version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== dependencies: safe-buffer "~5.2.0" string_decoder@~1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== dependencies: safe-buffer "~5.1.0" "strip-ansi-cjs@npm:strip-ansi@^6.0.1": version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== dependencies: ansi-regex "^5.0.1" strip-ansi@^5.0.0, strip-ansi@^5.2.0: version "5.2.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== dependencies: ansi-regex "^4.1.0" strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== dependencies: ansi-regex "^5.0.1" strip-ansi@^7.0.1: version "7.1.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz" integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== dependencies: ansi-regex "^6.0.1" strip-bom@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" + resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz" integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== strip-eof@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + resolved "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz" integrity sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q== strip-final-newline@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz" integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== strip-json-comments@^3.1.1: version "3.1.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== strip-json-comments@~2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz" integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== strnum@^1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db" + resolved "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz" integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA== strtok3@^6.2.4: version "6.3.0" - resolved "https://registry.yarnpkg.com/strtok3/-/strtok3-6.3.0.tgz#358b80ffe6d5d5620e19a073aa78ce947a90f9a0" + resolved "https://registry.npmjs.org/strtok3/-/strtok3-6.3.0.tgz" integrity sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw== dependencies: "@tokenizer/token" "^0.3.0" @@ -9202,17 +9256,17 @@ strtok3@^6.2.4: structured-headers@^0.4.1: version "0.4.1" - resolved "https://registry.yarnpkg.com/structured-headers/-/structured-headers-0.4.1.tgz#77abd9410622c6926261c09b9d16cf10592694d1" + resolved "https://registry.npmjs.org/structured-headers/-/structured-headers-0.4.1.tgz" integrity sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg== styleq@^0.1.3: version "0.1.3" - resolved "https://registry.yarnpkg.com/styleq/-/styleq-0.1.3.tgz#8efb2892debd51ce7b31dc09c227ad920decab71" + resolved "https://registry.npmjs.org/styleq/-/styleq-0.1.3.tgz" integrity sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA== sucrase@3.34.0: version "3.34.0" - resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.34.0.tgz#1e0e2d8fcf07f8b9c3569067d92fbd8690fb576f" + resolved "https://registry.npmjs.org/sucrase/-/sucrase-3.34.0.tgz" integrity sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw== dependencies: "@jridgewell/gen-mapping" "^0.3.2" @@ -9225,43 +9279,43 @@ sucrase@3.34.0: sudo-prompt@9.1.1: version "9.1.1" - resolved "https://registry.yarnpkg.com/sudo-prompt/-/sudo-prompt-9.1.1.tgz#73853d729770392caec029e2470db9c221754db0" + resolved "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.1.1.tgz" integrity sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA== sudo-prompt@^8.2.0: version "8.2.5" - resolved "https://registry.yarnpkg.com/sudo-prompt/-/sudo-prompt-8.2.5.tgz#cc5ef3769a134bb94b24a631cc09628d4d53603e" + resolved "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz" integrity sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw== sudo-prompt@^9.0.0: version "9.2.1" - resolved "https://registry.yarnpkg.com/sudo-prompt/-/sudo-prompt-9.2.1.tgz#77efb84309c9ca489527a4e749f287e6bdd52afd" + resolved "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.2.1.tgz" integrity sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw== supports-color@^5.3.0: version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== dependencies: has-flag "^3.0.0" supports-color@^7.0.0, supports-color@^7.1.0: version "7.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== dependencies: has-flag "^4.0.0" supports-color@^8.0.0: version "8.1.1" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz" integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== dependencies: has-flag "^4.0.0" supports-hyperlinks@^2.0.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz#3943544347c1ff90b15effb03fc14ae45ec10624" + resolved "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz" integrity sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA== dependencies: has-flag "^4.0.0" @@ -9269,17 +9323,17 @@ supports-hyperlinks@^2.0.0: supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== symbol-tree@^3.2.4: version "3.2.4" - resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" + resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz" integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== tar@^6.0.5, tar@^6.1.11: version "6.2.1" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a" + resolved "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz" integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A== dependencies: chownr "^2.0.0" @@ -9291,24 +9345,24 @@ tar@^6.0.5, tar@^6.1.11: temp-dir@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d" + resolved "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz" integrity sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ== temp-dir@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-2.0.0.tgz#bde92b05bdfeb1516e804c9c00ad45177f31321e" + resolved "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz" integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg== temp@^0.8.4: version "0.8.4" - resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.4.tgz#8c97a33a4770072e0a05f919396c7665a7dd59f2" + resolved "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz" integrity sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg== dependencies: rimraf "~2.6.2" tempy@0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/tempy/-/tempy-0.3.0.tgz#6f6c5b295695a16130996ad5ab01a8bd726e8bf8" + resolved "https://registry.npmjs.org/tempy/-/tempy-0.3.0.tgz" integrity sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ== dependencies: temp-dir "^1.0.0" @@ -9317,7 +9371,7 @@ tempy@0.3.0: tempy@^0.7.1: version "0.7.1" - resolved "https://registry.yarnpkg.com/tempy/-/tempy-0.7.1.tgz#5a654e6dbd1747cdd561efb112350b55cd9c1d46" + resolved "https://registry.npmjs.org/tempy/-/tempy-0.7.1.tgz" integrity sha512-vXPxwOyaNVi9nyczO16mxmHGpl6ASC5/TVhRRHpqeYHvKQm58EaWNvZXxAhR0lYYnBOQFjXjhzeLsaXdjxLjRg== dependencies: del "^6.0.0" @@ -9328,7 +9382,7 @@ tempy@^0.7.1: terminal-link@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" + resolved "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz" integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== dependencies: ansi-escapes "^4.2.1" @@ -9336,7 +9390,7 @@ terminal-link@^2.1.1: terser@^5.15.0: version "5.34.1" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.34.1.tgz#af40386bdbe54af0d063e0670afd55c3105abeb6" + resolved "https://registry.npmjs.org/terser/-/terser-5.34.1.tgz" integrity sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA== dependencies: "@jridgewell/source-map" "^0.3.3" @@ -9346,7 +9400,7 @@ terser@^5.15.0: test-exclude@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" + resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz" integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== dependencies: "@istanbuljs/schema" "^0.1.2" @@ -9355,36 +9409,36 @@ test-exclude@^6.0.0: text-encoding@^0.7.0: version "0.7.0" - resolved "https://registry.yarnpkg.com/text-encoding/-/text-encoding-0.7.0.tgz#f895e836e45990624086601798ea98e8f36ee643" + resolved "https://registry.npmjs.org/text-encoding/-/text-encoding-0.7.0.tgz" integrity sha512-oJQ3f1hrOnbRLOcwKz0Liq2IcrvDeZRHXhd9RgLrsT+DjWY/nty1Hi7v3dtkaEYbPYe0mUoOfzRrMwfXXwgPUA== text-table@^0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== thenify-all@^1.0.0: version "1.6.0" - resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + resolved "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz" integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== dependencies: thenify ">= 3.1.0 < 4" "thenify@>= 3.1.0 < 4": version "3.3.1" - resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" + resolved "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz" integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== dependencies: any-promise "^1.0.0" throat@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b" + resolved "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz" integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA== through2@^2.0.1: version "2.0.5" - resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + resolved "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz" integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== dependencies: readable-stream "~2.3.6" @@ -9392,56 +9446,51 @@ through2@^2.0.1: through@2: version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz" integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== timm@^1.6.1: version "1.7.1" - resolved "https://registry.yarnpkg.com/timm/-/timm-1.7.1.tgz#96bab60c7d45b5a10a8a4d0f0117c6b7e5aff76f" + resolved "https://registry.npmjs.org/timm/-/timm-1.7.1.tgz" integrity sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw== tiny-case@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/tiny-case/-/tiny-case-1.0.3.tgz#d980d66bc72b5d5a9ca86fb7c9ffdb9c898ddd03" + resolved "https://registry.npmjs.org/tiny-case/-/tiny-case-1.0.3.tgz" integrity sha512-Eet/eeMhkO6TX8mnUteS9zgPbUMQa4I6Kkp5ORiBD5476/m+PIRiumP5tmh5ioJpH7k51Kehawy2UDfsnxxY8Q== tinycolor2@^1.4.1: version "1.6.0" - resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.6.0.tgz#f98007460169b0263b97072c5ae92484ce02d09e" + resolved "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz" integrity sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw== tmp@^0.0.33: version "0.0.33" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz" integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== dependencies: os-tmpdir "~1.0.2" tmpl@1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" + resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz" integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== - to-regex-range@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== dependencies: is-number "^7.0.0" toidentifier@1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" + resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz" integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== token-types@^4.1.1: version "4.2.1" - resolved "https://registry.yarnpkg.com/token-types/-/token-types-4.2.1.tgz#0f897f03665846982806e138977dbe72d44df753" + resolved "https://registry.npmjs.org/token-types/-/token-types-4.2.1.tgz" integrity sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ== dependencies: "@tokenizer/token" "^0.3.0" @@ -9449,12 +9498,12 @@ token-types@^4.1.1: toposort@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/toposort/-/toposort-2.0.2.tgz#ae21768175d1559d48bef35420b2f4962f09c330" + resolved "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz" integrity sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg== tough-cookie@^4.1.2: version "4.1.4" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.4.tgz#945f1461b45b5a8c76821c33ea49c3ac192c1b36" + resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz" integrity sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag== dependencies: psl "^1.1.33" @@ -9464,19 +9513,19 @@ tough-cookie@^4.1.2: tr46@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-3.0.0.tgz#555c4e297a950617e8eeddef633c87d4d9d6cbf9" + resolved "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz" integrity sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA== dependencies: punycode "^2.1.1" tr46@~0.0.3: version "0.0.3" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz" integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== traverse@~0.6.6: version "0.6.10" - resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.10.tgz#4c93482381d794dee046882c036f3c4eee481324" + resolved "https://registry.npmjs.org/traverse/-/traverse-0.6.10.tgz" integrity sha512-hN4uFRxbK+PX56DxYiGHsTn2dME3TVr9vbNqlQGcGcPhJAn+tdP126iA+TArMpI4YSgnTkMWyoLl5bf81Hi5TA== dependencies: gopd "^1.0.1" @@ -9485,57 +9534,57 @@ traverse@~0.6.6: trim-right@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" + resolved "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz" integrity sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw== ts-interface-checker@^0.1.9: version "0.1.13" - resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" + resolved "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz" integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== tslib@^2.0.1, tslib@^2.1.0, tslib@^2.4.0: version "2.7.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.7.0.tgz#d9b40c5c40ab59e8738f297df3087bf1a2690c01" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz" integrity sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA== turbo-stream@2.4.0: version "2.4.0" - resolved "https://registry.yarnpkg.com/turbo-stream/-/turbo-stream-2.4.0.tgz#1e4fca6725e90fa14ac4adb782f2d3759a5695f0" + resolved "https://registry.npmjs.org/turbo-stream/-/turbo-stream-2.4.0.tgz" integrity sha512-FHncC10WpBd2eOmGwpmQsWLDoK4cqsA/UT/GqNoaKOQnT8uzhtCbg3EoUDMvqpOSAI0S26mr0rkjzbOO6S3v1g== type-detect@4.0.8: version "4.0.8" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz" integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== type-fest@^0.16.0: version "0.16.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.16.0.tgz#3240b891a78b0deae910dbeb86553e552a148860" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz" integrity sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg== type-fest@^0.21.3: version "0.21.3" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz" integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== type-fest@^0.3.1: version "0.3.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz" integrity sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ== type-fest@^0.7.1: version "0.7.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.7.1.tgz#8dda65feaf03ed78f0a3f9678f1869147f7c5c48" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz" integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg== type-fest@^2.19.0: version "2.19.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz" integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== typed-array-buffer@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz#1867c5d83b20fcb5ccf32649e5e2fc7424474ff3" + resolved "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz" integrity sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ== dependencies: call-bind "^1.0.7" @@ -9544,7 +9593,7 @@ typed-array-buffer@^1.0.2: typed-array-byte-length@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz#d92972d3cff99a3fa2e765a28fcdc0f1d89dec67" + resolved "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz" integrity sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw== dependencies: call-bind "^1.0.7" @@ -9555,7 +9604,7 @@ typed-array-byte-length@^1.0.1: typed-array-byte-offset@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz#f9ec1acb9259f395093e4567eb3c28a580d02063" + resolved "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz" integrity sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA== dependencies: available-typed-arrays "^1.0.7" @@ -9567,7 +9616,7 @@ typed-array-byte-offset@^1.0.2: typed-array-length@^1.0.6: version "1.0.6" - resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.6.tgz#57155207c76e64a3457482dfdc1c9d1d3c4c73a3" + resolved "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz" integrity sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g== dependencies: call-bind "^1.0.7" @@ -9579,7 +9628,7 @@ typed-array-length@^1.0.6: typedarray.prototype.slice@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.3.tgz#bce2f685d3279f543239e4d595e0d021731d2d1a" + resolved "https://registry.npmjs.org/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.3.tgz" integrity sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A== dependencies: call-bind "^1.0.7" @@ -9591,17 +9640,17 @@ typedarray.prototype.slice@^1.0.3: typescript@~5.3.3: version "5.3.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37" + resolved "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz" integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw== ua-parser-js@^1.0.35: version "1.0.39" - resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.39.tgz#bfc07f361549bf249bd8f4589a4cccec18fd2018" + resolved "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.39.tgz" integrity sha512-k24RCVWlEcjkdOxYmVJgeD/0a1TiSpqLg+ZalVGV9lsnr4yqu0w7tX/x2xX6G4zpkgQnRf89lxuZ1wsbjXM8lw== unbox-primitive@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz" integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== dependencies: call-bind "^1.0.2" @@ -9611,27 +9660,27 @@ unbox-primitive@^1.0.2: undici-types@~5.26.4: version "5.26.5" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" + resolved "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz" integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== undici-types@~6.19.2: version "6.19.8" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.19.8.tgz#35111c9d1437ab83a7cdc0abae2f26d88eda0a02" + resolved "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz" integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw== undici@^6.11.1: version "6.20.1" - resolved "https://registry.yarnpkg.com/undici/-/undici-6.20.1.tgz#fbb87b1e2b69d963ff2d5410a40ffb4c9e81b621" + resolved "https://registry.npmjs.org/undici/-/undici-6.20.1.tgz" integrity sha512-AjQF1QsmqfJys+LXfGTNum+qw4S88CojRInG/6t31W/1fk6G59s92bnAvGz5Cmur+kQv2SURXEvvudLmbrE8QA== unicode-canonical-property-names-ecmascript@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz#cb3173fe47ca743e228216e4a3ddc4c84d628cc2" + resolved "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz" integrity sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg== unicode-match-property-ecmascript@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" + resolved "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz" integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== dependencies: unicode-canonical-property-names-ecmascript "^2.0.0" @@ -9639,70 +9688,70 @@ unicode-match-property-ecmascript@^2.0.0: unicode-match-property-value-ecmascript@^2.1.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz#a0401aee72714598f739b68b104e4fe3a0cb3c71" + resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz" integrity sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg== unicode-property-aliases-ecmascript@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" + resolved "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz" integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== unique-filename@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-3.0.0.tgz#48ba7a5a16849f5080d26c760c86cf5cf05770ea" + resolved "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz" integrity sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g== dependencies: unique-slug "^4.0.0" unique-slug@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-4.0.0.tgz#6bae6bb16be91351badd24cdce741f892a6532e3" + resolved "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz" integrity sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ== dependencies: imurmurhash "^0.1.4" unique-string@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" + resolved "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz" integrity sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg== dependencies: crypto-random-string "^1.0.0" unique-string@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" + resolved "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz" integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== dependencies: crypto-random-string "^2.0.0" universalify@^0.1.0: version "0.1.2" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + resolved "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz" integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== universalify@^0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" + resolved "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz" integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== universalify@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-1.0.0.tgz#b61a1da173e8435b2fe3c67d29b9adf8594bd16d" + resolved "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz" integrity sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug== universalify@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" + resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz" integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== unpipe@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== update-browserslist-db@^1.1.0: version "1.1.1" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz#80846fba1d79e82547fb661f8d141e0945755fe5" + resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz" integrity sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A== dependencies: escalade "^3.2.0" @@ -9710,19 +9759,19 @@ update-browserslist-db@^1.1.0: uri-js@^4.2.2: version "4.4.1" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== dependencies: punycode "^2.1.0" url-join@4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/url-join/-/url-join-4.0.0.tgz#4d3340e807d3773bda9991f8305acdcc2a665d2a" + resolved "https://registry.npmjs.org/url-join/-/url-join-4.0.0.tgz" integrity sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA== url-parse@^1.5.3: version "1.5.10" - resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" + resolved "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz" integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== dependencies: querystringify "^2.1.1" @@ -9730,7 +9779,7 @@ url-parse@^1.5.3: url@^0.11.0: version "0.11.4" - resolved "https://registry.yarnpkg.com/url/-/url-0.11.4.tgz#adca77b3562d56b72746e76b330b7f27b6721f3c" + resolved "https://registry.npmjs.org/url/-/url-0.11.4.tgz" integrity sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg== dependencies: punycode "^1.4.1" @@ -9738,34 +9787,34 @@ url@^0.11.0: use-latest-callback@^0.1.5: version "0.1.11" - resolved "https://registry.yarnpkg.com/use-latest-callback/-/use-latest-callback-0.1.11.tgz#e073fcbba792cc95ac661d96bc13b6041956cfe1" + resolved "https://registry.npmjs.org/use-latest-callback/-/use-latest-callback-0.1.11.tgz" integrity sha512-8nhb73STSD/z3GTHklvNjL8F9wMOo0bj0AFnulpIYuFTm6aQlT3ZcNbXF2YurKImIY8+kpSFSDHZZyQmurGrhw== use-latest-callback@^0.2.1: version "0.2.1" - resolved "https://registry.yarnpkg.com/use-latest-callback/-/use-latest-callback-0.2.1.tgz#4d4e6a9e4817b13142834850dcfa8d24ca4569cf" + resolved "https://registry.npmjs.org/use-latest-callback/-/use-latest-callback-0.2.1.tgz" integrity sha512-QWlq8Is8BGWBf883QOEQP5HWYX/kMI+JTbJ5rdtvJLmXTIh9XoHIO3PQcmQl8BU44VKxow1kbQUHa6mQSMALDQ== use-sync-external-store@1.2.2, use-sync-external-store@^1.0.0: version "1.2.2" - resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz#c3b6390f3a30eba13200d2302dcdf1e7b57b2ef9" + resolved "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz" integrity sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw== utif@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/utif/-/utif-2.0.1.tgz#9e1582d9bbd20011a6588548ed3266298e711759" + resolved "https://registry.npmjs.org/utif/-/utif-2.0.1.tgz" integrity sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg== dependencies: pako "^1.0.5" util-deprecate@^1.0.1, util-deprecate@~1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== util@^0.12.3: version "0.12.5" - resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc" + resolved "https://registry.npmjs.org/util/-/util-0.12.5.tgz" integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA== dependencies: inherits "^2.0.3" @@ -9776,27 +9825,27 @@ util@^0.12.3: utils-merge@1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz" integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== "uuid@>=8 <10": version "9.0.1" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" + resolved "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz" integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== uuid@^7.0.3: version "7.0.3" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.3.tgz#c5c9f2c8cf25dc0a372c4df1441c41f5bd0c680b" + resolved "https://registry.npmjs.org/uuid/-/uuid-7.0.3.tgz" integrity sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg== uuid@^8.0.0, uuid@^8.3.2: version "8.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== v8-to-istanbul@^9.0.1: version "9.3.0" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz#b9572abfa62bd556c16d75fdebc1a411d5ff3175" + resolved "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz" integrity sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA== dependencies: "@jridgewell/trace-mapping" "^0.3.12" @@ -9805,24 +9854,24 @@ v8-to-istanbul@^9.0.1: valid-url@~1.0.9: version "1.0.9" - resolved "https://registry.yarnpkg.com/valid-url/-/valid-url-1.0.9.tgz#1c14479b40f1397a75782f115e4086447433a200" + resolved "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz" integrity sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA== validate-npm-package-name@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" + resolved "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz" integrity sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw== dependencies: builtins "^1.0.3" vary@~1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz" integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== victory-area@37.1.2, victory-area@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-area/-/victory-area-37.1.2.tgz#f6ff2849842f69a08fdbb1b1c1c35834395b7a66" + resolved "https://registry.npmjs.org/victory-area/-/victory-area-37.1.2.tgz" integrity sha512-72i02xTD47i7P+X02AHhZ32yO16VcM1h/7gulgAioLEx+8m3zShBKu46Md/vqmbyS2Bypr3xpUvd+8mCDIvCbw== dependencies: lodash "^4.17.19" @@ -9831,7 +9880,7 @@ victory-area@37.1.2, victory-area@^37.1.2: victory-axis@37.1.2, victory-axis@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-axis/-/victory-axis-37.1.2.tgz#51ba607a83323f94b3abc6fa2dcf21c3c203d5be" + resolved "https://registry.npmjs.org/victory-axis/-/victory-axis-37.1.2.tgz" integrity sha512-TuivC84cHrFoDetWDhU2VXQ34froIXBrtjYYPdmwBrMEFSu+FfrakYWUr3r25XNEPyOyk4z3a8lL/sqrxWYSRQ== dependencies: lodash "^4.17.19" @@ -9839,7 +9888,7 @@ victory-axis@37.1.2, victory-axis@^37.1.2: victory-bar@37.1.2, victory-bar@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-bar/-/victory-bar-37.1.2.tgz#df20cb35186c334656a83de76043848b6f9d3503" + resolved "https://registry.npmjs.org/victory-bar/-/victory-bar-37.1.2.tgz" integrity sha512-VJDE+TGSgyIchvln189cPMuG3LYqa8zCjHa8kYValP3bFTa5c+D1Y8R/FjVger40uEL3aQz1teHJODJCOxuXGA== dependencies: lodash "^4.17.19" @@ -9848,7 +9897,7 @@ victory-bar@37.1.2, victory-bar@^37.1.2: victory-box-plot@37.1.2, victory-box-plot@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-box-plot/-/victory-box-plot-37.1.2.tgz#3459626a93f07d4e0505069bf7237a5b8cdebe42" + resolved "https://registry.npmjs.org/victory-box-plot/-/victory-box-plot-37.1.2.tgz" integrity sha512-i7JIjpaPTr3uaoW6ibfX4PrH1QcUeLXNxeCbmPRb+Hs+ug0d16J4RELPCaeNo/ZNg4rEzfueNTvExsYFIpHaWw== dependencies: lodash "^4.17.19" @@ -9857,7 +9906,7 @@ victory-box-plot@37.1.2, victory-box-plot@^37.1.2: victory-brush-container@37.1.2, victory-brush-container@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-brush-container/-/victory-brush-container-37.1.2.tgz#2d45f5683c34e41f5359e830f8c6c34c9f9f3921" + resolved "https://registry.npmjs.org/victory-brush-container/-/victory-brush-container-37.1.2.tgz" integrity sha512-pJrMSo815UJxOT5OTXnq1tI5qQxQLnrlgDRNF8pxVF9dSxm7BhETjZSQfZgcLmCe3N931U19j8oCxw8sMSpJJw== dependencies: lodash "^4.17.19" @@ -9866,7 +9915,7 @@ victory-brush-container@37.1.2, victory-brush-container@^37.1.2: victory-brush-line@37.1.2, victory-brush-line@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-brush-line/-/victory-brush-line-37.1.2.tgz#ada38e7cd1e44afaff89e32189ffc308361cdb24" + resolved "https://registry.npmjs.org/victory-brush-line/-/victory-brush-line-37.1.2.tgz" integrity sha512-Bq9JGu/o4p/NQ/ZOASUm6MmomS+2b0EvAHjULa06z7nsElNePpedTYPk2aAb7mr4sJZe6u/AsDMthG+C8Zc32Q== dependencies: lodash "^4.17.19" @@ -9875,7 +9924,7 @@ victory-brush-line@37.1.2, victory-brush-line@^37.1.2: victory-candlestick@37.1.2, victory-candlestick@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-candlestick/-/victory-candlestick-37.1.2.tgz#f79083691cfd54dd4e184a99b7a25820466b7f3d" + resolved "https://registry.npmjs.org/victory-candlestick/-/victory-candlestick-37.1.2.tgz" integrity sha512-X+pLwvdIj/+nrvk1bZxhdJ9UBj7QLN4jdkIPDl6ekjfZ9Ylhi8/I/ttAkBu+7w7ilpGudIK6fr7PVHyZyYU6TA== dependencies: lodash "^4.17.19" @@ -9883,7 +9932,7 @@ victory-candlestick@37.1.2, victory-candlestick@^37.1.2: victory-canvas@37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-canvas/-/victory-canvas-37.1.2.tgz#2db3235a2fcdb8033efd92026bf2f6bf1810343f" + resolved "https://registry.npmjs.org/victory-canvas/-/victory-canvas-37.1.2.tgz" integrity sha512-4Qmz7YpFBj2KaBSe+j5zLVrKAJLG3HtXVVaKI3oUzw4GzHlYXf77dJLYe2EqJVEFCMgVsmASqE3xVTklioMV7g== dependencies: lodash "^4.17.19" @@ -9892,7 +9941,7 @@ victory-canvas@37.1.2: victory-chart@37.1.2, victory-chart@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-chart/-/victory-chart-37.1.2.tgz#d379f346efa437590ad22526497e7cb955fa92ae" + resolved "https://registry.npmjs.org/victory-chart/-/victory-chart-37.1.2.tgz" integrity sha512-efV7lnqwu4+zLzB6aY3jjYbbfYJ9+1VC6uwx+8AGjbb8vGkbByUOKC6Fhdcuca2mLqNQHM0Ynvevs3+4XrBz1g== dependencies: lodash "^4.17.19" @@ -9904,7 +9953,7 @@ victory-chart@37.1.2, victory-chart@^37.1.2: victory-core@37.1.2, victory-core@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-core/-/victory-core-37.1.2.tgz#713d95698f9b2b53be79947b60e10c1cbc6a7c3c" + resolved "https://registry.npmjs.org/victory-core/-/victory-core-37.1.2.tgz" integrity sha512-9fskAQw9MvYEBL+0cDk2lihKyECdrh+8HGicDfSKGOWtsSLk+x7R6PKCpOzhmSgc9fG+HjWYfs2uTWSPNTjF9A== dependencies: lodash "^4.17.21" @@ -9913,7 +9962,7 @@ victory-core@37.1.2, victory-core@^37.1.2: victory-create-container@37.1.2, victory-create-container@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-create-container/-/victory-create-container-37.1.2.tgz#aff27ca8fd554a58959861db4925c02188a581de" + resolved "https://registry.npmjs.org/victory-create-container/-/victory-create-container-37.1.2.tgz" integrity sha512-GvWA+N3SXf6he+hW1IQqaRjKG7XSV9WBr06mZixRVyOeHJGGZ5g7Vsse1WrwUz5/DM8HcqF34PTfhTs39v6zaw== dependencies: lodash "^4.17.19" @@ -9926,7 +9975,7 @@ victory-create-container@37.1.2, victory-create-container@^37.1.2: victory-cursor-container@37.1.2, victory-cursor-container@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-cursor-container/-/victory-cursor-container-37.1.2.tgz#ba92a67e517d183a7f7f74983e157e69f87c8292" + resolved "https://registry.npmjs.org/victory-cursor-container/-/victory-cursor-container-37.1.2.tgz" integrity sha512-GqOVB/Emas/ODw7Sb7FX1FmUyH3jb5eNF+2sR+DdYfDMTFmjVUyqGkSpi1bIgHoSWTrdG9C2tkxA69gI9JDtLA== dependencies: lodash "^4.17.19" @@ -9934,7 +9983,7 @@ victory-cursor-container@37.1.2, victory-cursor-container@^37.1.2: victory-errorbar@37.1.2, victory-errorbar@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-errorbar/-/victory-errorbar-37.1.2.tgz#24c650dd563dd9bdc61033a7116cb286ef079c34" + resolved "https://registry.npmjs.org/victory-errorbar/-/victory-errorbar-37.1.2.tgz" integrity sha512-sgs1nla57Ctt9slG5WXWdxqTXtTdKcZM+u83C5j1ceKKmMjCiqiNYmMQpF7yz7Nj2ewJTrOzZON9h2zgurr2Cg== dependencies: lodash "^4.17.19" @@ -9942,7 +9991,7 @@ victory-errorbar@37.1.2, victory-errorbar@^37.1.2: victory-group@37.1.2, victory-group@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-group/-/victory-group-37.1.2.tgz#7641330090918f6eed0620f329c6db74855f05ad" + resolved "https://registry.npmjs.org/victory-group/-/victory-group-37.1.2.tgz" integrity sha512-Zwdvs6pSfF02xax8rQbahSqRP7eua4mS0so0gFYr/M2sNiKN4hxnM72j3dLo9nQ63kQpYhcUZe8U/hEjlhHxYQ== dependencies: lodash "^4.17.19" @@ -9952,7 +10001,7 @@ victory-group@37.1.2, victory-group@^37.1.2: victory-histogram@37.1.2, victory-histogram@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-histogram/-/victory-histogram-37.1.2.tgz#fb87e08809e386ddae7388b8776d9585002de5be" + resolved "https://registry.npmjs.org/victory-histogram/-/victory-histogram-37.1.2.tgz" integrity sha512-IGeQZ2HGuvmMyYxoKOczIILNH6ARDJaWcDG3h5BX4jP4JH2+eWeEukCVHGT3b1VM1OFxuvPijJrePXYzKgQ+AQ== dependencies: lodash "^4.17.19" @@ -9963,7 +10012,7 @@ victory-histogram@37.1.2, victory-histogram@^37.1.2: victory-legend@37.1.2, victory-legend@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-legend/-/victory-legend-37.1.2.tgz#1a4b8e60be01330e3f0e9d8d30d5e6c06d49de11" + resolved "https://registry.npmjs.org/victory-legend/-/victory-legend-37.1.2.tgz" integrity sha512-dmwwHtFpEXPIelY9iH1a2Q/V2Ji8DaF0a2g+hLH4SM/xbA9YwjP2/9DIQcwS7/OVl4l1AnSbLFcu5RyDPJ0kww== dependencies: lodash "^4.17.19" @@ -9971,7 +10020,7 @@ victory-legend@37.1.2, victory-legend@^37.1.2: victory-line@37.1.2, victory-line@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-line/-/victory-line-37.1.2.tgz#2d2191b7c9da90e914f133a5abb82ef938246c66" + resolved "https://registry.npmjs.org/victory-line/-/victory-line-37.1.2.tgz" integrity sha512-DjttWkQG0iZtQ9SM/KphN168dQUgw1xwyr0qR1aN12VtVb1jspI1LkBH8XqUeYXgfuI1vKQJWcV/zMOK2Q1n8g== dependencies: lodash "^4.17.19" @@ -9980,7 +10029,7 @@ victory-line@37.1.2, victory-line@^37.1.2: victory-native@^37.0.3-next.0: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-native/-/victory-native-37.1.2.tgz#d7f3db4579bc36521fbe108d85368a26b8daa005" + resolved "https://registry.npmjs.org/victory-native/-/victory-native-37.1.2.tgz" integrity sha512-df9RRGv9S4Im6jEo2u/RHT2IhDvkzbsoXXZW8ib7IzDOK4ZWd9l7p4shB+Za8NRdfbqYJMoLA0h5bhpxM4VmWg== dependencies: hoist-non-react-statics "^3.3.2" @@ -10016,7 +10065,7 @@ victory-native@^37.0.3-next.0: victory-pie@37.1.2, victory-pie@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-pie/-/victory-pie-37.1.2.tgz#d9041ee2758cf142a9b9818047eedba04c685ba1" + resolved "https://registry.npmjs.org/victory-pie/-/victory-pie-37.1.2.tgz" integrity sha512-lwPMAtkcGDJ4gdpKFmR7hRnowJZIGQ6XIvyPj7Ir+QfL6ew64kl7YiIsQpDnC4zqwAjDPIbIW/kRROiSKRjXjQ== dependencies: lodash "^4.17.19" @@ -10025,7 +10074,7 @@ victory-pie@37.1.2, victory-pie@^37.1.2: victory-polar-axis@37.1.2, victory-polar-axis@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-polar-axis/-/victory-polar-axis-37.1.2.tgz#614c54696a12ea08f2426eab3927819f8c77131a" + resolved "https://registry.npmjs.org/victory-polar-axis/-/victory-polar-axis-37.1.2.tgz" integrity sha512-cvELVQ5MwDjDfC/n/g8QVfUhexLNKcp7kXxbjp6IGbzQMCfNtROHaVaHaISNH7/EV5zinwBhNj0+ISWatROtrQ== dependencies: lodash "^4.17.19" @@ -10033,7 +10082,7 @@ victory-polar-axis@37.1.2, victory-polar-axis@^37.1.2: victory-scatter@37.1.2, victory-scatter@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-scatter/-/victory-scatter-37.1.2.tgz#34d91c0a0af0ebf9e9b2b380e912a7136dcfd2f3" + resolved "https://registry.npmjs.org/victory-scatter/-/victory-scatter-37.1.2.tgz" integrity sha512-6orfcqdfZCuTHqf/wE+B+sQbpzf2/TyEvLZhvYIXFr5GzdVu39psNl74K3GQ2Ky0db+e6oLEHV8nZYO2IvWoWg== dependencies: lodash "^4.17.19" @@ -10041,7 +10090,7 @@ victory-scatter@37.1.2, victory-scatter@^37.1.2: victory-selection-container@37.1.2, victory-selection-container@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-selection-container/-/victory-selection-container-37.1.2.tgz#7311e4ee4b92a4bd4639fe1ae0ed5e6b1eeaf604" + resolved "https://registry.npmjs.org/victory-selection-container/-/victory-selection-container-37.1.2.tgz" integrity sha512-1sp1CV9LrBADnsBcFgVQuYUNCLeANuybtOS9/5TvPPELBGWQQ55nBN3mH/laVPDy9gGyPARh1lmdPgREHmSkmQ== dependencies: lodash "^4.17.19" @@ -10049,7 +10098,7 @@ victory-selection-container@37.1.2, victory-selection-container@^37.1.2: victory-shared-events@37.1.2, victory-shared-events@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-shared-events/-/victory-shared-events-37.1.2.tgz#d998f0403d3a802310a81b62a6229ff04ed7ea09" + resolved "https://registry.npmjs.org/victory-shared-events/-/victory-shared-events-37.1.2.tgz" integrity sha512-fpgpe6eI0A9dD39ZsFaid3sXdrCf1WIzFnpkNFT6hBYrDDD5Fd2/2SgqOxuul64PlYJAk6NOY+F1agmEtmB+/Q== dependencies: json-stringify-safe "^5.0.1" @@ -10059,7 +10108,7 @@ victory-shared-events@37.1.2, victory-shared-events@^37.1.2: victory-stack@37.1.2, victory-stack@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-stack/-/victory-stack-37.1.2.tgz#f52cbaa8c574a1a2f32c0d47226cbd76186a9d16" + resolved "https://registry.npmjs.org/victory-stack/-/victory-stack-37.1.2.tgz" integrity sha512-H3FWiv3c6s/++PB3pBZ/9r8mcry1FHg8JK+03DZhRKHtJIti/38iIYUUiFOoQKmjVUQ7wrLdftYiemy3st77Dg== dependencies: lodash "^4.17.19" @@ -10069,7 +10118,7 @@ victory-stack@37.1.2, victory-stack@^37.1.2: victory-tooltip@37.1.2, victory-tooltip@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-tooltip/-/victory-tooltip-37.1.2.tgz#5129b11b963f53baa7e5c30060ccd8d0b956fbdb" + resolved "https://registry.npmjs.org/victory-tooltip/-/victory-tooltip-37.1.2.tgz" integrity sha512-j1r1t83X0epSwivhf4eYSD2DoWRVy5fkINbLk4sVnnV2EUT4Lt4yH3uelIhYQuT4Y+Ez9KFLoQvR6bfwmHyfZw== dependencies: lodash "^4.17.19" @@ -10077,7 +10126,7 @@ victory-tooltip@37.1.2, victory-tooltip@^37.1.2: victory-vendor@37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-vendor/-/victory-vendor-37.1.2.tgz#70a10e91d58c83525db58bedfa32530495b6d4d8" + resolved "https://registry.npmjs.org/victory-vendor/-/victory-vendor-37.1.2.tgz" integrity sha512-kZ2UVcoINrisEW7JDaxws2v17D4n4ShRzsPUcYnF37/avByNbjzybhvs8JrqO6+vUmoP2W1DrTEI2L/86PEQjw== dependencies: "@types/d3-array" "^3.0.3" @@ -10097,7 +10146,7 @@ victory-vendor@37.1.2: victory-voronoi-container@37.1.2, victory-voronoi-container@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-voronoi-container/-/victory-voronoi-container-37.1.2.tgz#536df5df863307555ea1b2e83c803e036e3beb6b" + resolved "https://registry.npmjs.org/victory-voronoi-container/-/victory-voronoi-container-37.1.2.tgz" integrity sha512-uFnZmRWp+QP7mH9jqetmoSR/KYhnFr4sFGR9+HrQkUbOzBQpT7Q2SNrDcr5l29Hm7Lb+3iUuF/l0E//EzuS+Ig== dependencies: delaunay-find "0.0.6" @@ -10108,7 +10157,7 @@ victory-voronoi-container@37.1.2, victory-voronoi-container@^37.1.2: victory-voronoi@37.1.2, victory-voronoi@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-voronoi/-/victory-voronoi-37.1.2.tgz#9697d5ed75677c3fda9f747ce8af77fa68c658b9" + resolved "https://registry.npmjs.org/victory-voronoi/-/victory-voronoi-37.1.2.tgz" integrity sha512-rbihVJMDLmrMKfm6mbzTft9BbaJWZkymFkYxZZT0ZdHjsyaFm7t3jjrtvG1cq6HsTI10AfCh7iWmD9aky69eMQ== dependencies: d3-voronoi "^1.1.4" @@ -10117,7 +10166,7 @@ victory-voronoi@37.1.2, victory-voronoi@^37.1.2: victory-zoom-container@37.1.2, victory-zoom-container@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory-zoom-container/-/victory-zoom-container-37.1.2.tgz#dd60f2f15ed6fa6ddfa875e62b9a5a3e09167fed" + resolved "https://registry.npmjs.org/victory-zoom-container/-/victory-zoom-container-37.1.2.tgz" integrity sha512-OI0AgskIpruWaFWF1BkJWi4UZGyEJ+ol3uzlIMk3tPmYkuw5Gh4pTW6kEw/0E1BP+PwJjv+IRGBbT46/YxV3UQ== dependencies: lodash "^4.17.19" @@ -10125,7 +10174,7 @@ victory-zoom-container@37.1.2, victory-zoom-container@^37.1.2: victory@^37.1.2: version "37.1.2" - resolved "https://registry.yarnpkg.com/victory/-/victory-37.1.2.tgz#46a1e4836de7524c730480884c01fa19ad46428f" + resolved "https://registry.npmjs.org/victory/-/victory-37.1.2.tgz" integrity sha512-V1YkJiWQ/vu5MSZ/Yf9/AJQeE+N1p1eUW6r5xJgOjbhioIbnL7FBTyJW1AXqqDZN9WdyECI3TkFQ1l/QbgztoA== dependencies: victory-area "37.1.2" @@ -10158,7 +10207,7 @@ victory@^37.1.2: viem@^2.21.29: version "2.21.29" - resolved "https://registry.yarnpkg.com/viem/-/viem-2.21.29.tgz#a86225b41968b89f23c9b792eb0745be6bb03cef" + resolved "https://registry.npmjs.org/viem/-/viem-2.21.29.tgz" integrity sha512-n9LoCJjmI1XsE33nl+M4p3Wy5hczv7YC682RpX4Qk9cw8s9HJU+hUi5eDcNDPBcAwIHGCPKsf8yFBEYnE2XYVg== dependencies: "@adraffy/ens-normalize" "1.11.0" @@ -10173,38 +10222,38 @@ viem@^2.21.29: vlq@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/vlq/-/vlq-1.0.1.tgz#c003f6e7c0b4c1edd623fd6ee50bbc0d6a1de468" + resolved "https://registry.npmjs.org/vlq/-/vlq-1.0.1.tgz" integrity sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w== w3c-xmlserializer@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz#aebdc84920d806222936e3cdce408e32488a3073" + resolved "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz" integrity sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw== dependencies: xml-name-validator "^4.0.0" walker@^1.0.7, walker@^1.0.8: version "1.0.8" - resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" + resolved "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz" integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== dependencies: makeerror "1.0.12" warn-once@^0.1.0: version "0.1.1" - resolved "https://registry.yarnpkg.com/warn-once/-/warn-once-0.1.1.tgz#952088f4fb56896e73fd4e6a3767272a3fccce43" + resolved "https://registry.npmjs.org/warn-once/-/warn-once-0.1.1.tgz" integrity sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q== wcwidth@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + resolved "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz" integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== dependencies: defaults "^1.0.3" web-encoding@1.1.5: version "1.1.5" - resolved "https://registry.yarnpkg.com/web-encoding/-/web-encoding-1.1.5.tgz#fc810cf7667364a6335c939913f5051d3e0c4864" + resolved "https://registry.npmjs.org/web-encoding/-/web-encoding-1.1.5.tgz" integrity sha512-HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA== dependencies: util "^0.12.3" @@ -10213,12 +10262,12 @@ web-encoding@1.1.5: web-streams-polyfill@^3.1.1: version "3.3.3" - resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz#2073b91a2fdb1fbfbd401e7de0ac9f8214cecb4b" + resolved "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz" integrity sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw== webauthn-p256@0.0.10: version "0.0.10" - resolved "https://registry.yarnpkg.com/webauthn-p256/-/webauthn-p256-0.0.10.tgz#877e75abe8348d3e14485932968edf3325fd2fdd" + resolved "https://registry.npmjs.org/webauthn-p256/-/webauthn-p256-0.0.10.tgz" integrity sha512-EeYD+gmIT80YkSIDb2iWq0lq2zbHo1CxHlQTeJ+KkCILWpVy3zASH3ByD4bopzfk0uCwXxLqKGLqp2W4O28VFA== dependencies: "@noble/curves" "^1.4.0" @@ -10226,39 +10275,39 @@ webauthn-p256@0.0.10: webidl-conversions@^3.0.0: version "3.0.1" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz" integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== webidl-conversions@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz" integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== webidl-conversions@^7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-7.0.0.tgz#256b4e1882be7debbf01d05f0aa2039778ea080a" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz" integrity sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g== whatwg-encoding@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz#e7635f597fd87020858626805a2729fa7698ac53" + resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz" integrity sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg== dependencies: iconv-lite "0.6.3" whatwg-fetch@^3.0.0: version "3.6.20" - resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz#580ce6d791facec91d37c72890995a0b48d31c70" + resolved "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz" integrity sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg== whatwg-mimetype@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz#5fa1a7623867ff1af6ca3dc72ad6b8a4208beba7" + resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz" integrity sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q== whatwg-url-without-unicode@8.0.0-3: version "8.0.0-3" - resolved "https://registry.yarnpkg.com/whatwg-url-without-unicode/-/whatwg-url-without-unicode-8.0.0-3.tgz#ab6df4bf6caaa6c85a59f6e82c026151d4bb376b" + resolved "https://registry.npmjs.org/whatwg-url-without-unicode/-/whatwg-url-without-unicode-8.0.0-3.tgz" integrity sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig== dependencies: buffer "^5.4.3" @@ -10267,7 +10316,7 @@ whatwg-url-without-unicode@8.0.0-3: whatwg-url@^11.0.0: version "11.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-11.0.0.tgz#0a849eebb5faf2119b901bb76fd795c2848d4018" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz" integrity sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ== dependencies: tr46 "^3.0.0" @@ -10275,7 +10324,7 @@ whatwg-url@^11.0.0: whatwg-url@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz" integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== dependencies: tr46 "~0.0.3" @@ -10283,7 +10332,7 @@ whatwg-url@^5.0.0: which-boxed-primitive@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz" integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== dependencies: is-bigint "^1.0.1" @@ -10294,12 +10343,12 @@ which-boxed-primitive@^1.0.2: which-module@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" + resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz" integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== which-typed-array@^1.1.14, which-typed-array@^1.1.15, which-typed-array@^1.1.2: version "1.1.15" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.15.tgz#264859e9b11a649b388bfaaf4f767df1f779b38d" + resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz" integrity sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA== dependencies: available-typed-arrays "^1.0.7" @@ -10310,31 +10359,31 @@ which-typed-array@^1.1.14, which-typed-array@^1.1.15, which-typed-array@^1.1.2: which@^1.2.9: version "1.3.1" - resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz" integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== dependencies: isexe "^2.0.0" which@^2.0.1: version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== dependencies: isexe "^2.0.0" wonka@^4.0.14: version "4.0.15" - resolved "https://registry.yarnpkg.com/wonka/-/wonka-4.0.15.tgz#9aa42046efa424565ab8f8f451fcca955bf80b89" + resolved "https://registry.npmjs.org/wonka/-/wonka-4.0.15.tgz" integrity sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg== wonka@^6.3.2: version "6.3.4" - resolved "https://registry.yarnpkg.com/wonka/-/wonka-6.3.4.tgz#76eb9316e3d67d7febf4945202b5bdb2db534594" + resolved "https://registry.npmjs.org/wonka/-/wonka-6.3.4.tgz" integrity sha512-CjpbqNtBGNAeyNS/9W6q3kSkKE52+FjIj7AkFlLr11s/VWGUu6a2CdYSdGxocIhIVjaW/zchesBQUKPVU69Cqg== "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== dependencies: ansi-styles "^4.0.0" @@ -10343,7 +10392,7 @@ wonka@^6.3.2: wrap-ansi@^6.2.0: version "6.2.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz" integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== dependencies: ansi-styles "^4.0.0" @@ -10352,7 +10401,7 @@ wrap-ansi@^6.2.0: wrap-ansi@^7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== dependencies: ansi-styles "^4.0.0" @@ -10361,7 +10410,7 @@ wrap-ansi@^7.0.0: wrap-ansi@^8.1.0: version "8.1.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz" integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== dependencies: ansi-styles "^6.1.0" @@ -10370,12 +10419,12 @@ wrap-ansi@^8.1.0: wrappy@1: version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== write-file-atomic@^2.3.0: version "2.4.3" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" + resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz" integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== dependencies: graceful-fs "^4.1.11" @@ -10384,7 +10433,7 @@ write-file-atomic@^2.3.0: write-file-atomic@^4.0.2: version "4.0.2" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" + resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz" integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== dependencies: imurmurhash "^0.1.4" @@ -10392,29 +10441,29 @@ write-file-atomic@^4.0.2: ws@7.4.6: version "7.4.6" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c" + resolved "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz" integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A== ws@8.18.0, ws@^8.11.0, ws@^8.12.1: version "8.18.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc" + resolved "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz" integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw== ws@^6.2.2: version "6.2.3" - resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.3.tgz#ccc96e4add5fd6fedbc491903075c85c5a11d9ee" + resolved "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz" integrity sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA== dependencies: async-limiter "~1.0.0" ws@^7, ws@^7.5.10: version "7.5.10" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.10.tgz#58b5c20dc281633f6c19113f39b349bd8bd558d9" + resolved "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz" integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ== xcode@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/xcode/-/xcode-3.0.1.tgz#3efb62aac641ab2c702458f9a0302696146aa53c" + resolved "https://registry.npmjs.org/xcode/-/xcode-3.0.1.tgz" integrity sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA== dependencies: simple-plist "^1.1.0" @@ -10422,7 +10471,7 @@ xcode@^3.0.1: xhr@^2.0.1: version "2.6.0" - resolved "https://registry.yarnpkg.com/xhr/-/xhr-2.6.0.tgz#b69d4395e792b4173d6b7df077f0fc5e4e2b249d" + resolved "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz" integrity sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA== dependencies: global "~4.4.0" @@ -10432,17 +10481,17 @@ xhr@^2.0.1: xml-name-validator@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" + resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz" integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== xml-parse-from-string@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz#a9029e929d3dbcded169f3c6e28238d95a5d5a28" + resolved "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz" integrity sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g== xml2js@0.6.0: version "0.6.0" - resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.6.0.tgz#07afc447a97d2bd6507a1f76eeadddb09f7a8282" + resolved "https://registry.npmjs.org/xml2js/-/xml2js-0.6.0.tgz" integrity sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w== dependencies: sax ">=0.6.0" @@ -10450,7 +10499,7 @@ xml2js@0.6.0: xml2js@^0.5.0: version "0.5.0" - resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.5.0.tgz#d9440631fbb2ed800203fad106f2724f62c493b7" + resolved "https://registry.npmjs.org/xml2js/-/xml2js-0.5.0.tgz" integrity sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA== dependencies: sax ">=0.6.0" @@ -10458,57 +10507,57 @@ xml2js@^0.5.0: xmlbuilder@^14.0.0: version "14.0.0" - resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-14.0.0.tgz#876b5aec4f05ffd5feb97b0a871c855d16fbeb8c" + resolved "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-14.0.0.tgz" integrity sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg== xmlbuilder@^15.1.1: version "15.1.1" - resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz#9dcdce49eea66d8d10b42cae94a79c3c8d0c2ec5" + resolved "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz" integrity sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg== xmlbuilder@~11.0.0: version "11.0.1" - resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" + resolved "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz" integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== xmlchars@^2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" + resolved "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz" integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== xtend@^4.0.0, xtend@~4.0.1: version "4.0.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== y18n@^4.0.0: version "4.0.3" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" + resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz" integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== y18n@^5.0.5: version "5.0.8" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz" integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== yallist@^3.0.2: version "3.1.1" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + resolved "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz" integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== yallist@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== yaml@^2.2.1: version "2.6.0" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.6.0.tgz#14059ad9d0b1680d0f04d3a60fe00f3a857303c3" + resolved "https://registry.npmjs.org/yaml/-/yaml-2.6.0.tgz" integrity sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ== yargs-parser@^18.1.2: version "18.1.3" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz" integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== dependencies: camelcase "^5.0.0" @@ -10516,12 +10565,12 @@ yargs-parser@^18.1.2: yargs-parser@^21.1.1: version "21.1.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz" integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== yargs@^15.1.0, yargs@^15.3.1: version "15.4.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" + resolved "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz" integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== dependencies: cliui "^6.0.0" @@ -10538,7 +10587,7 @@ yargs@^15.1.0, yargs@^15.3.1: yargs@^17.3.1, yargs@^17.6.2: version "17.7.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" + resolved "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz" integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== dependencies: cliui "^8.0.1" @@ -10551,12 +10600,12 @@ yargs@^17.3.1, yargs@^17.6.2: yocto-queue@^0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== yup@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/yup/-/yup-1.4.0.tgz#898dcd660f9fb97c41f181839d3d65c3ee15a43e" + resolved "https://registry.npmjs.org/yup/-/yup-1.4.0.tgz" integrity sha512-wPbgkJRCqIf+OHyiTBQoJiP5PFuAXaWiJK6AmYkzQAh5/c2K9hzSApBZG5wV9KoKSePF7sAxmNSvh/13YHkFDg== dependencies: property-expr "^2.0.5" @@ -10566,17 +10615,17 @@ yup@^1.4.0: zod-validation-error@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/zod-validation-error/-/zod-validation-error-2.1.0.tgz#208eac75237dfed47c0018d2fe8fd03501bfc9ac" + resolved "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-2.1.0.tgz" integrity sha512-VJh93e2wb4c3tWtGgTa0OF/dTt/zoPCPzXq4V11ZjxmEAFaPi/Zss1xIZdEB5RD8GD00U0/iVXgqkF77RV7pdQ== zod@^3.21.4, zod@^3.22.4: version "3.23.8" - resolved "https://registry.yarnpkg.com/zod/-/zod-3.23.8.tgz#e37b957b5d52079769fb8097099b592f0ef4067d" + resolved "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz" integrity sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g== zustand@^4.4.1: version "4.5.5" - resolved "https://registry.yarnpkg.com/zustand/-/zustand-4.5.5.tgz#f8c713041543715ec81a2adda0610e1dc82d4ad1" + resolved "https://registry.npmjs.org/zustand/-/zustand-4.5.5.tgz" integrity sha512-+0PALYNJNgK6hldkgDq2vLrw5f6g/jCInz52n9RTpropGgeAf/ioFUCdtsjCqu4gNhW9D01rUQBROoRjdzyn2Q== dependencies: use-sync-external-store "1.2.2" From 9a2ea70d720a159632094db6a4479cf97aefd46b Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Thu, 12 Dec 2024 01:25:10 +0100 Subject: [PATCH 81/95] Build Strategy Detail Page / Comment (#102) * feature: strategy page * chore: built stats component / comment modal and comment card * chores: comment clean up --- app/(create-strategy)/[strtegyId]/_layout.tsx | 19 ++ app/(create-strategy)/[strtegyId]/index.tsx | 12 + app/(create-strategy)/_layout.tsx | 6 + app/(create-strategy)/strategy-detail.tsx | 5 + assets/icons/arrow-up-circle.tsx | 11 + assets/icons/flash-icon.tsx | 6 +- assets/icons/index.ts | 14 +- assets/icons/locked-icon.tsx | 50 ++++ assets/icons/risk-icon.tsx | 32 +++ assets/icons/smile-emoji-icon.tsx | 38 +++ assets/icons/sort-icon.tsx | 4 +- assets/icons/stats-deposit-icon.tsx | 43 +++ assets/json/liquid loader animation.json | 156 ++++++++++- components/action-card/index.tsx | 4 +- components/button/index.tsx | 3 +- components/feed-card/index.tsx | 31 ++- components/feed-card/types.ts | 1 + components/flatlist/index.tsx | 124 +++++---- components/flatlist/types.ts | 2 +- components/pool-pair-paper/index.tsx | 4 +- components/strategy-card/index.tsx | 2 +- screens/discover/index.tsx | 11 +- screens/home/dummy.ts | 31 +++ screens/index.ts | 2 + screens/strategy-detail/comment-card.tsx | 76 ++++++ screens/strategy-detail/index.tsx | 255 ++++++++++++++++++ screens/strategy-detail/stats-card.tsx | 54 ++++ screens/strategy-detail/types.ts | 18 ++ 28 files changed, 917 insertions(+), 97 deletions(-) create mode 100644 app/(create-strategy)/[strtegyId]/_layout.tsx create mode 100644 app/(create-strategy)/[strtegyId]/index.tsx create mode 100644 app/(create-strategy)/strategy-detail.tsx create mode 100644 assets/icons/arrow-up-circle.tsx create mode 100644 assets/icons/locked-icon.tsx create mode 100644 assets/icons/risk-icon.tsx create mode 100644 assets/icons/smile-emoji-icon.tsx create mode 100644 assets/icons/stats-deposit-icon.tsx create mode 100644 screens/strategy-detail/comment-card.tsx create mode 100644 screens/strategy-detail/index.tsx create mode 100644 screens/strategy-detail/stats-card.tsx create mode 100644 screens/strategy-detail/types.ts diff --git a/app/(create-strategy)/[strtegyId]/_layout.tsx b/app/(create-strategy)/[strtegyId]/_layout.tsx new file mode 100644 index 0000000..7217a3c --- /dev/null +++ b/app/(create-strategy)/[strtegyId]/_layout.tsx @@ -0,0 +1,19 @@ +import { Stack } from 'expo-router'; + +import { LQDStackHeader } from '@/components'; + +const StrategyDetailLayout = () => { + return ( + <> + , + headerTitle: 'Strategy', + headerShown: true, + }} + > + + ); +}; + +export default StrategyDetailLayout; diff --git a/app/(create-strategy)/[strtegyId]/index.tsx b/app/(create-strategy)/[strtegyId]/index.tsx new file mode 100644 index 0000000..3eb41cd --- /dev/null +++ b/app/(create-strategy)/[strtegyId]/index.tsx @@ -0,0 +1,12 @@ +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { StrategyDetail } from '@/screens'; + +const PoolDetailScreen = () => { + const { params } = useSystemFunctions(); + + const { strategyId } = params; + + return ; +}; + +export default PoolDetailScreen; diff --git a/app/(create-strategy)/_layout.tsx b/app/(create-strategy)/_layout.tsx index 48f0c62..948694f 100644 --- a/app/(create-strategy)/_layout.tsx +++ b/app/(create-strategy)/_layout.tsx @@ -28,6 +28,12 @@ const StrategyStack = () => { headerShown: true, }} /> + ); }; diff --git a/app/(create-strategy)/strategy-detail.tsx b/app/(create-strategy)/strategy-detail.tsx new file mode 100644 index 0000000..d99b1f1 --- /dev/null +++ b/app/(create-strategy)/strategy-detail.tsx @@ -0,0 +1,5 @@ +import { StrategyDetail } from '@/screens'; + +const StrategyDetailScreen = () => ; + +export default StrategyDetailScreen; diff --git a/assets/icons/arrow-up-circle.tsx b/assets/icons/arrow-up-circle.tsx new file mode 100644 index 0000000..c339884 --- /dev/null +++ b/assets/icons/arrow-up-circle.tsx @@ -0,0 +1,11 @@ +import Svg, { Path } from 'react-native-svg'; + +const ArrowUpCircleIcon = ({ fill = '#4691FE', height = 20, width = 20 }: IconProps) => ( + + + +); +export default ArrowUpCircleIcon; diff --git a/assets/icons/flash-icon.tsx b/assets/icons/flash-icon.tsx index 783dcf2..c5855de 100644 --- a/assets/icons/flash-icon.tsx +++ b/assets/icons/flash-icon.tsx @@ -1,10 +1,10 @@ import Svg, { Path } from 'react-native-svg'; -const FlashIcon = ({ fill = '#fff', height = 19, width = 18 }: IconProps) => ( - +const FlashIcon = ({ fill = '#0F172A', height = 20, width = 21 }: IconProps) => ( + { + return ( + + + + + + + + + ); +}; + +export default LockedIcon; diff --git a/assets/icons/risk-icon.tsx b/assets/icons/risk-icon.tsx new file mode 100644 index 0000000..f692a55 --- /dev/null +++ b/assets/icons/risk-icon.tsx @@ -0,0 +1,32 @@ +import Svg, { Path, Rect } from 'react-native-svg'; + +const RiskIcon = ({ height = 30, width = 30, fill = '#1E293B' }: IconProps) => { + return ( + + + + + + + ); +}; + +export default RiskIcon; diff --git a/assets/icons/smile-emoji-icon.tsx b/assets/icons/smile-emoji-icon.tsx new file mode 100644 index 0000000..6db6ea0 --- /dev/null +++ b/assets/icons/smile-emoji-icon.tsx @@ -0,0 +1,38 @@ +import Svg, { Path } from 'react-native-svg'; + +const SmileEmojiIcon = ({ fill = '#0C0507', height = 20, width = 20 }) => ( + + + + + + +); +export default SmileEmojiIcon; diff --git a/assets/icons/sort-icon.tsx b/assets/icons/sort-icon.tsx index cdbea8d..d45b094 100644 --- a/assets/icons/sort-icon.tsx +++ b/assets/icons/sort-icon.tsx @@ -1,6 +1,6 @@ import Svg, { Path, Rect } from 'react-native-svg'; -const SortIcon = ({ fill = '#FFF', height = 30, width = 30 }: IconProps) => ( +const CuratorIcon = ({ fill = '#FFF', height = 30, width = 30 }: IconProps) => ( ( ); -export default SortIcon; +export default CuratorIcon; diff --git a/assets/icons/stats-deposit-icon.tsx b/assets/icons/stats-deposit-icon.tsx new file mode 100644 index 0000000..8263e20 --- /dev/null +++ b/assets/icons/stats-deposit-icon.tsx @@ -0,0 +1,43 @@ +import Svg, { Path, Rect } from 'react-native-svg'; + +const StatsDepositIcon = ({ height = 30, width = 30, fill = '#1E293B' }: IconProps) => { + return ( + + + + + + + + ); +}; + +export default StatsDepositIcon; diff --git a/assets/json/liquid loader animation.json b/assets/json/liquid loader animation.json index 3fb91c9..e41029a 100644 --- a/assets/json/liquid loader animation.json +++ b/assets/json/liquid loader animation.json @@ -1 +1,155 @@ -{"v":"4.8.0","meta":{"g":"LottieFiles AE 3.5.9","a":"","k":"","d":"","tc":""},"fr":29.9700012207031,"ip":0,"op":71.0000028918893,"w":520,"h":410,"nm":"Comp 1","ddd":0,"assets":[{"id":"image_0","w":378,"h":169,"u":"/images/","p":"data:image/png;base64,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","e":0}],"layers":[{"ddd":0,"ind":1,"ty":2,"nm":"Layer 1/liquid loader animation.ai","cl":"ai","td":1,"refId":"image_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[260,205,0],"ix":2},"a":{"a":0,"k":[189,84.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[1,1,1,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"ip":0,"op":240.0000097754,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":1,"nm":"Medium Royal Blue Solid 1","tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[260,435,0],"to":[0,0,0],"ti":[0,0,0]},{"t":61.0000024845809,"s":[260,255,0]}],"ix":2},"a":{"a":0,"k":[260,205,0],"ix":1},"s":{"a":0,"k":[100,70.732,100],"ix":6}},"ao":0,"ef":[{"ty":5,"nm":"Turbulent Displace","np":16,"mn":"ADBE Turbulent Displace","ix":1,"en":1,"ef":[{"ty":7,"nm":"Displacement","mn":"ADBE Turbulent Displace-0001","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":0,"nm":"Amount","mn":"ADBE Turbulent Displace-0002","ix":2,"v":{"a":0,"k":-16,"ix":2}},{"ty":0,"nm":"Size","mn":"ADBE Turbulent Displace-0003","ix":3,"v":{"a":0,"k":82,"ix":3}},{"ty":3,"nm":"Offset (Turbulence)","mn":"ADBE Turbulent Displace-0004","ix":4,"v":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[260,205],"to":[0,0],"ti":[0,0]},{"t":57.0000023216576,"s":[731,205]}],"ix":4}},{"ty":0,"nm":"Complexity","mn":"ADBE Turbulent Displace-0005","ix":5,"v":{"a":0,"k":3.95,"ix":5}},{"ty":0,"nm":"Evolution","mn":"ADBE Turbulent Displace-0006","ix":6,"v":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[0]},{"t":61.0000024845809,"s":[282]}],"ix":6}},{"ty":6,"nm":"Evolution Options","mn":"ADBE Turbulent Displace-0007","ix":7,"v":0},{"ty":7,"nm":"Cycle Evolution","mn":"ADBE Turbulent Displace-0008","ix":8,"v":{"a":0,"k":0,"ix":8}},{"ty":0,"nm":"Cycle (in Revolutions)","mn":"ADBE Turbulent Displace-0009","ix":9,"v":{"a":0,"k":1,"ix":9}},{"ty":0,"nm":"Random Seed","mn":"ADBE Turbulent Displace-0010","ix":10,"v":{"a":0,"k":0,"ix":10}},{"ty":6,"nm":"Random Seed","mn":"ADBE Turbulent Displace-0011","ix":11,"v":0},{"ty":7,"nm":"Pinning","mn":"ADBE Turbulent Displace-0012","ix":12,"v":{"a":0,"k":3,"ix":12}},{"ty":7,"nm":"Resize Layer","mn":"ADBE Turbulent Displace-0013","ix":13,"v":{"a":0,"k":0,"ix":13}},{"ty":7,"nm":"Antialiasing for Best Quality","mn":"ADBE Turbulent Displace-0014","ix":14,"v":{"a":0,"k":1,"ix":14}}]}],"sw":520,"sh":410,"sc":"#90aee4","ip":0,"op":240.0000097754,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":2,"nm":"Layer 1/liquid loader animation.ai","cl":"ai","refId":"image_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[260,205,0],"ix":2},"a":{"a":0,"k":[189,84.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[1,1,1,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"ip":0,"op":240.0000097754,"st":0,"bm":0}],"markers":[]} \ No newline at end of file +{ + "v": "4.8.0", + "meta": { "g": "LottieFiles AE 3.5.9", "a": "", "k": "", "d": "", "tc": "" }, + "fr": 29.9700012207031, + "ip": 0, + "op": 53.0000021587343, + "w": 520, + "h": 410, + "nm": "Comp 1", + "ddd": 0, + "assets": [ + { + "id": "image_0", + "w": 3914, + "h": 1748, + "u": "/images/", + "p": "data:image/png;base64,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", + "e": 0 + } + ], + "layers": [ + { + "ddd": 0, + "ind": 1, + "ty": 2, + "nm": "liquid icon whiteAsset 1@2x-8.png", + "cl": "png", + "td": 1, + "refId": "image_0", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [259, 205, 0], "ix": 2 }, + "a": { "a": 0, "k": [1957, 874, 0], "ix": 1 }, + "s": { "a": 0, "k": [9.664, 9.664, 100], "ix": 6 } + }, + "ao": 0, + "ip": 0, + "op": 240.0000097754, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 2, + "ty": 1, + "nm": "Medium Royal Blue Solid 1", + "tt": 1, + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { "i": { "x": 0.667, "y": 1 }, "o": { "x": 0.333, "y": 0 }, "t": 0, "s": [260, 435, 0], "to": [0, 0, 0], "ti": [0, 0, 0] }, + { "t": 47.0000019143492, "s": [260, 255, 0] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [260, 205, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 70.732, 100], "ix": 6 } + }, + "ao": 0, + "ef": [ + { + "ty": 5, + "nm": "Turbulent Displace", + "np": 16, + "mn": "ADBE Turbulent Displace", + "ix": 1, + "en": 1, + "ef": [ + { "ty": 7, "nm": "Displacement", "mn": "ADBE Turbulent Displace-0001", "ix": 1, "v": { "a": 0, "k": 1, "ix": 1 } }, + { "ty": 0, "nm": "Amount", "mn": "ADBE Turbulent Displace-0002", "ix": 2, "v": { "a": 0, "k": -16, "ix": 2 } }, + { "ty": 0, "nm": "Size", "mn": "ADBE Turbulent Displace-0003", "ix": 3, "v": { "a": 0, "k": 82, "ix": 3 } }, + { + "ty": 3, + "nm": "Offset (Turbulence)", + "mn": "ADBE Turbulent Displace-0004", + "ix": 4, + "v": { + "a": 1, + "k": [ + { "i": { "x": 0.667, "y": 1 }, "o": { "x": 0.333, "y": 0 }, "t": 0, "s": [260, 205], "to": [0, 0], "ti": [0, 0] }, + { "t": 43.0000017514259, "s": [731, 205] } + ], + "ix": 4 + } + }, + { "ty": 0, "nm": "Complexity", "mn": "ADBE Turbulent Displace-0005", "ix": 5, "v": { "a": 0, "k": 3.95, "ix": 5 } }, + { + "ty": 0, + "nm": "Evolution", + "mn": "ADBE Turbulent Displace-0006", + "ix": 6, + "v": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 0, "s": [0] }, + { "t": 47.0000019143492, "s": [282] } + ], + "ix": 6 + } + }, + { "ty": 6, "nm": "Evolution Options", "mn": "ADBE Turbulent Displace-0007", "ix": 7, "v": 0 }, + { "ty": 7, "nm": "Cycle Evolution", "mn": "ADBE Turbulent Displace-0008", "ix": 8, "v": { "a": 0, "k": 0, "ix": 8 } }, + { "ty": 0, "nm": "Cycle (in Revolutions)", "mn": "ADBE Turbulent Displace-0009", "ix": 9, "v": { "a": 0, "k": 1, "ix": 9 } }, + { "ty": 0, "nm": "Random Seed", "mn": "ADBE Turbulent Displace-0010", "ix": 10, "v": { "a": 0, "k": 0, "ix": 10 } }, + { "ty": 6, "nm": "Random Seed", "mn": "ADBE Turbulent Displace-0011", "ix": 11, "v": 0 }, + { "ty": 7, "nm": "Pinning", "mn": "ADBE Turbulent Displace-0012", "ix": 12, "v": { "a": 0, "k": 3, "ix": 12 } }, + { "ty": 7, "nm": "Resize Layer", "mn": "ADBE Turbulent Displace-0013", "ix": 13, "v": { "a": 0, "k": 0, "ix": 13 } }, + { + "ty": 7, + "nm": "Antialiasing for Best Quality", + "mn": "ADBE Turbulent Displace-0014", + "ix": 14, + "v": { "a": 0, "k": 1, "ix": 14 } + } + ] + } + ], + "sw": 520, + "sh": 410, + "sc": "#90aee4", + "ip": 0, + "op": 240.0000097754, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 3, + "ty": 2, + "nm": "liquid icon whiteAsset 1@2x-8.png", + "cl": "png", + "refId": "image_0", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [259, 205, 0], "ix": 2 }, + "a": { "a": 0, "k": [1957, 874, 0], "ix": 1 }, + "s": { "a": 0, "k": [9.664, 9.664, 100], "ix": 6 } + }, + "ao": 0, + "ip": 0, + "op": 240.0000097754, + "st": 0, + "bm": 0 + } + ], + "markers": [] +} diff --git a/components/action-card/index.tsx b/components/action-card/index.tsx index 96a58bc..8031e3a 100644 --- a/components/action-card/index.tsx +++ b/components/action-card/index.tsx @@ -1,6 +1,6 @@ import React, { useEffect, useRef } from 'react'; import { StyleSheet, View, Text, TouchableOpacity } from 'react-native'; -import { BorrowIcon, DepositIcon, FillCheckIcon, SortIcon, StakeIcon } from '@/assets/icons'; +import { BorrowIcon, DepositIcon, FillCheckIcon, CuratorIcon, StakeIcon } from '@/assets/icons'; import LQDImage from '../image'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import { IActionCard } from './types'; @@ -12,7 +12,7 @@ const LQDActionCard = ({ selected, action, actions, variant }: IActionCard) => { stake: , deposit: , borrow: , - sort: , + sort: , supply: null, }; diff --git a/components/button/index.tsx b/components/button/index.tsx index fdd1f9b..72097b9 100644 --- a/components/button/index.tsx +++ b/components/button/index.tsx @@ -54,7 +54,7 @@ const styles = StyleSheet.create({ paddingTop: 19, paddingBottom: 18, borderRadius: 50, - backgroundColor: '#FFF', + backgroundColor: '#F1F5F9', }, primaryText: { @@ -71,7 +71,6 @@ const styles = StyleSheet.create({ shadowOpacity: 1, shadowRadius: 0, elevation: 1, - borderWidth: 1, borderColor: '#EBEBEB', }, diff --git a/components/feed-card/index.tsx b/components/feed-card/index.tsx index e5aaac1..1c6c651 100644 --- a/components/feed-card/index.tsx +++ b/components/feed-card/index.tsx @@ -4,13 +4,20 @@ import FastImage from 'react-native-fast-image'; import { CommentIcon, FlashIcon, MoreIcon, ReTweetIcon, ShareIcon, SwatchIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import FeedStep from './feed-step'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; + +const LQDFeedCard = ({ feed, showInvest = true, showComment }: FeedCard) => { + const { router } = useSystemFunctions(); + + const handlePress = () => { + router.push('/(create-strategy)/[strtegyId]/'); + }; -const LQDFeedCard = ({ feed, showInvest = true }: FeedCard) => { const { steps, photo, username, address, date, percentage, estimate, title, description, commentCount, shareCount, flashCount } = feed; + return ( - + - {/* top */} { }} resizeMode={FastImage.resizeMode.contain} /> - {/* */} + @@ -36,8 +43,7 @@ const LQDFeedCard = ({ feed, showInvest = true }: FeedCard) => { - {/* top */} - {/* second */} + {steps.map((step: IFeedStep, index: number) => ( { /> ))} - {/* second */} - {/* third */} + {title} @@ -65,8 +70,7 @@ const LQDFeedCard = ({ feed, showInvest = true }: FeedCard) => { See more... - {/* third */} - {/* fouth */} + {showInvest && ( @@ -75,10 +79,10 @@ const LQDFeedCard = ({ feed, showInvest = true }: FeedCard) => { )} - + {commentCount} - + {shareCount} @@ -90,9 +94,8 @@ const LQDFeedCard = ({ feed, showInvest = true }: FeedCard) => { - {/* fouth */} - + ); }; diff --git a/components/feed-card/types.ts b/components/feed-card/types.ts index a23f6cf..d3a43dc 100644 --- a/components/feed-card/types.ts +++ b/components/feed-card/types.ts @@ -1,6 +1,7 @@ interface FeedCard { feed: any; showInvest?: boolean; + showComment?: () => void; } interface IFeedStep { diff --git a/components/flatlist/index.tsx b/components/flatlist/index.tsx index adbfd4d..b649ce8 100644 --- a/components/flatlist/index.tsx +++ b/components/flatlist/index.tsx @@ -1,68 +1,74 @@ -import React from 'react'; +import React, { forwardRef } from 'react'; import { FlatList, View, ActivityIndicator, StyleSheet, ListRenderItem, RefreshControl } from 'react-native'; import { LQDFlatlistProps } from './types'; -const LQDFlatlist = ({ - data = [], - renderItem, - keyExtractor = (item, index) => index.toString(), - ListHeaderComponent, - ListFooterComponent, - ListEmptyComponent, - refreshing = false, - onRefresh, - onEndReached, - onEndReachedThreshold = 0.1, - showsVerticalScrollIndicator = false, - showsHorizontalScrollIndicator = false, - contentContainerStyle, - horizontal = false, - style, - loader = false, -}: LQDFlatlistProps) => { - const DefaultFooterLoader = () => ( - - - - ); +const LQDFlatlist = forwardRef( + ( + { + data = [], + renderItem, + keyExtractor = (item, index) => index.toString(), + ListHeaderComponent, + ListFooterComponent, + ListEmptyComponent, + refreshing = false, + onRefresh, + onEndReached, + onEndReachedThreshold = 0.1, + showsVerticalScrollIndicator = false, + showsHorizontalScrollIndicator = false, + contentContainerStyle, + horizontal = false, + style, + loader = false, + }: LQDFlatlistProps, + ref: React.Ref> + ) => { + const DefaultFooterLoader = () => ( + + + + ); - const IsRefresh = () => { - if (onRefresh) { - return ( - - ); - } + const IsRefresh = () => { + if (onRefresh) { + return ( + + ); + } - return null; - }; + return null; + }; - return ( - } - keyExtractor={keyExtractor} - ListHeaderComponent={ListHeaderComponent} - ListFooterComponent={loader ? : ListFooterComponent} - ListEmptyComponent={ListEmptyComponent} - refreshing={refreshing} - refreshControl={} - onRefresh={onRefresh} - onEndReached={onEndReached} - onEndReachedThreshold={onEndReachedThreshold} - showsVerticalScrollIndicator={showsVerticalScrollIndicator} - contentContainerStyle={[{ paddingBottom: 100 }, contentContainerStyle]} - style={[style]} - horizontal={horizontal} - showsHorizontalScrollIndicator={showsHorizontalScrollIndicator} - /> - ); -}; + return ( + } + keyExtractor={keyExtractor} + ListHeaderComponent={ListHeaderComponent} + ListFooterComponent={loader ? : ListFooterComponent} + ListEmptyComponent={ListEmptyComponent} + refreshing={refreshing} + refreshControl={} + onRefresh={onRefresh} + onEndReached={onEndReached} + onEndReachedThreshold={onEndReachedThreshold} + showsVerticalScrollIndicator={showsVerticalScrollIndicator} + contentContainerStyle={[{ paddingBottom: 100 }, contentContainerStyle]} + style={[style]} + horizontal={horizontal} + showsHorizontalScrollIndicator={showsHorizontalScrollIndicator} + /> + ); + } +); export default LQDFlatlist; diff --git a/components/flatlist/types.ts b/components/flatlist/types.ts index 8f009f5..e0a9ed9 100644 --- a/components/flatlist/types.ts +++ b/components/flatlist/types.ts @@ -1,4 +1,4 @@ -import { FlatListProps } from 'react-native'; +import { FlatList, FlatListProps } from 'react-native'; export interface LQDFlatlistProps extends FlatListProps { loader?: boolean; diff --git a/components/pool-pair-paper/index.tsx b/components/pool-pair-paper/index.tsx index 44ae501..02e9845 100644 --- a/components/pool-pair-paper/index.tsx +++ b/components/pool-pair-paper/index.tsx @@ -5,10 +5,8 @@ import { adjustFontSizeForIOS, formatAmount, formatNumberWithSuffix, formatSymbo import useSystemFunctions from '@/hooks/useSystemFunctions'; import { setRecentSearchedPool, setSelectedPool } from '@/store/pools'; import { PoolPairPaper } from './types'; -import LQDPoolImages from '../pool-images'; -import LQShrimeLoader from '../loader'; import LQDImage from '../image'; -import { CheckIcon, FillCheckIcon } from '@/assets/icons'; +import { FillCheckIcon } from '@/assets/icons'; const LQDPoolPairPaper = ({ pool, navigationVariant = 'primary', showFullSymbol, selected }: PoolPairPaper) => { const { router, dispatch } = useSystemFunctions(); diff --git a/components/strategy-card/index.tsx b/components/strategy-card/index.tsx index 1b987e0..825e8f1 100644 --- a/components/strategy-card/index.tsx +++ b/components/strategy-card/index.tsx @@ -13,7 +13,7 @@ const LQDStrategyCard = ({ strategy, navigationVariant = 'primary' }: IStrategyC const { id } = strategy; const onPress = () => { searchIsFocused(false); - router.push(`/(tabs)/home/${id}`); + router.push('/(create-strategy)/[strtegyId]/'); }; const avatar = strategy.image; diff --git a/screens/discover/index.tsx b/screens/discover/index.tsx index cfdb4c8..9243161 100644 --- a/screens/discover/index.tsx +++ b/screens/discover/index.tsx @@ -35,17 +35,16 @@ const Discover = () => { }).start(); }, [search]); - // Animated styles const discoverStyle = { opacity: animationValue.interpolate({ inputRange: [0, 1], - outputRange: [1, 0], // Fully visible when search is false + outputRange: [1, 0], }), transform: [ { translateY: animationValue.interpolate({ inputRange: [0, 1], - outputRange: [0, -20], // Slide up when transitioning + outputRange: [0, -20], }), }, ], @@ -54,13 +53,13 @@ const Discover = () => { const searchStyle = { opacity: animationValue.interpolate({ inputRange: [0, 1], - outputRange: [0, 1], // Fully visible when search is true + outputRange: [0, 1], }), transform: [ { translateY: animationValue.interpolate({ inputRange: [0, 1], - outputRange: [20, 0], // Slide down when transitioning + outputRange: [20, 0], }), }, ], @@ -93,7 +92,6 @@ const Discover = () => { return ( - {/* Discover Section */} {!search && ( Discover @@ -123,7 +121,6 @@ const Discover = () => { )} - {/* Search Section */} {search && ( { + const { content, likes, date, username, image } = comment; + return ( + + + + + {username} + {date} + + {content} + + + + + {likes || 0} + + + ); +}; + +export default CommentCard; + +const styles = StyleSheet.create({ + container: { flexDirection: 'row', gap: 8 }, + commentRightWrapper: { alignItems: 'center', gap: 6 }, + commentLeftWrapper: { flex: 1, marginRight: 10, gap: 5 }, + commentCardContainer: { flexDirection: 'row', gap: 8 }, + usernameFlex: { flexDirection: 'row', gap: 7 }, + username: { + fontSize: adjustFontSizeForIOS(13, 3), + fontFamily: 'ClashDisplayBold', + fontWeight: '500', + color: '#1E293B', + }, + likeCount: { + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + color: '#1E293B', + }, + title: { + fontSize: adjustFontSizeForIOS(15, 3), + fontFamily: 'AeonikBold', + fontWeight: '500', + color: '#1E293B', + }, + + address: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 16.8, + }, + comment: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 16.8, + }, + time: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 15.84, + }, +}); diff --git a/screens/strategy-detail/index.tsx b/screens/strategy-detail/index.tsx new file mode 100644 index 0000000..79365d1 --- /dev/null +++ b/screens/strategy-detail/index.tsx @@ -0,0 +1,255 @@ +import { FlatList, StyleSheet, Text, TextInput, TouchableOpacity, View } from 'react-native'; +import React, { useRef, useState } from 'react'; +import { LQDBottomSheet, LQDButton, LQDFeedCard, LQDFlatlist, LQDImage, LQDInput, LQDScrollView, LQShrimeLoader } from '@/components'; +import { feeds, strategyInfo } from '../home/dummy'; +import { ArrowUpCircleIcon, DiscoverUSDIcon, FlashIcon, SmileEmojiIcon, CuratorIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import StatsCard from './stats-card'; +import CommentCard from './comment-card'; + +const StrategyDetail = ({ strategyId }: any) => { + const flatListRef = useRef(null); + + const [comment, setComment] = useState(''); + const [showComment, setShowComment] = useState(false); + const [dynamicHeight, setDynamicHeight] = useState(0); + const [comments, setComments] = useState([]); + + const inputheight = Math.min(Math.max(44, dynamicHeight), 80); + + const handleComment = () => { + const payload = { + content: comment, + date: '2h', + likes: 34, + username: '@Njoku', + image: '', + }; + if (comment.trim().length > 0) { + setComments((prev: any) => [...prev, payload]); + setComment(''); + } + + flatListRef.current?.scrollToEnd({ animated: true }); + }; + + const openComment = () => { + setShowComment((prev) => !prev); + }; + + const EmptyState = () => ( + + No comments + + + + + ); + + const bottomInput = () => ( + + + + setComment(val)} + multiline={true} + onContentSizeChange={(event) => setDynamicHeight(event.nativeEvent.contentSize.height)} + style={{ flex: 1 }} + autoFocus + /> + {comment.length > 0 ? ( + + + + ) : ( + + )} + + + ); + + return ( + {}} style={styles.container}> + + + + Strategy Info + + + {strategyInfo.map((stats, index) => ( + + ))} + + + + + + USDC + + + Invested: + 3,000 + + + + + + + + + + + + + {!comments.length && } + {comments.length > 0 && ( + } + keyExtractor={(_, index) => index.toString()} + showsHorizontalScrollIndicator={false} + contentContainerStyle={styles.commentContainerStyle} + /> + )} + + {bottomInput()} + + + + + ); +}; + +export default StrategyDetail; + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#FFFFFF', + }, + statsWrapper: { flexDirection: 'row', width: '100%', flexWrap: 'wrap', gap: 20 }, + commentRightWrapper: { alignItems: 'center', gap: 6 }, + commentLeftWrapper: { flex: 1, marginRight: 10, gap: 5 }, + commentCardContainer: { flexDirection: 'row', gap: 8 }, + lineOne: { height: 8, borderRadius: 10, marginTop: 10, width: '80%' }, + lineTwo: { height: 8, borderRadius: 10, marginTop: 10, width: '60%' }, + lineThree: { height: 8, borderRadius: 10, marginTop: 10, width: '40%' }, + emptyStateWrapper: { alignItems: 'center', marginTop: 30 }, + commentContainer: { + bottom: 30, + left: 0, + right: 0, + flexDirection: 'row', + gap: 10, + alignItems: 'center', + backgroundColor: '#FFFFFF', + paddingVertical: 8, + + borderTopColor: '#EAEEF4', + zIndex: 10, + }, + commentContainerStyle: { + gap: 20, + paddingBottom: 50, + }, + + commentInput: { + borderWidth: 1, + borderColor: '#EAEEF4', + height: 44, + borderRadius: 16, + alignItems: 'center', + paddingHorizontal: 10, + flex: 1, + flexDirection: 'row', + gap: 5, + }, + infoContainer: { + paddingVertical: 10, + paddingHorizontal: 16, + }, + emptyText: { + fontSize: adjustFontSizeForIOS(16, 1), + fontFamily: 'AeonikBold', + fontWeight: '500', + color: '#1E293B', + lineHeight: 19.2, + marginBottom: 5, + }, + + title: { + fontSize: adjustFontSizeForIOS(15, 3), + fontFamily: 'AeonikBold', + fontWeight: '500', + color: '#1E293B', + }, + + address: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 16.8, + }, + comment: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 16.8, + }, + time: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(11, 3), + fontFamily: 'AeonikRegular', + fontWeight: '400', + lineHeight: 15.84, + }, + sectionTitle: { + fontSize: 16, + fontWeight: '600', + color: '#1E293B', + marginBottom: 12, + }, + token: { + fontSize: adjustFontSizeForIOS(14, 2), + fontWeight: '500', + color: '#1A2001', + lineHeight: 18.48, + fontFamily: 'AeonikMedium', + }, + invested: { + fontSize: adjustFontSizeForIOS(14, 2), + fontWeight: '500', + color: '#64748B', + lineHeight: 18.48, + fontFamily: 'AeonikMedium', + }, + investedAmount: { + fontSize: adjustFontSizeForIOS(16, 2), + fontWeight: '500', + color: '#1A2001', + lineHeight: 19.84, + fontFamily: 'AeonikMedium', + }, + tokenContainer: { + flexDirection: 'row', + justifyContent: 'space-between', + alignItems: 'center', + paddingVertical: 20, + paddingHorizontal: 5, + }, + tokenWrapper: { + flexDirection: 'row', + gap: 5, + alignItems: 'center', + }, + buttonWrapper: { + marginTop: 20, + }, + flatlistWrapper: { flex: 1, height: 400, maxHeight: 450 }, +}); diff --git a/screens/strategy-detail/stats-card.tsx b/screens/strategy-detail/stats-card.tsx new file mode 100644 index 0000000..1b92a5e --- /dev/null +++ b/screens/strategy-detail/stats-card.tsx @@ -0,0 +1,54 @@ +import { StyleSheet, Text, View } from 'react-native'; +import React from 'react'; +import { CuratorIcon, DepositIcon, LockedIcon, RiskIcon, StatsDepositIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; + +const StatsCard = ({ title, value, variant, isActive = false }: IStatCard) => { + const icon = { + locked: , + risk: , + deposit: , + curator: , + }; + + const backgroundColor = isActive ? '#EFFAF6' : '#F8FAFC'; + const borderColor = isActive ? '#CBF5E5' : '#F1F5F9'; + const textColor = isActive ? '#013220' : '#121212'; + + return ( + + {icon[variant]} + + {title} + {value} + + + ); +}; + +export default StatsCard; + +const styles = StyleSheet.create({ + container: { + width: '47%', + borderWidth: 1, + borderRadius: 20, + padding: 15, + rowGap: 15, + }, + title: { + fontSize: adjustFontSizeForIOS(28, 2), + fontWeight: '700', + color: '#1A2001', + lineHeight: 31.36, + fontFamily: 'QuantaGroteskProSemiBold', + marginTop: 10, + }, + subTitle: { + fontSize: adjustFontSizeForIOS(13, 2), + fontWeight: '400', + color: '#1A2001', + lineHeight: 18.48, + fontFamily: 'AeonikRegular', + }, +}); diff --git a/screens/strategy-detail/types.ts b/screens/strategy-detail/types.ts new file mode 100644 index 0000000..a48903f --- /dev/null +++ b/screens/strategy-detail/types.ts @@ -0,0 +1,18 @@ +interface IStatCard { + title?: string; + variant: 'locked' | 'risk' | 'deposit' | 'curator'; + value: string; + isActive: boolean; +} + +interface Comment { + image: string; + username: string; + content: string; + likes: string; + date: string; +} + +interface ICommentCard { + comment: Comment; +} From a499bd5de4e9cef7a91cb7e541d7e64975180cc0 Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Thu, 12 Dec 2024 16:27:04 +0100 Subject: [PATCH 82/95] Build Portfolio Screen (#103) * feature: Build portfolio screen * chores: navigation to withdraw screen * chores: selected state name update * chores: IActionIconVariant type rename * chores: style crean up --- app/(portfolio)/_layout.tsx | 24 +++ app/(portfolio)/index.tsx | 5 + app/(tabs)/_layout.tsx | 20 +- assets/icons/coin-base-icon.tsx | 23 +++ assets/icons/debit-card-icon.tsx | 25 +++ assets/icons/index.ts | 4 + assets/images/slider-1.png | Bin 0 -> 15144 bytes assets/images/slider-2.png | Bin 0 -> 9690 bytes components/action-card/index.tsx | 5 +- components/action-card/types.ts | 4 +- components/index.ts | 2 + components/input/index.tsx | 1 + components/slider/index.tsx | 144 ++++++++++++++ components/slider/types.ts | 12 ++ components/stack-header/index.tsx | 6 +- .../create-strategy/new-action-strategy.tsx | 4 +- screens/create-strategy/preview-strategy.tsx | 4 +- screens/discover/dummy.ts | 73 +++++++ screens/discover/index.tsx | 10 +- screens/home/header.tsx | 8 +- screens/home/types.ts | 3 +- screens/index.ts | 3 + screens/portfolio/asset-item.tsx | 63 ++++++ screens/portfolio/index.tsx | 179 ++++++++++++++++++ screens/portfolio/types.ts | 5 + screens/strategy-detail/index.tsx | 4 +- 26 files changed, 603 insertions(+), 28 deletions(-) create mode 100644 app/(portfolio)/_layout.tsx create mode 100644 app/(portfolio)/index.tsx create mode 100644 assets/icons/coin-base-icon.tsx create mode 100644 assets/icons/debit-card-icon.tsx create mode 100644 assets/images/slider-1.png create mode 100644 assets/images/slider-2.png create mode 100644 components/slider/index.tsx create mode 100644 components/slider/types.ts create mode 100644 screens/portfolio/asset-item.tsx create mode 100644 screens/portfolio/index.tsx create mode 100644 screens/portfolio/types.ts diff --git a/app/(portfolio)/_layout.tsx b/app/(portfolio)/_layout.tsx new file mode 100644 index 0000000..1adc284 --- /dev/null +++ b/app/(portfolio)/_layout.tsx @@ -0,0 +1,24 @@ +import { Stack } from 'expo-router'; +import { LQDStackHeader } from '@/components'; + +const PortfolioStack = () => { + return ( + , + headerShown: true, + }} + > + , + headerShown: true, + headerTitle: 'Portfolio', + }} + /> + + ); +}; + +export default PortfolioStack; diff --git a/app/(portfolio)/index.tsx b/app/(portfolio)/index.tsx new file mode 100644 index 0000000..67cc97d --- /dev/null +++ b/app/(portfolio)/index.tsx @@ -0,0 +1,5 @@ +import { Portfolio } from '@/screens'; + +const PortfolioScreen = () => ; + +export default PortfolioScreen; diff --git a/app/(tabs)/_layout.tsx b/app/(tabs)/_layout.tsx index 64ab70c..23c1241 100644 --- a/app/(tabs)/_layout.tsx +++ b/app/(tabs)/_layout.tsx @@ -8,24 +8,32 @@ import { LQDActionCard, LQDBottomSheet, LQDFlatlist, LQDNavigation } from '@/com import Header from '@/screens/home/header'; import { useState } from 'react'; import { sortList } from '@/screens/discover/dummy'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; export default function TabLayout() { const colorScheme = useColorScheme(); const [show, setShow] = useState(false); - const [selected, setSelected] = useState(''); + const [selectedAction, setSelectedAction] = useState(''); + const { router } = useSystemFunctions(); + + const navigate = () => { + router.push('/(portfolio)'); + }; + + const openModal = () => { + setShow((prev) => !prev); + }; return ( <> - {/* fix this header showing on all screens */} - - setShow((prev) => !prev)}> + ( - setSelected(item.id)} /> + setSelectedAction(item.id)} /> )} keyExtractor={(_, index) => index.toString()} showsHorizontalScrollIndicator={false} @@ -38,7 +46,7 @@ export default function TabLayout() { screenOptions={{ tabBarActiveTintColor: Colors[colorScheme ?? 'light'].tint, headerShown: true, - header: () =>
setShow((prev) => !prev)} />, + header: () =>
, }} > ( + + + + + + + + + + + + + +); +export default CoinbaseWalletIcon; diff --git a/assets/icons/debit-card-icon.tsx b/assets/icons/debit-card-icon.tsx new file mode 100644 index 0000000..53dc033 --- /dev/null +++ b/assets/icons/debit-card-icon.tsx @@ -0,0 +1,25 @@ +import Svg, { G, Path, Rect } from 'react-native-svg'; + +const DebitCardIcon = ({ height = 30, width = 30, fill = '#0F172A' }: IconProps) => ( + + + + + + + +); +export default DebitCardIcon; diff --git a/assets/icons/index.ts b/assets/icons/index.ts index bb34b8f..398f6aa 100644 --- a/assets/icons/index.ts +++ b/assets/icons/index.ts @@ -87,10 +87,14 @@ import SmileEmojiIcon from './smile-emoji-icon'; import LockedIcon from './locked-icon'; import StatsDepositIcon from './stats-deposit-icon'; import RiskIcon from './risk-icon'; +import CoinbaseWalletIcon from './coin-base-icon'; +import DebitCardIcon from './debit-card-icon'; export { LampIcon, + DebitCardIcon, RiskIcon, + CoinbaseWalletIcon, LockedIcon, StatsDepositIcon, ArrowUpCircleIcon, diff --git a/assets/images/slider-1.png b/assets/images/slider-1.png new file mode 100644 index 0000000000000000000000000000000000000000..9c7c89af9f562eb8c3ab0df8df69183b1b6392ec GIT binary patch literal 15144 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
n6A8%DX)qTOpt!eH~{d@sU&DF8d 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 literal 0 HcmV?d00001 diff --git a/assets/images/slider-2.png b/assets/images/slider-2.png new file mode 100644 index 0000000000000000000000000000000000000000..3caf59725a4b2e75bdbc6110e137273a55cf97ea GIT binary patch literal 9690 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 literal 0 HcmV?d00001 diff --git a/components/action-card/index.tsx b/components/action-card/index.tsx index 8031e3a..271c185 100644 --- a/components/action-card/index.tsx +++ b/components/action-card/index.tsx @@ -1,6 +1,6 @@ import React, { useEffect, useRef } from 'react'; import { StyleSheet, View, Text, TouchableOpacity } from 'react-native'; -import { BorrowIcon, DepositIcon, FillCheckIcon, CuratorIcon, StakeIcon } from '@/assets/icons'; +import { BorrowIcon, DepositIcon, FillCheckIcon, CuratorIcon, StakeIcon, CoinbaseWalletIcon, DebitCardIcon } from '@/assets/icons'; import LQDImage from '../image'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import { IActionCard } from './types'; @@ -14,6 +14,9 @@ const LQDActionCard = ({ selected, action, actions, variant }: IActionCard) => { borrow: , sort: , supply: null, + debitCard: , + crypto: , + coinBase: , }; return ( diff --git a/components/action-card/types.ts b/components/action-card/types.ts index 39ad2d8..0e17a85 100644 --- a/components/action-card/types.ts +++ b/components/action-card/types.ts @@ -1,8 +1,8 @@ -export type IActionIconVariant = 'deposit' | 'stake' | 'borrow' | 'supply' | 'sort'; +export type ActionIconVariant = 'deposit' | 'stake' | 'borrow' | 'supply' | 'sort' | 'debitCard' | 'crypto' | 'coinBase'; export interface IActionCard { actions: any; navigationVariant?: 'primary' | 'secondary'; - variant: IActionIconVariant; + variant: ActionIconVariant; selected: boolean | null; action?: () => void; } diff --git a/components/index.ts b/components/index.ts index 1bdbf31..b9d9429 100644 --- a/components/index.ts +++ b/components/index.ts @@ -26,9 +26,11 @@ import LQDImage from './image'; import LQDStrategyCard from './strategy-card'; import LQDProtocolCard from './protocol-card'; import LQDActionCard from './action-card'; +import LQDSlider from './slider'; export { LQDButton, + LQDSlider, LQDActionCard, LQDProtocolCard, LQDStrategyCard, diff --git a/components/input/index.tsx b/components/input/index.tsx index 26b13ab..f4c353e 100644 --- a/components/input/index.tsx +++ b/components/input/index.tsx @@ -93,6 +93,7 @@ const styles = StyleSheet.create({ color: '#94A3B8', fontWeight: 400, fontFamily: 'Aeonik', + marginLeft: 10, }, textarea: { textAlignVertical: 'top', diff --git a/components/slider/index.tsx b/components/slider/index.tsx new file mode 100644 index 0000000..cd23a4f --- /dev/null +++ b/components/slider/index.tsx @@ -0,0 +1,144 @@ +import React, { useState, useRef } from 'react'; +import { StyleSheet, FlatList, Animated, Dimensions, View, Text, Image, StyleProp, ViewStyle } from 'react-native'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { ISlider, Slider } from './types'; +const { width } = Dimensions.get('window'); + +let PADDING_HORIZONTAL = 2 * 18; // Left and right padding +let SLIDE_WIDTH = width - PADDING_HORIZONTAL; // Carousel Width +let INDICATOR_SIDES = 6; // Length of each side of the indicator +let CAROUSEL_HEIGHT = 82; + +const LQDSlider = ({ items }: ISlider) => { + const slider1 = require('../../assets/images/slider-1.png'); + const slider2 = require('../../assets/images/slider-2.png'); + const scrollX = useRef(new Animated.Value(0)).current; + const [viewIndex, setViewIndex] = useState(0); + const flatListRef = useRef(null); + + const images: Record = { + strategy: slider1, + deposit: slider2, + }; + + const onViewChangeRef = useRef(({ viewableItems }: { viewableItems: any[] }) => { + setViewIndex(viewableItems[0]?.index); + }); + + const renderItem = ({ item }: { item: Slider }) => { + const { title, subTitle, variant } = item; + const bg = variant === 'deposit' ? '#EFFAF6' : '#EEEBFF'; + const borderColor = variant === 'deposit' ? '#CBF5E5' : '#CAC2FF'; + const textColor = variant === 'deposit' ? '#156146' : '#2B1664'; + const imageDimensions = variant === 'deposit' ? { width: 114, height: 53, bottom: 0 } : { width: 130, height: 75, bottom: null }; + + return ( + + + {title} + {subTitle} + + + + ); + }; + + return ( + + + + + {items.length > 0 && ( + + {items.map((_, index) => ( + + ))} + + )} + + ); +}; + +const styles = StyleSheet.create({ + carouselWrap: { + height: CAROUSEL_HEIGHT, + position: 'relative', + }, + eachDotsWrap: { + flexDirection: 'row', + alignSelf: 'center', + gap: INDICATOR_SIDES / 2, + backgroundColor: 'transparent', + marginTop: 10, + }, + eachIndicatorDots: { + width: INDICATOR_SIDES, + height: INDICATOR_SIDES, + borderRadius: INDICATOR_SIDES / 2, + }, + slideContainer: { + width: SLIDE_WIDTH, + justifyContent: 'center', + paddingHorizontal: 20, + position: 'relative', + borderWidth: 1, + borderRadius: 12, + zIndex: 5, + backgroundColor: 'white', + overflow: 'hidden', + }, + textContainer: { + width: '70%', + gap: 6, + }, + image: { + position: 'absolute', + right: -20, + height: 60, + width: 114, + zIndex: 0, + }, + title: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(16, 1), + lineHeight: 17.92, + fontWeight: '700', + fontFamily: 'QuantaGroteskProBold', + }, + subTitle: { + color: '#1E293B', + fontSize: adjustFontSizeForIOS(11, 1), + lineHeight: 13.64, + fontWeight: '400', + fontFamily: 'AeonikRegular', + }, + contentContainerStyle: { + overflow: 'hidden', + gap: 20, + paddingHorizontal: 17, + }, +}); + +export default LQDSlider; diff --git a/components/slider/types.ts b/components/slider/types.ts new file mode 100644 index 0000000..f390974 --- /dev/null +++ b/components/slider/types.ts @@ -0,0 +1,12 @@ +import { StyleProp, ViewStyle } from 'react-native'; + +export interface Slider { + title?: string; + subTitle?: string; + image?: string; + variant?: 'strategy' | 'deposit'; +} + +export interface ISlider { + items: Slider[]; +} diff --git a/components/stack-header/index.tsx b/components/stack-header/index.tsx index 9a6d013..16f5888 100644 --- a/components/stack-header/index.tsx +++ b/components/stack-header/index.tsx @@ -52,9 +52,9 @@ const styles = StyleSheet.create({ }, title: { - color: '#181E00', - fontSize: adjustFontSizeForIOS(16, 3), - lineHeight: 23.2, + color: '#1E293B', + fontSize: adjustFontSizeForIOS(16, 1), + lineHeight: 19.84, fontWeight: '500', fontFamily: 'AeonikMedium', }, diff --git a/screens/create-strategy/new-action-strategy.tsx b/screens/create-strategy/new-action-strategy.tsx index 23ef4a6..10af6ed 100644 --- a/screens/create-strategy/new-action-strategy.tsx +++ b/screens/create-strategy/new-action-strategy.tsx @@ -16,7 +16,7 @@ import { LQDActionCard, LQDBottomSheet, LQDButton, LQDFlatlist, LQDImage, LQDPro import { actionList, protocolList } from '../discover/dummy'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import useAppActions from '@/store/app/actions'; -import { IActionIconVariant } from '@/components/action-card/types'; +import { ActionIconVariant } from '@/components/action-card/types'; import { IProtocolIconVariant } from '@/components/protocol-card/types'; const ActionItem = ({ title = '', label = '', icon = '', action }: IActionItem) => { @@ -114,7 +114,7 @@ const NewAction = () => { showsVerticalScrollIndicator={false} renderItem={({ item }) => ( setSelectedAction(item)} diff --git a/screens/create-strategy/preview-strategy.tsx b/screens/create-strategy/preview-strategy.tsx index 4995113..b5496dc 100644 --- a/screens/create-strategy/preview-strategy.tsx +++ b/screens/create-strategy/preview-strategy.tsx @@ -4,7 +4,7 @@ import { LQDButton } from '@/components'; import FeedStep from '@/components/feed-card/feed-step'; import { steps } from '../home/dummy'; import { adjustFontSizeForIOS } from '@/utils/helpers'; -import { IActionIconVariant } from '@/components/action-card/types'; +import { ActionIconVariant } from '@/components/action-card/types'; import Loader from './loader'; const RreviewStrategy = () => { @@ -27,7 +27,7 @@ const RreviewStrategy = () => { {steps.map((step, index: number) => ( = [ ], }, ]; + +export const positions = [ + { + id: '1', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + steps: [ + { + variant: 'deposit', + tokenA: 'Borrowed USDC', + tokenB: 'Morpho', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'supply', + tokenA: 'cbBTC', + tokenB: 'moonWell', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + variant: 'borrow', + tokenA: 'USDC', + tokenB: 'Base', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + { + isLast: true, + variant: 'stake', + tokenA: 'DAI', + tokenB: 'USDC', + tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + }, + ], + }, + { + id: '2', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + }, + { + id: '3', + photo: image, + username: '@Nurayyy.eth', + tvl: '2.4m', + estimate: '56.7%', + }, +]; diff --git a/screens/discover/index.tsx b/screens/discover/index.tsx index 9243161..6a94484 100644 --- a/screens/discover/index.tsx +++ b/screens/discover/index.tsx @@ -19,7 +19,7 @@ const Discover = () => { const [showTvl, setShowTvl] = useState(false); const [protocal, setProtocal] = useState(false); const [percentage, setPercentage] = useState(25); - const [selected, setSelected] = useState(''); + const [selectedToken, setSelecteToken] = useState(''); const stableSetPercentage = useCallback((value: number) => setPercentage(value), []); const recentSearch = poolsState.recentSearchedPools; @@ -160,12 +160,12 @@ const Discover = () => { ( + renderItem={({ item }: any) => ( setSelected(item.id)} + action={() => setSelecteToken(item.id)} /> )} keyExtractor={(_, index) => index.toString()} diff --git a/screens/home/header.tsx b/screens/home/header.tsx index 0d7997e..80dd567 100644 --- a/screens/home/header.tsx +++ b/screens/home/header.tsx @@ -3,16 +3,16 @@ import React from 'react'; import { HeaderMenuIcon, HeaderWalletIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; -const Header = ({ amount, action }: IHeader) => { +const Header = ({ amount, actionLeft, actionRight }: IHeader) => { return ( - + - + ${amount} - + ); }; diff --git a/screens/home/types.ts b/screens/home/types.ts index 20390d1..e361813 100644 --- a/screens/home/types.ts +++ b/screens/home/types.ts @@ -9,5 +9,6 @@ interface ISection { interface IHeader { amount: number; - action?: () => void; + actionLeft?: () => void; + actionRight?: () => void; } diff --git a/screens/index.ts b/screens/index.ts index 645fca7..c8e4804 100644 --- a/screens/index.ts +++ b/screens/index.ts @@ -24,6 +24,8 @@ import PoolDetail from './pool-detail'; import AddLiquidty from './liquidity-actions/add'; import RemoveLiquidity from './liquidity-actions/remove'; +import Portfolio from './portfolio'; + export { Home, TopGainers, @@ -44,4 +46,5 @@ export { CreateStrategy, NewActionStrategy, StrategyDetail, + Portfolio, }; diff --git a/screens/portfolio/asset-item.tsx b/screens/portfolio/asset-item.tsx new file mode 100644 index 0000000..24ff438 --- /dev/null +++ b/screens/portfolio/asset-item.tsx @@ -0,0 +1,63 @@ +import { StyleSheet, Text, View } from 'react-native'; +import React from 'react'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { LQDImage } from '@/components'; + +const AssetItem = ({ title, subTitle, icon }: IAssetItem) => { + return ( + + + + + {title} + {subTitle} + + + + ); +}; + +export default AssetItem; + +const styles = StyleSheet.create({ + detailContainer: { + justifyContent: 'center', + gap: 4, + }, + + title: { + color: '#1E293B', + fontSize: adjustFontSizeForIOS(14, 2), + + fontFamily: 'AeonikMedium', + }, + + details: { + flexDirection: 'row', + alignSelf: 'stretch', + alignItems: 'center', + gap: 4, + }, + + subTitle: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(11, 2), + lineHeight: 13.64, + fontFamily: 'AeonikRegular', + }, + + container: { + paddingVertical: 2, + flexDirection: 'row', + justifyContent: 'space-between', + alignItems: 'center', + }, + + leftContainer: { + flexDirection: 'row', + alignSelf: 'stretch', + alignItems: 'center', + gap: 10, + maxWidth: '70%', + }, +}); diff --git a/screens/portfolio/index.tsx b/screens/portfolio/index.tsx new file mode 100644 index 0000000..998ccd5 --- /dev/null +++ b/screens/portfolio/index.tsx @@ -0,0 +1,179 @@ +import { StyleSheet, Text, View } from 'react-native'; +import React, { useState } from 'react'; +import { LQDActionCard, LQDBottomSheet, LQDButton, LQDFlatlist, LQDScrollView, LQDSlider, LQDStrategyCard } from '@/components'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { addMoney, strategyies } from '../discover/dummy'; +import { ActionIconVariant } from '@/components/action-card/types'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; +import AssetItem from './asset-item'; + +const Portfolio = () => { + const [showModal, setShowModal] = useState(false); + const [selectedAction, setSelectedAction] = useState(''); + const { router, dispatch } = useSystemFunctions(); + + const openModal = () => { + setShowModal((prev) => !prev); + }; + + const navigateToWithdrawal = () => { + router.push('/withdraw'); + }; + + return ( + <> + + + Portfolio + $144,600 + + + + + + + + + {}} style={styles.container}> + + + + All Asset + + {[ + { + title: 'USD Coin', + icon: '', + subTitle: '0 ETH', + }, + { + title: 'Ethereum', + icon: '', + subTitle: '0 ETH', + }, + ].map((asset, index) => ( + + ))} + + + + + Positions + + {strategyies.slice(0, 3).map((strategy, index) => ( + + ))} + {!strategyies.length && You have no open positions} + + + + + ( + setSelectedAction(item.id)} + /> + )} + keyExtractor={(_, index) => index.toString()} + showsHorizontalScrollIndicator={false} + contentContainerStyle={styles.modalContainerStyle} + /> + + + + + + + + ); +}; + +export default Portfolio; + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#FFF', + paddingTop: 10, + }, + title: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(13, 1), + lineHeight: 16.12, + fontWeight: '400', + fontFamily: 'AeonikMedium', + marginVertical: 15, + }, + position: { + color: '#0F172A', + fontSize: adjustFontSizeForIOS(14, 1), + lineHeight: 18.48, + fontWeight: '500', + fontFamily: 'AeonikMedium', + }, + subTitle: { + color: '#1E293B', + fontSize: adjustFontSizeForIOS(36, 1), + lineHeight: 40.32, + fontWeight: '700', + fontFamily: 'QuantaGroteskProBold', + }, + noPosition: { + color: '#1E293B', + fontSize: adjustFontSizeForIOS(11, 1), + lineHeight: 13.64, + fontWeight: '400', + fontFamily: 'AeonikMedium', + textAlign: 'center', + marginVertical: 30, + }, + strategyContainerStyle: { gap: 20, marginTop: 15 }, + modalContainerStyle: { gap: 20, paddingBottom: 50 }, + bottomWrapper: { marginTop: 10, marginBottom: 30, marginHorizontal: 10 }, + dotsWrapper: { + flexDirection: 'row', + alignSelf: 'center', + backgroundColor: 'green', + }, + indicatorDot: { + width: 8, + height: 8, + borderRadius: 8 / 2, + borderColor: 'green', + borderWidth: 1, + marginRight: 8, + }, + btnWrapper: { + flexDirection: 'row', + justifyContent: 'space-between', + marginTop: 24, + }, + topWrapper: { paddingHorizontal: 16, backgroundColor: '#fff', paddingBottom: 15 }, + allAsset: { paddingHorizontal: 16, marginBottom: 20 }, + allPositions: { paddingHorizontal: 16, paddingBottom: 60 }, +}); diff --git a/screens/portfolio/types.ts b/screens/portfolio/types.ts new file mode 100644 index 0000000..06ebdeb --- /dev/null +++ b/screens/portfolio/types.ts @@ -0,0 +1,5 @@ +interface IAssetItem { + title: string; + subTitle: string; + icon: string; +} diff --git a/screens/strategy-detail/index.tsx b/screens/strategy-detail/index.tsx index 79365d1..2b2a952 100644 --- a/screens/strategy-detail/index.tsx +++ b/screens/strategy-detail/index.tsx @@ -78,7 +78,7 @@ const StrategyDetail = ({ strategyId }: any) => { Strategy Info - {strategyInfo.map((stats, index) => ( + {strategyInfo.map((stats: any, index) => ( ))} @@ -109,7 +109,7 @@ const StrategyDetail = ({ strategyId }: any) => { ref={flatListRef} data={comments} showsVerticalScrollIndicator={false} - renderItem={({ item }) => } + renderItem={({ item }: any) => } keyExtractor={(_, index) => index.toString()} showsHorizontalScrollIndicator={false} contentContainerStyle={styles.commentContainerStyle} From 5af0dd3b584dcbc3d7b3b95368ffaf61249320b8 Mon Sep 17 00:00:00 2001 From: Justice Eziefule Date: Fri, 13 Dec 2024 13:30:37 +0100 Subject: [PATCH 83/95] Feature/Eng-36/Implement Tanstack (#94) * chore: update verify registration endpoint * chore: clear console * chore: modified signature method * chore: update smart wallet abi * remove the use of paymaster and data * implement tanstack - install tanstack dependencies - add user queries * integrate feeds api * chore: updates * update query * integrate create strategy * integrate create strategy * log response * clean up screens * clean up create strategy * fix conflict * feature: second asset selection create strategy screen --------- Co-authored-by: Njoku Emmanuel Co-authored-by: Iyiolaosuagwu --- components/action-card/index.tsx | 24 +- components/action-card/types.ts | 2 +- components/bottom-sheet/index.tsx | 4 +- components/feed-card/feed-step.tsx | 44 +- components/feed-card/index.tsx | 11 +- components/feed-card/types.ts | 8 +- components/pool-images/token-image.tsx | 41 +- components/pool-images/types.ts | 1 + components/protocol-card/index.tsx | 21 +- components/protocol-card/types.ts | 2 +- constants/abis/LiquidStrategy.ts | 310 ++ constants/abis/SmartWallet.ts | 317 +- constants/abis/index.ts | 2 + constants/addresses.ts | 1 + constants/icons.tsx | 28 + hooks/useCalls.ts | 103 +- hooks/useLiquid.ts | 79 +- init/axios.ts | 28 + init/useViem.ts | 13 +- package.json | 3 + providers/AllProviders.tsx | 13 +- providers/TanstackProvider.tsx | 15 + providers/index.ts | 1 + screens/create-strategy/actions.tsx | 74 +- screens/create-strategy/index.tsx | 71 +- .../create-strategy/new-action-strategy.tsx | 219 +- screens/create-strategy/preview-strategy.tsx | 108 +- screens/create-strategy/types.ts | 18 +- screens/discover/dummy.ts | 14 +- screens/discover/index.tsx | 45 +- screens/home/dummy.ts | 110 +- screens/home/index.tsx | 8 +- screens/portfolio/index.tsx | 2 +- screens/profile/index.tsx | 3 +- services/feeds/apis.ts | 31 + services/feeds/queries.ts | 74 + services/feeds/types.ts | 113 + services/user/apis.ts | 40 + services/user/queries.ts | 39 + services/user/types.ts | 60 + store/app/actions.ts | 7 +- store/app/index.ts | 8 +- store/app/types.ts | 5 + store/smartAccount/actions.ts | 8 +- utils/base64.ts | 18 +- utils/encoders.ts | 10 +- utils/helpers.ts | 22 +- utils/signature.ts | 6 +- utils/types.ts | 32 + utils/wallet.ts | 216 +- yarn.lock | 4406 +++++++++-------- 51 files changed, 4217 insertions(+), 2621 deletions(-) create mode 100644 constants/abis/LiquidStrategy.ts create mode 100644 constants/icons.tsx create mode 100644 init/axios.ts create mode 100644 providers/TanstackProvider.tsx create mode 100644 services/feeds/apis.ts create mode 100644 services/feeds/queries.ts create mode 100644 services/feeds/types.ts create mode 100644 services/user/apis.ts create mode 100644 services/user/queries.ts create mode 100644 services/user/types.ts create mode 100644 store/app/types.ts diff --git a/components/action-card/index.tsx b/components/action-card/index.tsx index 271c185..195cc35 100644 --- a/components/action-card/index.tsx +++ b/components/action-card/index.tsx @@ -1,28 +1,18 @@ -import React, { useEffect, useRef } from 'react'; +import React from 'react'; import { StyleSheet, View, Text, TouchableOpacity } from 'react-native'; -import { BorrowIcon, DepositIcon, FillCheckIcon, CuratorIcon, StakeIcon, CoinbaseWalletIcon, DebitCardIcon } from '@/assets/icons'; -import LQDImage from '../image'; + +import { FillCheckIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import { IActionCard } from './types'; +import ICONS from '@/constants/icons'; -const LQDActionCard = ({ selected, action, actions, variant }: IActionCard) => { +const LQDActionCard = ({ selected, onSelect, actions, variant }: IActionCard) => { const { title } = actions; - const icons = { - stake: , - deposit: , - borrow: , - sort: , - supply: null, - debitCard: , - crypto: , - coinBase: , - }; - return ( - + - {icons[variant]} + {ICONS[variant]} {title} {selected && } diff --git a/components/action-card/types.ts b/components/action-card/types.ts index 0e17a85..9a3041e 100644 --- a/components/action-card/types.ts +++ b/components/action-card/types.ts @@ -4,5 +4,5 @@ export interface IActionCard { navigationVariant?: 'primary' | 'secondary'; variant: ActionIconVariant; selected: boolean | null; - action?: () => void; + onSelect?: () => void; } diff --git a/components/bottom-sheet/index.tsx b/components/bottom-sheet/index.tsx index e321f71..01784d0 100644 --- a/components/bottom-sheet/index.tsx +++ b/components/bottom-sheet/index.tsx @@ -7,14 +7,14 @@ import { CloseIcon } from '@/assets/icons'; const { height } = Dimensions.get('window'); interface ILQDBottomSheet { - title: string; + title?: string; variant?: 'primary' | 'secondary'; show: boolean; onClose: () => void; children?: React.ReactNode; } -const LQDBottomSheet: React.FC = ({ title, variant = 'primary', show, onClose, children }) => { +const LQDBottomSheet = ({ title = '', variant = 'primary', show, onClose, children }: ILQDBottomSheet) => { const bottomSheetMaxHeights = { primary: height * 0.6, secondary: height * 0.83, diff --git a/components/feed-card/feed-step.tsx b/components/feed-card/feed-step.tsx index c63c4aa..d423826 100644 --- a/components/feed-card/feed-step.tsx +++ b/components/feed-card/feed-step.tsx @@ -2,50 +2,46 @@ import React, { useState } from 'react'; import { View, Text, StyleSheet } from 'react-native'; import FastImage from 'react-native-fast-image'; import Animated from 'react-native-reanimated'; -import { BorrowIcon, DepositIcon, StakeIcon, SupplyIcon } from '@/assets/icons'; +import { AerodromeIcon, BorrowIcon, DepositIcon, MoonWellIcon, MorphoIcon, StakeIcon, SupplyIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import LQDPoolImages from '../pool-images'; +import LQDTokenImage from '../pool-images/token-image'; -const defaultAIconUrl = 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png'; -const defaultBIconUrl = 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png'; const connector = require('../../assets/images/connector.png'); +const icons = { + stake: , + deposit: , + borrow: , + supply: , + aerodrome: , + moonwell: , + morpho: , +}; -const FeedStep = ({ variant, tokenAIconURL, tokenBIconURL, tokenA, tokenB, isLast, title = '' }: IFeedStep) => { - const [tokenAIconError, setTokenAIconError] = useState(false); - const [tokenBIconError, setTokenBIconError] = useState(false); - - const iconA = tokenAIconError ? defaultAIconUrl : tokenAIconURL || defaultAIconUrl; - const iconB = tokenBIconError ? defaultBIconUrl : tokenBIconURL || defaultBIconUrl; +const FeedStep = ({ variant, tokenIconURL, token, isLast, title = '', protocolIcon, protocolTitle }: IFeedStep) => { const deposite = variant === 'deposit'; - const icons = { - stake: , - deposit: , - borrow: , - supply: , - }; - const depositVariant = () => ( {variant} into - - {tokenA}/{tokenB} - + {token} - + ); const otherVariant = () => ( {variant} - setTokenAIconError(true)} /> - {tokenA} + + {token} + into - setTokenBIconError(true)} /> - {tokenB} + + {icons[protocolIcon]} + {protocolTitle} ); diff --git a/components/feed-card/index.tsx b/components/feed-card/index.tsx index 1c6c651..1cb6bf7 100644 --- a/components/feed-card/index.tsx +++ b/components/feed-card/index.tsx @@ -46,16 +46,7 @@ const LQDFeedCard = ({ feed, showInvest = true, showComment }: FeedCard) => { {steps.map((step: IFeedStep, index: number) => ( - + ))} diff --git a/components/feed-card/types.ts b/components/feed-card/types.ts index d3a43dc..f25b34f 100644 --- a/components/feed-card/types.ts +++ b/components/feed-card/types.ts @@ -7,9 +7,9 @@ interface FeedCard { interface IFeedStep { title?: string; variant: 'supply' | 'borrow' | 'deposit' | 'stake'; - tokenA: string; - tokenB: string; - tokenAIconURL: string; - tokenBIconURL: string; + token: string; + protocolTitle: string; + tokenIconURL: string; + protocolIcon: 'moonwell' | 'aerodrome' | 'morpho'; isLast?: boolean; } diff --git a/components/pool-images/token-image.tsx b/components/pool-images/token-image.tsx index 489132d..c18b4a8 100644 --- a/components/pool-images/token-image.tsx +++ b/components/pool-images/token-image.tsx @@ -4,15 +4,15 @@ import { useState } from 'react'; const defaultIconUrl = 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png'; -const LQDTokenImage = ({ iconURL }: TokenImage) => { +const LQDTokenImage = ({ iconURL, size }: TokenImage) => { const [iconError, setIconError] = useState(false); const icon = iconError ? defaultIconUrl : iconURL || defaultIconUrl; return ( - + { export default LQDTokenImage; -const styles = StyleSheet.create({ - iconContainer: { - width: 24, - height: 24, - borderWidth: 1, - borderColor: '#EAEEF4', - alignItems: 'center', - justifyContent: 'center', - borderRadius: 9999, - }, +const styles = (size: number = 24) => + StyleSheet.create({ + iconContainer: { + width: size, + height: size, + borderWidth: 1, + borderColor: '#EAEEF4', + alignItems: 'center', + justifyContent: 'center', + borderRadius: 9999, + }, - icon: { - width: 24, - height: 24, - objectFit: 'contain', - borderRadius: 9999, - }, -}); + icon: { + width: size, + height: size, + objectFit: 'contain', + borderRadius: 9999, + }, + }); diff --git a/components/pool-images/types.ts b/components/pool-images/types.ts index e6787cf..278209c 100644 --- a/components/pool-images/types.ts +++ b/components/pool-images/types.ts @@ -5,4 +5,5 @@ type PoolImages = { type TokenImage = { iconURL?: string; + size?: number; }; diff --git a/components/protocol-card/index.tsx b/components/protocol-card/index.tsx index 2382e27..fe2fe8a 100644 --- a/components/protocol-card/index.tsx +++ b/components/protocol-card/index.tsx @@ -1,22 +1,17 @@ -import React, { useEffect, useRef } from 'react'; +import React from 'react'; import { StyleSheet, View, Text, TouchableOpacity } from 'react-native'; -import { AerodromeIcon, BorrowIcon, DepositIcon, FillCheckIcon, MoonWellIcon, MorphoIcon } from '@/assets/icons'; -import { IProtocolCard } from './types'; +import { FillCheckIcon } from '@/assets/icons'; +import ICONS from '@/constants/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { IProtocolCard } from './types'; -const LQDProtocolCard = ({ selected, action, variant, protocol }: IProtocolCard) => { - const { title, icon } = protocol; - - const icons = { - aerodrome: , - moonwell: , - morpho: , - }; +const LQDProtocolCard = ({ selected, onSelect, variant, protocol }: IProtocolCard) => { + const { title } = protocol; return ( - + - {icons[variant]} + {ICONS[variant]} {title} {selected && } diff --git a/components/protocol-card/types.ts b/components/protocol-card/types.ts index 6faa282..684c6d0 100644 --- a/components/protocol-card/types.ts +++ b/components/protocol-card/types.ts @@ -5,5 +5,5 @@ export interface IProtocolCard { navigationVariant?: 'primary' | 'secondary'; variant: IProtocolIconVariant; selected: boolean | null; - action?: () => void; + onSelect?: () => void; } diff --git a/constants/abis/LiquidStrategy.ts b/constants/abis/LiquidStrategy.ts new file mode 100644 index 0000000..c5f2945 --- /dev/null +++ b/constants/abis/LiquidStrategy.ts @@ -0,0 +1,310 @@ +export const LiquidStrategy = { + abi: [ + { inputs: [{ internalType: 'bytes32', name: 'strategyId', type: 'bytes32' }], name: 'StrategyAlreadyExists', type: 'error' }, + { inputs: [{ internalType: 'bytes32', name: 'strategyId', type: 'bytes32' }], name: 'StrategyNotFound', type: 'error' }, + { inputs: [{ internalType: 'address', name: 'caller', type: 'address' }], name: 'Unauthorized', type: 'error' }, + { + anonymous: false, + inputs: [ + { indexed: true, internalType: 'bytes32', name: 'strategyId', type: 'bytes32' }, + { indexed: true, internalType: 'address', name: 'curator', type: 'address' }, + { indexed: true, internalType: 'string', name: 'name', type: 'string' }, + { indexed: false, internalType: 'string', name: 'strategyDescription', type: 'string' }, + { + components: [ + { internalType: 'address', name: 'connector', type: 'address' }, + { internalType: 'enum IConnector.ActionType', name: 'actionType', type: 'uint8' }, + { internalType: 'address[]', name: 'assetsIn', type: 'address[]' }, + { internalType: 'address', name: 'assetOut', type: 'address' }, + { internalType: 'uint256', name: 'amountRatio', type: 'uint256' }, + { internalType: 'bytes', name: 'data', type: 'bytes' }, + ], + indexed: false, + internalType: 'struct ILiquidStrategy.Step[]', + name: 'steps', + type: 'tuple[]', + }, + { indexed: false, internalType: 'uint256', name: 'minDeposit', type: 'uint256' }, + { indexed: false, internalType: 'uint256', name: 'maxTVL', type: 'uint256' }, + { indexed: false, internalType: 'uint256', name: 'performanceFee', type: 'uint256' }, + ], + name: 'CreateStrategy', + type: 'event', + }, + { + inputs: [{ internalType: 'uint256', name: '', type: 'uint256' }], + name: 'allStrategyIds', + outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [ + { internalType: 'string', name: '_name', type: 'string' }, + { internalType: 'string', name: '_strategyDescription', type: 'string' }, + { + components: [ + { internalType: 'address', name: 'connector', type: 'address' }, + { internalType: 'enum IConnector.ActionType', name: 'actionType', type: 'uint8' }, + { internalType: 'address[]', name: 'assetsIn', type: 'address[]' }, + { internalType: 'address', name: 'assetOut', type: 'address' }, + { internalType: 'uint256', name: 'amountRatio', type: 'uint256' }, + { internalType: 'bytes', name: 'data', type: 'bytes' }, + ], + internalType: 'struct ILiquidStrategy.Step[]', + name: '_steps', + type: 'tuple[]', + }, + { internalType: 'uint256', name: '_minDeposit', type: 'uint256' }, + { internalType: 'uint256', name: '_maxTVL', type: 'uint256' }, + { internalType: 'uint256', name: '_performanceFee', type: 'uint256' }, + ], + name: 'createStrategy', + outputs: [], + stateMutability: 'nonpayable', + type: 'function', + }, + { + inputs: [], + name: 'getAllStrategies', + outputs: [ + { + components: [ + { internalType: 'bytes32', name: 'strategyId', type: 'bytes32' }, + { internalType: 'address', name: 'curator', type: 'address' }, + { internalType: 'string', name: 'name', type: 'string' }, + { internalType: 'string', name: 'strategyDescription', type: 'string' }, + { + components: [ + { internalType: 'address', name: 'connector', type: 'address' }, + { internalType: 'enum IConnector.ActionType', name: 'actionType', type: 'uint8' }, + { internalType: 'address[]', name: 'assetsIn', type: 'address[]' }, + { internalType: 'address', name: 'assetOut', type: 'address' }, + { internalType: 'uint256', name: 'amountRatio', type: 'uint256' }, + { internalType: 'bytes', name: 'data', type: 'bytes' }, + ], + internalType: 'struct ILiquidStrategy.Step[]', + name: 'steps', + type: 'tuple[]', + }, + { internalType: 'uint256', name: 'minDeposit', type: 'uint256' }, + { internalType: 'uint256', name: 'maxTVL', type: 'uint256' }, + { internalType: 'uint256', name: 'performanceFee', type: 'uint256' }, + ], + internalType: 'struct ILiquidStrategy.Strategy[]', + name: '', + type: 'tuple[]', + }, + ], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'bytes32', name: '_strategyId', type: 'bytes32' }], + name: 'getStrategy', + outputs: [ + { + components: [ + { internalType: 'bytes32', name: 'strategyId', type: 'bytes32' }, + { internalType: 'address', name: 'curator', type: 'address' }, + { internalType: 'string', name: 'name', type: 'string' }, + { internalType: 'string', name: 'strategyDescription', type: 'string' }, + { + components: [ + { internalType: 'address', name: 'connector', type: 'address' }, + { internalType: 'enum IConnector.ActionType', name: 'actionType', type: 'uint8' }, + { internalType: 'address[]', name: 'assetsIn', type: 'address[]' }, + { internalType: 'address', name: 'assetOut', type: 'address' }, + { internalType: 'uint256', name: 'amountRatio', type: 'uint256' }, + { internalType: 'bytes', name: 'data', type: 'bytes' }, + ], + internalType: 'struct ILiquidStrategy.Step[]', + name: 'steps', + type: 'tuple[]', + }, + { internalType: 'uint256', name: 'minDeposit', type: 'uint256' }, + { internalType: 'uint256', name: 'maxTVL', type: 'uint256' }, + { internalType: 'uint256', name: 'performanceFee', type: 'uint256' }, + ], + internalType: 'struct ILiquidStrategy.Strategy', + name: '', + type: 'tuple', + }, + ], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'address', name: '_curator', type: 'address' }], + name: 'getStrategy', + outputs: [ + { + components: [ + { internalType: 'bytes32', name: 'strategyId', type: 'bytes32' }, + { internalType: 'address', name: 'curator', type: 'address' }, + { internalType: 'string', name: 'name', type: 'string' }, + { internalType: 'string', name: 'strategyDescription', type: 'string' }, + { + components: [ + { internalType: 'address', name: 'connector', type: 'address' }, + { internalType: 'enum IConnector.ActionType', name: 'actionType', type: 'uint8' }, + { internalType: 'address[]', name: 'assetsIn', type: 'address[]' }, + { internalType: 'address', name: 'assetOut', type: 'address' }, + { internalType: 'uint256', name: 'amountRatio', type: 'uint256' }, + { internalType: 'bytes', name: 'data', type: 'bytes' }, + ], + internalType: 'struct ILiquidStrategy.Step[]', + name: 'steps', + type: 'tuple[]', + }, + { internalType: 'uint256', name: 'minDeposit', type: 'uint256' }, + { internalType: 'uint256', name: 'maxTVL', type: 'uint256' }, + { internalType: 'uint256', name: 'performanceFee', type: 'uint256' }, + ], + internalType: 'struct ILiquidStrategy.Strategy[]', + name: '', + type: 'tuple[]', + }, + ], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'bytes32', name: '_strategyId', type: 'bytes32' }], + name: 'getStrategyStats', + outputs: [ + { + components: [ + { internalType: 'uint256', name: 'totalDeposits', type: 'uint256' }, + { internalType: 'uint256', name: 'totalUsers', type: 'uint256' }, + { internalType: 'uint256', name: 'totalFeeGenerated', type: 'uint256' }, + { internalType: 'uint256', name: 'lastUpdated', type: 'uint256' }, + ], + internalType: 'struct ILiquidStrategy.StrategyStats', + name: '', + type: 'tuple', + }, + ], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [], + name: 'getTotalStrategies', + outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [ + { internalType: 'bytes32', name: '_strategyId', type: 'bytes32' }, + { internalType: 'address', name: '_user', type: 'address' }, + { internalType: 'address', name: '_asset', type: 'address' }, + ], + name: 'getUserAssetBalance', + outputs: [ + { + components: [ + { internalType: 'address', name: 'asset', type: 'address' }, + { internalType: 'uint256', name: 'amount', type: 'uint256' }, + { internalType: 'uint256', name: 'usdValue', type: 'uint256' }, + { internalType: 'uint256', name: 'lastUpdated', type: 'uint256' }, + ], + internalType: 'struct ILiquidStrategy.AssetBalance', + name: '', + type: 'tuple', + }, + ], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [ + { internalType: 'bytes32', name: '_strategyId', type: 'bytes32' }, + { internalType: 'address', name: '_user', type: 'address' }, + { internalType: 'address', name: '_protocol', type: 'address' }, + { internalType: 'address', name: '_lpToken', type: 'address' }, + ], + name: 'getUserShareBalance', + outputs: [ + { + components: [ + { internalType: 'address', name: 'protocol', type: 'address' }, + { internalType: 'address', name: 'lpToken', type: 'address' }, + { internalType: 'uint256', name: 'lpAmount', type: 'uint256' }, + { internalType: 'address[]', name: 'underlyingTokens', type: 'address[]' }, + { internalType: 'uint256[]', name: 'underlyingAmounts', type: 'uint256[]' }, + { internalType: 'uint256', name: 'lastUpdated', type: 'uint256' }, + ], + internalType: 'struct ILiquidStrategy.ShareBalance', + name: '', + type: 'tuple', + }, + ], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'address', name: '_user', type: 'address' }], + name: 'getUserStrategies', + outputs: [{ internalType: 'bytes32[]', name: '', type: 'bytes32[]' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }], + name: 'strategies', + outputs: [ + { internalType: 'bytes32', name: 'strategyId', type: 'bytes32' }, + { internalType: 'address', name: 'curator', type: 'address' }, + { internalType: 'string', name: 'name', type: 'string' }, + { internalType: 'string', name: 'strategyDescription', type: 'string' }, + { internalType: 'uint256', name: 'minDeposit', type: 'uint256' }, + { internalType: 'uint256', name: 'maxTVL', type: 'uint256' }, + { internalType: 'uint256', name: 'performanceFee', type: 'uint256' }, + ], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }], + name: 'strategyStats', + outputs: [ + { internalType: 'uint256', name: 'totalDeposits', type: 'uint256' }, + { internalType: 'uint256', name: 'totalUsers', type: 'uint256' }, + { internalType: 'uint256', name: 'totalFeeGenerated', type: 'uint256' }, + { internalType: 'uint256', name: 'lastUpdated', type: 'uint256' }, + ], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [ + { internalType: 'bytes32', name: '', type: 'bytes32' }, + { internalType: 'address', name: '', type: 'address' }, + ], + name: 'userStats', + outputs: [ + { internalType: 'uint256', name: 'initialDeposit', type: 'uint256' }, + { internalType: 'uint256', name: 'totalDepositedUSD', type: 'uint256' }, + { internalType: 'uint256', name: 'totalWithdrawnUSD', type: 'uint256' }, + { internalType: 'uint256', name: 'totalReward', type: 'uint256' }, + { internalType: 'uint256', name: 'feesPaid', type: 'uint256' }, + { internalType: 'uint256', name: 'joinTimestamp', type: 'uint256' }, + { internalType: 'uint256', name: 'lastActionTimestamp', type: 'uint256' }, + ], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [ + { internalType: 'address', name: '', type: 'address' }, + { internalType: 'uint256', name: '', type: 'uint256' }, + ], + name: 'userStrategies', + outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }], + stateMutability: 'view', + type: 'function', + }, + ], +} as const; diff --git a/constants/abis/SmartWallet.ts b/constants/abis/SmartWallet.ts index ea744f9..dc2e943 100644 --- a/constants/abis/SmartWallet.ts +++ b/constants/abis/SmartWallet.ts @@ -1,71 +1,320 @@ export const smartWalletABI = [ + { inputs: [], stateMutability: 'nonpayable', type: 'constructor' }, + { inputs: [{ internalType: 'bytes', name: 'owner', type: 'bytes' }], name: 'AlreadyOwner', type: 'error' }, + { inputs: [], name: 'Initialized', type: 'error' }, + { inputs: [{ internalType: 'bytes', name: 'owner', type: 'bytes' }], name: 'InvalidEthereumAddressOwner', type: 'error' }, + { inputs: [{ internalType: 'uint256', name: 'key', type: 'uint256' }], name: 'InvalidNonceKey', type: 'error' }, + { inputs: [{ internalType: 'bytes', name: 'owner', type: 'bytes' }], name: 'InvalidOwnerBytesLength', type: 'error' }, + { inputs: [], name: 'LastOwner', type: 'error' }, + { inputs: [{ internalType: 'uint256', name: 'index', type: 'uint256' }], name: 'NoOwnerAtIndex', type: 'error' }, + { inputs: [{ internalType: 'uint256', name: 'ownersRemaining', type: 'uint256' }], name: 'NotLastOwner', type: 'error' }, + { inputs: [{ internalType: 'bytes4', name: 'selector', type: 'bytes4' }], name: 'SelectorNotAllowed', type: 'error' }, + { inputs: [], name: 'Unauthorized', type: 'error' }, + { inputs: [], name: 'UnauthorizedCallContext', type: 'error' }, + { inputs: [], name: 'UpgradeFailed', type: 'error' }, + { + inputs: [ + { internalType: 'uint256', name: 'index', type: 'uint256' }, + { internalType: 'bytes', name: 'expectedOwner', type: 'bytes' }, + { internalType: 'bytes', name: 'actualOwner', type: 'bytes' }, + ], + name: 'WrongOwnerAtIndex', + type: 'error', + }, + { + anonymous: false, + inputs: [ + { indexed: true, internalType: 'uint256', name: 'index', type: 'uint256' }, + { indexed: false, internalType: 'bytes', name: 'owner', type: 'bytes' }, + ], + name: 'AddOwner', + type: 'event', + }, + { + anonymous: false, + inputs: [ + { indexed: true, internalType: 'uint256', name: 'index', type: 'uint256' }, + { indexed: false, internalType: 'bytes', name: 'owner', type: 'bytes' }, + ], + name: 'RemoveOwner', + type: 'event', + }, + { + anonymous: false, + inputs: [{ indexed: true, internalType: 'address', name: 'implementation', type: 'address' }], + name: 'Upgraded', + type: 'event', + }, + { stateMutability: 'payable', type: 'fallback' }, { - type: 'constructor', inputs: [], + name: 'REPLAYABLE_NONCE_KEY', + outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'address', name: 'owner', type: 'address' }], + name: 'addOwnerAddress', + outputs: [], stateMutability: 'nonpayable', + type: 'function', }, { - type: 'fallback', - stateMutability: 'payable', + inputs: [ + { internalType: 'bytes32', name: 'x', type: 'bytes32' }, + { internalType: 'bytes32', name: 'y', type: 'bytes32' }, + ], + name: 'addOwnerPublicKey', + outputs: [], + stateMutability: 'nonpayable', + type: 'function', }, { - type: 'receive', - stateMutability: 'payable', + inputs: [{ internalType: 'bytes4', name: 'functionSelector', type: 'bytes4' }], + name: 'canSkipChainIdValidation', + outputs: [{ internalType: 'bool', name: '', type: 'bool' }], + stateMutability: 'pure', + type: 'function', }, { + inputs: [], + name: 'domainSeparator', + outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }], + stateMutability: 'view', type: 'function', - name: 'REPLAYABLE_NONCE_KEY', + }, + { inputs: [], + name: 'eip712Domain', outputs: [ - { - name: '', - type: 'uint256', - internalType: 'uint256', - }, + { internalType: 'bytes1', name: 'fields', type: 'bytes1' }, + { internalType: 'string', name: 'name', type: 'string' }, + { internalType: 'string', name: 'version', type: 'string' }, + { internalType: 'uint256', name: 'chainId', type: 'uint256' }, + { internalType: 'address', name: 'verifyingContract', type: 'address' }, + { internalType: 'bytes32', name: 'salt', type: 'bytes32' }, + { internalType: 'uint256[]', name: 'extensions', type: 'uint256[]' }, ], stateMutability: 'view', + type: 'function', }, { + inputs: [], + name: 'entryPoint', + outputs: [{ internalType: 'address', name: '', type: 'address' }], + stateMutability: 'view', type: 'function', - name: 'executeBatch', + }, + { + inputs: [ + { internalType: 'address', name: 'target', type: 'address' }, + { internalType: 'uint256', name: 'value', type: 'uint256' }, + { internalType: 'bytes', name: 'data', type: 'bytes' }, + ], + name: 'execute', + outputs: [], + stateMutability: 'payable', + type: 'function', + }, + { inputs: [ { - name: 'calls', - type: 'tuple[]', - internalType: 'struct CoinbaseSmartWallet.Call[]', components: [ - { - name: 'target', - type: 'address', - internalType: 'address', - }, - { - name: 'value', - type: 'uint256', - internalType: 'uint256', - }, - { - name: 'data', - type: 'bytes', - internalType: 'bytes', - }, + { internalType: 'address', name: 'target', type: 'address' }, + { internalType: 'uint256', name: 'value', type: 'uint256' }, + { internalType: 'bytes', name: 'data', type: 'bytes' }, ], + internalType: 'struct CoinbaseSmartWallet.Call[]', + name: 'calls', + type: 'tuple[]', }, ], + name: 'executeBatch', outputs: [], stateMutability: 'payable', + type: 'function', }, { + inputs: [{ internalType: 'bytes[]', name: 'calls', type: 'bytes[]' }], + name: 'executeWithoutChainIdValidation', + outputs: [], + stateMutability: 'payable', type: 'function', - name: 'initialize', + }, + { inputs: [ { - name: 'owners', - type: 'bytes[]', - internalType: 'bytes[]', + components: [ + { internalType: 'address', name: 'sender', type: 'address' }, + { internalType: 'uint256', name: 'nonce', type: 'uint256' }, + { internalType: 'bytes', name: 'initCode', type: 'bytes' }, + { internalType: 'bytes', name: 'callData', type: 'bytes' }, + { internalType: 'uint256', name: 'callGasLimit', type: 'uint256' }, + { internalType: 'uint256', name: 'verificationGasLimit', type: 'uint256' }, + { internalType: 'uint256', name: 'preVerificationGas', type: 'uint256' }, + { internalType: 'uint256', name: 'maxFeePerGas', type: 'uint256' }, + { internalType: 'uint256', name: 'maxPriorityFeePerGas', type: 'uint256' }, + { internalType: 'bytes', name: 'paymasterAndData', type: 'bytes' }, + { internalType: 'bytes', name: 'signature', type: 'bytes' }, + ], + internalType: 'struct UserOperation', + name: 'userOp', + type: 'tuple', }, ], + name: 'getUserOpHashWithoutChainId', + outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [], + name: 'implementation', + outputs: [{ internalType: 'address', name: '$', type: 'address' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'bytes[]', name: 'owners', type: 'bytes[]' }], + name: 'initialize', + outputs: [], + stateMutability: 'payable', + type: 'function', + }, + { + inputs: [{ internalType: 'address', name: 'account', type: 'address' }], + name: 'isOwnerAddress', + outputs: [{ internalType: 'bool', name: '', type: 'bool' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'bytes', name: 'account', type: 'bytes' }], + name: 'isOwnerBytes', + outputs: [{ internalType: 'bool', name: '', type: 'bool' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [ + { internalType: 'bytes32', name: 'x', type: 'bytes32' }, + { internalType: 'bytes32', name: 'y', type: 'bytes32' }, + ], + name: 'isOwnerPublicKey', + outputs: [{ internalType: 'bool', name: '', type: 'bool' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [ + { internalType: 'bytes32', name: 'hash', type: 'bytes32' }, + { internalType: 'bytes', name: 'signature', type: 'bytes' }, + ], + name: 'isValidSignature', + outputs: [{ internalType: 'bytes4', name: 'result', type: 'bytes4' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [], + name: 'nextOwnerIndex', + outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'uint256', name: 'index', type: 'uint256' }], + name: 'ownerAtIndex', + outputs: [{ internalType: 'bytes', name: '', type: 'bytes' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [], + name: 'ownerCount', + outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [], + name: 'proxiableUUID', + outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [ + { internalType: 'uint256', name: 'index', type: 'uint256' }, + { internalType: 'bytes', name: 'owner', type: 'bytes' }, + ], + name: 'removeLastOwner', + outputs: [], + stateMutability: 'nonpayable', + type: 'function', + }, + { + inputs: [ + { internalType: 'uint256', name: 'index', type: 'uint256' }, + { internalType: 'bytes', name: 'owner', type: 'bytes' }, + ], + name: 'removeOwnerAtIndex', + outputs: [], + stateMutability: 'nonpayable', + type: 'function', + }, + { + inputs: [], + name: 'removedOwnersCount', + outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [{ internalType: 'bytes32', name: 'hash', type: 'bytes32' }], + name: 'replaySafeHash', + outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }], + stateMutability: 'view', + type: 'function', + }, + { + inputs: [ + { internalType: 'address', name: 'newImplementation', type: 'address' }, + { internalType: 'bytes', name: 'data', type: 'bytes' }, + ], + name: 'upgradeToAndCall', outputs: [], stateMutability: 'payable', + type: 'function', + }, + { + inputs: [ + { + components: [ + { internalType: 'address', name: 'sender', type: 'address' }, + { internalType: 'uint256', name: 'nonce', type: 'uint256' }, + { internalType: 'bytes', name: 'initCode', type: 'bytes' }, + { internalType: 'bytes', name: 'callData', type: 'bytes' }, + { internalType: 'uint256', name: 'callGasLimit', type: 'uint256' }, + { internalType: 'uint256', name: 'verificationGasLimit', type: 'uint256' }, + { internalType: 'uint256', name: 'preVerificationGas', type: 'uint256' }, + { internalType: 'uint256', name: 'maxFeePerGas', type: 'uint256' }, + { internalType: 'uint256', name: 'maxPriorityFeePerGas', type: 'uint256' }, + { internalType: 'bytes', name: 'paymasterAndData', type: 'bytes' }, + { internalType: 'bytes', name: 'signature', type: 'bytes' }, + ], + internalType: 'struct UserOperation', + name: 'userOp', + type: 'tuple', + }, + { internalType: 'bytes32', name: 'userOpHash', type: 'bytes32' }, + { internalType: 'uint256', name: 'missingAccountFunds', type: 'uint256' }, + ], + name: 'validateUserOp', + outputs: [{ internalType: 'uint256', name: 'validationData', type: 'uint256' }], + stateMutability: 'nonpayable', + type: 'function', }, + { stateMutability: 'payable', type: 'receive' }, ] as const; diff --git a/constants/abis/index.ts b/constants/abis/index.ts index bb0deef..7597c7a 100644 --- a/constants/abis/index.ts +++ b/constants/abis/index.ts @@ -6,6 +6,7 @@ import * as AerodromeConnectorABI from './AerodromeConnector.json'; import * as ConnectorPluginABI from './ConnectorPlugin.json'; import * as AerodromePoolABI from './AerodromePoolABI.json'; import * as LPSugarABI from './LPSugar'; +import * as LiquidStrategy from './LiquidStrategy'; export { LPSugarABI, @@ -16,4 +17,5 @@ export { EntryPointABI, AerodromeConnectorABI, ConnectorPluginABI, + LiquidStrategy, }; diff --git a/constants/addresses.ts b/constants/addresses.ts index 6cb6020..5159227 100644 --- a/constants/addresses.ts +++ b/constants/addresses.ts @@ -14,6 +14,7 @@ export const TEST_USER: Address = '0x78815067c3926cc33F7790d87460BEC779F42d4D' a // Liquid connectors export const AERODROME_CONNECTOR: Address = '0x10e1aC384A4Fb3e0Bc4724D097B0d7F4e99143E6' as Address; export const CONNECTOR_PLUGIN: Address = '0x96281563A06a8D3319C9822B58d8808FaC7EA14D' as Address; +export const STRATEGY_CONTRACT_ADDRESS = '0x4368d53677c09995989a22DE5b31EfceAeD735ae' as Address; export const CONNECTORS_BASE: Address[] = [ USDC_ADDRESS, // USDC diff --git a/constants/icons.tsx b/constants/icons.tsx new file mode 100644 index 0000000..de860c2 --- /dev/null +++ b/constants/icons.tsx @@ -0,0 +1,28 @@ +import { + AerodromeIcon, + BorrowIcon, + CoinbaseWalletIcon, + CuratorIcon, + DebitCardIcon, + DepositIcon, + MoonWellIcon, + MorphoIcon, + StakeIcon, + SupplyIcon, +} from '@/assets/icons'; + +const ICONS = { + aerodrome: , + moonwell: , + morpho: , + stake: , + deposit: , + borrow: , + supply: , + sort: , + debitCard: , + crypto: , + coinBase: , +}; + +export default ICONS; diff --git a/hooks/useCalls.ts b/hooks/useCalls.ts index 62e0ff6..0fbe775 100644 --- a/hooks/useCalls.ts +++ b/hooks/useCalls.ts @@ -1,13 +1,27 @@ import { Address, encodeFunctionData, Hex } from 'viem'; -import { buildUserOp, getPaymasterData, getUserOpHash } from '@/utils/wallet'; +import { + buildUserOp, + getOwnerIndex, + getPaymasterData, + getUserOpHash, + PASSKEY_OWNER_DUMMY_SIGNATURE, + sendUserOperation, + sponsorUserOperation, +} from '@/utils/wallet'; import { Call } from '@/utils/types'; -import { entryPoint06Address } from 'viem/account-abstraction'; +import { entryPoint06Abi, entryPoint06Address, getUserOperationHash, UserOperation } from 'viem/account-abstraction'; import { useClients } from '@/init/useViem'; import { useSmartAccountActions } from '@/store/smartAccount/actions'; import { SmartWalletABI } from '@/constants/abis'; import { ENTRYPOINT_V06_ADDRESS } from '@/constants/addresses'; import { useCallback } from 'react'; import { getPersistedSmartAccountInfo } from '@/store/smartAccount/persist'; +import { buildWebAuthnSignature } from '@/utils/signature'; +import { bufferToHex, parseAndNormalizeSig } from '@/utils/base64'; +import { splitSignature } from '@/utils/helpers'; +import { pimilcoRPCURL } from '@/constants/env'; +import { getRequiredPrefund } from 'permissionless'; +import { bundlerClient, publicClient } from '@/init/client'; export function useMakeCalls() { const { signTransaction } = useSmartAccountActions(); @@ -24,28 +38,23 @@ export function useMakeCalls() { paymasterAndData: '0x', // Initialize with empty paymaster data }); - // Set verification gas limit - op.verificationGasLimit = 800000n; - - // Get paymaster data - const paymasterResult = await getPaymasterData({ - paymasterClient: paymaster, - callData: op.callData, - sender: op.sender, - nonce: op.nonce, - initCode: op.initCode, - maxFeePerGas: op.maxFeePerGas, - maxPriorityFeePerGas: op.maxPriorityFeePerGas, - callGasLimit: op.callGasLimit, - verificationGasLimit: op.verificationGasLimit, - preVerificationGas: op.preVerificationGas, - }); + // const sponsoredData = await sponsorUserOperation({ + // callData: op.callData, + // sender: op.sender, + // nonce: op.nonce, + // initCode: op.initCode, + // maxFeePerGas: BigInt(op.maxFeePerGas), + // maxPriorityFeePerGas: BigInt(op.maxPriorityFeePerGas), + // callGasLimit: op.callGasLimit, + // verificationGasLimit: op.verificationGasLimit, + // preVerificationGas: op.preVerificationGas, + // signature: PASSKEY_OWNER_DUMMY_SIGNATURE, + // }); // Update operation with paymaster data - op.paymasterAndData = paymasterResult.paymasterAndData; - - // Get the operation hash + //op.paymasterAndData = sponsoredData.paymasterAndData; const hash = getUserOpHash({ + chainId: BigInt(8453), userOperation: { sender: op.sender, nonce: op.nonce, @@ -54,40 +63,58 @@ export function useMakeCalls() { callGasLimit: op.callGasLimit, verificationGasLimit: op.verificationGasLimit, preVerificationGas: op.preVerificationGas, - maxFeePerGas: op.maxFeePerGas, - maxPriorityFeePerGas: op.maxPriorityFeePerGas, - paymasterAndData: op.paymasterAndData, - signature: '0x', + maxFeePerGas: BigInt(op.maxFeePerGas), + maxPriorityFeePerGas: BigInt(op.maxPriorityFeePerGas), + paymasterAndData: '0x', + signature: PASSKEY_OWNER_DUMMY_SIGNATURE, }, - chainId: 8543n, }); const signature = await signTransaction(hash); + const { r, s } = parseAndNormalizeSig(signature.signature); + + const webAuthnSignatureFormat = buildWebAuthnSignature({ + ownerIndex: BigInt(0), + authenticatorData: signature.webauthn.authenticatorData, + clientDataJSON: signature.webauthn.clientDataJSON, + r, + s, + }); // Create new operation object with signature const signedOp = { - ...op, - signature: signature!, - }; - - // Send the user operation - const opHash = await smartAccountClient?.sendUserOperation({ - account: smartAccountClient.account, - callData: op.callData, - initCode: op.initCode, + sender: op.sender, nonce: op.nonce, - maxFeePerGas: op.maxFeePerGas, - maxPriorityFeePerGas: op.maxPriorityFeePerGas, + initCode: op.initCode, + callData: op.callData, callGasLimit: op.callGasLimit, verificationGasLimit: op.verificationGasLimit, preVerificationGas: op.preVerificationGas, + maxFeePerGas: BigInt(op.maxFeePerGas), + maxPriorityFeePerGas: BigInt(op.maxPriorityFeePerGas), paymasterAndData: op.paymasterAndData, - signature: signedOp.signature, + signature: webAuthnSignatureFormat, + }; + + const requiredPrefund = getRequiredPrefund({ userOperation: signedOp, entryPointVersion: '0.6' }); + + const senderBalance = await publicClient.getBalance({ + address: signedOp.sender, }); + if (senderBalance < requiredPrefund) { + throw new Error(`Sender address does not have enough native tokens`); + } + + // Send the user operation + const opHash = await sendUserOperation(signedOp); + + const receipt = await smartAccountClient?.waitForUserOperationReceipt({ hash: opHash, timeout: 1000000 }); + console.log(receipt, 'receipt'); return { opHash, userOpHash: hash, + receipt, }; }, [signTransaction] diff --git a/hooks/useLiquid.ts b/hooks/useLiquid.ts index 8f452c9..a7536a2 100644 --- a/hooks/useLiquid.ts +++ b/hooks/useLiquid.ts @@ -1,7 +1,15 @@ import { useCallback } from 'react'; import { Address, parseUnits, erc20Abi, Hex, PublicClient } from 'viem'; -import { encodePluginExecute, encodeAddLiquidity, encodeRemoveLiquidity, encodeSwap, encodeStake, encodeApprove } from '@/utils/encoders'; -import { AERODROME_CONNECTOR, AERODROME_FACTORY_ADDRESS, CONNECTOR_PLUGIN } from '@/constants/addresses'; +import { + encodePluginExecute, + encodeAddLiquidity, + encodeRemoveLiquidity, + encodeSwap, + encodeStake, + encodeApprove, + encodeCreateStrategy, +} from '@/utils/encoders'; +import { AERODROME_CONNECTOR, AERODROME_FACTORY_ADDRESS, CONNECTOR_PLUGIN, STRATEGY_CONTRACT_ADDRESS } from '@/constants/addresses'; import { AddLiquidityParams, AddLiquidityWithSwapParams, @@ -16,19 +24,6 @@ import { AerodromeConnectorABI } from '@/constants/abis'; import useSystemFunctions from './useSystemFunctions'; import { useMakeCalls } from './useCalls'; -async function handleTransaction(client: PublicClient, { hash, waitForReceipt = true }: TransactionConfig) { - if (!waitForReceipt) return { hash }; - - const receipt = await client.waitForTransactionReceipt({ - hash, - }); - - return { - hash, - receipt, - }; -} - export function useLiquidity(publicClient: PublicClient) { const { smartAccountState } = useSystemFunctions(); const { makeCalls, buildUserOperationCalldata } = useMakeCalls(); @@ -161,16 +156,13 @@ export function useLiquidity(publicClient: PublicClient) { caller: account, }); - calls.push(createPluginCall(addLiquidityData, currentIndex)); + //calls.push(createPluginCall(addLiquidityData, currentIndex)); - const { opHash } = await makeCalls({ + const { opHash, receipt } = await makeCalls({ calls, account, }); - return handleTransaction(publicClient, { - hash: opHash as `0x${string}`, - ...txConfig, - }); + return { opHash, receipt }; }, [publicClient, createPluginCall, account] ); @@ -191,14 +183,11 @@ export function useLiquidity(publicClient: PublicClient) { const call = createPluginCall(connectorData, 0); - const { opHash } = await makeCalls({ + const { opHash, receipt } = await makeCalls({ calls: [call], account, }); - return handleTransaction(publicClient, { - hash: opHash as `0x${string}`, - ...txConfig, - }); + return { opHash, receipt }; }, [publicClient, createPluginCall, account] ); @@ -225,14 +214,11 @@ export function useLiquidity(publicClient: PublicClient) { const call = createPluginCall(connectorData, 0); - const { opHash } = await makeCalls({ + const { opHash, receipt } = await makeCalls({ calls: [call], account, }); - return handleTransaction(publicClient, { - hash: opHash as `0x${string}`, - ...txConfig, - }); + return { opHash, receipt }; }, [publicClient, createPluginCall, account] ); @@ -247,14 +233,11 @@ export function useLiquidity(publicClient: PublicClient) { const call = createPluginCall(connectorData, 0); - const { opHash } = await makeCalls({ + const { opHash, receipt } = await makeCalls({ calls: [call], account, }); - return handleTransaction(publicClient, { - hash: opHash as `0x${string}`, - ...txConfig, - }); + return { opHash, receipt }; }, [publicClient, createPluginCall, account] ); @@ -302,10 +285,34 @@ export function useLiquidity(publicClient: PublicClient) { } }; + const createStrategy = useCallback( + async (params: StrategyBody, txConfig?: Partial) => { + try { + const createStrategyData = encodeCreateStrategy(params); + const createStrategyCall = { + index: 0, + target: STRATEGY_CONTRACT_ADDRESS, + data: createStrategyData, + value: 0n, + }; + + const { opHash, receipt } = await makeCalls({ + calls: [createStrategyCall], + account, + }); + return { opHash, receipt }; + } catch (error) { + throw error; + } + }, + [publicClient, createPluginCall, account] + ); + return { addLiquidity, removeLiquidity, swap, stake, + createStrategy, }; } diff --git a/init/axios.ts b/init/axios.ts new file mode 100644 index 0000000..64a4da4 --- /dev/null +++ b/init/axios.ts @@ -0,0 +1,28 @@ +import axios from 'axios'; +import { apiUrl } from '@/constants/env'; + +const axiosInstance = axios.create({ + baseURL: apiUrl, +}); + +axiosInstance.interceptors.response.use( + (response) => { + return response; + }, + (error) => { + if (error?.response?.status === 401 || error?.response?.status === 403) { + // user not authenticated + } + return Promise.reject(error); + } +); + +const setTokenHeader = async (token: string) => { + axiosInstance.defaults.headers.common.Authorization = `Bearer ${token}`; +}; + +const removeTokenHeader = () => { + delete axiosInstance.defaults.headers.common.Authorization; +}; + +export { axiosInstance, setTokenHeader, removeTokenHeader }; diff --git a/init/useViem.ts b/init/useViem.ts index f8f449c..2d58184 100644 --- a/init/useViem.ts +++ b/init/useViem.ts @@ -1,12 +1,12 @@ import { useMemo } from 'react'; import { Address, createPublicClient, http } from 'viem'; -import { createBundlerClient, createPaymasterClient, entryPoint06Address, paymasterActions } from 'viem/account-abstraction'; +import { createPaymasterClient, entryPoint06Address, paymasterActions } from 'viem/account-abstraction'; import { createSmartAccountClient } from 'permissionless'; import { base } from 'viem/chains'; import { rpcUrl, pimilcoRPCURL, bundlerUrl } from '@/constants/env'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { useSmartAccountActions } from '@/store/smartAccount/actions'; import { useAuth } from '@/providers'; +// import { createPimlicoClient } from 'permissionless/clients/pimlico'; export function useClients() { const { smartAccountState } = useSystemFunctions(); @@ -27,6 +27,15 @@ export function useClients() { transport: http(pimilcoRPCURL), }).extend(paymasterActions); + // const pimlicoClient = createPimlicoClient({ + // chain: base, + // entryPoint: { + // address: entryPoint06Address, + // version: '0.6', + // }, + // transport: http(pimilcoRPCURL), + // }); + const smartAccountClient = useMemo(() => { if (!account) return null; return createSmartAccountClient({ diff --git a/package.json b/package.json index e0162fc..b6afae4 100644 --- a/package.json +++ b/package.json @@ -35,6 +35,8 @@ "@react-native-masked-view/masked-view": "^0.3.1", "@react-navigation/native": "^6.0.2", "@reduxjs/toolkit": "^2.2.7", + "@tanstack/react-query": "^5.62.2", + "axios": "^1.7.9", "expo": "~51.0.38", "expo-apple-authentication": "^6.4.2", "expo-application": "^5.9.1", @@ -88,6 +90,7 @@ "devDependencies": { "@babel/core": "^7.20.0", "@react-navigation/material-top-tabs": "^6.6.14", + "@tanstack/eslint-plugin-query": "^5.62.1", "@types/jest": "^29.5.12", "@types/lodash": "^4.17.7", "@types/react": "~18.2.45", diff --git a/providers/AllProviders.tsx b/providers/AllProviders.tsx index 5f230d2..8d0e995 100644 --- a/providers/AllProviders.tsx +++ b/providers/AllProviders.tsx @@ -9,6 +9,7 @@ import { privyAppId, privyClientId } from '@/constants/env'; import { ReduxProvider } from './ReduxProvider'; import { ThemeProvider } from './ThemeProvider'; import { AuthProvider } from './AuthProvider'; +import { TanstackProvider } from './TanstackProvider'; // Prevent the splash screen from auto-hiding before asset loading is complete. SplashScreen.preventAutoHideAsync(); @@ -37,11 +38,13 @@ export function AllProviders({ children }: PropsWithChildren) { return ( - - - {children} - - + + + + {children} + + + ); diff --git a/providers/TanstackProvider.tsx b/providers/TanstackProvider.tsx new file mode 100644 index 0000000..3230925 --- /dev/null +++ b/providers/TanstackProvider.tsx @@ -0,0 +1,15 @@ +import { PropsWithChildren } from 'react'; +import { QueryClientProvider, QueryClient } from '@tanstack/react-query'; + +const queryClient = new QueryClient({ + defaultOptions: { + queries: { + refetchOnWindowFocus: false, + retryDelay: 1000, + }, + }, +}); + +export function TanstackProvider({ children }: PropsWithChildren) { + return {children}; +} diff --git a/providers/index.ts b/providers/index.ts index c9866fa..61fe808 100644 --- a/providers/index.ts +++ b/providers/index.ts @@ -3,3 +3,4 @@ export * from './AllProviders'; export * from './ReduxProvider'; export * from './ThemeProvider'; export * from './AuthProvider'; +export * from './TanstackProvider'; diff --git a/screens/create-strategy/actions.tsx b/screens/create-strategy/actions.tsx index 5da8969..2fd058f 100644 --- a/screens/create-strategy/actions.tsx +++ b/screens/create-strategy/actions.tsx @@ -1,74 +1,46 @@ -import React, { useState } from 'react'; +import React from 'react'; import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; import DraggableFlatList, { ScaleDecorator } from 'react-native-draggable-flatlist'; -import { - AerodromeIcon, - BorrowIcon, - DepositIcon, - DragHandleIcon, - EditProfileIcon, - MoonWellIcon, - MorphoIcon, - PlusIcon, - StakeIcon, -} from '@/assets/icons'; +import { DragHandleIcon, EditProfileIcon, PlusIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; +import ICONS from '@/constants/icons'; const ActionItem = ({ title, action }: IActionItem) => { return ( - + {title} - + - + - + ); }; -const Actions = ({ action }: IActions) => { - const [actionList, setActionList] = useState([ - { id: '1', title: 'Stake', icon: 'stake' }, - { id: '2', title: 'Deposit', icon: 'deposit' }, - ]); - - const actions = () => { - setActionList((prevData) => [...prevData, { id: '1', title: 'Stake', icon: 'stake' }]); - }; - - const icons = { - stake: , - deposit: , - borrow: , - supply: null, - }; - +const Actions = ({ addNewAction, list, setList }: IActions) => { const renderItem = ({ item, drag, isActive }: IActionsRenderItem) => { return ( - - - - - + + + + + + - {icons[item.icon]} - {item.title} + {ICONS[item.action]} + {item.protocol.title} - - - + + + ); }; @@ -76,13 +48,13 @@ const Actions = ({ action }: IActions) => { Actions setActionList(data)} - keyExtractor={(item) => item.id} + onDragEnd={({ data }) => setList(data)} + keyExtractor={(_, index) => index.toString()} renderItem={renderItem} contentContainerStyle={styles.listContainer} - ListFooterComponent={() => } + ListFooterComponent={() => } /> ); diff --git a/screens/create-strategy/index.tsx b/screens/create-strategy/index.tsx index 75f6e5f..53068d2 100644 --- a/screens/create-strategy/index.tsx +++ b/screens/create-strategy/index.tsx @@ -1,16 +1,41 @@ -import { Pressable, StyleSheet, Text, View } from 'react-native'; import React from 'react'; -import { LQDButton, LQDInput } from '@/components'; +import { Pressable, ScrollView, StyleSheet, Text, View } from 'react-native'; import { useForm } from 'react-hook-form'; +import * as yup from 'yup'; +import { LQDButton, LQDInput } from '@/components'; +import { yupResolver } from '@hookform/resolvers/yup'; import useAppActions from '@/store/app/actions'; -import Actions from './actions'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import useSystemFunctions from '@/hooks/useSystemFunctions'; +import Actions from './actions'; +import { AerodromeIcon, BorrowIcon, CuratorIcon, DepositIcon, MoonWellIcon, MorphoIcon, StakeIcon, SupplyIcon } from '@/assets/icons'; + +const schema = yup.object().shape({ + name: yup.string().required('Strategy name is required'), + description: yup.string().required('Description is required'), +}); + +interface CreateStrategyForm { + name: string; + description: string; +} + const CreateStrategy = () => { - const { control, watch } = useForm(); + const { + control, + handleSubmit, + formState: { isValid }, + } = useForm({ + mode: 'onSubmit', + resolver: yupResolver(schema), + }); const { searchIsFocused: focusSearch, showSearch } = useAppActions(); - const { router } = useSystemFunctions(); + const { router, appState } = useSystemFunctions(); + const { handleStrategyActions } = useAppActions(); + + const { strategyActions } = appState; + const focusInput = () => { focusSearch(true); }; @@ -19,20 +44,28 @@ const CreateStrategy = () => { focusSearch(false); }; - const navigateNewAction = () => { + const navigateToNewAction = () => { router.push('/new-action-strategy'); }; - const navigateToPreview = () => { - router.push('/preview-strategy'); + const navigateToPreview = (data: CreateStrategyForm) => { + router.push({ + pathname: '/preview-strategy', + params: { name: data.name, description: data.description }, + }); + }; + + const handleCancel = () => { + handleStrategyActions([]); + router.back(); }; return ( - + { - + - + - - + + + Cancel @@ -86,6 +120,11 @@ const styles = StyleSheet.create({ flex: 1, paddingTop: 20, paddingHorizontal: 16, + gap: 50, + }, + scrollContainer: { + flex: 1, + paddingBottom: 150, }, cancel: { fontSize: adjustFontSizeForIOS(16, 2), @@ -94,10 +133,10 @@ const styles = StyleSheet.create({ fontFamily: 'QuantaGroteskProSemiBold', fontWeight: '600', alignSelf: 'center', - marginTop: 20, }, btnBottomWrapper: { justifyContent: 'flex-end', - marginBottom: 25, + marginBottom: 40, + gap: 30, }, }); diff --git a/screens/create-strategy/new-action-strategy.tsx b/screens/create-strategy/new-action-strategy.tsx index 10af6ed..374a87d 100644 --- a/screens/create-strategy/new-action-strategy.tsx +++ b/screens/create-strategy/new-action-strategy.tsx @@ -1,60 +1,62 @@ -import { Platform, StyleSheet, StatusBar as RNStatusBar, Text, TouchableOpacity, View } from 'react-native'; import React, { useState } from 'react'; +import { Platform, StyleSheet, StatusBar as RNStatusBar, Text, TouchableOpacity, View } from 'react-native'; import { adjustFontSizeForIOS } from '@/utils/helpers'; -import { - AerodromeIcon, - ArrowDropdownDownIcon, - BorrowIcon, - DepositIcon, - MoonWellIcon, - MorphoIcon, - PlusIcon, - StakeIcon, - SupplyIcon, -} from '@/assets/icons'; -import { LQDActionCard, LQDBottomSheet, LQDButton, LQDFlatlist, LQDImage, LQDProtocolCard, SearchUI } from '@/components'; -import { actionList, protocolList } from '../discover/dummy'; +import { ArrowDropdownDownIcon } from '@/assets/icons'; +import { LQDActionCard, LQDAssetSelection, LQDBottomSheet, LQDButton, LQDProtocolCard, LQDTokenImage } from '@/components'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import useAppActions from '@/store/app/actions'; -import { ActionIconVariant } from '@/components/action-card/types'; -import { IProtocolIconVariant } from '@/components/protocol-card/types'; - -const ActionItem = ({ title = '', label = '', icon = '', action }: IActionItem) => { - const icons = { - aerodrome: , - moonwell: , - morpho: , - stake: , - deposit: , - borrow: , - supply: , - }; +import { TokenItem } from '@/store/account/types'; +import ICONS from '@/constants/icons'; +import { actionList, protocolList } from '../discover/dummy'; + +const ActionItem = ({ title, label, icon, action }: IActionItem) => { return ( {label} - + - {icons[icon]} + {icon && ICONS[icon]} {title} - + - - + + + + ); +}; + +const AssetItem = ({ title, label, logoUrl, action }: IActionItem) => { + return ( + + {label} + + + + {title} + + + + + + ); }; const NewAction = () => { const { router, appState } = useSystemFunctions(); - const { searchIsFocused, showSearch } = useAppActions(); - const [selectedProtocal, setSelectedProtocal]: any = useState(protocolList[0]); - const [selectedAction, setSelectedAction]: any = useState(actionList[0]); - const [selectedAsset, setSelectedAsset] = useState(protocolList[2]); + const { handleStrategyActions } = useAppActions(); + const [selectedProtocol, setSelectedProtocol] = useState(protocolList[0]); + const [selectedAction, setSelectedAction] = useState(actionList[0]); + const [selectedAssets, setSelectedAssets] = useState([]); const [showProtocal, setShowProtocal] = useState(false); const [showActions, setShowActions] = useState(false); - const [showAssets, setShowAssets] = useState(false); + const [showFirstAssets, setShowFirstAssets] = useState(false); + const [showSecondAssets, setShowSecondAssets] = useState(false); + + const { strategyActions } = appState; const openProtocal = () => { setShowProtocal((prev) => !prev); @@ -64,67 +66,117 @@ const NewAction = () => { setShowActions((prev) => !prev); }; - const openAssets = () => { - searchIsFocused(false); - showSearch(true); + const handleShowFirstAsset = () => { + setShowFirstAssets((prev) => !prev); }; - if (appState.showSearch) { - return ( - - - - ); - } + const handleShowSecondAsset = () => { + setShowSecondAssets((prev) => !prev); + }; + + const handleFirstAsset = (data: TokenItem) => { + const newAssets = [...selectedAssets]; + newAssets[0] = data; + setSelectedAssets(newAssets); + }; + + const handleSecondAsset = (data: TokenItem) => { + const newAssets = [...selectedAssets]; + newAssets[1] = data; + setSelectedAssets(newAssets); + }; + + const handleAddNewStrategyAction = () => { + const currentActions = [...strategyActions]; + + const selectedAssetsAddresses = selectedAssets.map((asset) => asset.address); + + const newAction: StrategyAction = { + action: selectedAction.variant, + assetsIn: selectedAssetsAddresses, + protocol: selectedProtocol, + }; + + handleStrategyActions([...currentActions, newAction]); + router.back(); + }; return ( - Njoku’s Aerodrome wealth builder - - - - - + + Njoku’s Aerodrome wealth builder + + + + + + + {selectedProtocol.title === 'Aerodrome' && selectedAction.variant === 'deposit' && ( + + )} + - + - - ( + + + {protocolList.map((protocol, index) => ( setSelectedProtocal(item)} + key={index} + variant={protocol.icon} + selected={selectedProtocol.id === protocol.id} + protocol={protocol} + onSelect={() => { + setSelectedProtocol(protocol); + openProtocal(); + }} /> - )} - keyExtractor={(_, index) => index.toString()} - showsHorizontalScrollIndicator={false} - contentContainerStyle={styles.protocalContainerStyle} - /> + ))} + - - ( + + + + {actionList.map((action, index) => ( setSelectedAction(item)} + key={index} + variant={action.variant} + selected={selectedAction.id === action.id} + actions={action} + onSelect={() => { + setSelectedAction({ ...action }); + openActions(); + }} /> - )} - keyExtractor={(_, index) => index.toString()} - showsHorizontalScrollIndicator={false} - contentContainerStyle={styles.protocalContainerStyle} - /> + ))} + + + + + ); }; @@ -135,6 +187,7 @@ const styles = StyleSheet.create({ container: { backgroundColor: '#fff', flex: 1, + justifyContent: 'space-between', paddingTop: 20, paddingHorizontal: 16, }, @@ -192,6 +245,6 @@ const styles = StyleSheet.create({ paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, }, - bottomWrapper: { paddingHorizontal: 20, marginTop: 30 }, + bottomWrapper: { paddingHorizontal: 20, marginBottom: 50 }, iconFlex: { flexDirection: 'row', gap: 10, flex: 1 }, }); diff --git a/screens/create-strategy/preview-strategy.tsx b/screens/create-strategy/preview-strategy.tsx index b5496dc..779e8df 100644 --- a/screens/create-strategy/preview-strategy.tsx +++ b/screens/create-strategy/preview-strategy.tsx @@ -1,56 +1,112 @@ -import { StyleSheet, Text, View } from 'react-native'; import React, { useState } from 'react'; +import { StyleSheet, Text, View } from 'react-native'; +import { useLocalSearchParams } from 'expo-router'; + import { LQDButton } from '@/components'; import FeedStep from '@/components/feed-card/feed-step'; -import { steps } from '../home/dummy'; import { adjustFontSizeForIOS } from '@/utils/helpers'; -import { ActionIconVariant } from '@/components/action-card/types'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; import Loader from './loader'; +import { useWriteFeed } from '@/services/feeds/queries'; + +const SUPPLY = 0; // Supply assets +const WITHDRAW = 1; // Withdraw assets +const BORROW = 2; // Borrow assets +const REPAY = 3; // Repay debt +const STAKE = 4; // Stake assets +const UNSTAKE = 5; // Unstake assets +const SWAP = 6; // Swap assets +const CLAIM = 7; // Claim rewards + +const getActionType = (action: 'deposit' | 'stake' | 'borrow' | 'supply') => { + switch (action) { + case 'deposit': + return SUPPLY; + case 'stake': + return STAKE; + case 'borrow': + return BORROW; + case 'supply': + return SUPPLY; + default: + return SUPPLY; + } +}; const RreviewStrategy = () => { - const [loading, setLoading] = useState(false); + const param = useLocalSearchParams(); + const { appState, accountState } = useSystemFunctions(); + const { postStrategy, loading } = useWriteFeed(); + + const { strategyActions } = appState; + const { tokens } = accountState; + + const strategySteps = () => { + const steps = strategyActions.map((item: StrategyAction, index) => { + const assetsIn = tokens.data?.find((token) => item.assetsIn[0] == token.address); + + return { + variant: item.action, + token: assetsIn?.symbol || 'USDC', + protocolTitle: item.protocol.title, + tokenIconURL: assetsIn?.logoUrl || '', + protocolIcon: item.protocol.icon, + isLast: index === strategyActions.length - 1, + }; + }); + + return steps; + }; + + const handlePublish = () => { + const steps = strategyActions.map((item: StrategyAction) => { + return { + connector: '0x01249b37d803573c071186BC4C3ea92872B93F5E' as `0x${string}`, + actionType: getActionType(item.action), + assetsIn: item.assetsIn, + amountRatio: BigInt(5000), + assetOut: '0xF877ACaFA28c19b96727966690b2f44d35aD5976' as `0x${string}`, + data: '0x' as `0x${string}`, + }; + }); + + const data: StrategyBody = { + name: param.name as string, + description: param.description as string, + minDeposit: BigInt(1000), + maxTvl: BigInt(1000000), + performanceFee: BigInt(20), + steps, + }; + + postStrategy(data); + }; + if (loading) { return ; } - const openModal = () => { - setLoading((prev) => !prev); - setTimeout(() => { - setLoading(false); - }, 2000); - }; - return ( - {steps.map((step, index: number) => ( - + {strategySteps().map((step, index: number) => ( + ))} - Moonwell - USDC + {param.name} Est. APY 65.45% - This strategy starts as an ease in for first and second quaterss of 2025 - This strategy starts as an ease in for first and second quaterss of 2025 - This strategy starts as an ease in for first and second quaterss of 2025 + {param.description} - + ); diff --git a/screens/create-strategy/types.ts b/screens/create-strategy/types.ts index 74b32a1..eea1c8a 100644 --- a/screens/create-strategy/types.ts +++ b/screens/create-strategy/types.ts @@ -2,20 +2,30 @@ type IconVariant = 'moonwell' | 'aerodrome' | 'morpho' | 'deposit' | 'stake' | ' interface IActionItem { label?: string; - title?: string; + title: string; icon?: IconVariant; + logoUrl?: string; action?: () => void; } interface IActions { - action?: () => void; + addNewAction: () => void; + list: StrategyAction[]; + setList: (data: StrategyAction[]) => void; } interface IActionsListItem { id: string; title: string; - icon: 'deposit' | 'stake' | 'borrow' | 'supply'; + variant: 'deposit' | 'stake' | 'borrow' | 'supply'; } interface IActionsRenderItem { drag?: () => void; - item: IActionsListItem; + item: StrategyAction; isActive: boolean; } + +interface ProtocolItem { + id: string; + icon: 'moonwell' | 'aerodrome' | 'morpho'; + title: string; + address: `0x${string}`; +} diff --git a/screens/discover/dummy.ts b/screens/discover/dummy.ts index 99a2352..f627d19 100644 --- a/screens/discover/dummy.ts +++ b/screens/discover/dummy.ts @@ -1,36 +1,40 @@ const image = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; -export const protocolList = [ + +export const protocolList: ProtocolItem[] = [ { id: '1', icon: 'moonwell', title: 'Moonwell', + address: '0x', }, { id: '2', icon: 'aerodrome', title: 'Aerodrome', + address: '0x', }, { id: '3', icon: 'morpho', title: 'Morpho', + address: '0x', }, ]; -export const actionList = [ +export const actionList: IActionsListItem[] = [ { id: '1', - icon: 'deposit', + variant: 'deposit', title: 'Deposit', }, { id: '2', - icon: 'stake', + variant: 'stake', title: 'Stake', }, { id: '3', - icon: 'borrow', + variant: 'borrow', title: 'Borrow', }, ]; diff --git a/screens/discover/index.tsx b/screens/discover/index.tsx index 6a94484..9684381 100644 --- a/screens/discover/index.tsx +++ b/screens/discover/index.tsx @@ -1,29 +1,25 @@ import { StyleSheet, View, Text, StatusBar as RNStatusBar, Pressable, Platform, Animated } from 'react-native'; import React, { useCallback, useEffect, useRef, useState } from 'react'; -import { LQDBottomSheet, LQDButton, LQDFlatlist, LQDImage, LQDInput, LQDProtocolCard, LQDStrategyCard, SearchUI } from '@/components'; -import { SearchBar } from 'react-native-screens'; +import { LQDAssetSelection, LQDBottomSheet, LQDButton, LQDFlatlist, LQDInput, LQDProtocolCard, LQDStrategyCard } from '@/components'; import { ArrowCircleDownIcon, DiscoverTVLIcon, SearchIcon, DiscoverUSDIcon, AerodromeIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; -import RecentCard from '@/components/search-ui/popular-asset-card'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { protocolList, strategyies } from './dummy'; import { useForm } from 'react-hook-form'; import PercentageSetter from '../liquidity-actions/remove/percentage-setter'; -import useAppActions from '@/store/app/actions'; -import { IProtocolIconVariant } from '@/components/protocol-card/types'; const Discover = () => { - const { router, poolsState, dispatch, appState } = useSystemFunctions(); - const { searchIsFocused, showSearch } = useAppActions(); + const { router, dispatch } = useSystemFunctions(); const [search, setSearch] = useState(false); const [showTvl, setShowTvl] = useState(false); const [protocal, setProtocal] = useState(false); - const [percentage, setPercentage] = useState(25); + const [_, setPercentage] = useState(25); const [selectedToken, setSelecteToken] = useState(''); + const [selectedAssets, setSelectedAssets] = useState([]); const stableSetPercentage = useCallback((value: number) => setPercentage(value), []); - const recentSearch = poolsState.recentSearchedPools; const { control, watch } = useForm(); + const [showAssets, setShowAssets] = useState(false); const animationValue = useRef(new Animated.Value(0)).current; @@ -77,18 +73,15 @@ const Discover = () => { setProtocal((prev) => !prev); }; - const openAssets = () => { - searchIsFocused(false); - showSearch(true); + const handleShowAsset = () => { + setShowAssets((prev) => !prev); }; - if (appState.showSearch) { - return ( - - - - ); - } + const handleAsset = (data: TokenItem) => { + const newAssets = [...selectedAssets]; + newAssets[0] = data; + setSelectedAssets(newAssets); + }; return ( @@ -102,7 +95,7 @@ const Discover = () => { - + @@ -114,7 +107,7 @@ const Discover = () => { - setSearch(true)}> + @@ -165,7 +158,7 @@ const Discover = () => { variant={item.icon} selected={selectedToken === item.id} protocol={item} - action={() => setSelecteToken(item.id)} + onSelect={() => setSelecteToken(item.id)} /> )} keyExtractor={(_, index) => index.toString()} @@ -173,6 +166,14 @@ const Discover = () => { contentContainerStyle={styles.protocalContainerStyle} /> + ); }; diff --git a/screens/home/dummy.ts b/screens/home/dummy.ts index 0abae4a..78fb09f 100644 --- a/screens/home/dummy.ts +++ b/screens/home/dummy.ts @@ -15,33 +15,33 @@ export const feeds: Array = [ steps: [ { variant: 'supply', - tokenA: 'cbBTC', - tokenB: 'moonWell', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + token: 'cbBTC', + protocolTitle: 'moonWell', + tokenIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + protocolIcon: 'moonWell', }, { variant: 'deposit', - tokenA: 'Borrowed USDC', - tokenB: 'Morpho', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + token: 'USDC', + protocolTitle: 'Morpho', + tokenIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + protocolIcon: 'morpho', }, { variant: 'borrow', - tokenA: 'USDC', - tokenB: 'Base', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + token: 'cbBTC', + protocolTitle: 'Aerodrome', + tokenIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + protocolIcon: 'aerodrome', }, + { - isLast: true, - variant: 'stake', - tokenA: 'DAI', - tokenB: 'USDC', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + variant: 'deposit', + token: 'USDC', + protocolTitle: 'Morpho', + tokenIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + protocolIcon: 'morpho', }, ], }, @@ -59,71 +59,39 @@ export const feeds: Array = [ description: 'This strategy starts as an ease in for first and second quaterss of 2025', steps: [ { - variant: 'deposit', - tokenA: 'Borrowed USDC', - tokenB: 'Morpho', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + variant: 'supply', + token: 'cbBTC', + protocolTitle: 'moonWell', + tokenIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + protocolIcon: 'moonWell', }, + { - variant: 'supply', - tokenA: 'cbBTC', - tokenB: 'moonWell', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + variant: 'deposit', + token: 'USDC', + protocolTitle: 'Morpho', + tokenIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + protocolIcon: 'morpho', }, { variant: 'borrow', - tokenA: 'USDC', - tokenB: 'Base', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + token: 'cbBTC', + protocolTitle: 'Aerodrome', + tokenIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + protocolIcon: 'aerodrome', }, + { - isLast: true, - variant: 'stake', - tokenA: 'DAI', - tokenB: 'USDC', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', + variant: 'deposit', + token: 'USDC', + protocolTitle: 'Morpho', + tokenIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', + protocolIcon: 'morpho', }, ], }, ]; -export const steps = [ - { - variant: 'supply', - tokenA: 'cbBTC', - tokenB: 'moonWell', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', - }, - - { - variant: 'deposit', - tokenA: 'Borrowed USDC', - tokenB: 'Morpho', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', - }, - { - variant: 'borrow', - tokenA: 'USDC', - tokenB: 'Base', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', - }, - { - isLast: true, - variant: 'stake', - tokenA: 'DAI', - tokenB: 'USDC', - tokenAIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png', - tokenBIconURL: 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenBIcon_wscb3p.png', - }, -]; - export const strategyInfo = [ { id: '1', diff --git a/screens/home/index.tsx b/screens/home/index.tsx index d5e4a53..1a1508f 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -2,19 +2,21 @@ import { useEffect } from 'react'; import { StyleSheet, Platform, StatusBar as RNStatusBar, Pressable } from 'react-native'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { adjustFontSizeForIOS, createArrayWithIndexes } from '@/utils/helpers'; -import { LQDBottomSheet, LQDFeedCard, LQDFlatlist, LQDPoolPairCard } from '@/components'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { LQDFeedCard, LQDFlatlist } from '@/components'; import { PlusIcon } from '@/assets/icons'; import { useAccountActions } from '@/store/account/actions'; import { usePoolActions } from '@/store/pools/actions'; import { useOnMount } from '@/hooks/useOnMount'; import Loader from './loader'; import { feeds } from './dummy'; +import { useFeeds } from '@/services/feeds/queries'; const Home = () => { - const { router, poolsState, smartAccountState, accountState, appState } = useSystemFunctions(); + const { router, poolsState, smartAccountState, accountState } = useSystemFunctions(); const { getTokens } = useAccountActions(); const { getAllPools } = usePoolActions(); + const { status, data, error, isFetching } = useFeeds(); const { loadingPools } = poolsState; const { loading: loadingAccounts } = accountState; diff --git a/screens/portfolio/index.tsx b/screens/portfolio/index.tsx index 998ccd5..2e24509 100644 --- a/screens/portfolio/index.tsx +++ b/screens/portfolio/index.tsx @@ -96,7 +96,7 @@ const Portfolio = () => { variant={item.icon as ActionIconVariant} selected={selectedAction === item.id} actions={item} - action={() => setSelectedAction(item.id)} + onSelect={() => setSelectedAction(item.id)} /> )} keyExtractor={(_, index) => index.toString()} diff --git a/screens/profile/index.tsx b/screens/profile/index.tsx index 2f0374e..9bae8b0 100644 --- a/screens/profile/index.tsx +++ b/screens/profile/index.tsx @@ -1,12 +1,13 @@ import { Pressable, StyleSheet, Text, View } from 'react-native'; import React, { useState } from 'react'; import { LQDFeedCard, LQDFlatlist, LQDImage } from '@/components'; -import { CheckIcon, CopyIcon, FamcasterIcon, FillCheckIcon, LinkIcon, UserOctagonIcon, XIcon } from '@/assets/icons'; +import { CopyIcon, FamcasterIcon, FillCheckIcon, LinkIcon, UserOctagonIcon, XIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import { SceneMap } from 'react-native-tab-view'; import useCustomTabView from '@/hooks/useCustomTabview'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { feeds } from './dummy'; + const Profile = () => { const { CustomTabView } = useCustomTabView(); const { router } = useSystemFunctions(); diff --git a/services/feeds/apis.ts b/services/feeds/apis.ts new file mode 100644 index 0000000..a93985f --- /dev/null +++ b/services/feeds/apis.ts @@ -0,0 +1,31 @@ +import { axiosInstance } from '@/init/axios'; + +const fetchFeeds = async (pageParam?: string, sort?: 'latest' | 'trending') => { + return ( + await axiosInstance.get('/feed', { + params: { + cursor: pageParam, + limit: 10, + sort, + }, + }) + ).data; +}; + +const fetchFeed = async (strategyId: string) => { + return (await axiosInstance.get(`/strategies/:${strategyId}`)).data; +}; + +const commentOnAStrategy = async (strategyId: string, data: PostCommentBody) => { + return (await axiosInstance.post(`/strategies/${strategyId}/comments`, data)).data; +}; + +const likeAStrategy = async (strategyId: string) => { + return (await axiosInstance.post(`/strategies/${strategyId}/likes`)).data; +}; + +const unLikeAStrategy = async (strategyId: string) => { + return (await axiosInstance.delete(`/strategies/${strategyId}/likes`)).data; +}; + +export { fetchFeeds, fetchFeed, commentOnAStrategy, likeAStrategy, unLikeAStrategy }; diff --git a/services/feeds/queries.ts b/services/feeds/queries.ts new file mode 100644 index 0000000..4515dc4 --- /dev/null +++ b/services/feeds/queries.ts @@ -0,0 +1,74 @@ +import { useInfiniteQuery, useQuery, useMutation } from '@tanstack/react-query'; + +import { fetchFeed, fetchFeeds } from './apis'; +import { useLiquidity } from '@/hooks/useLiquid'; +import { publicClient } from '@/init/client'; +import { PublicClient } from 'viem'; +import { isDev } from '@/constants/env'; +import { useToastActions } from '@/store/toast/actions'; +import { useState } from 'react'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; + +const useFeeds = () => { + return useInfiniteQuery({ + queryKey: ['feeds'], + queryFn: ({ pageParam }) => fetchFeeds(pageParam), + getNextPageParam: (lastPage) => (lastPage.hasMore ? lastPage.nextCursor : undefined), + initialPageParam: '', + }); +}; + +const useFeed = (strategyId: string) => { + return useQuery({ + queryKey: ['feedDetail', strategyId], + queryFn: () => fetchFeed(strategyId), + enabled: !!strategyId, + }); +}; + +const useWriteFeed = () => { + const { router } = useSystemFunctions(); + const { createStrategy } = useLiquidity(publicClient as PublicClient); + const { showToast } = useToastActions(); + const [loading, setLoading] = useState(false); + + const postStrategy = async (data: StrategyBody) => { + try { + setLoading(true); + await createStrategy(data); + + showToast({ + title: 'Strategy created!', + description: "You've successfully created a strategy", + variant: 'success', + }); + + return router.replace('/(tabs)/home'); + } catch (error: any) { + if (error.cause?.message && error.cause?.message.includes('Biometrics must be enabled')) { + const alertTitle = 'Device not enrolled to FaceID'; + const alertMessage = isDev + ? 'On the top menu bar, click on \nFeatures > Face ID > Enrolled' + : 'Please enroll your device to FaceID on settings'; + + return showToast({ + title: alertTitle, + description: alertMessage, + variant: 'error', + }); + } else { + return showToast({ + title: 'Failed to create strategy', + description: "We couldn't create the strategy. Please try again later!", + variant: 'error', + }); + } + } finally { + setLoading(false); + } + }; + + return { postStrategy, loading }; +}; + +export { useFeeds, useFeed, useWriteFeed }; diff --git a/services/feeds/types.ts b/services/feeds/types.ts new file mode 100644 index 0000000..671b81b --- /dev/null +++ b/services/feeds/types.ts @@ -0,0 +1,113 @@ +type Feeds = { + strategies: Strategy[]; + nextCursor?: string; + hasMore: boolean; + metadata?: { + totalStrategies: number; + totalTvl: string; + uniqueProtocols: number; + }; +}; + +type Strategy = { + id: string; + name: string; + description: string; + contractAddress: string; + curator: { + walletAddress: string; + username: string; + avatar?: string; + }; + steps: { + stepIndex: number; + protocolAddress: string; + actionType: 'supply' | 'withdraw' | 'borrow' | 'repay' | 'stake' | 'unstake' | 'swap' | 'claim'; + assetIn: string; + assetOut?: string; + amountRatio: number; + }[]; + metrics: { + tvl: string; + repostCount: number; + likeCount: number; + commentCount: number; + averageDeposit: string; + }; + assets: { + addresses: string[]; + count: number; + }; + protocols: { + addresses: string[]; + count: number; + actionTypes: string[]; + }; + + userInteraction?: { + // Present if user is authenticated + hasLiked: boolean; + hasDeposited: boolean; + depositAmount?: string; + }; + createdAt: string; + transactionHash: string; +}; + +type PostCommentBody = { + content: string; + replyToId?: string; +}; + +type PostCommentResponse = { + id: string; + content: string; + author: { + walletAddress: string; + username: string; + avatar?: string; + }; + replyTo?: { + id: string; + author: { + username: string; + }; + }; + likeCount: number; + createdAt: string; +}; + +type LikeStrategyResponse = { + success: boolean; + strategy: { + id: string; + likeCount: number; + }; +}; + +type StrategyBody = { + name: string; + description: string; + minDeposit: bigint; + maxTvl: bigint; + performanceFee: bigint; + steps: { + connector: `0x${string}`; + actionType: ActionType; + assetsIn: `0x${string}`[]; + assetOut: `0x${string}`; + amountRatio: bigint; + data: `0x${string}`; + }[]; +}; + +enum ActionType { + SUPPLY, // Supply assets + WITHDRAW, // Withdraw assets + BORROW, // Borrow assets + REPAY, // Repay debt + STAKE, // Stake assets + UNSTAKE, // Unstake assets + SWAP, // Swap assets + CLAIM, // Claim rewards +} diff --git a/services/user/apis.ts b/services/user/apis.ts new file mode 100644 index 0000000..7bf8801 --- /dev/null +++ b/services/user/apis.ts @@ -0,0 +1,40 @@ +import { axiosInstance } from '@/init/axios'; + +const fetchUserInfo = async (walletAddress: string) => { + return (await axiosInstance.get(`/users/${walletAddress}`)).data; +}; + +const fetchUserStrategies = async (walletAddress: string, pageParam?: string) => { + return ( + await axiosInstance.get(`/users/${walletAddress}/strategies`, { + params: { + cursor: pageParam, + limit: 10, + }, + }) + ).data; +}; + +const fetchUserDeposits = async (walletAddress: string, pageParam?: string) => { + return ( + await axiosInstance.get(`/users/${walletAddress}/deposits`, { + params: { + cursor: pageParam, + limit: 10, + }, + }) + ).data; +}; + +const fetchUserLikes = async (walletAddress: string, pageParam?: string) => { + return ( + await axiosInstance.get(`/users/${walletAddress}/likes`, { + params: { + cursor: pageParam, + limit: 10, + }, + }) + ).data; +}; + +export { fetchUserInfo, fetchUserStrategies, fetchUserDeposits, fetchUserLikes }; diff --git a/services/user/queries.ts b/services/user/queries.ts new file mode 100644 index 0000000..3a07852 --- /dev/null +++ b/services/user/queries.ts @@ -0,0 +1,39 @@ +import { useInfiniteQuery, useQuery } from '@tanstack/react-query'; +import { fetchUserDeposits, fetchUserInfo, fetchUserLikes, fetchUserStrategies } from './apis'; + +const useUser = (walletAddress: string) => { + return useQuery({ + queryKey: ['user', walletAddress], + queryFn: () => fetchUserInfo(walletAddress), + enabled: !!walletAddress, + }); +}; + +const useUserStrategies = (walletAddress: string) => { + return useInfiniteQuery({ + queryKey: ['userStrategies', walletAddress], + queryFn: ({ pageParam }) => fetchUserStrategies(walletAddress, pageParam), + getNextPageParam: (lastPage) => (lastPage.hasMore ? lastPage.nextCursor : undefined), + initialPageParam: '', + }); +}; + +const useUserDeposits = (walletAddress: string) => { + return useInfiniteQuery({ + queryKey: ['userDeposits', walletAddress], + queryFn: ({ pageParam }) => fetchUserDeposits(walletAddress, pageParam), + getNextPageParam: (lastPage) => (lastPage.hasMore ? lastPage.nextCursor : undefined), + initialPageParam: '', + }); +}; + +const useUserLikes = (walletAddress: string) => { + return useInfiniteQuery({ + queryKey: ['userLikes', walletAddress], + queryFn: ({ pageParam }) => fetchUserLikes(walletAddress, pageParam), + getNextPageParam: (lastPage) => (lastPage.hasMore ? lastPage.nextCursor : undefined), + initialPageParam: '', + }); +}; + +export { useUser, useUserStrategies, useUserDeposits, useUserLikes }; diff --git a/services/user/types.ts b/services/user/types.ts new file mode 100644 index 0000000..e34bb80 --- /dev/null +++ b/services/user/types.ts @@ -0,0 +1,60 @@ +type User = { + username: string; + walletAddress: string; + avatar?: string; + joinDate: string; + metrics: { + totalStrategies: number; + totalDeposits: string; + followersCount?: number; + followingCount?: number; + }; + socials: { + twitter?: string; + farcaster?: string; + }; +}; + +type UserStrategies = { + items: { + id: string; + name: string; + description: string; + metrics: { + tvl: string; + depositorCount: number; + likeCount: number; + }; + createdAt: string; + transactionHash: string; + }[]; + nextCursor?: string; + hasMore: boolean; +}; + +type UserDeposits = { + items: { + strategyId: string; + strategyName: string; + amount: string; + status: 'active' | 'withdrawn'; + depositedAt: string; + transactionHash: string; + }[]; + nextCursor?: string; + hasMore: boolean; +}; + +type UserLikes = { + items: { + strategyId: string; + strategyName: string; + likedAt: string; + curator: { + walletAddress: string; + username: string; + }; + }[]; + nextCursor?: string; + hasMore: boolean; +}; diff --git a/store/app/actions.ts b/store/app/actions.ts index fabe855..973d178 100644 --- a/store/app/actions.ts +++ b/store/app/actions.ts @@ -1,5 +1,5 @@ import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { setShowSearch, setSearchIsFocused } from '.'; +import { setShowSearch, setSearchIsFocused, setStrategyActions } from '.'; const useAppActions = () => { const { dispatch } = useSystemFunctions(); @@ -12,9 +12,14 @@ const useAppActions = () => { dispatch(setSearchIsFocused(focused)); }; + const handleStrategyActions = (actions: StrategyAction[]) => { + dispatch(setStrategyActions(actions)); + }; + return { showSearch, searchIsFocused, + handleStrategyActions, }; }; diff --git a/store/app/index.ts b/store/app/index.ts index 3fccb6f..fe3ed2f 100644 --- a/store/app/index.ts +++ b/store/app/index.ts @@ -4,11 +4,13 @@ import type { PayloadAction } from '@reduxjs/toolkit'; export interface AppState { showSearch: boolean; searchIsFocused: boolean; + strategyActions: StrategyAction[]; } const initialState: AppState = { showSearch: false, searchIsFocused: false, + strategyActions: [], }; export const appReducer = createSlice({ @@ -22,9 +24,13 @@ export const appReducer = createSlice({ setSearchIsFocused: (state, action: PayloadAction) => { state.searchIsFocused = action.payload; }, + + setStrategyActions: (state, action: PayloadAction) => { + state.strategyActions = [...action.payload]; + }, }, }); -export const { setShowSearch, setSearchIsFocused } = appReducer.actions; +export const { setShowSearch, setSearchIsFocused, setStrategyActions } = appReducer.actions; export default appReducer.reducer; diff --git a/store/app/types.ts b/store/app/types.ts new file mode 100644 index 0000000..5f101fb --- /dev/null +++ b/store/app/types.ts @@ -0,0 +1,5 @@ +type StrategyAction = { + protocol: ProtocolItem; + action: 'deposit' | 'stake' | 'borrow' | 'supply'; + assetsIn: `0x${string}`[]; +}; diff --git a/store/smartAccount/actions.ts b/store/smartAccount/actions.ts index 811ff3e..3ff47fb 100644 --- a/store/smartAccount/actions.ts +++ b/store/smartAccount/actions.ts @@ -57,7 +57,7 @@ export function useSmartAccountActions() { owners: [webAuthnAccount], }); - return smartAccount; + return { webAuthnAccount, smartAccount }; }; const login = async (userName: string) => { @@ -113,8 +113,10 @@ export function useSmartAccountActions() { }; const signTransaction = async (hash: Hex) => { - const signature = await session?.sign({ hash }); - return signature; + const { webAuthnAccount } = await getSmartAccount(); + const signatureData = await webAuthnAccount.sign({ hash }); + + return signatureData; }; const logout = async () => { try { diff --git a/utils/base64.ts b/utils/base64.ts index 1d1d0ff..dd2101d 100644 --- a/utils/base64.ts +++ b/utils/base64.ts @@ -1,4 +1,4 @@ -import type { Hex } from 'viem'; +import { bytesToBigInt, hexToBytes, type Hex } from 'viem'; // ! taken from https://github.com/MasterKale/SimpleWebAuthn/blob/e02dce6f2f83d8923f3a549f84e0b7b3d44fa3da/packages/browser/src/helpers/base64URLStringToBuffer.ts /** @@ -98,3 +98,19 @@ export function base64ToBytes(base64String: string): Uint8Array { return bytes; } + +export function parseAndNormalizeSig(sig: Hex): { r: bigint; s: bigint } { + const bSig = hexToBytes(sig); + // assert(bSig.length === 64, "signature is not 64 bytes"); + const bR = bSig.slice(0, 32); + const bS = bSig.slice(32); + + // Avoid malleability. Ensure low S (<= N/2 where N is the curve order) + const r = bytesToBigInt(bR); + let s = bytesToBigInt(bS); + const n = BigInt('0xFFFFFFFF00000000FFFFFFFFFFFFFFFFBCE6FAADA7179E84F3B9CAC2FC632551'); + if (s > n / 2n) { + s = n - s; + } + return { r, s }; +} diff --git a/utils/encoders.ts b/utils/encoders.ts index 38a5616..5fd975c 100644 --- a/utils/encoders.ts +++ b/utils/encoders.ts @@ -1,5 +1,5 @@ import { Address, Hex, encodeFunctionData, encodeAbiParameters, parseAbiParameters, erc20Abi } from 'viem'; -import { AerodromeConnectorABI, ConnectorPluginABI } from '@/constants/abis'; +import { AerodromeConnectorABI, ConnectorPluginABI, LiquidStrategy } from '@/constants/abis'; interface RouteStruct { from: Address; @@ -170,3 +170,11 @@ export function encodeApprove({ amount, spender }: { amount: bigint; spender: Ad args: [spender, amount], }); } + +export function encodeCreateStrategy({ description, maxTvl, minDeposit, name, performanceFee, steps }: StrategyBody) { + return encodeFunctionData({ + abi: LiquidStrategy.LiquidStrategy.abi, + functionName: 'createStrategy', + args: [name, description, steps, minDeposit, maxTvl, performanceFee], + }); +} diff --git a/utils/helpers.ts b/utils/helpers.ts index 1e90347..aea31fa 100644 --- a/utils/helpers.ts +++ b/utils/helpers.ts @@ -1,4 +1,4 @@ -import { formatUnits } from 'viem'; +import { decodeAbiParameters, formatUnits, Hex, hexToBigInt } from 'viem'; import { Platform } from 'react-native'; const formatAmount = (amount?: number | string, decimals = 4): number => { @@ -156,6 +156,25 @@ const createArrayWithIndexes = (length: number): number[] => { return Array.from({ length }, (_, index) => index); }; +function splitSignature(signature: string): { r: bigint; s: bigint } { + console.log(signature, 'from splitting'); + let [r, s] = decodeAbiParameters([{ type: 'uint256' }, { type: 'uint256' }], signature as Hex); + const n = hexToBigInt('0xffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551'); + if (s > n / 2n) { + s = n - s; + } + return { r, s }; +} + +export const findQuoteIndices = (input: string): { beforeType: bigint; beforeChallenge: bigint } => { + const beforeTypeIndex = BigInt(input.lastIndexOf('"type":"webauthn.get"')); + const beforeChallengeIndex = BigInt(input.indexOf('"challenge')); + return { + beforeType: beforeTypeIndex, + beforeChallenge: beforeChallengeIndex, + }; +}; + export { formatNumberWithSuffix, truncateDecimal, @@ -174,4 +193,5 @@ export { formatInputAmount, formatSymbol, createArrayWithIndexes, + splitSignature, }; diff --git a/utils/signature.ts b/utils/signature.ts index 7046025..3861d76 100644 --- a/utils/signature.ts +++ b/utils/signature.ts @@ -12,9 +12,9 @@ import { import { BuildUserOperationParams, SignatureWrapperStruct, WebAuthnAuthStruct } from './types'; export function buildWebAuthnSignature({ ownerIndex, authenticatorData, clientDataJSON, r, s }: BuildUserOperationParams): Hex { - const challengeIndex = clientDataJSON.indexOf('"challenge":'); - const typeIndex = clientDataJSON.indexOf('"type":'); - + const challengeIndex = clientDataJSON.indexOf('"challenge"'); + const typeIndex = clientDataJSON.indexOf('"type"'); + console.log(authenticatorData, clientDataJSON); const webAuthnAuthBytes = encodeAbiParameters( [WebAuthnAuthStruct], [ diff --git a/utils/types.ts b/utils/types.ts index 2c5f294..e8ae2ea 100644 --- a/utils/types.ts +++ b/utils/types.ts @@ -58,3 +58,35 @@ export interface PaymasterResult { paymasterVerificationGasLimit: bigint; paymasterPostOpGasLimit: bigint; } + +export interface UserOperationV6 { + sender: Address; + nonce: bigint; + initCode: Hex; + callData: Hex; + callGasLimit: bigint; + verificationGasLimit: bigint; + preVerificationGas: bigint; + maxFeePerGas: bigint; + maxPriorityFeePerGas: bigint; + paymasterAndData: Hex; + signature: Hex; +} + +export interface GasPrice { + maxFeePerGas: string; + maxPriorityFeePerGas: string; +} + +export interface GasPriceResponse { + slow: GasPrice; + standard: GasPrice; + fast: GasPrice; +} + +export interface GasEstimateResponse { + preVerificationGas: string; + verificationGas: string; + verificationGasLimit: string; + callGasLimit: string; +} diff --git a/utils/wallet.ts b/utils/wallet.ts index 481aa16..ab78e29 100644 --- a/utils/wallet.ts +++ b/utils/wallet.ts @@ -1,14 +1,24 @@ import { EntryPointABI, SmartWalletABI } from '@/constants/abis'; import { ACCOUNT_FACTORY_ADDRESS, ENTRYPOINT_V06_ADDRESS } from '@/constants/addresses'; import { Address, Chain, encodeAbiParameters, encodeFunctionData, Hex, keccak256, PublicClient, Transport } from 'viem'; -import { entryPoint06Abi, entryPoint06Address, estimateUserOperationGas, PaymasterClient, UserOperation } from 'viem/account-abstraction'; +import { + entryPoint06Abi, + entryPoint06Address, + estimateUserOperationGas, + getUserOperationHash, + PaymasterClient, + UserOperation, +} from 'viem/account-abstraction'; import { estimateFeesPerGas, getCode, readContract } from 'viem/actions'; -import { Call, PaymasterResult } from './types'; +import { Call, GasEstimateResponse, GasPriceResponse, PaymasterResult, UserOperationV6 } from './types'; import { SmartAccountClient } from 'permissionless'; import { bundlerClient, publicClient } from '@/init/client'; import { smartWalletFactoryAbi } from '@/constants/abis/SmartWalletFactory'; +import { pimilcoRPCURL } from '@/constants/env'; +import { smartWalletABI } from '@/constants/abis/SmartWallet'; -export const PASSKEY_OWNER_DUMMY_SIGNATURE: Hex = '0x'; +export const PASSKEY_OWNER_DUMMY_SIGNATURE: Hex = + '0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000170000000000000000000000000000000000000000000000000000000000000001eef89a56cd6ebb7fa3650a467b2fb6609ff0741ee98c7db10e5199c5f32038ff56593ce0a1fd38f043ac2519b7e363720438b3c2433606098f36f5e99ef01c29000000000000000000000000000000000000000000000000000000000000004c30783937303165383131383932663033636137316438636464353239396432653538346534663734353462653439393537643463653363363630313263383264333731643030303030303030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000767b2274797065223a22776562617574686e2e676574222c226368616c6c656e6765223a2257377a34326863705865626e326c656d4130375a4e723065706137627567466b534c74675f615a63743130222c226f726967696e223a2268747470733a2f2f6170692e7573656c69717569642e78797a227d00000000000000000000'; // https://github.com/wilsoncusack/scw-tx/blob/5ff88a10e928b5df9ec12bce2ef64caa0b35afcd/utils/smartWallet.ts#L10 export async function buildUserOp( @@ -51,14 +61,12 @@ export async function buildUserOp( args: [smartWalletAddress, 0n], }); // Get the current gas fees from the network - let maxFeesPerGas = await estimateFeesPerGas(publicClient); - console.log('Max fees:', { - maxFeePerGas: maxFeesPerGas.maxFeePerGas.toString(), - maxPriorityFeePerGas: maxFeesPerGas.maxPriorityFeePerGas.toString(), - }); + // const maxFeePerGas = await estimateFeesPerGas(publicClient); + const maxFeePerGas = (await getUserOperationGasPrice()).fast; + // Increase gas limits for deployment const baseGasLimit = 1_000_000n; - const deploymentBuffer = !code ? 3n : 1n; // Double gas limits for deployment + const deploymentBuffer = !code ? 3n : 2n; // Double gas limits for deployment // Put all the fields together in a user op const op = { @@ -67,10 +75,10 @@ export async function buildUserOp( initCode, callData, paymasterAndData, - preVerificationGas: baseGasLimit * deploymentBuffer, - verificationGasLimit: baseGasLimit * deploymentBuffer, - callGasLimit: baseGasLimit * deploymentBuffer, - ...maxFeesPerGas, + preVerificationGas: baseGasLimit, + verificationGasLimit: baseGasLimit, + callGasLimit: baseGasLimit, + ...maxFeePerGas, }; // Update user op specific gas limits like `preVerificationGas` etc. @@ -83,8 +91,9 @@ export async function buildUserOp( preVerificationGas: op.preVerificationGas, verificationGasLimit: op.verificationGasLimit, callGasLimit: op.callGasLimit, - maxFeePerGas: op.maxFeePerGas, - maxPriorityFeePerGas: op.maxPriorityFeePerGas, + maxFeePerGas: BigInt(op.maxFeePerGas), + maxPriorityFeePerGas: BigInt(op.maxPriorityFeePerGas), + signature: PASSKEY_OWNER_DUMMY_SIGNATURE, entryPointAddress: entryPoint06Address, }); @@ -166,6 +175,63 @@ export function getUserOpHash({ userOperation, chainId }: { userOperation: UserO ); return keccak256(encodedWithChainAndEntryPoint); } +export const sponsorUserOperation = async (userOperation: { + callData: any; + sender: Address; + nonce: bigint; + initCode?: Hex; + maxFeePerGas: bigint; + maxPriorityFeePerGas: bigint; + callGasLimit: bigint; + verificationGasLimit: bigint; + preVerificationGas: any; + signature: Hex; +}) => { + const userOperationData = { + sender: userOperation.sender, + nonce: `0x${BigInt(userOperation.nonce).toString(16)}`, // ensure hex + initCode: userOperation.initCode, + callData: userOperation.callData, + callGasLimit: `0x${BigInt(userOperation.callGasLimit).toString(16)}`, // ensure hex + verificationGasLimit: `0x${BigInt(userOperation.verificationGasLimit).toString(16)}`, // ensure hex + preVerificationGas: `0x${BigInt(userOperation.preVerificationGas).toString(16)}`, // ensure hex + maxPriorityFeePerGas: `0x${BigInt(userOperation.maxPriorityFeePerGas).toString(16)}`, // ensure hex + maxFeePerGas: `0x${BigInt(userOperation.maxFeePerGas).toString(16)}`, // ensure hex + signature: userOperation.signature, + }; + const response = await fetch(pimilcoRPCURL, { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ + jsonrpc: '2.0', + id: 1, + method: 'pm_sponsorUserOperation', + params: [ + { + sender: userOperationData.sender, + nonce: userOperationData.nonce, + initCode: userOperationData.initCode, + callData: userOperationData.callData, + callGasLimit: userOperationData.callGasLimit, // Let Pimlico estimate + verificationGasLimit: userOperationData.verificationGasLimit, // Let Pimlico estimate + preVerificationGas: userOperationData.preVerificationGas, // Let Pimlico estimate + maxPriorityFeePerGas: userOperationData.maxPriorityFeePerGas, + maxFeePerGas: userOperationData.maxFeePerGas, + paymasterAndData: '0x', + signature: PASSKEY_OWNER_DUMMY_SIGNATURE, + }, + ENTRYPOINT_V06_ADDRESS, + ], + }), + }); + + const sponsorResult = await response.json(); + if (sponsorResult.error) { + throw new Error(`Sponsorship failed: ${sponsorResult.error.message}`); + } + + return sponsorResult.result; +}; export async function getPaymasterData({ paymasterClient, @@ -194,7 +260,7 @@ export async function getPaymasterData({ }): Promise { try { const paymasterAndData = await paymasterClient.getPaymasterData({ - chainId: 8543, + chainId: 8453, entryPointAddress: entryPoint06Address, callData, sender, @@ -219,3 +285,121 @@ export async function getPaymasterData({ throw error; } } + +export const getOwnerIndex = async (publicKey: string, smartwalletAddress: Hex): Promise => { + const ownerCount = await readContract(publicClient, { + address: smartwalletAddress, + abi: smartWalletABI, + functionName: 'ownerCount', + args: [], + }); + + for (let i = 0n; i < ownerCount; i++) { + const ownerBytes = await readContract(publicClient, { + address: smartwalletAddress, + abi: smartWalletABI, + functionName: 'ownerAtIndex', + args: [i], + }); + // For WebAuthn owners, check the public key matches + if (ownerBytes.length === 64) { + // Compare with your public key coordinates + if (ownerBytes === publicKey) { + return i; + } + } + } + + throw new Error('Owner not found'); +}; + +export const sendUserOperation = async (userOperation: UserOperationV6) => { + const userOperationData = { + sender: userOperation.sender, + nonce: `0x${userOperation.nonce.toString(16)}`, + initCode: userOperation.initCode, + callData: userOperation.callData, + callGasLimit: `0x${userOperation.callGasLimit.toString(16)}`, + verificationGasLimit: `0x${userOperation.verificationGasLimit.toString(16)}`, + preVerificationGas: `0x${userOperation.preVerificationGas.toString(16)}`, + maxFeePerGas: `0x${userOperation.maxFeePerGas.toString(16)}`, + maxPriorityFeePerGas: `0x${userOperation.maxPriorityFeePerGas.toString(16)}`, + paymasterAndData: userOperation.paymasterAndData, + signature: userOperation.signature, + }; + + const response = await fetch(pimilcoRPCURL, { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ + jsonrpc: '2.0', + id: 1, + method: 'eth_sendUserOperation', + params: [userOperationData, entryPoint06Address], + }), + }); + + const result = await response.json(); + if (result.error) { + throw new Error(`Failed to send user operation: ${result.error.message}`); + } + + return result.result as Hex; +}; + +export const getUserOperationGasPrice = async (): Promise => { + const response = await fetch(pimilcoRPCURL, { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ + jsonrpc: '2.0', + method: 'pimlico_getUserOperationGasPrice', + params: [], + id: 1, + }), + }); + + const result = await response.json(); + if (result.error) { + throw new Error(`Failed to get gas price: ${result.error.message}`); + } + + return result.result as GasPriceResponse; +}; + +export const estimateUserOperationGasInternal = async (userOperation: UserOperation): Promise => { + const formattedUserOp = { + sender: userOperation.sender, + nonce: `0x${userOperation.nonce.toString(16)}`, + initCode: userOperation.initCode, + callData: userOperation.callData, + callGasLimit: '0x0', + verificationGasLimit: '0x0', + preVerificationGas: '0x0', + maxFeePerGas: `0x${userOperation.maxFeePerGas.toString(16)}`, + maxPriorityFeePerGas: `0x${userOperation.maxPriorityFeePerGas.toString(16)}`, + paymasterAndData: userOperation.paymasterAndData, + signature: + '0x00000000fffffffffffffffffffffffffffffff0000000000000000000000000000000007aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa1c', + }; + + const params = [formattedUserOp, entryPoint06Address]; + + const response = await fetch(pimilcoRPCURL, { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ + jsonrpc: '2.0', + method: 'eth_estimateUserOperationGas', + params, + id: 1, + }), + }); + + const result = await response.json(); + if (result.error) { + throw new Error(`Failed to estimate gas: ${result.error.message}`); + } + + return result.result; +}; diff --git a/yarn.lock b/yarn.lock index 5afc887..1d94d04 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3,18 +3,18 @@ "@0no-co/graphql.web@^1.0.5": - version "1.0.8" - resolved "https://registry.npmjs.org/@0no-co/graphql.web/-/graphql.web-1.0.8.tgz" - integrity sha512-8BG6woLtDMvXB9Ajb/uE+Zr/U7y4qJ3upXi0JQHZmsKUJa7HjF/gFvmL2f3/mSmfZoQGRr9VoY97LCX2uaFMzA== + version "1.0.12" + resolved "https://registry.yarnpkg.com/@0no-co/graphql.web/-/graphql.web-1.0.12.tgz#5fab8caaf5e6dae88e31111305f93dfd152de2fb" + integrity sha512-BTDjjsV/zSPy5fqItwm+KWUfh9CSe9tTtR6rCB72ddtkAxdcHbi4Ir4r/L1Et4lyxmL+i7Rb3m9sjLLi9tYrzA== -"@adraffy/ens-normalize@1.11.0": +"@adraffy/ens-normalize@^1.10.1": version "1.11.0" - resolved "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.11.0.tgz" + resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.11.0.tgz#42cc67c5baa407ac25059fcd7d405cc5ecdb0c33" integrity sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg== "@ampproject/remapping@^2.2.0": version "2.3.0" - resolved "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4" integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw== dependencies: "@jridgewell/gen-mapping" "^0.3.5" @@ -22,14 +22,14 @@ "@babel/code-frame@7.10.4", "@babel/code-frame@~7.10.4": version "7.10.4" - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== dependencies: "@babel/highlight" "^7.10.4" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.25.7", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.2": +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0", "@babel/code-frame@^7.26.2": version "7.26.2" - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85" integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== dependencies: "@babel/helper-validator-identifier" "^7.25.9" @@ -38,24 +38,24 @@ "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.25.9": version "7.26.3" - resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.3.tgz#99488264a56b2aded63983abd6a417f03b92ed02" integrity sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g== "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.13.16", "@babel/core@^7.20.0", "@babel/core@^7.23.9": - version "7.25.8" - resolved "https://registry.npmjs.org/@babel/core/-/core-7.25.8.tgz" - integrity sha512-Oixnb+DzmRT30qu9d3tJSQkxuygWm32DFykT4bRoORPa9hZ/L4KhVB/XiRm6KG+roIEM7DBQlmg27kw2HZkdZg== + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.0.tgz#d78b6023cc8f3114ccf049eb219613f74a747b40" + integrity sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg== dependencies: "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.25.7" - "@babel/generator" "^7.25.7" - "@babel/helper-compilation-targets" "^7.25.7" - "@babel/helper-module-transforms" "^7.25.7" - "@babel/helpers" "^7.25.7" - "@babel/parser" "^7.25.8" - "@babel/template" "^7.25.7" - "@babel/traverse" "^7.25.7" - "@babel/types" "^7.25.8" + "@babel/code-frame" "^7.26.0" + "@babel/generator" "^7.26.0" + "@babel/helper-compilation-targets" "^7.25.9" + "@babel/helper-module-transforms" "^7.26.0" + "@babel/helpers" "^7.26.0" + "@babel/parser" "^7.26.0" + "@babel/template" "^7.25.9" + "@babel/traverse" "^7.25.9" + "@babel/types" "^7.26.0" convert-source-map "^2.0.0" debug "^4.1.0" gensync "^1.0.0-beta.2" @@ -64,7 +64,7 @@ "@babel/generator@7.2.0": version "7.2.0" - resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.2.0.tgz" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.2.0.tgz#eaf3821fa0301d9d4aef88e63d4bcc19b73ba16c" integrity sha512-BA75MVfRlFQG2EZgFYIwyT1r6xSkwfP2bdkY/kLZusEYWiJs4xCowab/alaEaT0wSvmVuXGqiefeBlP+7V1yKg== dependencies: "@babel/types" "^7.2.0" @@ -73,9 +73,9 @@ source-map "^0.5.0" trim-right "^1.0.1" -"@babel/generator@^7.20.0", "@babel/generator@^7.20.5", "@babel/generator@^7.25.7", "@babel/generator@^7.26.3", "@babel/generator@^7.7.2": +"@babel/generator@^7.20.0", "@babel/generator@^7.20.5", "@babel/generator@^7.26.0", "@babel/generator@^7.26.3", "@babel/generator@^7.7.2": version "7.26.3" - resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.3.tgz#ab8d4360544a425c90c248df7059881f4b2ce019" integrity sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ== dependencies: "@babel/parser" "^7.26.3" @@ -84,16 +84,16 @@ "@jridgewell/trace-mapping" "^0.3.25" jsesc "^3.0.2" -"@babel/helper-annotate-as-pure@^7.25.7", "@babel/helper-annotate-as-pure@^7.25.9": +"@babel/helper-annotate-as-pure@^7.25.9": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz#d8eac4d2dc0d7b6e11fa6e535332e0d3184f06b4" integrity sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g== dependencies: "@babel/types" "^7.25.9" -"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.25.7", "@babel/helper-compilation-targets@^7.25.9": +"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.25.9": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz#55af025ce365be3cdc0c1c1e56c6af617ce88875" integrity sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ== dependencies: "@babel/compat-data" "^7.25.9" @@ -102,9 +102,9 @@ lru-cache "^5.1.1" semver "^6.3.1" -"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.25.7", "@babel/helper-create-class-features-plugin@^7.25.9": +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.25.9": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz#7644147706bb90ff613297d49ed5266bde729f83" integrity sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ== dependencies: "@babel/helper-annotate-as-pure" "^7.25.9" @@ -117,17 +117,17 @@ "@babel/helper-create-regexp-features-plugin@^7.25.9": version "7.26.3" - resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz#5169756ecbe1d95f7866b90bb555b022595302a0" integrity sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong== dependencies: "@babel/helper-annotate-as-pure" "^7.25.9" regexpu-core "^6.2.0" semver "^6.3.1" -"@babel/helper-define-polyfill-provider@^0.6.2": - version "0.6.2" - resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz" - integrity sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ== +"@babel/helper-define-polyfill-provider@^0.6.2", "@babel/helper-define-polyfill-provider@^0.6.3": + version "0.6.3" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz#f4f2792fae2ef382074bc2d713522cf24e6ddb21" + integrity sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg== dependencies: "@babel/helper-compilation-targets" "^7.22.6" "@babel/helper-plugin-utils" "^7.22.5" @@ -137,30 +137,30 @@ "@babel/helper-environment-visitor@^7.18.9": version "7.24.7" - resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz#4b31ba9551d1f90781ba83491dd59cf9b269f7d9" integrity sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ== dependencies: "@babel/types" "^7.24.7" "@babel/helper-member-expression-to-functions@^7.25.9": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz#9dfffe46f727005a5ea29051ac835fb735e4c1a3" integrity sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ== dependencies: "@babel/traverse" "^7.25.9" "@babel/types" "^7.25.9" -"@babel/helper-module-imports@^7.25.7", "@babel/helper-module-imports@^7.25.9": +"@babel/helper-module-imports@^7.25.9": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715" integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw== dependencies: "@babel/traverse" "^7.25.9" "@babel/types" "^7.25.9" -"@babel/helper-module-transforms@^7.25.7", "@babel/helper-module-transforms@^7.26.0": +"@babel/helper-module-transforms@^7.26.0": version "7.26.0" - resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz#8ce54ec9d592695e58d84cd884b7b5c6a2fdeeae" integrity sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw== dependencies: "@babel/helper-module-imports" "^7.25.9" @@ -169,19 +169,19 @@ "@babel/helper-optimise-call-expression@^7.25.9": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz#3324ae50bae7e2ab3c33f60c9a877b6a0146b54e" integrity sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ== dependencies: "@babel/types" "^7.25.9" -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.25.7", "@babel/helper-plugin-utils@^7.25.9", "@babel/helper-plugin-utils@^7.8.0": +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.25.9", "@babel/helper-plugin-utils@^7.8.0": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz#9cbdd63a9443a2c92a725cca7ebca12cc8dd9f46" integrity sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw== "@babel/helper-remap-async-to-generator@^7.18.9", "@babel/helper-remap-async-to-generator@^7.25.9": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz#e53956ab3d5b9fb88be04b3e2f31b523afd34b92" integrity sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw== dependencies: "@babel/helper-annotate-as-pure" "^7.25.9" @@ -190,16 +190,16 @@ "@babel/helper-replace-supers@^7.25.9": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz#ba447224798c3da3f8713fc272b145e33da6a5c5" integrity sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ== dependencies: "@babel/helper-member-expression-to-functions" "^7.25.9" "@babel/helper-optimise-call-expression" "^7.25.9" "@babel/traverse" "^7.25.9" -"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.25.7", "@babel/helper-skip-transparent-expression-wrappers@^7.25.9": +"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.25.9": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz#0b2e1b62d560d6b1954893fd2b705dc17c91f0c9" integrity sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA== dependencies: "@babel/traverse" "^7.25.9" @@ -207,56 +207,56 @@ "@babel/helper-string-parser@^7.25.9": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz#1aabb72ee72ed35789b4bbcad3ca2862ce614e8c" integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA== -"@babel/helper-validator-identifier@^7.25.7", "@babel/helper-validator-identifier@^7.25.9": +"@babel/helper-validator-identifier@^7.25.9": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7" integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ== -"@babel/helper-validator-option@^7.25.7", "@babel/helper-validator-option@^7.25.9": +"@babel/helper-validator-option@^7.25.9": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz#86e45bd8a49ab7e03f276577f96179653d41da72" integrity sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw== "@babel/helper-wrap-function@^7.25.9": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz#d99dfd595312e6c894bd7d237470025c85eea9d0" integrity sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g== dependencies: "@babel/template" "^7.25.9" "@babel/traverse" "^7.25.9" "@babel/types" "^7.25.9" -"@babel/helpers@^7.25.7": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.7.tgz" - integrity sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA== +"@babel/helpers@^7.26.0": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.26.0.tgz#30e621f1eba5aa45fe6f4868d2e9154d884119a4" + integrity sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw== dependencies: - "@babel/template" "^7.25.7" - "@babel/types" "^7.25.7" + "@babel/template" "^7.25.9" + "@babel/types" "^7.26.0" "@babel/highlight@^7.10.4": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.25.7.tgz" - integrity sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.25.9.tgz#8141ce68fc73757946f983b343f1231f4691acc6" + integrity sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw== dependencies: - "@babel/helper-validator-identifier" "^7.25.7" + "@babel/helper-validator-identifier" "^7.25.9" chalk "^2.4.2" js-tokens "^4.0.0" picocolors "^1.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.7", "@babel/parser@^7.20.0", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.25.8", "@babel/parser@^7.25.9", "@babel/parser@^7.26.3": +"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.7", "@babel/parser@^7.20.0", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.3": version "7.26.3" - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.3.tgz#8c51c5db6ddf08134af1ddbacf16aaab48bac234" integrity sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA== dependencies: "@babel/types" "^7.26.3" "@babel/plugin-proposal-async-generator-functions@^7.0.0": version "7.20.7" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz#bfb7276d2d573cb67ba379984a2334e262ba5326" integrity sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA== dependencies: "@babel/helper-environment-visitor" "^7.18.9" @@ -266,31 +266,31 @@ "@babel/plugin-proposal-class-properties@^7.13.0", "@babel/plugin-proposal-class-properties@^7.18.0": version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== dependencies: "@babel/helper-create-class-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-proposal-decorators@^7.12.9": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.25.7.tgz" - integrity sha512-q1mqqqH0e1lhmsEQHV5U8OmdueBC2y0RFr2oUzZoFRtN3MvPmt2fsFRcNQAoGLTSNdHBFUYGnlgcRFhkBbKjPw== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.25.9.tgz#8680707f943d1a3da2cd66b948179920f097e254" + integrity sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g== dependencies: - "@babel/helper-create-class-features-plugin" "^7.25.7" - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/plugin-syntax-decorators" "^7.25.7" + "@babel/helper-create-class-features-plugin" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/plugin-syntax-decorators" "^7.25.9" "@babel/plugin-proposal-export-default-from@^7.0.0": - version "7.25.8" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.25.8.tgz" - integrity sha512-5SLPHA/Gk7lNdaymtSVS9jH77Cs7yuHTR3dYj+9q+M7R7tNLXhNuvnmOfafRIzpWL+dtMibuu1I4ofrc768Gkw== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.25.9.tgz#52702be6ef8367fc8f18b8438278332beeb8f87c" + integrity sha512-ykqgwNfSnNOB+C8fV5X4mG3AVmvu+WVxcaU9xHHtBb7PCrPeweMmPjGsn8eMaeJg6SJuoUuZENeeSWaarWqonQ== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-proposal-logical-assignment-operators@^7.18.0": version "7.20.7" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz#dfbcaa8f7b4d37b51e8bfb46d94a5aea2bb89d83" integrity sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug== dependencies: "@babel/helper-plugin-utils" "^7.20.2" @@ -298,7 +298,7 @@ "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8", "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.0": version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1" integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== dependencies: "@babel/helper-plugin-utils" "^7.18.6" @@ -306,7 +306,7 @@ "@babel/plugin-proposal-numeric-separator@^7.0.0": version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75" integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== dependencies: "@babel/helper-plugin-utils" "^7.18.6" @@ -314,7 +314,7 @@ "@babel/plugin-proposal-object-rest-spread@^7.20.0": version "7.20.7" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a" integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== dependencies: "@babel/compat-data" "^7.20.5" @@ -325,7 +325,7 @@ "@babel/plugin-proposal-optional-catch-binding@^7.0.0": version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb" integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw== dependencies: "@babel/helper-plugin-utils" "^7.18.6" @@ -333,7 +333,7 @@ "@babel/plugin-proposal-optional-chaining@^7.13.12", "@babel/plugin-proposal-optional-chaining@^7.20.0": version "7.21.0" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea" integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA== dependencies: "@babel/helper-plugin-utils" "^7.20.2" @@ -342,175 +342,161 @@ "@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-bigint@^7.8.3": version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-class-properties@^7.12.13": version "7.12.13" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== dependencies: "@babel/helper-plugin-utils" "^7.12.13" "@babel/plugin-syntax-class-static-block@^7.14.5": version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-decorators@^7.25.7": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.25.7.tgz" - integrity sha512-oXduHo642ZhstLVYTe2z2GSJIruU0c/W3/Ghr6A5yGMsVrvdnxO1z+3pbTcT7f3/Clnt+1z8D/w1r1f1SHaCHw== +"@babel/plugin-syntax-decorators@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.25.9.tgz#986b4ca8b7b5df3f67cee889cedeffc2e2bf14b3" + integrity sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-syntax-dynamic-import@^7.8.0": version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-export-default-from@^7.0.0": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.25.7.tgz" - integrity sha512-LRUCsC0YucSjabsmxx6yly8+Q/5mxKdp9gemlpR9ro3bfpcOQOXx/CHivs7QCbjgygd6uQ2GcRfHu1FVax/hgg== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.25.9.tgz#86614767a9ff140366f0c3766ef218beb32a730a" + integrity sha512-9MhJ/SMTsVqsd69GyQg89lYR4o9T+oDGv5F6IsigxxqFVOyR/IflDLYP8WDI1l8fkhNGGktqkvL5qwNCtGEpgQ== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-syntax-flow@^7.12.1", "@babel/plugin-syntax-flow@^7.18.0", "@babel/plugin-syntax-flow@^7.25.7": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.25.7.tgz" - integrity sha512-fyoj6/YdVtlv2ROig/J0fP7hh/wNO1MJGm1NR70Pg7jbkF+jOUL9joorqaCOQh06Y+LfgTagHzC8KqZ3MF782w== +"@babel/plugin-syntax-flow@^7.12.1", "@babel/plugin-syntax-flow@^7.18.0", "@babel/plugin-syntax-flow@^7.25.9": + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.26.0.tgz#96507595c21b45fccfc2bc758d5c45452e6164fa" + integrity sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-syntax-import-attributes@^7.24.7": version "7.26.0" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz#3b1412847699eea739b4f2602c74ce36f6b0b0f7" integrity sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A== dependencies: "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-syntax-import-meta@^7.10.4": version "7.10.4" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== dependencies: "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-json-strings@^7.8.3": version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-jsx@^7.25.7", "@babel/plugin-syntax-jsx@^7.7.2": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.7.tgz" - integrity sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw== - dependencies: - "@babel/helper-plugin-utils" "^7.25.7" - -"@babel/plugin-syntax-jsx@^7.25.9": +"@babel/plugin-syntax-jsx@^7.25.9", "@babel/plugin-syntax-jsx@^7.7.2": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz#a34313a178ea56f1951599b929c1ceacee719290" integrity sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA== dependencies: "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": version "7.10.4" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== dependencies: "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-nullish-coalescing-operator@^7.0.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-numeric-separator@^7.10.4": version "7.10.4" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== dependencies: "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-object-rest-spread@^7.8.3": version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-optional-catch-binding@^7.8.3": version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-optional-chaining@^7.0.0", "@babel/plugin-syntax-optional-chaining@^7.8.3": version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-private-property-in-object@^7.14.5": version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-top-level-await@^7.14.5": version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-typescript@^7.25.7", "@babel/plugin-syntax-typescript@^7.7.2": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.7.tgz" - integrity sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g== - dependencies: - "@babel/helper-plugin-utils" "^7.25.7" - -"@babel/plugin-syntax-typescript@^7.25.9": +"@babel/plugin-syntax-typescript@^7.25.9", "@babel/plugin-syntax-typescript@^7.7.2": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz#67dda2b74da43727cf21d46cf9afef23f4365399" integrity sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ== dependencies: "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.0.0-0": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz#7821d4410bee5daaadbb4cdd9a6649704e176845" integrity sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg== dependencies: "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-async-to-generator@^7.20.0": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz#c80008dacae51482793e5a9c08b39a5be7e12d71" integrity sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ== dependencies: "@babel/helper-module-imports" "^7.25.9" @@ -519,14 +505,14 @@ "@babel/plugin-transform-block-scoping@^7.0.0": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz#c33665e46b06759c93687ca0f84395b80c0473a1" integrity sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg== dependencies: "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-classes@^7.0.0": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz#7152457f7880b593a63ade8a861e6e26a4469f52" integrity sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg== dependencies: "@babel/helper-annotate-as-pure" "^7.25.9" @@ -538,7 +524,7 @@ "@babel/plugin-transform-computed-properties@^7.0.0": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz#db36492c78460e534b8852b1d5befe3c923ef10b" integrity sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA== dependencies: "@babel/helper-plugin-utils" "^7.25.9" @@ -546,29 +532,29 @@ "@babel/plugin-transform-destructuring@^7.20.0": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz#966ea2595c498224340883602d3cfd7a0c79cea1" integrity sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ== dependencies: "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-export-namespace-from@^7.22.11": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz#90745fe55053394f554e40584cda81f2c8a402a2" integrity sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww== dependencies: "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-transform-flow-strip-types@^7.20.0", "@babel/plugin-transform-flow-strip-types@^7.25.7": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.25.7.tgz" - integrity sha512-q8Td2PPc6/6I73g96SreSUCKEcwMXCwcXSIAVTyTTN6CpJe0dMj8coxu1fg1T9vfBLi6Rsi6a4ECcFBbKabS5w== +"@babel/plugin-transform-flow-strip-types@^7.20.0", "@babel/plugin-transform-flow-strip-types@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.25.9.tgz#85879b42a8f5948fd6317069978e98f23ef8aec1" + integrity sha512-/VVukELzPDdci7UUsWQaSkhgnjIWXnIyRpM02ldxaVoFK96c41So8JcKT3m0gYjyv7j5FNPGS5vfELrWalkbDA== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/plugin-syntax-flow" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/plugin-syntax-flow" "^7.25.9" "@babel/plugin-transform-function-name@^7.0.0": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz#939d956e68a606661005bfd550c4fc2ef95f7b97" integrity sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA== dependencies: "@babel/helper-compilation-targets" "^7.25.9" @@ -577,14 +563,14 @@ "@babel/plugin-transform-literals@^7.0.0": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz#1a1c6b4d4aa59bc4cad5b6b3a223a0abd685c9de" integrity sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ== dependencies: "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.25.7", "@babel/plugin-transform-modules-commonjs@^7.25.9": +"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.25.9": version "7.26.3" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz#8f011d44b20d02c3de44d8850d971d8497f981fb" integrity sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ== dependencies: "@babel/helper-module-transforms" "^7.26.0" @@ -592,7 +578,7 @@ "@babel/plugin-transform-named-capturing-groups-regex@^7.0.0": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz#454990ae6cc22fd2a0fa60b3a2c6f63a38064e6a" integrity sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.25.9" @@ -600,14 +586,14 @@ "@babel/plugin-transform-nullish-coalescing-operator@^7.0.0-0": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz#bcb1b0d9e948168102d5f7104375ca21c3266949" integrity sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog== dependencies: "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-object-rest-spread@^7.12.13": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz#0203725025074164808bcf1a2cfa90c652c99f18" integrity sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg== dependencies: "@babel/helper-compilation-targets" "^7.25.9" @@ -616,7 +602,7 @@ "@babel/plugin-transform-optional-chaining@^7.0.0-0": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz#e142eb899d26ef715435f201ab6e139541eee7dd" integrity sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A== dependencies: "@babel/helper-plugin-utils" "^7.25.9" @@ -624,14 +610,14 @@ "@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.22.15", "@babel/plugin-transform-parameters@^7.25.9": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz#b856842205b3e77e18b7a7a1b94958069c7ba257" integrity sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g== dependencies: "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-private-methods@^7.22.5": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz#847f4139263577526455d7d3223cd8bda51e3b57" integrity sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw== dependencies: "@babel/helper-create-class-features-plugin" "^7.25.9" @@ -639,67 +625,67 @@ "@babel/plugin-transform-private-property-in-object@^7.22.11": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz#9c8b73e64e6cc3cbb2743633885a7dd2c385fe33" integrity sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw== dependencies: "@babel/helper-annotate-as-pure" "^7.25.9" "@babel/helper-create-class-features-plugin" "^7.25.9" "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-transform-react-display-name@^7.0.0", "@babel/plugin-transform-react-display-name@^7.25.7": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.7.tgz" - integrity sha512-r0QY7NVU8OnrwE+w2IWiRom0wwsTbjx4+xH2RTd7AVdof3uurXOF+/mXHQDRk+2jIvWgSaCHKMgggfvM4dyUGA== +"@babel/plugin-transform-react-display-name@^7.0.0", "@babel/plugin-transform-react-display-name@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.9.tgz#4b79746b59efa1f38c8695065a92a9f5afb24f7d" + integrity sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-transform-react-jsx-development@^7.25.7": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.7.tgz" - integrity sha512-5yd3lH1PWxzW6IZj+p+Y4OLQzz0/LzlOG8vGqonHfVR3euf1vyzyMUJk9Ac+m97BH46mFc/98t9PmYLyvgL3qg== +"@babel/plugin-transform-react-jsx-development@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.9.tgz#8fd220a77dd139c07e25225a903b8be8c829e0d7" + integrity sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw== dependencies: - "@babel/plugin-transform-react-jsx" "^7.25.7" + "@babel/plugin-transform-react-jsx" "^7.25.9" "@babel/plugin-transform-react-jsx-self@^7.0.0": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.7.tgz" - integrity sha512-JD9MUnLbPL0WdVK8AWC7F7tTG2OS6u/AKKnsK+NdRhUiVdnzyR1S3kKQCaRLOiaULvUiqK6Z4JQE635VgtCFeg== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz#c0b6cae9c1b73967f7f9eb2fca9536ba2fad2858" + integrity sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-react-jsx-source@^7.0.0": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.7.tgz" - integrity sha512-S/JXG/KrbIY06iyJPKfxr0qRxnhNOdkNXYBl/rmwgDd72cQLH9tEGkDm/yJPGvcSIUoikzfjMios9i+xT/uv9w== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.9.tgz#4c6b8daa520b5f155b5fb55547d7c9fa91417503" + integrity sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-transform-react-jsx@^7.0.0", "@babel/plugin-transform-react-jsx@^7.25.7": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.7.tgz" - integrity sha512-vILAg5nwGlR9EXE8JIOX4NHXd49lrYbN8hnjffDtoULwpL9hUx/N55nqh2qd0q6FyNDfjl9V79ecKGvFbcSA0Q== +"@babel/plugin-transform-react-jsx@^7.0.0", "@babel/plugin-transform-react-jsx@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz#06367940d8325b36edff5e2b9cbe782947ca4166" + integrity sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw== dependencies: - "@babel/helper-annotate-as-pure" "^7.25.7" - "@babel/helper-module-imports" "^7.25.7" - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/plugin-syntax-jsx" "^7.25.7" - "@babel/types" "^7.25.7" + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-module-imports" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/plugin-syntax-jsx" "^7.25.9" + "@babel/types" "^7.25.9" -"@babel/plugin-transform-react-pure-annotations@^7.25.7": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.7.tgz" - integrity sha512-6YTHJ7yjjgYqGc8S+CbEXhLICODk0Tn92j+vNJo07HFk9t3bjFgAKxPLFhHwF2NjmQVSI1zBRfBWUeVBa2osfA== +"@babel/plugin-transform-react-pure-annotations@^7.25.9": + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.9.tgz#ea1c11b2f9dbb8e2d97025f43a3b5bc47e18ae62" + integrity sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg== dependencies: - "@babel/helper-annotate-as-pure" "^7.25.7" - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-annotate-as-pure" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-runtime@^7.0.0": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.7.tgz" - integrity sha512-Y9p487tyTzB0yDYQOtWnC+9HGOuogtP3/wNpun1xJXEEvI6vip59BSBTsHnekZLqxmPcgsrAKt46HAAb//xGhg== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.25.9.tgz#62723ea3f5b31ffbe676da9d6dae17138ae580ea" + integrity sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ== dependencies: - "@babel/helper-module-imports" "^7.25.7" - "@babel/helper-plugin-utils" "^7.25.7" + "@babel/helper-module-imports" "^7.25.9" + "@babel/helper-plugin-utils" "^7.25.9" babel-plugin-polyfill-corejs2 "^0.4.10" babel-plugin-polyfill-corejs3 "^0.10.6" babel-plugin-polyfill-regenerator "^0.6.1" @@ -707,14 +693,14 @@ "@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.0.0-0": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz#bb785e6091f99f826a95f9894fc16fde61c163f2" integrity sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng== dependencies: "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-spread@^7.0.0": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz#24a35153931b4ba3d13cec4a7748c21ab5514ef9" integrity sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A== dependencies: "@babel/helper-plugin-utils" "^7.25.9" @@ -722,32 +708,21 @@ "@babel/plugin-transform-sticky-regex@^7.0.0": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz#c7f02b944e986a417817b20ba2c504dfc1453d32" integrity sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA== dependencies: "@babel/helper-plugin-utils" "^7.25.9" "@babel/plugin-transform-template-literals@^7.0.0-0": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz#6dbd4a24e8fad024df76d1fac6a03cf413f60fe1" integrity sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw== dependencies: "@babel/helper-plugin-utils" "^7.25.9" -"@babel/plugin-transform-typescript@^7.25.7", "@babel/plugin-transform-typescript@^7.5.0": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.7.tgz" - integrity sha512-VKlgy2vBzj8AmEzunocMun2fF06bsSWV+FvVXohtL6FGve/+L217qhHxRTVGHEDO/YR8IANcjzgJsd04J8ge5Q== - dependencies: - "@babel/helper-annotate-as-pure" "^7.25.7" - "@babel/helper-create-class-features-plugin" "^7.25.7" - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/helper-skip-transparent-expression-wrappers" "^7.25.7" - "@babel/plugin-syntax-typescript" "^7.25.7" - -"@babel/plugin-transform-typescript@^7.25.9": +"@babel/plugin-transform-typescript@^7.25.9", "@babel/plugin-transform-typescript@^7.5.0": version "7.26.3" - resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.3.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.3.tgz#3d6add9c78735623317387ee26d5ada540eee3fd" integrity sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA== dependencies: "@babel/helper-annotate-as-pure" "^7.25.9" @@ -758,47 +733,36 @@ "@babel/plugin-transform-unicode-regex@^7.0.0": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz#5eae747fe39eacf13a8bd006a4fb0b5d1fa5e9b1" integrity sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.25.9" "@babel/helper-plugin-utils" "^7.25.9" "@babel/preset-flow@^7.13.13": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.25.7.tgz" - integrity sha512-q2x3g0YHzo/Ohsr51KOYS/BtZMsvkzVd8qEyhZAyTatYdobfgXCuyppTqTuIhdq5kR/P3nyyVvZ6H5dMc4PnCQ== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.25.9.tgz#ef8b5e7e3f24a42b3711e77fb14919b87dffed0a" + integrity sha512-EASHsAhE+SSlEzJ4bzfusnXSHiU+JfAYzj+jbw2vgQKgq5HrUr8qs+vgtiEL5dOH6sEweI+PNt2D7AqrDSHyqQ== dependencies: - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/helper-validator-option" "^7.25.7" - "@babel/plugin-transform-flow-strip-types" "^7.25.7" + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-validator-option" "^7.25.9" + "@babel/plugin-transform-flow-strip-types" "^7.25.9" "@babel/preset-react@^7.22.15": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.25.7.tgz" - integrity sha512-GjV0/mUEEXpi1U5ZgDprMRRgajGMRW3G5FjMr5KLKD8nT2fTG8+h/klV3+6Dm5739QE+K5+2e91qFKAYI3pmRg== - dependencies: - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/helper-validator-option" "^7.25.7" - "@babel/plugin-transform-react-display-name" "^7.25.7" - "@babel/plugin-transform-react-jsx" "^7.25.7" - "@babel/plugin-transform-react-jsx-development" "^7.25.7" - "@babel/plugin-transform-react-pure-annotations" "^7.25.7" - -"@babel/preset-typescript@^7.13.0", "@babel/preset-typescript@^7.16.7", "@babel/preset-typescript@^7.23.0": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.25.7.tgz" - integrity sha512-rkkpaXJZOFN45Fb+Gki0c+KMIglk4+zZXOoMJuyEK8y8Kkc8Jd3BDmP7qPsz0zQMJj+UD7EprF+AqAXcILnexw== - dependencies: - "@babel/helper-plugin-utils" "^7.25.7" - "@babel/helper-validator-option" "^7.25.7" - "@babel/plugin-syntax-jsx" "^7.25.7" - "@babel/plugin-transform-modules-commonjs" "^7.25.7" - "@babel/plugin-transform-typescript" "^7.25.7" - -"@babel/preset-typescript@^7.17.12": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.26.3.tgz#7c5e028d623b4683c1f83a0bd4713b9100560caa" + integrity sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw== + dependencies: + "@babel/helper-plugin-utils" "^7.25.9" + "@babel/helper-validator-option" "^7.25.9" + "@babel/plugin-transform-react-display-name" "^7.25.9" + "@babel/plugin-transform-react-jsx" "^7.25.9" + "@babel/plugin-transform-react-jsx-development" "^7.25.9" + "@babel/plugin-transform-react-pure-annotations" "^7.25.9" + +"@babel/preset-typescript@^7.13.0", "@babel/preset-typescript@^7.16.7", "@babel/preset-typescript@^7.17.12", "@babel/preset-typescript@^7.23.0": version "7.26.0" - resolved "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.26.0.tgz" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.26.0.tgz#4a570f1b8d104a242d923957ffa1eaff142a106d" integrity sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg== dependencies: "@babel/helper-plugin-utils" "^7.25.9" @@ -808,9 +772,9 @@ "@babel/plugin-transform-typescript" "^7.25.9" "@babel/register@^7.13.16": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/register/-/register-7.25.7.tgz" - integrity sha512-qHTd2Rhn/rKhSUwdY6+n98FmwXN+N+zxSVx3zWqRe9INyvTpv+aQ5gDV2+43ACd3VtMBzPPljbb0gZb8u5ma6Q== + version "7.25.9" + resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.25.9.tgz#1c465acf7dc983d70ccc318eb5b887ecb04f021b" + integrity sha512-8D43jXtGsYmEeDvm4MWHYUpWf8iiXgWYx3fW7E7Wb7Oe6FWqJPl5K6TuFW0dOwNZzEE5rjlaSJYH9JjrUKJszA== dependencies: clone-deep "^4.0.1" find-cache-dir "^2.0.0" @@ -819,24 +783,24 @@ source-map-support "^0.5.16" "@babel/runtime@^7.13.10", "@babel/runtime@^7.18.6", "@babel/runtime@^7.20.0", "@babel/runtime@^7.25.0", "@babel/runtime@^7.7.2": - version "7.25.7" - resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.7.tgz" - integrity sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w== + version "7.26.0" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.26.0.tgz#8600c2f595f277c60815256418b85356a65173c1" + integrity sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw== dependencies: regenerator-runtime "^0.14.0" -"@babel/template@^7.0.0", "@babel/template@^7.25.7", "@babel/template@^7.25.9", "@babel/template@^7.3.3": +"@babel/template@^7.0.0", "@babel/template@^7.25.9", "@babel/template@^7.3.3": version "7.25.9" - resolved "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.9.tgz#ecb62d81a8a6f5dc5fe8abfc3901fc52ddf15016" integrity sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg== dependencies: "@babel/code-frame" "^7.25.9" "@babel/parser" "^7.25.9" "@babel/types" "^7.25.9" -"@babel/traverse@^7.20.0", "@babel/traverse@^7.25.7", "@babel/traverse@^7.25.9": +"@babel/traverse@^7.20.0", "@babel/traverse@^7.25.9": version "7.26.4" - resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.26.4.tgz#ac3a2a84b908dde6d463c3bfa2c5fdc1653574bd" integrity sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w== dependencies: "@babel/code-frame" "^7.26.2" @@ -847,9 +811,9 @@ debug "^4.3.1" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.19.0", "@babel/types@^7.2.0", "@babel/types@^7.20.0", "@babel/types@^7.20.7", "@babel/types@^7.24.7", "@babel/types@^7.25.7", "@babel/types@^7.25.8", "@babel/types@^7.25.9", "@babel/types@^7.26.3", "@babel/types@^7.3.3": +"@babel/types@^7.0.0", "@babel/types@^7.19.0", "@babel/types@^7.2.0", "@babel/types@^7.20.0", "@babel/types@^7.20.7", "@babel/types@^7.24.7", "@babel/types@^7.25.9", "@babel/types@^7.26.0", "@babel/types@^7.26.3", "@babel/types@^7.3.3": version "7.26.3" - resolved "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.3.tgz#37e79830f04c2b5687acc77db97fbc75fb81f3c0" integrity sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA== dependencies: "@babel/helper-string-parser" "^7.25.9" @@ -857,19 +821,26 @@ "@bcoe/v8-coverage@^0.2.3": version "0.2.3" - resolved "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz" + resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== "@egjs/hammerjs@^2.0.17": version "2.0.17" - resolved "https://registry.npmjs.org/@egjs/hammerjs/-/hammerjs-2.0.17.tgz" + resolved "https://registry.yarnpkg.com/@egjs/hammerjs/-/hammerjs-2.0.17.tgz#5dc02af75a6a06e4c2db0202cae38c9263895124" integrity sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A== dependencies: "@types/hammerjs" "^2.0.36" +"@eslint-community/eslint-utils@^4.4.0": + version "4.4.1" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz#d1145bf2c20132d6400495d6df4bf59362fd9d56" + integrity sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA== + dependencies: + eslint-visitor-keys "^3.4.3" + "@ethersproject/abi@5.7.0", "@ethersproject/abi@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.7.0.tgz#b3f3e045bbbeed1af3947335c247ad625a44e449" integrity sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA== dependencies: "@ethersproject/address" "^5.7.0" @@ -884,7 +855,7 @@ "@ethersproject/abstract-provider@5.7.0", "@ethersproject/abstract-provider@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz#b0a8550f88b6bf9d51f90e4795d48294630cb9ef" integrity sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw== dependencies: "@ethersproject/bignumber" "^5.7.0" @@ -897,7 +868,7 @@ "@ethersproject/abstract-signer@5.7.0", "@ethersproject/abstract-signer@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz#13f4f32117868452191a4649723cb086d2b596b2" integrity sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ== dependencies: "@ethersproject/abstract-provider" "^5.7.0" @@ -908,7 +879,7 @@ "@ethersproject/address@5.7.0", "@ethersproject/address@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/address/-/address-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.7.0.tgz#19b56c4d74a3b0a46bfdbb6cfcc0a153fc697f37" integrity sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA== dependencies: "@ethersproject/bignumber" "^5.7.0" @@ -919,14 +890,14 @@ "@ethersproject/base64@5.7.0", "@ethersproject/base64@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.7.0.tgz#ac4ee92aa36c1628173e221d0d01f53692059e1c" integrity sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ== dependencies: "@ethersproject/bytes" "^5.7.0" "@ethersproject/basex@5.7.0", "@ethersproject/basex@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/basex/-/basex-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.7.0.tgz#97034dc7e8938a8ca943ab20f8a5e492ece4020b" integrity sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw== dependencies: "@ethersproject/bytes" "^5.7.0" @@ -934,7 +905,7 @@ "@ethersproject/bignumber@5.7.0", "@ethersproject/bignumber@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.7.0.tgz#e2f03837f268ba655ffba03a57853e18a18dc9c2" integrity sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw== dependencies: "@ethersproject/bytes" "^5.7.0" @@ -943,21 +914,21 @@ "@ethersproject/bytes@5.7.0", "@ethersproject/bytes@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.7.0.tgz#a00f6ea8d7e7534d6d87f47188af1148d71f155d" integrity sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A== dependencies: "@ethersproject/logger" "^5.7.0" "@ethersproject/constants@5.7.0", "@ethersproject/constants@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.7.0.tgz#df80a9705a7e08984161f09014ea012d1c75295e" integrity sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA== dependencies: "@ethersproject/bignumber" "^5.7.0" "@ethersproject/contracts@5.7.0", "@ethersproject/contracts@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/contracts/-/contracts-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/contracts/-/contracts-5.7.0.tgz#c305e775abd07e48aa590e1a877ed5c316f8bd1e" integrity sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg== dependencies: "@ethersproject/abi" "^5.7.0" @@ -973,7 +944,7 @@ "@ethersproject/hash@5.7.0", "@ethersproject/hash@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.7.0.tgz#eb7aca84a588508369562e16e514b539ba5240a7" integrity sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g== dependencies: "@ethersproject/abstract-signer" "^5.7.0" @@ -988,7 +959,7 @@ "@ethersproject/hdnode@5.7.0", "@ethersproject/hdnode@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/hdnode/-/hdnode-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/hdnode/-/hdnode-5.7.0.tgz#e627ddc6b466bc77aebf1a6b9e47405ca5aef9cf" integrity sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg== dependencies: "@ethersproject/abstract-signer" "^5.7.0" @@ -1006,7 +977,7 @@ "@ethersproject/json-wallets@5.7.0", "@ethersproject/json-wallets@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz#5e3355287b548c32b368d91014919ebebddd5360" integrity sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g== dependencies: "@ethersproject/abstract-signer" "^5.7.0" @@ -1025,7 +996,7 @@ "@ethersproject/keccak256@5.7.0", "@ethersproject/keccak256@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.7.0.tgz#3186350c6e1cd6aba7940384ec7d6d9db01f335a" integrity sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg== dependencies: "@ethersproject/bytes" "^5.7.0" @@ -1033,19 +1004,19 @@ "@ethersproject/logger@5.7.0", "@ethersproject/logger@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.7.0.tgz#6ce9ae168e74fecf287be17062b590852c311892" integrity sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig== "@ethersproject/networks@5.7.1", "@ethersproject/networks@^5.7.0": version "5.7.1" - resolved "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.7.1.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.7.1.tgz#118e1a981d757d45ccea6bb58d9fd3d9db14ead6" integrity sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ== dependencies: "@ethersproject/logger" "^5.7.0" "@ethersproject/pbkdf2@5.7.0", "@ethersproject/pbkdf2@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz#d2267d0a1f6e123f3771007338c47cccd83d3102" integrity sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw== dependencies: "@ethersproject/bytes" "^5.7.0" @@ -1053,14 +1024,14 @@ "@ethersproject/properties@5.7.0", "@ethersproject/properties@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.7.0.tgz#a6e12cb0439b878aaf470f1902a176033067ed30" integrity sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw== dependencies: "@ethersproject/logger" "^5.7.0" "@ethersproject/providers@5.7.2", "@ethersproject/providers@^5.7.2": version "5.7.2" - resolved "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.7.2.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/providers/-/providers-5.7.2.tgz#f8b1a4f275d7ce58cf0a2eec222269a08beb18cb" integrity sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg== dependencies: "@ethersproject/abstract-provider" "^5.7.0" @@ -1086,7 +1057,7 @@ "@ethersproject/random@5.7.0", "@ethersproject/random@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/random/-/random-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.7.0.tgz#af19dcbc2484aae078bb03656ec05df66253280c" integrity sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ== dependencies: "@ethersproject/bytes" "^5.7.0" @@ -1094,7 +1065,7 @@ "@ethersproject/rlp@5.7.0", "@ethersproject/rlp@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.7.0.tgz#de39e4d5918b9d74d46de93af80b7685a9c21304" integrity sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w== dependencies: "@ethersproject/bytes" "^5.7.0" @@ -1102,7 +1073,7 @@ "@ethersproject/sha2@5.7.0", "@ethersproject/sha2@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.7.0.tgz#9a5f7a7824ef784f7f7680984e593a800480c9fb" integrity sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw== dependencies: "@ethersproject/bytes" "^5.7.0" @@ -1111,12 +1082,12 @@ "@ethersproject/shims@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/shims/-/shims-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/shims/-/shims-5.7.0.tgz#ee32e543418595774029c5ea6123ea8995e7e154" integrity sha512-WeDptc6oAprov5CCN2LJ/6/+dC9gTonnkdAtLepm/7P5Z+3PRxS5NpfVWmOMs1yE4Vitl2cU8bOPWC0GvGSbVg== "@ethersproject/signing-key@5.7.0", "@ethersproject/signing-key@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.7.0.tgz#06b2df39411b00bc57c7c09b01d1e41cf1b16ab3" integrity sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q== dependencies: "@ethersproject/bytes" "^5.7.0" @@ -1128,7 +1099,7 @@ "@ethersproject/solidity@5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/solidity/-/solidity-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/solidity/-/solidity-5.7.0.tgz#5e9c911d8a2acce2a5ebb48a5e2e0af20b631cb8" integrity sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA== dependencies: "@ethersproject/bignumber" "^5.7.0" @@ -1140,7 +1111,7 @@ "@ethersproject/strings@5.7.0", "@ethersproject/strings@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.7.0.tgz#54c9d2a7c57ae8f1205c88a9d3a56471e14d5ed2" integrity sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg== dependencies: "@ethersproject/bytes" "^5.7.0" @@ -1149,7 +1120,7 @@ "@ethersproject/transactions@5.7.0", "@ethersproject/transactions@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.7.0.tgz#91318fc24063e057885a6af13fdb703e1f993d3b" integrity sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ== dependencies: "@ethersproject/address" "^5.7.0" @@ -1164,7 +1135,7 @@ "@ethersproject/units@5.7.0", "@ethersproject/units@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/units/-/units-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/units/-/units-5.7.0.tgz#637b563d7e14f42deeee39245275d477aae1d8b1" integrity sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg== dependencies: "@ethersproject/bignumber" "^5.7.0" @@ -1173,7 +1144,7 @@ "@ethersproject/wallet@5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/wallet/-/wallet-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/wallet/-/wallet-5.7.0.tgz#4e5d0790d96fe21d61d38fb40324e6c7ef350b2d" integrity sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA== dependencies: "@ethersproject/abstract-provider" "^5.7.0" @@ -1194,7 +1165,7 @@ "@ethersproject/web@5.7.1", "@ethersproject/web@^5.7.0": version "5.7.1" - resolved "https://registry.npmjs.org/@ethersproject/web/-/web-5.7.1.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.7.1.tgz#de1f285b373149bee5928f4eb7bcb87ee5fbb4ae" integrity sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w== dependencies: "@ethersproject/base64" "^5.7.0" @@ -1205,7 +1176,7 @@ "@ethersproject/wordlists@5.7.0", "@ethersproject/wordlists@^5.7.0": version "5.7.0" - resolved "https://registry.npmjs.org/@ethersproject/wordlists/-/wordlists-5.7.0.tgz" + resolved "https://registry.yarnpkg.com/@ethersproject/wordlists/-/wordlists-5.7.0.tgz#8fb2c07185d68c3e09eb3bfd6e779ba2774627f5" integrity sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA== dependencies: "@ethersproject/bytes" "^5.7.0" @@ -1216,15 +1187,15 @@ "@expo/bunyan@^4.0.0": version "4.0.1" - resolved "https://registry.npmjs.org/@expo/bunyan/-/bunyan-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/@expo/bunyan/-/bunyan-4.0.1.tgz#ab9e17e36c71c704a0ce72168378a487368da736" integrity sha512-+Lla7nYSiHZirgK+U/uYzsLv/X+HaJienbD5AKX1UQZHYfWaP+9uuQluRB4GrEVWF0GZ7vEVp/jzaOT9k/SQlg== dependencies: uuid "^8.0.0" -"@expo/cli@0.18.30": - version "0.18.30" - resolved "https://registry.npmjs.org/@expo/cli/-/cli-0.18.30.tgz" - integrity sha512-V90TUJh9Ly8stYo8nwqIqNWCsYjE28GlVFWEhAFCUOp99foiQr8HSTpiiX5GIrprcPoWmlGoY+J5fQA29R4lFg== +"@expo/cli@0.18.31": + version "0.18.31" + resolved "https://registry.yarnpkg.com/@expo/cli/-/cli-0.18.31.tgz#d07b7f1b2d10d146ec8b732ce1353b90912c56bd" + integrity sha512-v9llw9fT3Uv+TCM6Xllo54t672CuYtinEQZ2LPJ2EJsCwuTc4Cd2gXQaouuIVD21VoeGQnr5JtJuWbF97sBKzQ== dependencies: "@babel/runtime" "^7.20.0" "@expo/code-signing-certificates" "0.0.5" @@ -1306,16 +1277,16 @@ "@expo/code-signing-certificates@0.0.5": version "0.0.5" - resolved "https://registry.npmjs.org/@expo/code-signing-certificates/-/code-signing-certificates-0.0.5.tgz" + resolved "https://registry.yarnpkg.com/@expo/code-signing-certificates/-/code-signing-certificates-0.0.5.tgz#a693ff684fb20c4725dade4b88a6a9f96b02496c" integrity sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw== dependencies: node-forge "^1.2.1" nullthrows "^1.1.1" -"@expo/config-plugins@8.0.10", "@expo/config-plugins@~8.0.0-beta.0", "@expo/config-plugins@~8.0.8": - version "8.0.10" - resolved "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-8.0.10.tgz" - integrity sha512-KG1fnSKRmsudPU9BWkl59PyE0byrE2HTnqbOrgwr2FAhqh7tfr9nRs6A9oLS/ntpGzmFxccTEcsV0L4apsuxxg== +"@expo/config-plugins@8.0.11", "@expo/config-plugins@~8.0.8": + version "8.0.11" + resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-8.0.11.tgz#b814395a910f4c8b7cc95d9719dccb6ca53ea4c5" + integrity sha512-oALE1HwnLFthrobAcC9ocnR9KXLzfWEjgIe4CPe+rDsfC6GDs8dGYCXfRFoCEzoLN4TGYs9RdZ8r0KoCcNrm2A== dependencies: "@expo/config-types" "^51.0.3" "@expo/json-file" "~8.3.0" @@ -1333,14 +1304,14 @@ xcode "^3.0.1" xml2js "0.6.0" -"@expo/config-types@^51.0.0-unreleased", "@expo/config-types@^51.0.3": +"@expo/config-types@^51.0.3": version "51.0.3" - resolved "https://registry.npmjs.org/@expo/config-types/-/config-types-51.0.3.tgz" + resolved "https://registry.yarnpkg.com/@expo/config-types/-/config-types-51.0.3.tgz#520bdce5fd75f9d234fd81bd0347443086419450" integrity sha512-hMfuq++b8VySb+m9uNNrlpbvGxYc8OcFCUX9yTmi9tlx6A4k8SDabWFBgmnr4ao3wEArvWrtUQIfQCVtPRdpKA== "@expo/config@9.0.4", "@expo/config@~9.0.0", "@expo/config@~9.0.0-beta.0": version "9.0.4" - resolved "https://registry.npmjs.org/@expo/config/-/config-9.0.4.tgz" + resolved "https://registry.yarnpkg.com/@expo/config/-/config-9.0.4.tgz#52f0a94edd0e2c36dfb5e284cc1a6d99d9d2af97" integrity sha512-g5ns5u1JSKudHYhjo1zaSfkJ/iZIcWmUmIQptMJZ6ag1C0ShL2sj8qdfU8MmAMuKLOgcIfSaiWlQnm4X3VJVkg== dependencies: "@babel/code-frame" "~7.10.4" @@ -1357,7 +1328,7 @@ "@expo/devcert@^1.0.0": version "1.1.4" - resolved "https://registry.npmjs.org/@expo/devcert/-/devcert-1.1.4.tgz" + resolved "https://registry.yarnpkg.com/@expo/devcert/-/devcert-1.1.4.tgz#d98807802a541847cc42791a606bfdc26e641277" integrity sha512-fqBODr8c72+gBSX5Ty3SIzaY4bXainlpab78+vEYEKL3fXmsOswMLf0+KE36mUEAa36BYabX7K3EiXOXX5OPMw== dependencies: application-config-path "^0.1.0" @@ -1375,7 +1346,7 @@ "@expo/env@~0.3.0": version "0.3.0" - resolved "https://registry.npmjs.org/@expo/env/-/env-0.3.0.tgz" + resolved "https://registry.yarnpkg.com/@expo/env/-/env-0.3.0.tgz#a66064e5656e0e48197525f47f3398034fdf579e" integrity sha512-OtB9XVHWaXidLbHvrVDeeXa09yvTl3+IQN884sO6PhIi2/StXfgSH/9zC7IvzrDB8kW3EBJ1PPLuCUJ2hxAT7Q== dependencies: chalk "^4.0.0" @@ -1386,7 +1357,7 @@ "@expo/image-utils@^0.5.0": version "0.5.1" - resolved "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.5.1.tgz" + resolved "https://registry.yarnpkg.com/@expo/image-utils/-/image-utils-0.5.1.tgz#06fade141facebcd8431355923d30f3839309942" integrity sha512-U/GsFfFox88lXULmFJ9Shfl2aQGcwoKPF7fawSCLixIKtMCpsI+1r0h+5i0nQnmt9tHuzXZDL8+Dg1z6OhkI9A== dependencies: "@expo/spawn-async" "^1.7.2" @@ -1402,16 +1373,25 @@ "@expo/json-file@^8.3.0", "@expo/json-file@~8.3.0": version "8.3.3" - resolved "https://registry.npmjs.org/@expo/json-file/-/json-file-8.3.3.tgz" + resolved "https://registry.yarnpkg.com/@expo/json-file/-/json-file-8.3.3.tgz#7926e3592f76030ce63d6b1308ac8f5d4d9341f4" integrity sha512-eZ5dld9AD0PrVRiIWpRkm5aIoWBw3kAyd8VkuWEy92sEthBKDDDHAnK2a0dw0Eil6j7rK7lS/Qaq/Zzngv2h5A== dependencies: "@babel/code-frame" "~7.10.4" json5 "^2.2.2" write-file-atomic "^2.3.0" +"@expo/json-file@^9.0.0": + version "9.0.0" + resolved "https://registry.yarnpkg.com/@expo/json-file/-/json-file-9.0.0.tgz#e3688c9b108cfd7e819f1354a9458ba6e93fc943" + integrity sha512-M+55xFVrFzDcgMDf+52lPDLjKB5xwRfStWlv/b/Vu2OLgxGZLWpxoPYjlRoHqxjPbCQIi2ZCbobK+0KuNhsELg== + dependencies: + "@babel/code-frame" "~7.10.4" + json5 "^2.2.3" + write-file-atomic "^2.3.0" + "@expo/metro-config@0.18.11": version "0.18.11" - resolved "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.18.11.tgz" + resolved "https://registry.yarnpkg.com/@expo/metro-config/-/metro-config-0.18.11.tgz#22e82d92fb9d94ac760cc8b3bff48e6f32b4f032" integrity sha512-/uOq55VbSf9yMbUO1BudkUM2SsGW1c5hr9BnhIqYqcsFv0Jp5D3DtJ4rljDKaUeNLbwr6m7pqIrkSMq5NrYf4Q== dependencies: "@babel/core" "^7.20.0" @@ -1435,81 +1415,47 @@ "@expo/metro-runtime@3.2.3": version "3.2.3" - resolved "https://registry.npmjs.org/@expo/metro-runtime/-/metro-runtime-3.2.3.tgz" + resolved "https://registry.yarnpkg.com/@expo/metro-runtime/-/metro-runtime-3.2.3.tgz#e074c28084f30725f8d0d0eeee4fcd6074797d2d" integrity sha512-v5ji+fAGi7B9YavrxvekuF8gXEV/5fz0+PhaED5AaFDnbGB4IJIbpaiqK9nqZV1axjGZNQSw6Q8TsnFetCR3bQ== "@expo/osascript@^2.0.31": - version "2.1.3" - resolved "https://registry.npmjs.org/@expo/osascript/-/osascript-2.1.3.tgz" - integrity sha512-aOEkhPzDsaAfolSswObGiYW0Pf0ROfR9J2NBRLQACdQ6uJlyAMiPF45DVEVknAU9juKh0y8ZyvC9LXqLEJYohA== + version "2.1.4" + resolved "https://registry.yarnpkg.com/@expo/osascript/-/osascript-2.1.4.tgz#4918d16ba09d8b01cb393bc5997055e61d31246f" + integrity sha512-LcPjxJ5FOFpqPORm+5MRLV0CuYWMthJYV6eerF+lQVXKlvgSn3EOqaHC3Vf3H+vmB0f6G4kdvvFtg40vG4bIhA== dependencies: "@expo/spawn-async" "^1.7.2" exec-async "^2.2.0" "@expo/package-manager@^1.5.0": - version "1.5.2" - resolved "https://registry.npmjs.org/@expo/package-manager/-/package-manager-1.5.2.tgz" - integrity sha512-IuA9XtGBilce0q8cyxtWINqbzMB1Fia0Yrug/O53HNuRSwQguV/iqjV68bsa4z8mYerePhcFgtvISWLAlNEbUA== + version "1.6.1" + resolved "https://registry.yarnpkg.com/@expo/package-manager/-/package-manager-1.6.1.tgz#ab845238dec10bb48bca2b90e060dfe8c1525602" + integrity sha512-4rT46wP/94Ll+CWXtFKok1Lbo9XncSUtErFOo/9/3FVughGbIfdG4SKZOAWIpr9wxwEfkyhHfAP9q71ONlWODw== dependencies: - "@expo/json-file" "^8.3.0" + "@expo/json-file" "^9.0.0" "@expo/spawn-async" "^1.7.2" ansi-regex "^5.0.0" chalk "^4.0.0" find-up "^5.0.0" - find-yarn-workspace-root "~2.0.0" js-yaml "^3.13.1" - micromatch "^4.0.2" - npm-package-arg "^7.0.0" + micromatch "^4.0.8" + npm-package-arg "^11.0.0" ora "^3.4.0" + resolve-workspace-root "^2.0.0" split "^1.0.1" sudo-prompt "9.1.1" "@expo/plist@^0.1.0": version "0.1.3" - resolved "https://registry.npmjs.org/@expo/plist/-/plist-0.1.3.tgz" + resolved "https://registry.yarnpkg.com/@expo/plist/-/plist-0.1.3.tgz#b4fbee2c4f7a88512a4853d85319f4d95713c529" integrity sha512-GW/7hVlAylYg1tUrEASclw1MMk9FP4ZwyFAY/SUTJIhPDQHtfOlXREyWV3hhrHdX/K+pS73GNgdfT6E/e+kBbg== dependencies: "@xmldom/xmldom" "~0.7.7" base64-js "^1.2.3" xmlbuilder "^14.0.0" -"@expo/prebuild-config@7.0.6": - version "7.0.6" - resolved "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-7.0.6.tgz" - integrity sha512-Hts+iGBaG6OQ+N8IEMMgwQElzJeSTb7iUJ26xADEHkaexsucAK+V52dM8M4ceicvbZR9q8M+ebJEGj0MCNA3dQ== - dependencies: - "@expo/config" "~9.0.0-beta.0" - "@expo/config-plugins" "~8.0.0-beta.0" - "@expo/config-types" "^51.0.0-unreleased" - "@expo/image-utils" "^0.5.0" - "@expo/json-file" "^8.3.0" - "@react-native/normalize-colors" "0.74.84" - debug "^4.3.1" - fs-extra "^9.0.0" - resolve-from "^5.0.0" - semver "^7.6.0" - xml2js "0.6.0" - -"@expo/prebuild-config@7.0.8": - version "7.0.8" - resolved "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-7.0.8.tgz" - integrity sha512-wH9NVg6HiwF5y9x0TxiMEeBF+ITPGDXy5/i6OUheSrKpPgb0lF1Mwzl/f2fLPXBEpl+ZXOQ8LlLW32b7K9lrNg== - dependencies: - "@expo/config" "~9.0.0-beta.0" - "@expo/config-plugins" "~8.0.8" - "@expo/config-types" "^51.0.0-unreleased" - "@expo/image-utils" "^0.5.0" - "@expo/json-file" "^8.3.0" - "@react-native/normalize-colors" "0.74.85" - debug "^4.3.1" - fs-extra "^9.0.0" - resolve-from "^5.0.0" - semver "^7.6.0" - xml2js "0.6.0" - "@expo/prebuild-config@7.0.9": version "7.0.9" - resolved "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-7.0.9.tgz" + resolved "https://registry.yarnpkg.com/@expo/prebuild-config/-/prebuild-config-7.0.9.tgz#7abd489e18ed6514a0c9cd214eb34c0d5efda799" integrity sha512-9i6Cg7jInpnGEHN0jxnW0P+0BexnePiBzmbUvzSbRXpdXihYUX2AKMu73jgzxn5P1hXOSkzNS7umaY+BZ+aBag== dependencies: "@expo/config" "~9.0.0-beta.0" @@ -1526,7 +1472,7 @@ "@expo/rudder-sdk-node@1.1.1": version "1.1.1" - resolved "https://registry.npmjs.org/@expo/rudder-sdk-node/-/rudder-sdk-node-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/@expo/rudder-sdk-node/-/rudder-sdk-node-1.1.1.tgz#6aa575f346833eb6290282118766d4919c808c6a" integrity sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ== dependencies: "@expo/bunyan" "^4.0.0" @@ -1539,12 +1485,12 @@ "@expo/sdk-runtime-versions@^1.0.0": version "1.0.0" - resolved "https://registry.npmjs.org/@expo/sdk-runtime-versions/-/sdk-runtime-versions-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/@expo/sdk-runtime-versions/-/sdk-runtime-versions-1.0.0.tgz#d7ebd21b19f1c6b0395e50d78da4416941c57f7c" integrity sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ== "@expo/server@^0.4.0": version "0.4.4" - resolved "https://registry.npmjs.org/@expo/server/-/server-0.4.4.tgz" + resolved "https://registry.yarnpkg.com/@expo/server/-/server-0.4.4.tgz#f89a8e57ef93b35e9635632e217a8868f762f358" integrity sha512-q9ADBzMN5rZ/fgQ2mz5YIJuZ8gelQlhG2CQqToD+UvBLZvbaHCNxTTSs2KI1LzJvAaW5CWgWMatGvGF6iUQ0LA== dependencies: "@remix-run/node" "^2.7.2" @@ -1554,22 +1500,22 @@ "@expo/spawn-async@^1.7.2": version "1.7.2" - resolved "https://registry.npmjs.org/@expo/spawn-async/-/spawn-async-1.7.2.tgz" + resolved "https://registry.yarnpkg.com/@expo/spawn-async/-/spawn-async-1.7.2.tgz#fcfe66c3e387245e72154b1a7eae8cada6a47f58" integrity sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew== dependencies: cross-spawn "^7.0.3" "@expo/vector-icons@^14.0.2", "@expo/vector-icons@^14.0.3": version "14.0.4" - resolved "https://registry.npmjs.org/@expo/vector-icons/-/vector-icons-14.0.4.tgz" + resolved "https://registry.yarnpkg.com/@expo/vector-icons/-/vector-icons-14.0.4.tgz#fa9d4351877312badf91a806598b2f0bab16039a" integrity sha512-+yKshcbpDfbV4zoXOgHxCwh7lkE9VVTT5T03OUlBsqfze1PLy6Hi4jp1vSb1GVbY6eskvMIivGVc9SKzIv0oEQ== dependencies: prop-types "^15.8.1" "@expo/xcpretty@^4.3.0": - version "4.3.1" - resolved "https://registry.npmjs.org/@expo/xcpretty/-/xcpretty-4.3.1.tgz" - integrity sha512-sqXgo1SCv+j4VtYEwl/bukuOIBrVgx6euIoCat3Iyx5oeoXwEA2USCoeL0IPubflMxncA2INkqJ/Wr3NGrSgzw== + version "4.3.2" + resolved "https://registry.yarnpkg.com/@expo/xcpretty/-/xcpretty-4.3.2.tgz#12dba1295167a9c8dde4be783d74f7e81648ca5d" + integrity sha512-ReZxZ8pdnoI3tP/dNnJdnmAk7uLT4FjsKDGW7YeDdvdOMz2XCQSmSCM9IWlrXuWtMF9zeSB6WJtEhCQ41gQOfw== dependencies: "@babel/code-frame" "7.10.4" chalk "^4.1.0" @@ -1578,34 +1524,34 @@ "@graphql-typed-document-node/core@^3.1.0": version "3.2.0" - resolved "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz" + resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.2.0.tgz#5f3d96ec6b2354ad6d8a28bf216a1d97b5426861" integrity sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ== "@hapi/hoek@^9.0.0", "@hapi/hoek@^9.3.0": version "9.3.0" - resolved "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz" + resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== "@hapi/topo@^5.1.0": version "5.1.0" - resolved "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz" + resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== dependencies: "@hapi/hoek" "^9.0.0" "@hexagon/base64@^2.0.3": - version "2.0.3" - resolved "https://registry.npmjs.org/@hexagon/base64/-/base64-2.0.3.tgz" - integrity sha512-ZtQDPh0m9MXHK241Cutx4low/WwqtPr0fPeUsXTAEX5Nocrdk6oB9TvyUF9SePrZYkeTL4gFrd+ceMHVb/zC8A== + version "2.0.4" + resolved "https://registry.yarnpkg.com/@hexagon/base64/-/base64-2.0.4.tgz#888e7ef238a07ffc0922cd5900b18ecb26dd17e7" + integrity sha512-H/ZY6rGyaEuk0mwQgZ3BVi9hMjFTYpBNFbmtOuec/pPibuGhCMXd8fGtwBaO0h44FkWMurysMsDrpkJsBRmoWQ== "@hookform/resolvers@^3.9.0": - version "3.9.0" - resolved "https://registry.npmjs.org/@hookform/resolvers/-/resolvers-3.9.0.tgz" - integrity sha512-bU0Gr4EepJ/EQsH/IwEzYLsT/PEj5C0ynLQ4m+GSHS+xKH4TfSelhluTgOaoc4kA5s7eCsQbM4wvZLzELmWzUg== + version "3.9.1" + resolved "https://registry.yarnpkg.com/@hookform/resolvers/-/resolvers-3.9.1.tgz#a23883c40bfd449cb6c6ab5a0fa0729184c950ff" + integrity sha512-ud2HqmGBM0P0IABqoskKWI6PEf6ZDDBZkFqe2Vnl+mTHCEHzr3ISjjZyCwTjC/qpL25JC9aIDkloQejvMeq0ug== "@isaacs/cliui@^8.0.2": version "8.0.2" - resolved "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz" + resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== dependencies: string-width "^5.1.2" @@ -1617,12 +1563,12 @@ "@isaacs/ttlcache@^1.4.1": version "1.4.1" - resolved "https://registry.npmjs.org/@isaacs/ttlcache/-/ttlcache-1.4.1.tgz" + resolved "https://registry.yarnpkg.com/@isaacs/ttlcache/-/ttlcache-1.4.1.tgz#21fb23db34e9b6220c6ba023a0118a2dd3461ea2" integrity sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA== "@istanbuljs/load-nyc-config@^1.0.0": version "1.1.0" - resolved "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== dependencies: camelcase "^5.3.1" @@ -1633,12 +1579,12 @@ "@istanbuljs/schema@^0.1.2", "@istanbuljs/schema@^0.1.3": version "0.1.3" - resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz" + resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== "@jest/console@^29.7.0": version "29.7.0" - resolved "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.7.0.tgz#cd4822dbdb84529265c5a2bdb529a3c9cc950ffc" integrity sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg== dependencies: "@jest/types" "^29.6.3" @@ -1650,7 +1596,7 @@ "@jest/core@^29.7.0": version "29.7.0" - resolved "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.7.0.tgz#b6cccc239f30ff36609658c5a5e2291757ce448f" integrity sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg== dependencies: "@jest/console" "^29.7.0" @@ -1684,14 +1630,14 @@ "@jest/create-cache-key-function@^29.2.1", "@jest/create-cache-key-function@^29.6.3": version "29.7.0" - resolved "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/@jest/create-cache-key-function/-/create-cache-key-function-29.7.0.tgz#793be38148fab78e65f40ae30c36785f4ad859f0" integrity sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA== dependencies: "@jest/types" "^29.6.3" "@jest/environment@^29.7.0": version "29.7.0" - resolved "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.7.0.tgz#24d61f54ff1f786f3cd4073b4b94416383baf2a7" integrity sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw== dependencies: "@jest/fake-timers" "^29.7.0" @@ -1701,14 +1647,14 @@ "@jest/expect-utils@^29.7.0": version "29.7.0" - resolved "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.7.0.tgz#023efe5d26a8a70f21677d0a1afc0f0a44e3a1c6" integrity sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA== dependencies: jest-get-type "^29.6.3" "@jest/expect@^29.7.0": version "29.7.0" - resolved "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.7.0.tgz#76a3edb0cb753b70dfbfe23283510d3d45432bf2" integrity sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ== dependencies: expect "^29.7.0" @@ -1716,7 +1662,7 @@ "@jest/fake-timers@^29.7.0": version "29.7.0" - resolved "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.7.0.tgz#fd91bf1fffb16d7d0d24a426ab1a47a49881a565" integrity sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ== dependencies: "@jest/types" "^29.6.3" @@ -1728,7 +1674,7 @@ "@jest/globals@^29.7.0": version "29.7.0" - resolved "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.7.0.tgz#8d9290f9ec47ff772607fa864ca1d5a2efae1d4d" integrity sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ== dependencies: "@jest/environment" "^29.7.0" @@ -1738,7 +1684,7 @@ "@jest/reporters@^29.7.0": version "29.7.0" - resolved "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.7.0.tgz#04b262ecb3b8faa83b0b3d321623972393e8f4c7" integrity sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg== dependencies: "@bcoe/v8-coverage" "^0.2.3" @@ -1768,14 +1714,14 @@ "@jest/schemas@^29.6.3": version "29.6.3" - resolved "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz" + resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03" integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== dependencies: "@sinclair/typebox" "^0.27.8" "@jest/source-map@^29.6.3": version "29.6.3" - resolved "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.6.3.tgz#d90ba772095cf37a34a5eb9413f1b562a08554c4" integrity sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw== dependencies: "@jridgewell/trace-mapping" "^0.3.18" @@ -1784,7 +1730,7 @@ "@jest/test-result@^29.7.0": version "29.7.0" - resolved "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.7.0.tgz#8db9a80aa1a097bb2262572686734baed9b1657c" integrity sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA== dependencies: "@jest/console" "^29.7.0" @@ -1794,7 +1740,7 @@ "@jest/test-sequencer@^29.7.0": version "29.7.0" - resolved "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz#6cef977ce1d39834a3aea887a1726628a6f072ce" integrity sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw== dependencies: "@jest/test-result" "^29.7.0" @@ -1804,7 +1750,7 @@ "@jest/transform@^29.7.0": version "29.7.0" - resolved "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.7.0.tgz#df2dd9c346c7d7768b8a06639994640c642e284c" integrity sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw== dependencies: "@babel/core" "^7.11.6" @@ -1825,7 +1771,7 @@ "@jest/types@^24.9.0": version "24.9.0" - resolved "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.9.0.tgz#63cb26cb7500d069e5a389441a7c6ab5e909fc59" integrity sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw== dependencies: "@types/istanbul-lib-coverage" "^2.0.0" @@ -1834,7 +1780,7 @@ "@jest/types@^26.6.2": version "26.6.2" - resolved "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.6.2.tgz#bef5a532030e1d88a2f5a6d933f84e97226ed48e" integrity sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ== dependencies: "@types/istanbul-lib-coverage" "^2.0.0" @@ -1845,7 +1791,7 @@ "@jest/types@^29.6.3": version "29.6.3" - resolved "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59" integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== dependencies: "@jest/schemas" "^29.6.3" @@ -1857,7 +1803,7 @@ "@jimp/bmp@^0.16.13": version "0.16.13" - resolved "https://registry.npmjs.org/@jimp/bmp/-/bmp-0.16.13.tgz" + resolved "https://registry.yarnpkg.com/@jimp/bmp/-/bmp-0.16.13.tgz#57ffa5b17417b5a181f6f184bdabc8218e8448ef" integrity sha512-9edAxu7N2FX7vzkdl5Jo1BbACfycUtBQX+XBMcHA2bk62P8R0otgkHg798frgAk/WxQIzwxqOH6wMiCwrlAzdQ== dependencies: "@babel/runtime" "^7.7.2" @@ -1866,7 +1812,7 @@ "@jimp/core@^0.16.13": version "0.16.13" - resolved "https://registry.npmjs.org/@jimp/core/-/core-0.16.13.tgz" + resolved "https://registry.yarnpkg.com/@jimp/core/-/core-0.16.13.tgz#7171745a912b5b847f8bf53e70b0672c5ca92744" integrity sha512-qXpA1tzTnlkTku9yqtuRtS/wVntvE6f3m3GNxdTdtmc+O+Wcg9Xo2ABPMh7Nc0AHbMKzwvwgB2JnjZmlmJEObg== dependencies: "@babel/runtime" "^7.7.2" @@ -1883,7 +1829,7 @@ "@jimp/custom@^0.16.1": version "0.16.13" - resolved "https://registry.npmjs.org/@jimp/custom/-/custom-0.16.13.tgz" + resolved "https://registry.yarnpkg.com/@jimp/custom/-/custom-0.16.13.tgz#2e4ed447b7410b81fe9103682b4166af904daf84" integrity sha512-LTATglVUPGkPf15zX1wTMlZ0+AU7cGEGF6ekVF1crA8eHUWsGjrYTB+Ht4E3HTrCok8weQG+K01rJndCp/l4XA== dependencies: "@babel/runtime" "^7.7.2" @@ -1891,7 +1837,7 @@ "@jimp/gif@^0.16.13": version "0.16.13" - resolved "https://registry.npmjs.org/@jimp/gif/-/gif-0.16.13.tgz" + resolved "https://registry.yarnpkg.com/@jimp/gif/-/gif-0.16.13.tgz#fa72f35d8ad67d6ce3a3d7ef6c8d04a462afaaf9" integrity sha512-yFAMZGv3o+YcjXilMWWwS/bv1iSqykFahFMSO169uVMtfQVfa90kt4/kDwrXNR6Q9i6VHpFiGZMlF2UnHClBvg== dependencies: "@babel/runtime" "^7.7.2" @@ -1901,7 +1847,7 @@ "@jimp/jpeg@^0.16.13": version "0.16.13" - resolved "https://registry.npmjs.org/@jimp/jpeg/-/jpeg-0.16.13.tgz" + resolved "https://registry.yarnpkg.com/@jimp/jpeg/-/jpeg-0.16.13.tgz#e1c128a591bd7f8a26c8731fd0bc65d32d4ba32a" integrity sha512-BJHlDxzTlCqP2ThqP8J0eDrbBfod7npWCbJAcfkKqdQuFk0zBPaZ6KKaQKyKxmWJ87Z6ohANZoMKEbtvrwz1AA== dependencies: "@babel/runtime" "^7.7.2" @@ -1910,7 +1856,7 @@ "@jimp/plugin-resize@^0.16.1": version "0.16.13" - resolved "https://registry.npmjs.org/@jimp/plugin-resize/-/plugin-resize-0.16.13.tgz" + resolved "https://registry.yarnpkg.com/@jimp/plugin-resize/-/plugin-resize-0.16.13.tgz#6267087f724d47e7bb8824c5b842d9315f50b8e7" integrity sha512-qoqtN8LDknm3fJm9nuPygJv30O3vGhSBD2TxrsCnhtOsxKAqVPJtFVdGd/qVuZ8nqQANQmTlfqTiK9mVWQ7MiQ== dependencies: "@babel/runtime" "^7.7.2" @@ -1918,7 +1864,7 @@ "@jimp/png@^0.16.13": version "0.16.13" - resolved "https://registry.npmjs.org/@jimp/png/-/png-0.16.13.tgz" + resolved "https://registry.yarnpkg.com/@jimp/png/-/png-0.16.13.tgz#8b130cc5e1e754c074c42fa3fe2609897cefdf7c" integrity sha512-8cGqINvbWJf1G0Her9zbq9I80roEX0A+U45xFby3tDWfzn+Zz8XKDF1Nv9VUwVx0N3zpcG1RPs9hfheG4Cq2kg== dependencies: "@babel/runtime" "^7.7.2" @@ -1927,7 +1873,7 @@ "@jimp/tiff@^0.16.13": version "0.16.13" - resolved "https://registry.npmjs.org/@jimp/tiff/-/tiff-0.16.13.tgz" + resolved "https://registry.yarnpkg.com/@jimp/tiff/-/tiff-0.16.13.tgz#9cf8d19f2b0b0c46758e81acfc7d656835ee6da1" integrity sha512-oJY8d9u95SwW00VPHuCNxPap6Q1+E/xM5QThb9Hu+P6EGuu6lIeLaNBMmFZyblwFbwrH+WBOZlvIzDhi4Dm/6Q== dependencies: "@babel/runtime" "^7.7.2" @@ -1935,7 +1881,7 @@ "@jimp/types@^0.16.1": version "0.16.13" - resolved "https://registry.npmjs.org/@jimp/types/-/types-0.16.13.tgz" + resolved "https://registry.yarnpkg.com/@jimp/types/-/types-0.16.13.tgz#39be1886cbfa4fb5e77e17441a046a1f961d3046" integrity sha512-mC0yVNUobFDjoYLg4hoUwzMKgNlxynzwt3cDXzumGvRJ7Kb8qQGOWJQjQFo5OxmGExqzPphkirdbBF88RVLBCg== dependencies: "@babel/runtime" "^7.7.2" @@ -1948,7 +1894,7 @@ "@jimp/utils@^0.16.13": version "0.16.13" - resolved "https://registry.npmjs.org/@jimp/utils/-/utils-0.16.13.tgz" + resolved "https://registry.yarnpkg.com/@jimp/utils/-/utils-0.16.13.tgz#afde41b9c6cdadfb45d83cb5e16deb65f369bf99" integrity sha512-VyCpkZzFTHXtKgVO35iKN0sYR10psGpV6SkcSeV4oF7eSYlR8Bl6aQLCzVeFjvESF7mxTmIiI3/XrMobVrtxDA== dependencies: "@babel/runtime" "^7.7.2" @@ -1956,7 +1902,7 @@ "@jridgewell/gen-mapping@^0.3.2", "@jridgewell/gen-mapping@^0.3.5": version "0.3.5" - resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== dependencies: "@jridgewell/set-array" "^1.2.1" @@ -1965,17 +1911,17 @@ "@jridgewell/resolve-uri@^3.1.0": version "3.1.2" - resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== "@jridgewell/set-array@^1.2.1": version "1.2.1" - resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== "@jridgewell/source-map@^0.3.3": version "0.3.6" - resolved "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz" + resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.6.tgz#9d71ca886e32502eb9362c9a74a46787c36df81a" integrity sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ== dependencies: "@jridgewell/gen-mapping" "^0.3.5" @@ -1983,32 +1929,37 @@ "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": version "1.5.0" - resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a" integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== "@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": version "0.3.25" - resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== dependencies: "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" -"@noble/curves@1.6.0", "@noble/curves@^1.4.0", "@noble/curves@~1.6.0": - version "1.6.0" - resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.6.0.tgz" - integrity sha512-TlaHRXDehJuRNR9TfZDNQ45mMEd5dwUwmicsafcIX4SsNiqnCHKjE/1alYPd/lDRVhxdhUAlv8uEhMCI5zjIJQ== +"@noble/curves@1.7.0", "@noble/curves@^1.4.0", "@noble/curves@^1.6.0", "@noble/curves@~1.7.0": + version "1.7.0" + resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.7.0.tgz#0512360622439256df892f21d25b388f52505e45" + integrity sha512-UTMhXK9SeDhFJVrHeUJ5uZlI6ajXg10O6Ddocf9S6GjbSBVZsJo88HzKwXznNfGpMTRDyJkqMjNDPYgf0qFWnw== dependencies: - "@noble/hashes" "1.5.0" + "@noble/hashes" "1.6.0" -"@noble/hashes@1.5.0", "@noble/hashes@^1.4.0", "@noble/hashes@~1.5.0": - version "1.5.0" - resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.5.0.tgz" - integrity sha512-1j6kQFb7QRru7eKN3ZDvRcP13rugwdxZqCjbiAVZfIJwgj2A65UmT4TgARXGlXgnRkORLTDTrO19ZErt7+QXgA== +"@noble/hashes@1.6.0": + version "1.6.0" + resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.6.0.tgz#d4bfb516ad6e7b5111c216a5cc7075f4cf19e6c5" + integrity sha512-YUULf0Uk4/mAA89w+k3+yUYh6NrEvxZa5T6SY3wlMvE2chHkxFUUIDI8/XW1QSC357iA5pSnqt7XEhvFOqmDyQ== + +"@noble/hashes@1.6.1", "@noble/hashes@^1.4.0", "@noble/hashes@^1.5.0", "@noble/hashes@~1.6.0": + version "1.6.1" + resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.6.1.tgz#df6e5943edcea504bac61395926d6fd67869a0d5" + integrity sha512-pq5D8h10hHBjyqX+cfBm0i8JUXJ0UhczFc4r74zbuT9XgewFo2E3J1cOaGtdZynILNmQ685YWGzGE1Zv6io50w== "@nodelib/fs.scandir@2.1.5": version "2.1.5" - resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== dependencies: "@nodelib/fs.stat" "2.0.5" @@ -2016,12 +1967,12 @@ "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": version "2.0.5" - resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== "@nodelib/fs.walk@^1.2.3": version "1.2.8" - resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== dependencies: "@nodelib/fs.scandir" "2.1.5" @@ -2029,31 +1980,38 @@ "@npmcli/fs@^3.1.0": version "3.1.1" - resolved "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.1.tgz" + resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-3.1.1.tgz#59cdaa5adca95d135fc00f2bb53f5771575ce726" integrity sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg== dependencies: semver "^7.3.5" "@pkgjs/parseargs@^0.11.0": version "0.11.0" - resolved "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz" + resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== -"@privy-io/api-base@1.4.0", "@privy-io/api-base@^1.4.0": +"@privy-io/api-base@1.4.0": version "1.4.0" - resolved "https://registry.npmjs.org/@privy-io/api-base/-/api-base-1.4.0.tgz" + resolved "https://registry.yarnpkg.com/@privy-io/api-base/-/api-base-1.4.0.tgz#2e3485ef1398c26302a76d0b941c3900002412a0" integrity sha512-8Pm/8bx6WvNt8uLtYOOj9acYL+JjUJxeChlBEvSywmre1l5o8naK6J4SeAb5v8b8p4178VNI4AYhd+rFh4HCsA== dependencies: zod "^3.21.4" +"@privy-io/api-base@^1.4.0": + version "1.4.1" + resolved "https://registry.yarnpkg.com/@privy-io/api-base/-/api-base-1.4.1.tgz#78884201434dbbef60ae43abf19c27f9f03ef84d" + integrity sha512-q98uQGVBIY5SBHjJWL/udpbxM9ISpZl8Lwwjd0p0XHSMJMOgEhS4GLjcO7l3clfNrqL0fAuinQaa+seCaYOzng== + dependencies: + zod "^3.21.4" + "@privy-io/expo-native-extensions@^0.0.3": version "0.0.3" - resolved "https://registry.npmjs.org/@privy-io/expo-native-extensions/-/expo-native-extensions-0.0.3.tgz" + resolved "https://registry.yarnpkg.com/@privy-io/expo-native-extensions/-/expo-native-extensions-0.0.3.tgz#6398ad2b1b825e1dc168e85c2232da953059ada3" integrity sha512-T6WgIISeSxj5Yf4kpo/YhyjTG4XASW0ky0vjHRZeqPSCrFjQm4ziIn5RMPFAHUaS8inKPM6FjSZgrcdA4a2adw== "@privy-io/expo@^0.29.3": version "0.29.3" - resolved "https://registry.npmjs.org/@privy-io/expo/-/expo-0.29.3.tgz" + resolved "https://registry.yarnpkg.com/@privy-io/expo/-/expo-0.29.3.tgz#5d26b654f0c627d75ca6e178f9476dbf3ffecfe3" integrity sha512-qwxCnYqw+v5w74db82t1V/J+E6ccFMR0hKHuZVluOa6bxpki0bSc4EgaWDRnjeWxJbSGafK20UxaiWJCvq4Mng== dependencies: "@privy-io/js-sdk-core" "0.30.3" @@ -2062,7 +2020,7 @@ "@privy-io/js-sdk-core@0.30.3": version "0.30.3" - resolved "https://registry.npmjs.org/@privy-io/js-sdk-core/-/js-sdk-core-0.30.3.tgz" + resolved "https://registry.yarnpkg.com/@privy-io/js-sdk-core/-/js-sdk-core-0.30.3.tgz#9ca4a81fd6efdfdc0f54c73a0cbfb35bb678228c" integrity sha512-g/h3YABDiQ9rG555gax7vYwBVrWos9Uh8DNzGBxwjECYRGGkuNuVY8Nc9gq3TBeQySUAKRFfWgSDCHtq7uDXRQ== dependencies: "@ethersproject/abstract-signer" "^5.7.0" @@ -2083,7 +2041,7 @@ "@privy-io/public-api@2.11.6": version "2.11.6" - resolved "https://registry.npmjs.org/@privy-io/public-api/-/public-api-2.11.6.tgz" + resolved "https://registry.yarnpkg.com/@privy-io/public-api/-/public-api-2.11.6.tgz#0706b8f42d762ef1132c405e5dec4939d9e8b4b3" integrity sha512-0xv9XpStuMPnZ8lJUXwybuzu3o1EW2iKtezIurM3X34d84wcYprdjEpcya8jZIzqozYrht2+3T2bnryvO3HrXA== dependencies: "@privy-io/api-base" "1.4.0" @@ -2094,14 +2052,14 @@ "@radix-ui/react-compose-refs@1.0.0": version "1.0.0" - resolved "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.0.tgz#37595b1f16ec7f228d698590e78eeed18ff218ae" integrity sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA== dependencies: "@babel/runtime" "^7.13.10" "@radix-ui/react-slot@1.0.1": version "1.0.1" - resolved "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/@radix-ui/react-slot/-/react-slot-1.0.1.tgz#e7868c669c974d649070e9ecbec0b367ee0b4d81" integrity sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw== dependencies: "@babel/runtime" "^7.13.10" @@ -2109,19 +2067,19 @@ "@react-native-async-storage/async-storage@1.23.1": version "1.23.1" - resolved "https://registry.npmjs.org/@react-native-async-storage/async-storage/-/async-storage-1.23.1.tgz" + resolved "https://registry.yarnpkg.com/@react-native-async-storage/async-storage/-/async-storage-1.23.1.tgz#cad3cd4fab7dacfe9838dce6ecb352f79150c883" integrity sha512-Qd2kQ3yi6Y3+AcUlrHxSLlnBvpdCEMVGFlVBneVOjaFaPU61g1huc38g339ysXspwY1QZA2aNhrk/KlHGO+ewA== dependencies: merge-options "^3.0.4" "@react-native-clipboard/clipboard@^1.14.2": - version "1.14.2" - resolved "https://registry.npmjs.org/@react-native-clipboard/clipboard/-/clipboard-1.14.2.tgz" - integrity sha512-Mb58f3neB6sM9oOtKYVGLvN8KVByea67OA9ekJ0c9FwdH24INu8RJoA7/fq+PRk+7oxbeamAcEoQPRv0uwbbMw== + version "1.15.0" + resolved "https://registry.yarnpkg.com/@react-native-clipboard/clipboard/-/clipboard-1.15.0.tgz#dcd47279b159289f11b31edf976723ad3984e0ce" + integrity sha512-YDMC3E956jn9zE11uKGcQDKS1SO9q72iNHxZyrKY5y9XYwZcA9vo3Xk74+zRnf7cM48drDO0s9lyAPUlOvyhrw== "@react-native-community/cli-clean@13.6.9": version "13.6.9" - resolved "https://registry.npmjs.org/@react-native-community/cli-clean/-/cli-clean-13.6.9.tgz" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-13.6.9.tgz#b6754f39c2b877c9d730feb848945150e1d52209" integrity sha512-7Dj5+4p9JggxuVNOjPbduZBAP1SUgNhLKVw5noBUzT/3ZpUZkDM+RCSwyoyg8xKWoE4OrdUAXwAFlMcFDPKykA== dependencies: "@react-native-community/cli-tools" "13.6.9" @@ -2131,7 +2089,7 @@ "@react-native-community/cli-config@13.6.9": version "13.6.9" - resolved "https://registry.npmjs.org/@react-native-community/cli-config/-/cli-config-13.6.9.tgz" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-13.6.9.tgz#d609a64d40a173c89bd7d24e31807bb7dcba69f9" integrity sha512-rFfVBcNojcMm+KKHE/xqpqXg8HoKl4EC7bFHUrahMJ+y/tZll55+oX/PGG37rzB8QzP2UbMQ19DYQKC1G7kXeg== dependencies: "@react-native-community/cli-tools" "13.6.9" @@ -2143,14 +2101,14 @@ "@react-native-community/cli-debugger-ui@13.6.9": version "13.6.9" - resolved "https://registry.npmjs.org/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-13.6.9.tgz" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-13.6.9.tgz#bc5727c51964206a00d417e5148b46331a81d5a5" integrity sha512-TkN7IdFmGPPvTpAo3nCAH9uwGCPxWBEAwpqEZDrq0NWllI7Tdie8vDpGdrcuCcKalmhq6OYnkXzeBah7O1Ztpw== dependencies: serve-static "^1.13.1" "@react-native-community/cli-doctor@13.6.9": version "13.6.9" - resolved "https://registry.npmjs.org/@react-native-community/cli-doctor/-/cli-doctor-13.6.9.tgz" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-13.6.9.tgz#f1d4eeff427ddc8a9d19851042621c10939c35cb" integrity sha512-5quFaLdWFQB+677GXh5dGU9I5eg2z6Vg4jOX9vKnc9IffwyIFAyJfCZHrxLSRPDGNXD7biDQUdoezXYGwb6P/A== dependencies: "@react-native-community/cli-config" "13.6.9" @@ -2173,7 +2131,7 @@ "@react-native-community/cli-hermes@13.6.9": version "13.6.9" - resolved "https://registry.npmjs.org/@react-native-community/cli-hermes/-/cli-hermes-13.6.9.tgz" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-hermes/-/cli-hermes-13.6.9.tgz#88c8dfe936a0d4272efc54429eda9ccc3fca3ad8" integrity sha512-GvwiwgvFw4Ws+krg2+gYj8sR3g05evmNjAHkKIKMkDTJjZ8EdyxbkifRUs1ZCq3TMZy2oeblZBXCJVOH4W7ZbA== dependencies: "@react-native-community/cli-platform-android" "13.6.9" @@ -2183,7 +2141,7 @@ "@react-native-community/cli-platform-android@13.6.9": version "13.6.9" - resolved "https://registry.npmjs.org/@react-native-community/cli-platform-android/-/cli-platform-android-13.6.9.tgz" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-13.6.9.tgz#b175b9b11334fc90da3f395432678bd53c30fae4" integrity sha512-9KsYGdr08QhdvT3Ht7e8phQB3gDX9Fs427NJe0xnoBh+PDPTI2BD5ks5ttsH8CzEw8/P6H8tJCHq6hf2nxd9cw== dependencies: "@react-native-community/cli-tools" "13.6.9" @@ -2195,7 +2153,7 @@ "@react-native-community/cli-platform-apple@13.6.9": version "13.6.9" - resolved "https://registry.npmjs.org/@react-native-community/cli-platform-apple/-/cli-platform-apple-13.6.9.tgz" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-apple/-/cli-platform-apple-13.6.9.tgz#02fb5dc47d62acd85f4d7a852e93216927a772fa" integrity sha512-KoeIHfhxMhKXZPXmhQdl6EE+jGKWwoO9jUVWgBvibpVmsNjo7woaG/tfJMEWfWF3najX1EkQAoJWpCDBMYWtlA== dependencies: "@react-native-community/cli-tools" "13.6.9" @@ -2207,14 +2165,14 @@ "@react-native-community/cli-platform-ios@13.6.9": version "13.6.9" - resolved "https://registry.npmjs.org/@react-native-community/cli-platform-ios/-/cli-platform-ios-13.6.9.tgz" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-13.6.9.tgz#f37ceab41c2302e8f0d4bcbd3bf58b3353db4306" integrity sha512-CiUcHlGs8vE0CAB4oi1f+dzniqfGuhWPNrDvae2nm8dewlahTBwIcK5CawyGezjcJoeQhjBflh9vloska+nlnw== dependencies: "@react-native-community/cli-platform-apple" "13.6.9" "@react-native-community/cli-server-api@13.6.9": version "13.6.9" - resolved "https://registry.npmjs.org/@react-native-community/cli-server-api/-/cli-server-api-13.6.9.tgz" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-13.6.9.tgz#269e666bc26e9d0b2f42c7f6099559b5f9259e9d" integrity sha512-W8FSlCPWymO+tlQfM3E0JmM8Oei5HZsIk5S0COOl0MRi8h0NmHI4WSTF2GCfbFZkcr2VI/fRsocoN8Au4EZAug== dependencies: "@react-native-community/cli-debugger-ui" "13.6.9" @@ -2229,7 +2187,7 @@ "@react-native-community/cli-tools@13.6.9": version "13.6.9" - resolved "https://registry.npmjs.org/@react-native-community/cli-tools/-/cli-tools-13.6.9.tgz" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-13.6.9.tgz#2baee279358ba1a863e737b2fa9f45659ad91929" integrity sha512-OXaSjoN0mZVw3nrAwcY1PC0uMfyTd9fz7Cy06dh+EJc+h0wikABsVRzV8cIOPrVV+PPEEXE0DBrH20T2puZzgQ== dependencies: appdirsjs "^1.2.4" @@ -2246,14 +2204,14 @@ "@react-native-community/cli-types@13.6.9": version "13.6.9" - resolved "https://registry.npmjs.org/@react-native-community/cli-types/-/cli-types-13.6.9.tgz" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-13.6.9.tgz#08bfb796eacf0daeb31e2de516e81e78a36a1a55" integrity sha512-RLxDppvRxXfs3hxceW/mShi+6o5yS+kFPnPqZTaMKKR5aSg7LwDpLQW4K2D22irEG8e6RKDkZUeH9aL3vO2O0w== dependencies: joi "^17.2.1" "@react-native-community/cli@13.6.9": version "13.6.9" - resolved "https://registry.npmjs.org/@react-native-community/cli/-/cli-13.6.9.tgz" + resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-13.6.9.tgz#ba6360b94e0aba9c4001bda256cf7e57e2ecb02c" integrity sha512-hFJL4cgLPxncJJd/epQ4dHnMg5Jy/7Q56jFvA3MHViuKpzzfTCJCB+pGY54maZbtym53UJON9WTGpM3S81UfjQ== dependencies: "@react-native-community/cli-clean" "13.6.9" @@ -2276,29 +2234,29 @@ "@react-native-community/slider@4.5.2": version "4.5.2" - resolved "https://registry.npmjs.org/@react-native-community/slider/-/slider-4.5.2.tgz" + resolved "https://registry.yarnpkg.com/@react-native-community/slider/-/slider-4.5.2.tgz#c3835788dbc1bd83d3778b83ca15533c805db149" integrity sha512-DbFyCyI7rwl0FkBkp0lzEVp+5mNfS5qU/nM2sK2aSguWhj0Odkt1aKHP2iW/ljruOhgS/O4dEixXlne4OdZJDQ== "@react-native-masked-view/masked-view@^0.3.1": - version "0.3.1" - resolved "https://registry.npmjs.org/@react-native-masked-view/masked-view/-/masked-view-0.3.1.tgz" - integrity sha512-uVm8U6nwFIlUd1iDIB5cS+lDadApKR+l8k4k84d9hn+GN4lzAIJhUZ9syYX7c022MxNgAlbxoFLt0pqKoyaAGg== + version "0.3.2" + resolved "https://registry.yarnpkg.com/@react-native-masked-view/masked-view/-/masked-view-0.3.2.tgz#7064533a573e3539ec912f59c1f457371bf49dd9" + integrity sha512-XwuQoW7/GEgWRMovOQtX3A4PrXhyaZm0lVUiY8qJDvdngjLms9Cpdck6SmGAUNqQwcj2EadHC1HwL0bEyoa/SQ== "@react-native/assets-registry@0.74.87": version "0.74.87" - resolved "https://registry.npmjs.org/@react-native/assets-registry/-/assets-registry-0.74.87.tgz" + resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.74.87.tgz#7dda64e48db14597e19e15f679e31abbb1c1fb4d" integrity sha512-1XmRhqQchN+pXPKEKYdpJlwESxVomJOxtEnIkbo7GAlaN2sym84fHEGDXAjLilih5GVPpcpSmFzTy8jx3LtaFg== "@react-native/babel-plugin-codegen@0.74.87": version "0.74.87" - resolved "https://registry.npmjs.org/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.74.87.tgz" + resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.74.87.tgz#44457f4de69911f37a6ac308a7783203a757574a" integrity sha512-+vJYpMnENFrwtgvDfUj+CtVJRJuUnzAUYT0/Pb68Sq9RfcZ5xdcCuUgyf7JO+akW2VTBoJY427wkcxU30qrWWw== dependencies: "@react-native/codegen" "0.74.87" "@react-native/babel-preset@0.74.87": version "0.74.87" - resolved "https://registry.npmjs.org/@react-native/babel-preset/-/babel-preset-0.74.87.tgz" + resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.74.87.tgz#3d74517d2ea8898f83b5106027033607d5bda50d" integrity sha512-hyKpfqzN2nxZmYYJ0tQIHG99FQO0OWXp/gVggAfEUgiT+yNKas1C60LuofUsK7cd+2o9jrpqgqW4WzEDZoBlTg== dependencies: "@babel/core" "^7.20.0" @@ -2347,7 +2305,7 @@ "@react-native/codegen@0.74.87": version "0.74.87" - resolved "https://registry.npmjs.org/@react-native/codegen/-/codegen-0.74.87.tgz" + resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.74.87.tgz#47f07a627d0294c8270a03aee098991ed91f8ae9" integrity sha512-GMSYDiD+86zLKgMMgz9z0k6FxmRn+z6cimYZKkucW4soGbxWsbjUAZoZ56sJwt2FJ3XVRgXCrnOCgXoH/Bkhcg== dependencies: "@babel/parser" "^7.20.0" @@ -2360,7 +2318,7 @@ "@react-native/community-cli-plugin@0.74.87": version "0.74.87" - resolved "https://registry.npmjs.org/@react-native/community-cli-plugin/-/community-cli-plugin-0.74.87.tgz" + resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.74.87.tgz#4d9798d51381912f3771acded9b6b2804987e952" integrity sha512-EgJG9lSr8x3X67dHQKQvU6EkO+3ksVlJHYIVv6U/AmW9dN80BEFxgYbSJ7icXS4wri7m4kHdgeq2PQ7/3vvrTQ== dependencies: "@react-native-community/cli-server-api" "13.6.9" @@ -2378,17 +2336,17 @@ "@react-native/debugger-frontend@0.74.85": version "0.74.85" - resolved "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.74.85.tgz" + resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.74.85.tgz#a7af94a7b81cb59f241fd1771d1b083445329700" integrity sha512-gUIhhpsYLUTYWlWw4vGztyHaX/kNlgVspSvKe2XaPA7o3jYKUoNLc3Ov7u70u/MBWfKdcEffWq44eSe3j3s5JQ== "@react-native/debugger-frontend@0.74.87": version "0.74.87" - resolved "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.74.87.tgz" + resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.74.87.tgz#0bb4f4f54365d04fc975349d5f635cb575f6a5d8" integrity sha512-MN95DJLYTv4EqJc+9JajA3AJZSBYJz2QEJ3uWlHrOky2vKrbbRVaW1ityTmaZa2OXIvNc6CZwSRSE7xCoHbXhQ== "@react-native/dev-middleware@0.74.85": version "0.74.85" - resolved "https://registry.npmjs.org/@react-native/dev-middleware/-/dev-middleware-0.74.85.tgz" + resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.74.85.tgz#eca35aceb882b1111385f7c20f1aad7a33a2734e" integrity sha512-BRmgCK5vnMmHaKRO+h8PKJmHHH3E6JFuerrcfE3wG2eZ1bcSr+QTu8DAlpxsDWvJvHpCi8tRJGauxd+Ssj/c7w== dependencies: "@isaacs/ttlcache" "^1.4.1" @@ -2407,7 +2365,7 @@ "@react-native/dev-middleware@0.74.87": version "0.74.87" - resolved "https://registry.npmjs.org/@react-native/dev-middleware/-/dev-middleware-0.74.87.tgz" + resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.74.87.tgz#254807b579a3015ced659a14c374dbf029a9c04e" integrity sha512-7TmZ3hTHwooYgIHqc/z87BMe1ryrIqAUi+AF7vsD+EHCGxHFdMjSpf1BZ2SUPXuLnF2cTiTfV2RwhbPzx0tYIA== dependencies: "@isaacs/ttlcache" "^1.4.1" @@ -2426,17 +2384,17 @@ "@react-native/gradle-plugin@0.74.87": version "0.74.87" - resolved "https://registry.npmjs.org/@react-native/gradle-plugin/-/gradle-plugin-0.74.87.tgz" + resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.74.87.tgz#a66c01fda7a938a116dc27447f0ccce285796b2a" integrity sha512-T+VX0N1qP+U9V4oAtn7FTX7pfsoVkd1ocyw9swYXgJqU2fK7hC9famW7b3s3ZiufPGPr1VPJe2TVGtSopBjL6A== "@react-native/js-polyfills@0.74.87": version "0.74.87" - resolved "https://registry.npmjs.org/@react-native/js-polyfills/-/js-polyfills-0.74.87.tgz" + resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.74.87.tgz#d28090a4dae417a2e9ad14e065fcf8cf52cc482c" integrity sha512-M5Evdn76CuVEF0GsaXiGi95CBZ4IWubHqwXxV9vG9CC9kq0PSkoM2Pn7Lx7dgyp4vT7ccJ8a3IwHbe+5KJRnpw== "@react-native/metro-babel-transformer@0.74.87": version "0.74.87" - resolved "https://registry.npmjs.org/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.74.87.tgz" + resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.74.87.tgz#f60958f5e7eb39008a2c01dc5248ab60240bdc01" integrity sha512-UsJCO24sNax2NSPBmV1zLEVVNkS88kcgAiYrZHtYSwSjpl4WZ656tIeedBfiySdJ94Hr3kQmBYLipV5zk0NI1A== dependencies: "@babel/core" "^7.20.0" @@ -2444,29 +2402,24 @@ hermes-parser "0.19.1" nullthrows "^1.1.1" -"@react-native/normalize-colors@0.74.84": - version "0.74.84" - resolved "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.74.84.tgz" - integrity sha512-Y5W6x8cC5RuakUcTVUFNAIhUZ/tYpuqHZlRBoAuakrTwVuoNHXfQki8lj1KsYU7rW6e3VWgdEx33AfOQpdNp6A== - "@react-native/normalize-colors@0.74.85": version "0.74.85" - resolved "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.74.85.tgz" + resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.74.85.tgz#62bcb9ab1b10b822ca0278fdfdf23d3b18e125da" integrity sha512-pcE4i0X7y3hsAE0SpIl7t6dUc0B0NZLd1yv7ssm4FrLhWG+CGyIq4eFDXpmPU1XHmL5PPySxTAjEMiwv6tAmOw== "@react-native/normalize-colors@0.74.87": version "0.74.87" - resolved "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.74.87.tgz" + resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.74.87.tgz#a814169d0ce4ce13ffebcda0a3a5a3f780ccd772" integrity sha512-Xh7Nyk/MPefkb0Itl5Z+3oOobeG9lfLb7ZOY2DKpFnoCE1TzBmib9vMNdFaLdSxLIP+Ec6icgKtdzYg8QUPYzA== "@react-native/normalize-colors@^0.74.1": version "0.74.88" - resolved "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.74.88.tgz" + resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.74.88.tgz#46f4c7270c8e6853281d7dd966e0eb362068e41a" integrity sha512-He5oTwPBxvXrxJ91dZzpxR7P+VYmc9IkJfhuH8zUiU50ckrt+xWNjtVugPdUv4LuVjmZ36Vk2EX8bl1gVn2dVA== "@react-native/virtualized-lists@0.74.87": version "0.74.87" - resolved "https://registry.npmjs.org/@react-native/virtualized-lists/-/virtualized-lists-0.74.87.tgz" + resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.74.87.tgz#31bc44d62617df7d893df22c4c57094f576677a0" integrity sha512-lsGxoFMb0lyK/MiplNKJpD+A1EoEUumkLrCjH4Ht+ZlG8S0BfCxmskLZ6qXn3BiDSkLjfjI/qyZ3pnxNBvkXpQ== dependencies: invariant "^2.2.4" @@ -2474,7 +2427,7 @@ "@react-navigation/bottom-tabs@~6.5.7": version "6.5.20" - resolved "https://registry.npmjs.org/@react-navigation/bottom-tabs/-/bottom-tabs-6.5.20.tgz" + resolved "https://registry.yarnpkg.com/@react-navigation/bottom-tabs/-/bottom-tabs-6.5.20.tgz#5335e75b02c527ef0569bd97d4f9185d65616e49" integrity sha512-ow6Z06iS4VqBO8d7FP+HsGjJLWt2xTWIvuWjpoCvsM/uQXzCRDIjBv9HaKcXbF0yTW7IMir0oDAbU5PFzEDdgA== dependencies: "@react-navigation/elements" "^1.3.30" @@ -2483,7 +2436,7 @@ "@react-navigation/core@^6.4.17": version "6.4.17" - resolved "https://registry.npmjs.org/@react-navigation/core/-/core-6.4.17.tgz" + resolved "https://registry.yarnpkg.com/@react-navigation/core/-/core-6.4.17.tgz#f277a196b578c8a456efcc563d1c9bd87eb4ab04" integrity sha512-Nd76EpomzChWAosGqWOYE3ItayhDzIEzzZsT7PfGcRFDgW5miHV2t4MZcq9YIK4tzxZjVVpYbIynOOQQd1e0Cg== dependencies: "@react-navigation/routers" "^6.1.9" @@ -2495,12 +2448,12 @@ "@react-navigation/elements@^1.3.30": version "1.3.31" - resolved "https://registry.npmjs.org/@react-navigation/elements/-/elements-1.3.31.tgz" + resolved "https://registry.yarnpkg.com/@react-navigation/elements/-/elements-1.3.31.tgz#28dd802a0787bb03fc0e5be296daf1804dbebbcf" integrity sha512-bUzP4Awlljx5RKEExw8WYtif8EuQni2glDaieYROKTnaxsu9kEIA515sXQgUDZU4Ob12VoL7+z70uO3qrlfXcQ== "@react-navigation/material-top-tabs@^6.6.14": version "6.6.14" - resolved "https://registry.npmjs.org/@react-navigation/material-top-tabs/-/material-top-tabs-6.6.14.tgz" + resolved "https://registry.yarnpkg.com/@react-navigation/material-top-tabs/-/material-top-tabs-6.6.14.tgz#48877ba5e1038d089439fede39ac5aab99c13c28" integrity sha512-kfNQt3BInQusEc8A+PDWaKmRQNaCrSqngcOQwUe1uNizJdZJEFdfaInivtBFW2LcQqtzgIHK/am2TgK0Pos6og== dependencies: color "^4.2.3" @@ -2508,7 +2461,7 @@ "@react-navigation/native-stack@~6.9.12": version "6.9.26" - resolved "https://registry.npmjs.org/@react-navigation/native-stack/-/native-stack-6.9.26.tgz" + resolved "https://registry.yarnpkg.com/@react-navigation/native-stack/-/native-stack-6.9.26.tgz#90facf7783c9927f094bc9f01c613af75b6c241e" integrity sha512-++dueQ+FDj2XkZ902DVrK79ub1vp19nSdAZWxKRgd6+Bc0Niiesua6rMCqymYOVaYh+dagwkA9r00bpt/U5WLw== dependencies: "@react-navigation/elements" "^1.3.30" @@ -2516,7 +2469,7 @@ "@react-navigation/native@^6.0.2", "@react-navigation/native@~6.1.6": version "6.1.18" - resolved "https://registry.npmjs.org/@react-navigation/native/-/native-6.1.18.tgz" + resolved "https://registry.yarnpkg.com/@react-navigation/native/-/native-6.1.18.tgz#338fa9afa2c89feec1d3eac41c963840d8d6f106" integrity sha512-mIT9MiL/vMm4eirLcmw2h6h/Nm5FICtnYSdohq4vTLA2FF/6PNhByM7s8ffqoVfE5L0uAa6Xda1B7oddolUiGg== dependencies: "@react-navigation/core" "^6.4.17" @@ -2526,15 +2479,15 @@ "@react-navigation/routers@^6.1.9": version "6.1.9" - resolved "https://registry.npmjs.org/@react-navigation/routers/-/routers-6.1.9.tgz" + resolved "https://registry.yarnpkg.com/@react-navigation/routers/-/routers-6.1.9.tgz#73f5481a15a38e36592a0afa13c3c064b9f90bed" integrity sha512-lTM8gSFHSfkJvQkxacGM6VJtBt61ip2XO54aNfswD+KMw6eeZ4oehl7m0me3CR9hnDE4+60iAZR8sAhvCiI3NA== dependencies: nanoid "^3.1.23" "@reduxjs/toolkit@^2.2.7": - version "2.2.8" - resolved "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.2.8.tgz" - integrity sha512-eK/ieXftPRQfaBSmzsamXEyDwkntMTY0e9SG5ETsEOv5JIPKhu3mj992t6B8FJjlnSrZBAAqdT8oMkPe4j+P9g== + version "2.5.0" + resolved "https://registry.yarnpkg.com/@reduxjs/toolkit/-/toolkit-2.5.0.tgz#4679b09b4da211cb9a821803aabf86a13c96fbfa" + integrity sha512-awNe2oTodsZ6LmRqmkFhtb/KH03hUhxOamEQy411m3Njj3BbFvoBovxo4Q1cBWnV1ErprVj9MlF0UPXkng0eyg== dependencies: immer "^10.0.3" redux "^5.0.1" @@ -2542,11 +2495,11 @@ reselect "^5.1.0" "@remix-run/node@^2.7.2": - version "2.13.1" - resolved "https://registry.npmjs.org/@remix-run/node/-/node-2.13.1.tgz" - integrity sha512-2ly7bENj2n2FNBdEN60ZEbNCs5dAOex/QJoo6EZ8RNFfUQxVKAZkMwfQ4ETV2SLWDgkRLj3Jo5n/dx7O2ZGhGw== + version "2.15.1" + resolved "https://registry.yarnpkg.com/@remix-run/node/-/node-2.15.1.tgz#f57b06016f3a71cbdc47e89bdc08ac579e2a2f66" + integrity sha512-23xWN3/yOohNUr27KS7hEcDMbtufMkniXfXkcLx8Dz2wUVNfJYGpICjeV48Ue/INtpiUCCzOYwkL9VRjIMEJbA== dependencies: - "@remix-run/server-runtime" "2.13.1" + "@remix-run/server-runtime" "2.15.1" "@remix-run/web-fetch" "^4.4.2" "@web3-storage/multipart-parser" "^1.0.0" cookie-signature "^1.1.0" @@ -2554,17 +2507,17 @@ stream-slice "^0.1.2" undici "^6.11.1" -"@remix-run/router@1.20.0": - version "1.20.0" - resolved "https://registry.npmjs.org/@remix-run/router/-/router-1.20.0.tgz" - integrity sha512-mUnk8rPJBI9loFDZ+YzPGdeniYK+FTmRD1TMCz7ev2SNIozyKKpnGgsxO34u6Z4z/t0ITuu7voi/AshfsGsgFg== +"@remix-run/router@1.21.0": + version "1.21.0" + resolved "https://registry.yarnpkg.com/@remix-run/router/-/router-1.21.0.tgz#c65ae4262bdcfe415dbd4f64ec87676e4a56e2b5" + integrity sha512-xfSkCAchbdG5PnbrKqFWwia4Bi61nH+wm8wLEqfHDyp7Y3dZzgqS2itV8i4gAq9pC2HsTpwyBC6Ds8VHZ96JlA== -"@remix-run/server-runtime@2.13.1": - version "2.13.1" - resolved "https://registry.npmjs.org/@remix-run/server-runtime/-/server-runtime-2.13.1.tgz" - integrity sha512-2DfBPRcHKVzE4bCNsNkKB50BhCCKF73x+jiS836OyxSIAL+x0tguV2AEjmGXefEXc5AGGzoxkus0AUUEYa29Vg== +"@remix-run/server-runtime@2.15.1": + version "2.15.1" + resolved "https://registry.yarnpkg.com/@remix-run/server-runtime/-/server-runtime-2.15.1.tgz#1ebf96c351f3398d73856fae38dbd41fd45b2da2" + integrity sha512-TDM3rzax//N2F5uNMV5pNTWAop8cYul6hteDu+Xmfwys/eRGlbzEf7YJzyRj6Kcsg2TFVHI7+xEPItGAVm1hHA== dependencies: - "@remix-run/router" "1.20.0" + "@remix-run/router" "1.21.0" "@types/cookie" "^0.6.0" "@web3-storage/multipart-parser" "^1.0.0" cookie "^0.6.0" @@ -2574,7 +2527,7 @@ "@remix-run/web-blob@^3.1.0": version "3.1.0" - resolved "https://registry.npmjs.org/@remix-run/web-blob/-/web-blob-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/@remix-run/web-blob/-/web-blob-3.1.0.tgz#e0c669934c1eb6028960047e57a13ed38bbfb434" integrity sha512-owGzFLbqPH9PlKb8KvpNJ0NO74HWE2euAn61eEiyCXX/oteoVzTVSN8mpLgDjaxBf2btj5/nUllSUgpyd6IH6g== dependencies: "@remix-run/web-stream" "^1.1.0" @@ -2582,7 +2535,7 @@ "@remix-run/web-fetch@^4.4.2": version "4.4.2" - resolved "https://registry.npmjs.org/@remix-run/web-fetch/-/web-fetch-4.4.2.tgz" + resolved "https://registry.yarnpkg.com/@remix-run/web-fetch/-/web-fetch-4.4.2.tgz#ce7aedef72cc26e15060e8cf84674029f92809b6" integrity sha512-jgKfzA713/4kAW/oZ4bC3MoLWyjModOVDjFPNseVqcJKSafgIscrYL9G50SurEYLswPuoU3HzSbO0jQCMYWHhA== dependencies: "@remix-run/web-blob" "^3.1.0" @@ -2596,28 +2549,28 @@ "@remix-run/web-file@^3.1.0": version "3.1.0" - resolved "https://registry.npmjs.org/@remix-run/web-file/-/web-file-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/@remix-run/web-file/-/web-file-3.1.0.tgz#07219021a2910e90231bc30ca1ce693d0e9d3825" integrity sha512-dW2MNGwoiEYhlspOAXFBasmLeYshyAyhIdrlXBi06Duex5tDr3ut2LFKVj7tyHLmn8nnNwFf1BjNbkQpygC2aQ== dependencies: "@remix-run/web-blob" "^3.1.0" "@remix-run/web-form-data@^3.1.0": version "3.1.0" - resolved "https://registry.npmjs.org/@remix-run/web-form-data/-/web-form-data-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/@remix-run/web-form-data/-/web-form-data-3.1.0.tgz#47f9ad8ce8bf1c39ed83eab31e53967fe8e3df6a" integrity sha512-NdeohLMdrb+pHxMQ/Geuzdp0eqPbea+Ieo8M8Jx2lGC6TBHsgHzYcBvr0LyPdPVycNRDEpWpiDdCOdCryo3f9A== dependencies: web-encoding "1.1.5" "@remix-run/web-stream@^1.1.0": version "1.1.0" - resolved "https://registry.npmjs.org/@remix-run/web-stream/-/web-stream-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/@remix-run/web-stream/-/web-stream-1.1.0.tgz#b93a8f806c2c22204930837c44d81fdedfde079f" integrity sha512-KRJtwrjRV5Bb+pM7zxcTJkhIqWWSy+MYsIxHK+0m5atcznsf15YwUBWHWulZerV2+vvHH1Lp1DD7pw6qKW8SgA== dependencies: web-streams-polyfill "^3.1.1" "@rnx-kit/chromium-edge-launcher@^1.0.0": version "1.0.0" - resolved "https://registry.npmjs.org/@rnx-kit/chromium-edge-launcher/-/chromium-edge-launcher-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/@rnx-kit/chromium-edge-launcher/-/chromium-edge-launcher-1.0.0.tgz#c0df8ea00a902c7a417cd9655aab06de398b939c" integrity sha512-lzD84av1ZQhYUS+jsGqJiCMaJO2dn9u+RTT9n9q6D3SaKVwWqv+7AoRKqBu19bkwyE+iFRl1ymr40QS90jVFYg== dependencies: "@types/node" "^18.0.0" @@ -2627,31 +2580,31 @@ mkdirp "^1.0.4" rimraf "^3.0.2" -"@scure/base@~1.1.7", "@scure/base@~1.1.8": - version "1.1.9" - resolved "https://registry.npmjs.org/@scure/base/-/base-1.1.9.tgz" - integrity sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg== +"@scure/base@~1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.2.1.tgz#dd0b2a533063ca612c17aa9ad26424a2ff5aa865" + integrity sha512-DGmGtC8Tt63J5GfHgfl5CuAXh96VF/LD8K9Hr/Gv0J2lAoRGlPOMpqMpMbCTOoOJMZCk2Xt+DskdDyn6dEFdzQ== -"@scure/bip32@1.5.0": - version "1.5.0" - resolved "https://registry.npmjs.org/@scure/bip32/-/bip32-1.5.0.tgz" - integrity sha512-8EnFYkqEQdnkuGBVpCzKxyIwDCBLDVj3oiX0EKUFre/tOjL/Hqba1D6n/8RcmaQy4f95qQFrO2A8Sr6ybh4NRw== +"@scure/bip32@1.6.0", "@scure/bip32@^1.5.0": + version "1.6.0" + resolved "https://registry.yarnpkg.com/@scure/bip32/-/bip32-1.6.0.tgz#6dbc6b4af7c9101b351f41231a879d8da47e0891" + integrity sha512-82q1QfklrUUdXJzjuRU7iG7D7XiFx5PHYVS0+oeNKhyDLT7WPqs6pBcM2W5ZdwOwKCwoE1Vy1se+DHjcXwCYnA== dependencies: - "@noble/curves" "~1.6.0" - "@noble/hashes" "~1.5.0" - "@scure/base" "~1.1.7" + "@noble/curves" "~1.7.0" + "@noble/hashes" "~1.6.0" + "@scure/base" "~1.2.1" -"@scure/bip39@1.4.0": - version "1.4.0" - resolved "https://registry.npmjs.org/@scure/bip39/-/bip39-1.4.0.tgz" - integrity sha512-BEEm6p8IueV/ZTfQLp/0vhw4NPnT9oWf5+28nvmeUICjP99f4vr2d+qc7AVGDDtwRep6ifR43Yed9ERVmiITzw== +"@scure/bip39@1.5.0", "@scure/bip39@^1.4.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.5.0.tgz#c8f9533dbd787641b047984356531d84485f19be" + integrity sha512-Dop+ASYhnrwm9+HA/HwXg7j2ZqM6yk2fyLWb5znexjctFY3+E+eU8cIWI0Pql0Qx4hPZCijlGq4OL71g+Uz30A== dependencies: - "@noble/hashes" "~1.5.0" - "@scure/base" "~1.1.8" + "@noble/hashes" "~1.6.0" + "@scure/base" "~1.2.1" "@segment/loosely-validate-event@^2.0.0": version "2.0.0" - resolved "https://registry.npmjs.org/@segment/loosely-validate-event/-/loosely-validate-event-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/@segment/loosely-validate-event/-/loosely-validate-event-2.0.0.tgz#87dfc979e5b4e7b82c5f1d8b722dfd5d77644681" integrity sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw== dependencies: component-type "^1.2.1" @@ -2659,53 +2612,72 @@ "@sideway/address@^4.1.5": version "4.1.5" - resolved "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz" + resolved "https://registry.yarnpkg.com/@sideway/address/-/address-4.1.5.tgz#4bc149a0076623ced99ca8208ba780d65a99b9d5" integrity sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q== dependencies: "@hapi/hoek" "^9.0.0" "@sideway/formula@^3.0.1": version "3.0.1" - resolved "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.1.tgz#80fcbcbaf7ce031e0ef2dd29b1bfc7c3f583611f" integrity sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg== "@sideway/pinpoint@^2.0.0": version "2.0.0" - resolved "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== "@sinclair/typebox@^0.27.8": version "0.27.8" - resolved "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== "@sinonjs/commons@^3.0.0": version "3.0.1" - resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.1.tgz#1029357e44ca901a615585f6d27738dbc89084cd" integrity sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ== dependencies: type-detect "4.0.8" "@sinonjs/fake-timers@^10.0.2": version "10.3.0" - resolved "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz" + resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz#55fdff1ecab9f354019129daf4df0dd4d923ea66" integrity sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA== dependencies: "@sinonjs/commons" "^3.0.0" +"@tanstack/eslint-plugin-query@^5.62.1": + version "5.62.1" + resolved "https://registry.yarnpkg.com/@tanstack/eslint-plugin-query/-/eslint-plugin-query-5.62.1.tgz#5a5a504f3ba0d999468d404fc4d6e9fb58c4cdff" + integrity sha512-1886D5U+re1TW0wSH4/kUGG36yIoW5Wkz4twVEzlk3ZWmjF3XkRSWgB+Sc7n+Lyzt8usNV8ZqkZE6DA7IC47fQ== + dependencies: + "@typescript-eslint/utils" "^8.15.0" + +"@tanstack/query-core@5.62.7": + version "5.62.7" + resolved "https://registry.yarnpkg.com/@tanstack/query-core/-/query-core-5.62.7.tgz#c7f6d0131c08cd2f60e73ec6e7b70e2e9e335def" + integrity sha512-fgpfmwatsrUal6V+8EC2cxZIQVl9xvL7qYa03gsdsCy985UTUlS4N+/3hCzwR0PclYDqisca2AqR1BVgJGpUDA== + +"@tanstack/react-query@^5.62.2": + version "5.62.7" + resolved "https://registry.yarnpkg.com/@tanstack/react-query/-/react-query-5.62.7.tgz#8f253439a38ad6ce820bc6d42d89ca2556574d1a" + integrity sha512-+xCtP4UAFDTlRTYyEjLx0sRtWyr5GIk7TZjZwBu4YaNahi3Rt2oMyRqfpfVrtwsqY2sayP4iXVCwmC+ZqqFmuw== + dependencies: + "@tanstack/query-core" "5.62.7" + "@tokenizer/token@^0.3.0": version "0.3.0" - resolved "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz" + resolved "https://registry.yarnpkg.com/@tokenizer/token/-/token-0.3.0.tgz#fe98a93fe789247e998c75e74e9c7c63217aa276" integrity sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A== "@tootallnate/once@2": version "2.0.0" - resolved "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== "@types/babel__core@^7.1.14": version "7.20.5" - resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.5.tgz#3df15f27ba85319caa07ba08d0721889bb39c017" integrity sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA== dependencies: "@babel/parser" "^7.20.7" @@ -2716,14 +2688,14 @@ "@types/babel__generator@*": version "7.6.8" - resolved "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.8.tgz#f836c61f48b1346e7d2b0d93c6dacc5b9535d3ab" integrity sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw== dependencies: "@babel/types" "^7.0.0" "@types/babel__template@*": version "7.4.4" - resolved "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.4.tgz#5672513701c1b2199bc6dad636a9d7491586766f" integrity sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== dependencies: "@babel/parser" "^7.1.0" @@ -2731,94 +2703,94 @@ "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": version "7.20.6" - resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.6.tgz#8dc9f0ae0f202c08d8d4dab648912c8d6038e3f7" integrity sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg== dependencies: "@babel/types" "^7.20.7" "@types/cookie@^0.6.0": version "0.6.0" - resolved "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz" + resolved "https://registry.yarnpkg.com/@types/cookie/-/cookie-0.6.0.tgz#eac397f28bf1d6ae0ae081363eca2f425bedf0d5" integrity sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA== "@types/d3-array@^3.0.3": version "3.2.1" - resolved "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-array/-/d3-array-3.2.1.tgz#1f6658e3d2006c4fceac53fde464166859f8b8c5" integrity sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg== "@types/d3-color@*": version "3.1.3" - resolved "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-color/-/d3-color-3.1.3.tgz#368c961a18de721da8200e80bf3943fb53136af2" integrity sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A== "@types/d3-ease@^3.0.0": version "3.0.2" - resolved "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-ease/-/d3-ease-3.0.2.tgz#e28db1bfbfa617076f7770dd1d9a48eaa3b6c51b" integrity sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA== "@types/d3-interpolate@^3.0.1": version "3.0.4" - resolved "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz#412b90e84870285f2ff8a846c6eb60344f12a41c" integrity sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA== dependencies: "@types/d3-color" "*" "@types/d3-path@*": version "3.1.0" - resolved "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-path/-/d3-path-3.1.0.tgz#2b907adce762a78e98828f0b438eaca339ae410a" integrity sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ== "@types/d3-scale@^4.0.2": version "4.0.8" - resolved "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-scale/-/d3-scale-4.0.8.tgz#d409b5f9dcf63074464bf8ddfb8ee5a1f95945bb" integrity sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ== dependencies: "@types/d3-time" "*" "@types/d3-shape@^3.1.0": version "3.1.6" - resolved "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.6.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-shape/-/d3-shape-3.1.6.tgz#65d40d5a548f0a023821773e39012805e6e31a72" integrity sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA== dependencies: "@types/d3-path" "*" "@types/d3-time@*", "@types/d3-time@^3.0.0": - version "3.0.3" - resolved "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.3.tgz" - integrity sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw== + version "3.0.4" + resolved "https://registry.yarnpkg.com/@types/d3-time/-/d3-time-3.0.4.tgz#8472feecd639691450dd8000eb33edd444e1323f" + integrity sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g== "@types/d3-timer@^3.0.0": version "3.0.2" - resolved "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/@types/d3-timer/-/d3-timer-3.0.2.tgz#70bbda77dc23aa727413e22e214afa3f0e852f70" integrity sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw== "@types/graceful-fs@^4.1.3": version "4.1.9" - resolved "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz" + resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.9.tgz#2a06bc0f68a20ab37b3e36aa238be6abdf49e8b4" integrity sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ== dependencies: "@types/node" "*" "@types/hammerjs@^2.0.36": version "2.0.46" - resolved "https://registry.npmjs.org/@types/hammerjs/-/hammerjs-2.0.46.tgz" + resolved "https://registry.yarnpkg.com/@types/hammerjs/-/hammerjs-2.0.46.tgz#381daaca1360ff8a7c8dff63f32e69745b9fb1e1" integrity sha512-ynRvcq6wvqexJ9brDMS4BnBLzmr0e14d6ZJTEShTBWKymQiHwlAyGu0ZPEFI2Fh1U53F7tN9ufClWM5KvqkKOw== "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": version "2.0.6" - resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz#7739c232a1fee9b4d3ce8985f314c0c6d33549d7" integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w== "@types/istanbul-lib-report@*": version "3.0.3" - resolved "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz#53047614ae72e19fc0401d872de3ae2b4ce350bf" integrity sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA== dependencies: "@types/istanbul-lib-coverage" "*" "@types/istanbul-reports@^1.1.1": version "1.1.2" - resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz#e875cc689e47bce549ec81f3df5e6f6f11cfaeb2" integrity sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw== dependencies: "@types/istanbul-lib-coverage" "*" @@ -2826,22 +2798,22 @@ "@types/istanbul-reports@^3.0.0": version "3.0.4" - resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz#0f03e3d2f670fbdac586e34b433783070cc16f54" integrity sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ== dependencies: "@types/istanbul-lib-report" "*" "@types/jest@^29.5.12": - version "29.5.13" - resolved "https://registry.npmjs.org/@types/jest/-/jest-29.5.13.tgz" - integrity sha512-wd+MVEZCHt23V0/L642O5APvspWply/rGY5BcW4SUETo2UzPU3Z26qr8jC2qxpimI2jjx9h7+2cj2FwIr01bXg== + version "29.5.14" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.14.tgz#2b910912fa1d6856cadcd0c1f95af7df1d6049e5" + integrity sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ== dependencies: expect "^29.0.0" pretty-format "^29.0.0" "@types/jsdom@^20.0.0": version "20.0.1" - resolved "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz" + resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-20.0.1.tgz#07c14bc19bd2f918c1929541cdaacae894744808" integrity sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ== dependencies: "@types/node" "*" @@ -2850,68 +2822,68 @@ "@types/json-schema@^7.0.9": version "7.0.15" - resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== "@types/lodash@^4.14.53", "@types/lodash@^4.17.7": - version "4.17.10" - resolved "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.10.tgz" - integrity sha512-YpS0zzoduEhuOWjAotS6A5AVCva7X4lVlYLF0FYHAY9sdraBfnatttHItlWeZdGhuEkf+OzMNg2ZYAx8t+52uQ== + version "4.17.13" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.13.tgz#786e2d67cfd95e32862143abe7463a7f90c300eb" + integrity sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg== "@types/node-forge@^1.3.0": version "1.3.11" - resolved "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz" + resolved "https://registry.yarnpkg.com/@types/node-forge/-/node-forge-1.3.11.tgz#0972ea538ddb0f4d9c2fa0ec5db5724773a604da" integrity sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ== dependencies: "@types/node" "*" "@types/node@*": - version "22.7.5" - resolved "https://registry.npmjs.org/@types/node/-/node-22.7.5.tgz" - integrity sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ== + version "22.10.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.10.1.tgz#41ffeee127b8975a05f8c4f83fb89bcb2987d766" + integrity sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ== dependencies: - undici-types "~6.19.2" + undici-types "~6.20.0" "@types/node@16.9.1": version "16.9.1" - resolved "https://registry.npmjs.org/@types/node/-/node-16.9.1.tgz" + resolved "https://registry.yarnpkg.com/@types/node/-/node-16.9.1.tgz#0611b37db4246c937feef529ddcc018cf8e35708" integrity sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g== "@types/node@^10.11.7": version "10.17.60" - resolved "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz" + resolved "https://registry.yarnpkg.com/@types/node/-/node-10.17.60.tgz#35f3d6213daed95da7f0f73e75bcc6980e90597b" integrity sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw== "@types/node@^18.0.0": - version "18.19.55" - resolved "https://registry.npmjs.org/@types/node/-/node-18.19.55.tgz" - integrity sha512-zzw5Vw52205Zr/nmErSEkN5FLqXPuKX/k5d1D7RKHATGqU7y6YfX9QxZraUzUrFGqH6XzOzG196BC35ltJC4Cw== + version "18.19.67" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.67.tgz#77c4b01641a1e3e1509aff7e10d39e4afd5ae06d" + integrity sha512-wI8uHusga+0ZugNp0Ol/3BqQfEcCCNfojtO6Oou9iVNGPTL6QNSdnUdqq85fRgIorLhLMuPIKpsN98QE9Nh+KQ== dependencies: undici-types "~5.26.4" "@types/prop-types@*": - version "15.7.13" - resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.13.tgz" - integrity sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA== + version "15.7.14" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.14.tgz#1433419d73b2a7ebfc6918dcefd2ec0d5cd698f2" + integrity sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ== "@types/react-test-renderer@^18.0.7": - version "18.3.0" - resolved "https://registry.npmjs.org/@types/react-test-renderer/-/react-test-renderer-18.3.0.tgz" - integrity sha512-HW4MuEYxfDbOHQsVlY/XtOvNHftCVEPhJF2pQXXwcUiUF+Oyb0usgp48HSgpK5rt8m9KZb22yqOeZm+rrVG8gw== + version "18.3.1" + resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-18.3.1.tgz#225bfe8d4ad7ee3b04c2fa27642bb74274a5961d" + integrity sha512-vAhnk0tG2eGa37lkU9+s5SoroCsRI08xnsWFiAXOuPH2jqzMbcXvKExXViPi1P5fIklDeCvXqyrdmipFaSkZrA== dependencies: - "@types/react" "*" + "@types/react" "^18" -"@types/react@*": - version "18.3.11" - resolved "https://registry.npmjs.org/@types/react/-/react-18.3.11.tgz" - integrity sha512-r6QZ069rFTjrEYgFdOck1gK7FLVsgJE7tTz0pQBczlBNUhBNk0MQH4UbnFSwjpQLMkLzgqvBBa+qGpLje16eTQ== +"@types/react@^18": + version "18.3.16" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.16.tgz#5326789125fac98b718d586ad157442ceb44ff28" + integrity sha512-oh8AMIC4Y2ciKufU8hnKgs+ufgbA/dhPTACaZPM86AbwX9QwnFtSoPWEeRUj8fge+v6kFt78BXcDhAU1SrrAsw== dependencies: "@types/prop-types" "*" csstype "^3.0.2" "@types/react@~18.2.45": version "18.2.79" - resolved "https://registry.npmjs.org/@types/react/-/react-18.2.79.tgz" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.79.tgz#c40efb4f255711f554d47b449f796d1c7756d865" integrity sha512-RwGAGXPl9kSXwdNTafkOEuFrTBD5SA2B3iEB96xi8+xu5ddUa/cpvyVCSNn+asgLCTHkb5ZxN8gbuibYJi4s1w== dependencies: "@types/prop-types" "*" @@ -2919,64 +2891,109 @@ "@types/stack-utils@^2.0.0": version "2.0.3" - resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz" + resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8" integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw== "@types/tough-cookie@*": version "4.0.5" - resolved "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz" + resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.5.tgz#cb6e2a691b70cb177c6e3ae9c1d2e8b2ea8cd304" integrity sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA== -"@types/use-sync-external-store@^0.0.3": - version "0.0.3" - resolved "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz" - integrity sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA== +"@types/use-sync-external-store@^0.0.6": + version "0.0.6" + resolved "https://registry.yarnpkg.com/@types/use-sync-external-store/-/use-sync-external-store-0.0.6.tgz#60be8d21baab8c305132eb9cb912ed497852aadc" + integrity sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg== "@types/yargs-parser@*": version "21.0.3" - resolved "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15" integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ== "@types/yargs@^13.0.0": version "13.0.12" - resolved "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.12.tgz" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.12.tgz#d895a88c703b78af0465a9de88aa92c61430b092" integrity sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ== dependencies: "@types/yargs-parser" "*" "@types/yargs@^15.0.0": version "15.0.19" - resolved "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.19.tgz" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.19.tgz#328fb89e46109ecbdb70c295d96ff2f46dfd01b9" integrity sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA== dependencies: "@types/yargs-parser" "*" "@types/yargs@^17.0.8": version "17.0.33" - resolved "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.33.tgz#8c32303da83eec050a84b3c7ae7b9f922d13e32d" integrity sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA== dependencies: "@types/yargs-parser" "*" +"@typescript-eslint/scope-manager@8.18.0": + version "8.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.18.0.tgz#30b040cb4557804a7e2bcc65cf8fdb630c96546f" + integrity sha512-PNGcHop0jkK2WVYGotk/hxj+UFLhXtGPiGtiaWgVBVP1jhMoMCHlTyJA+hEj4rszoSdLTK3fN4oOatrL0Cp+Xw== + dependencies: + "@typescript-eslint/types" "8.18.0" + "@typescript-eslint/visitor-keys" "8.18.0" + +"@typescript-eslint/types@8.18.0": + version "8.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.18.0.tgz#3afcd30def8756bc78541268ea819a043221d5f3" + integrity sha512-FNYxgyTCAnFwTrzpBGq+zrnoTO4x0c1CKYY5MuUTzpScqmY5fmsh2o3+57lqdI3NZucBDCzDgdEbIaNfAjAHQA== + +"@typescript-eslint/typescript-estree@8.18.0": + version "8.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.18.0.tgz#d8ca785799fbb9c700cdff1a79c046c3e633c7f9" + integrity sha512-rqQgFRu6yPkauz+ms3nQpohwejS8bvgbPyIDq13cgEDbkXt4LH4OkDMT0/fN1RUtzG8e8AKJyDBoocuQh8qNeg== + dependencies: + "@typescript-eslint/types" "8.18.0" + "@typescript-eslint/visitor-keys" "8.18.0" + debug "^4.3.4" + fast-glob "^3.3.2" + is-glob "^4.0.3" + minimatch "^9.0.4" + semver "^7.6.0" + ts-api-utils "^1.3.0" + +"@typescript-eslint/utils@^8.15.0": + version "8.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.18.0.tgz#48f67205d42b65d895797bb7349d1be5c39a62f7" + integrity sha512-p6GLdY383i7h5b0Qrfbix3Vc3+J2k6QWw6UMUeY5JGfm3C5LbZ4QIZzJNoNOfgyRe0uuYKjvVOsO/jD4SJO+xg== + dependencies: + "@eslint-community/eslint-utils" "^4.4.0" + "@typescript-eslint/scope-manager" "8.18.0" + "@typescript-eslint/types" "8.18.0" + "@typescript-eslint/typescript-estree" "8.18.0" + +"@typescript-eslint/visitor-keys@8.18.0": + version "8.18.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.18.0.tgz#7b6d33534fa808e33a19951907231ad2ea5c36dd" + integrity sha512-pCh/qEA8Lb1wVIqNvBke8UaRjJ6wrAWkJO5yyIbs8Yx6TNGYyfNjOo61tLv+WwLvoLPp4BQ8B7AHKijl8NGUfw== + dependencies: + "@typescript-eslint/types" "8.18.0" + eslint-visitor-keys "^4.2.0" + "@urql/core@2.3.6": version "2.3.6" - resolved "https://registry.npmjs.org/@urql/core/-/core-2.3.6.tgz" + resolved "https://registry.yarnpkg.com/@urql/core/-/core-2.3.6.tgz#ee0a6f8fde02251e9560c5f17dce5cd90f948552" integrity sha512-PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw== dependencies: "@graphql-typed-document-node/core" "^3.1.0" wonka "^4.0.14" "@urql/core@>=2.3.1": - version "5.0.6" - resolved "https://registry.npmjs.org/@urql/core/-/core-5.0.6.tgz" - integrity sha512-38rgSDqVNihFDauw1Pm9V7XLWIKuK8V9CKgrUF7/xEKinze8ENKP1ZeBhkG+dxWzJan7CHK+SLl46kAdvZwIlA== + version "5.1.0" + resolved "https://registry.yarnpkg.com/@urql/core/-/core-5.1.0.tgz#7f4b81f1aba1ca34ae6354763abeb87ff9af84ff" + integrity sha512-yC3sw8yqjbX45GbXxfiBY8GLYCiyW/hLBbQF9l3TJrv4ro00Y0ChkKaD9I2KntRxAVm9IYBqh0awX8fwWAe/Yw== dependencies: "@0no-co/graphql.web" "^1.0.5" wonka "^6.3.2" "@urql/exchange-retry@0.3.0": version "0.3.0" - resolved "https://registry.npmjs.org/@urql/exchange-retry/-/exchange-retry-0.3.0.tgz" + resolved "https://registry.yarnpkg.com/@urql/exchange-retry/-/exchange-retry-0.3.0.tgz#13252108b5a111aab45f9982f4db18d1a286e423" integrity sha512-hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg== dependencies: "@urql/core" ">=2.3.1" @@ -2984,44 +3001,44 @@ "@web3-storage/multipart-parser@^1.0.0": version "1.0.0" - resolved "https://registry.npmjs.org/@web3-storage/multipart-parser/-/multipart-parser-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/@web3-storage/multipart-parser/-/multipart-parser-1.0.0.tgz#6b69dc2a32a5b207ba43e556c25cc136a56659c4" integrity sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw== "@xmldom/xmldom@^0.8.8": version "0.8.10" - resolved "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz" + resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz#a1337ca426aa61cef9fe15b5b28e340a72f6fa99" integrity sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw== "@xmldom/xmldom@~0.7.7": version "0.7.13" - resolved "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.13.tgz" + resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.7.13.tgz#ff34942667a4e19a9f4a0996a76814daac364cf3" integrity sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g== "@zxing/text-encoding@0.9.0": version "0.9.0" - resolved "https://registry.npmjs.org/@zxing/text-encoding/-/text-encoding-0.9.0.tgz" + resolved "https://registry.yarnpkg.com/@zxing/text-encoding/-/text-encoding-0.9.0.tgz#fb50ffabc6c7c66a0c96b4c03e3d9be74864b70b" integrity sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA== abab@^2.0.6: version "2.0.6" - resolved "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz" + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== -abitype@1.0.6: - version "1.0.6" - resolved "https://registry.npmjs.org/abitype/-/abitype-1.0.6.tgz" - integrity sha512-MMSqYh4+C/aVqI2RQaWqbvI4Kxo5cQV40WQ4QFtDnNzCkqChm8MuENhElmynZlO0qUy/ObkEUaXtKqYnx1Kp3A== +abitype@1.0.7, abitype@^1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/abitype/-/abitype-1.0.7.tgz#876a0005d211e1c9132825d45bcee7b46416b284" + integrity sha512-ZfYYSktDQUwc2eduYu8C4wOs+RDPmnRYMh7zNfzeMtGGgb0U+6tLGjixUic6mXf5xKKCcgT5Qp6cv39tOARVFw== abort-controller@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== dependencies: event-target-shim "^5.0.0" -accepts@^1.3.7, accepts@^1.3.8, accepts@~1.3.5, accepts@~1.3.7: +accepts@^1.3.7, accepts@^1.3.8, accepts@~1.3.7: version "1.3.8" - resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== dependencies: mime-types "~2.1.34" @@ -3029,7 +3046,7 @@ accepts@^1.3.7, accepts@^1.3.8, accepts@~1.3.5, accepts@~1.3.7: acorn-globals@^7.0.0: version "7.0.1" - resolved "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz" + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-7.0.1.tgz#0dbf05c44fa7c94332914c02066d5beff62c40c3" integrity sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q== dependencies: acorn "^8.1.0" @@ -3037,31 +3054,31 @@ acorn-globals@^7.0.0: acorn-walk@^8.0.2: version "8.3.4" - resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.4.tgz#794dd169c3977edf4ba4ea47583587c5866236b7" integrity sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g== dependencies: acorn "^8.11.0" acorn@^8.1.0, acorn@^8.11.0, acorn@^8.8.1, acorn@^8.8.2: - version "8.12.1" - resolved "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz" - integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== + version "8.14.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0" + integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA== aes-js@3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/aes-js/-/aes-js-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/aes-js/-/aes-js-3.0.0.tgz#e21df10ad6c2053295bcbb8dab40b09dbea87e4d" integrity sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw== agent-base@6: version "6.0.2" - resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== dependencies: debug "4" aggregate-error@^3.0.0: version "3.1.0" - resolved "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== dependencies: clean-stack "^2.0.0" @@ -3069,21 +3086,21 @@ aggregate-error@^3.0.0: ajv-formats@^2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz" + resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520" integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== dependencies: ajv "^8.0.0" ajv-keywords@^5.1.0: version "5.1.0" - resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16" integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== dependencies: fast-deep-equal "^3.1.3" ajv@8.11.0: version "8.11.0" - resolved "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.11.0.tgz#977e91dd96ca669f54a11e23e378e33b884a565f" integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg== dependencies: fast-deep-equal "^3.1.1" @@ -3093,7 +3110,7 @@ ajv@8.11.0: ajv@^8.0.0, ajv@^8.11.0, ajv@^8.9.0: version "8.17.1" - resolved "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6" integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g== dependencies: fast-deep-equal "^3.1.3" @@ -3103,24 +3120,24 @@ ajv@^8.0.0, ajv@^8.11.0, ajv@^8.9.0: anser@^1.4.9: version "1.4.10" - resolved "https://registry.npmjs.org/anser/-/anser-1.4.10.tgz" + resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.10.tgz#befa3eddf282684bd03b63dcda3927aef8c2e35b" integrity sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww== ansi-escapes@^4.2.1, ansi-escapes@^4.3.0, ansi-escapes@^4.3.2: version "4.3.2" - resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== dependencies: type-fest "^0.21.3" ansi-escapes@^6.0.0: version "6.2.1" - resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.1.tgz" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-6.2.1.tgz#76c54ce9b081dad39acec4b5d53377913825fb0f" integrity sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig== ansi-fragments@^0.2.1: version "0.2.1" - resolved "https://registry.npmjs.org/ansi-fragments/-/ansi-fragments-0.2.1.tgz" + resolved "https://registry.yarnpkg.com/ansi-fragments/-/ansi-fragments-0.2.1.tgz#24409c56c4cc37817c3d7caa99d8969e2de5a05e" integrity sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w== dependencies: colorette "^1.0.7" @@ -3129,56 +3146,56 @@ ansi-fragments@^0.2.1: ansi-regex@^4.0.0, ansi-regex@^4.1.0: version "4.1.1" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== ansi-regex@^5.0.0, ansi-regex@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== ansi-regex@^6.0.1: version "6.1.0" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.1.0.tgz#95ec409c69619d6cb1b8b34f14b660ef28ebd654" integrity sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA== ansi-styles@^3.2.0, ansi-styles@^3.2.1: version "3.2.1" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== dependencies: color-convert "^1.9.0" ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: color-convert "^2.0.1" ansi-styles@^5.0.0: version "5.2.0" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== ansi-styles@^6.1.0: version "6.2.1" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== any-base@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/any-base/-/any-base-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/any-base/-/any-base-1.1.0.tgz#ae101a62bc08a597b4c9ab5b7089d456630549fe" integrity sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg== any-promise@^1.0.0: version "1.3.0" - resolved "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz" + resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== anymatch@^3.0.3: version "3.1.3" - resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== dependencies: normalize-path "^3.0.0" @@ -3186,34 +3203,34 @@ anymatch@^3.0.3: appdirsjs@^1.2.4: version "1.2.7" - resolved "https://registry.npmjs.org/appdirsjs/-/appdirsjs-1.2.7.tgz" + resolved "https://registry.yarnpkg.com/appdirsjs/-/appdirsjs-1.2.7.tgz#50b4b7948a26ba6090d4aede2ae2dc2b051be3b3" integrity sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw== application-config-path@^0.1.0: version "0.1.1" - resolved "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.1.tgz" + resolved "https://registry.yarnpkg.com/application-config-path/-/application-config-path-0.1.1.tgz#8b5ac64ff6afdd9bd70ce69f6f64b6998f5f756e" integrity sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw== arg@5.0.2: version "5.0.2" - resolved "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz" + resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== argparse@^1.0.7: version "1.0.10" - resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== dependencies: sprintf-js "~1.0.2" argparse@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== array-buffer-byte-length@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz#1e5583ec16763540a27ae52eed99ff899223568f" integrity sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg== dependencies: call-bind "^1.0.5" @@ -3221,12 +3238,12 @@ array-buffer-byte-length@^1.0.1: array-union@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== arraybuffer.prototype.slice@^1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz" + resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz#097972f4255e41bc3425e37dc3f6421cf9aefde6" integrity sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A== dependencies: array-buffer-byte-length "^1.0.1" @@ -3240,51 +3257,60 @@ arraybuffer.prototype.slice@^1.0.3: asap@~2.0.3, asap@~2.0.6: version "2.0.6" - resolved "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== ast-types@0.15.2: version "0.15.2" - resolved "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz" + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.15.2.tgz#39ae4809393c4b16df751ee563411423e85fb49d" integrity sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg== dependencies: tslib "^2.0.1" astral-regex@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== async-limiter@~1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== asynckit@^0.4.0: version "0.4.0" - resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== at-least-node@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== available-typed-arrays@^1.0.7: version "1.0.7" - resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846" integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ== dependencies: possible-typed-array-names "^1.0.0" +axios@^1.7.9: + version "1.7.9" + resolved "https://registry.yarnpkg.com/axios/-/axios-1.7.9.tgz#d7d071380c132a24accda1b2cfc1535b79ec650a" + integrity sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw== + dependencies: + follow-redirects "^1.15.6" + form-data "^4.0.0" + proxy-from-env "^1.1.0" + babel-core@^7.0.0-bridge.0: version "7.0.0-bridge.0" - resolved "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz#95a492ddd90f9b4e9a4a1da14eb335b87b634ece" integrity sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg== babel-jest@^29.2.1, babel-jest@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.7.0.tgz#f4369919225b684c56085998ac63dbd05be020d5" integrity sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg== dependencies: "@jest/transform" "^29.7.0" @@ -3297,7 +3323,7 @@ babel-jest@^29.2.1, babel-jest@^29.7.0: babel-plugin-istanbul@^6.1.1: version "6.1.1" - resolved "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" @@ -3308,7 +3334,7 @@ babel-plugin-istanbul@^6.1.1: babel-plugin-jest-hoist@^29.6.3: version "29.6.3" - resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz#aadbe943464182a8922c3c927c3067ff40d24626" integrity sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg== dependencies: "@babel/template" "^7.3.3" @@ -3317,32 +3343,32 @@ babel-plugin-jest-hoist@^29.6.3: "@types/babel__traverse" "^7.0.6" babel-plugin-polyfill-corejs2@^0.4.10: - version "0.4.11" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz" - integrity sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q== + version "0.4.12" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz#ca55bbec8ab0edeeef3d7b8ffd75322e210879a9" + integrity sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og== dependencies: "@babel/compat-data" "^7.22.6" - "@babel/helper-define-polyfill-provider" "^0.6.2" + "@babel/helper-define-polyfill-provider" "^0.6.3" semver "^6.3.1" babel-plugin-polyfill-corejs3@^0.10.6: version "0.10.6" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz#2deda57caef50f59c525aeb4964d3b2f867710c7" integrity sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA== dependencies: "@babel/helper-define-polyfill-provider" "^0.6.2" core-js-compat "^3.38.0" babel-plugin-polyfill-regenerator@^0.6.1: - version "0.6.2" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz" - integrity sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg== + version "0.6.3" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz#abeb1f3f1c762eace37587f42548b08b57789bc8" + integrity sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q== dependencies: - "@babel/helper-define-polyfill-provider" "^0.6.2" + "@babel/helper-define-polyfill-provider" "^0.6.3" babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517: version "0.0.0-experimental-592953e-20240517" - resolved "https://registry.npmjs.org/babel-plugin-react-compiler/-/babel-plugin-react-compiler-0.0.0-experimental-592953e-20240517.tgz" + resolved "https://registry.yarnpkg.com/babel-plugin-react-compiler/-/babel-plugin-react-compiler-0.0.0-experimental-592953e-20240517.tgz#e800fa1550d03573cd5637218dc711f12f642249" integrity sha512-OjG1SVaeQZaJrqkMFJatg8W/MTow8Ak5rx2SI0ETQBO1XvOk/XZGMbltNCPdFJLKghBYoBjC+Y3Ap/Xr7B01mA== dependencies: "@babel/generator" "7.2.0" @@ -3354,20 +3380,20 @@ babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517: zod-validation-error "^2.1.0" babel-plugin-react-native-web@~0.19.10: - version "0.19.12" - resolved "https://registry.npmjs.org/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.19.12.tgz" - integrity sha512-eYZ4+P6jNcB37lObWIg0pUbi7+3PKoU1Oie2j0C8UF3cXyXoR74tO2NBjI/FORb2LJyItJZEAmjU5pSaJYEL1w== + version "0.19.13" + resolved "https://registry.yarnpkg.com/babel-plugin-react-native-web/-/babel-plugin-react-native-web-0.19.13.tgz#bf919bd6f18c4689dd1a528a82bda507363b953d" + integrity sha512-4hHoto6xaN23LCyZgL9LJZc3olmAxd7b6jDzlZnKXAh4rRAbZRKNBJoOOdp46OBqgy+K0t0guTj5/mhA8inymQ== babel-plugin-transform-flow-enums@^0.0.2: version "0.0.2" - resolved "https://registry.npmjs.org/babel-plugin-transform-flow-enums/-/babel-plugin-transform-flow-enums-0.0.2.tgz" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-enums/-/babel-plugin-transform-flow-enums-0.0.2.tgz#d1d0cc9bdc799c850ca110d0ddc9f21b9ec3ef25" integrity sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ== dependencies: "@babel/plugin-syntax-flow" "^7.12.1" babel-preset-current-node-syntax@^1.0.0: version "1.1.0" - resolved "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz#9a929eafece419612ef4ae4f60b1862ebad8ef30" integrity sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw== dependencies: "@babel/plugin-syntax-async-generators" "^7.8.4" @@ -3388,7 +3414,7 @@ babel-preset-current-node-syntax@^1.0.0: babel-preset-expo@~11.0.15: version "11.0.15" - resolved "https://registry.npmjs.org/babel-preset-expo/-/babel-preset-expo-11.0.15.tgz" + resolved "https://registry.yarnpkg.com/babel-preset-expo/-/babel-preset-expo-11.0.15.tgz#f29b1ac1f59f8739f63c80515906186586c24d3c" integrity sha512-rgiMTYwqIPULaO7iZdqyL7aAff9QLOX6OWUtLZBlOrOTreGY1yHah/5+l8MvI6NVc/8Zj5LY4Y5uMSnJIuzTLw== dependencies: "@babel/plugin-proposal-decorators" "^7.12.9" @@ -3404,7 +3430,7 @@ babel-preset-expo@~11.0.15: babel-preset-jest@^29.6.3: version "29.6.3" - resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz#fa05fa510e7d493896d7b0dd2033601c840f171c" integrity sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA== dependencies: babel-plugin-jest-hoist "^29.6.3" @@ -3412,39 +3438,39 @@ babel-preset-jest@^29.6.3: balanced-match@^1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== base-x@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/base-x/-/base-x-4.0.0.tgz#d0e3b7753450c73f8ad2389b5c018a4af7b2224a" integrity sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw== base64-js@^1.2.3, base64-js@^1.3.0, base64-js@^1.3.1, base64-js@^1.5.1: version "1.5.1" - resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== bech32@1.1.4: version "1.1.4" - resolved "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz" + resolved "https://registry.yarnpkg.com/bech32/-/bech32-1.1.4.tgz#e38c9f37bf179b8eb16ae3a772b40c356d4832e9" integrity sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ== better-opn@~3.0.2: version "3.0.2" - resolved "https://registry.npmjs.org/better-opn/-/better-opn-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/better-opn/-/better-opn-3.0.2.tgz#f96f35deaaf8f34144a4102651babcf00d1d8817" integrity sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ== dependencies: open "^8.0.4" big-integer@1.6.x: version "1.6.52" - resolved "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz" + resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.52.tgz#60a887f3047614a8e1bffe5d7173490a97dc8c85" integrity sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg== bl@^4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== dependencies: buffer "^5.5.0" @@ -3453,55 +3479,55 @@ bl@^4.1.0: bmp-js@^0.1.0: version "0.1.0" - resolved "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz" + resolved "https://registry.yarnpkg.com/bmp-js/-/bmp-js-0.1.0.tgz#e05a63f796a6c1ff25f4771ec7adadc148c07233" integrity sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw== bn.js@^4.11.9: - version "4.12.0" - resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz" - integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== + version "4.12.1" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.1.tgz#215741fe3c9dba2d7e12c001d0cfdbae43975ba7" + integrity sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg== bn.js@^5.2.1: version "5.2.1" - resolved "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== boolbase@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== bplist-creator@0.0.7: version "0.0.7" - resolved "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.7.tgz" + resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.0.7.tgz#37df1536092824b87c42f957b01344117372ae45" integrity sha512-xp/tcaV3T5PCiaY04mXga7o/TE+t95gqeLmADeBI1CvZtdWTbgBt3uLpvh4UWtenKeBhCV6oVxGk38yZr2uYEA== dependencies: stream-buffers "~2.2.0" bplist-creator@0.1.0: version "0.1.0" - resolved "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.1.0.tgz" + resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.1.0.tgz#018a2d1b587f769e379ef5519103730f8963ba1e" integrity sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg== dependencies: stream-buffers "2.2.x" bplist-parser@0.3.1: version "0.3.1" - resolved "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.1.tgz" + resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.3.1.tgz#e1c90b2ca2a9f9474cc72f6862bbf3fee8341fd1" integrity sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA== dependencies: big-integer "1.6.x" bplist-parser@^0.3.1: version "0.3.2" - resolved "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.2.tgz" + resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.3.2.tgz#3ac79d67ec52c4c107893e0237eb787cbacbced7" integrity sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ== dependencies: big-integer "1.6.x" brace-expansion@^1.1.7: version "1.1.11" - resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== dependencies: balanced-match "^1.0.0" @@ -3509,55 +3535,55 @@ brace-expansion@^1.1.7: brace-expansion@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== dependencies: balanced-match "^1.0.0" braces@^3.0.3: version "3.0.3" - resolved "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== dependencies: fill-range "^7.1.1" brorand@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== -browserslist@^4.23.3, browserslist@^4.24.0: - version "4.24.0" - resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.24.0.tgz" - integrity sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A== +browserslist@^4.24.0, browserslist@^4.24.2: + version "4.24.2" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.2.tgz#f5845bc91069dbd55ee89faf9822e1d885d16580" + integrity sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg== dependencies: - caniuse-lite "^1.0.30001663" - electron-to-chromium "^1.5.28" + caniuse-lite "^1.0.30001669" + electron-to-chromium "^1.5.41" node-releases "^2.0.18" - update-browserslist-db "^1.1.0" + update-browserslist-db "^1.1.1" bs58@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/bs58/-/bs58-5.0.0.tgz#865575b4d13c09ea2a84622df6c8cbeb54ffc279" integrity sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ== dependencies: base-x "^4.0.0" bser@2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== dependencies: node-int64 "^0.4.0" buffer-alloc-unsafe@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== buffer-alloc@^1.1.0: version "1.2.0" - resolved "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== dependencies: buffer-alloc-unsafe "^1.1.0" @@ -3565,22 +3591,22 @@ buffer-alloc@^1.1.0: buffer-equal@0.0.1: version "0.0.1" - resolved "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz" + resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-0.0.1.tgz#91bc74b11ea405bc916bc6aa908faafa5b4aac4b" integrity sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA== buffer-fill@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" integrity sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ== buffer-from@^1.0.0: version "1.1.2" - resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== buffer@^5.2.0, buffer@^5.4.3, buffer@^5.5.0: version "5.7.1" - resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== dependencies: base64-js "^1.3.1" @@ -3588,17 +3614,17 @@ buffer@^5.2.0, buffer@^5.4.3, buffer@^5.5.0: builtins@^1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz" + resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" integrity sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ== -bytes@3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz" - integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== +bytes@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== cacache@^18.0.2: version "18.0.4" - resolved "https://registry.npmjs.org/cacache/-/cacache-18.0.4.tgz" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-18.0.4.tgz#4601d7578dadb59c66044e157d02a3314682d6a5" integrity sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ== dependencies: "@npmcli/fs" "^3.1.0" @@ -3614,66 +3640,73 @@ cacache@^18.0.2: tar "^6.1.11" unique-filename "^3.0.0" -call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: - version "1.0.7" - resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz" - integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== +call-bind-apply-helpers@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz#32e5892e6361b29b0b545ba6f7763378daca2840" + integrity sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g== dependencies: - es-define-property "^1.0.0" es-errors "^1.3.0" function-bind "^1.1.2" + +call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7, call-bind@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c" + integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww== + dependencies: + call-bind-apply-helpers "^1.0.0" + es-define-property "^1.0.0" get-intrinsic "^1.2.4" - set-function-length "^1.2.1" + set-function-length "^1.2.2" caller-callsite@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" integrity sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ== dependencies: callsites "^2.0.0" caller-path@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" integrity sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A== dependencies: caller-callsite "^2.0.0" callsites@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" integrity sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ== callsites@^3.0.0: version "3.1.0" - resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== camelcase@^5.0.0, camelcase@^5.3.1: version "5.3.1" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== camelcase@^6.2.0: version "6.3.0" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== -caniuse-lite@^1.0.30001663: - version "1.0.30001668" - resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001668.tgz" - integrity sha512-nWLrdxqCdblixUO+27JtGJJE/txpJlyUy5YN1u53wLZkP0emYCo5zgS6QYft7VUYR42LGgi/S5hdLZTrnyIddw== +caniuse-lite@^1.0.30001669: + version "1.0.30001687" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001687.tgz#d0ac634d043648498eedf7a3932836beba90ebae" + integrity sha512-0S/FDhf4ZiqrTUiQ39dKeUjYRjkv7lOZU1Dgif2rIqrTzX/1wV2hfKu9TOm1IHkdSijfLswxTFzl/cvir+SLSQ== centra@^2.7.0: version "2.7.0" - resolved "https://registry.npmjs.org/centra/-/centra-2.7.0.tgz" + resolved "https://registry.yarnpkg.com/centra/-/centra-2.7.0.tgz#4c8312a58436e8a718302011561db7e6a2b0ec18" integrity sha512-PbFMgMSrmgx6uxCdm57RUos9Tc3fclMvhLSATYN39XsDV29B89zZ3KA89jmY0vwSGazyU+uerqwa6t+KaodPcg== dependencies: follow-redirects "^1.15.6" chalk@4, chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: version "4.1.2" - resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== dependencies: ansi-styles "^4.1.0" @@ -3681,7 +3714,7 @@ chalk@4, chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: chalk@^2.0.1, chalk@^2.4.2: version "2.4.2" - resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== dependencies: ansi-styles "^3.2.1" @@ -3690,7 +3723,7 @@ chalk@^2.0.1, chalk@^2.4.2: chalk@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== dependencies: ansi-styles "^4.1.0" @@ -3698,27 +3731,27 @@ chalk@^3.0.0: char-regex@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== char-regex@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz" - integrity sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw== + version "2.0.2" + resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-2.0.2.tgz#81385bb071af4df774bff8721d0ca15ef29ea0bb" + integrity sha512-cbGOjAptfM2LVmWhwRFHEKTPkLwNddVmuqYZQt895yXwAsWsXObCG+YN4DGQ/JBtT4GP1a1lPPdio2z413LmTg== charenc@0.0.2, charenc@~0.0.1: version "0.0.2" - resolved "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz" + resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== chownr@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== chrome-launcher@^0.15.2: version "0.15.2" - resolved "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.2.tgz" + resolved "https://registry.yarnpkg.com/chrome-launcher/-/chrome-launcher-0.15.2.tgz#4e6404e32200095fdce7f6a1e1004f9bd36fa5da" integrity sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ== dependencies: "@types/node" "*" @@ -3728,46 +3761,46 @@ chrome-launcher@^0.15.2: ci-info@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== ci-info@^3.2.0, ci-info@^3.3.0: version "3.9.0" - resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== cjs-module-lexer@^1.0.0: version "1.4.1" - resolved "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz" + resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz#707413784dbb3a72aa11c2f2b042a0bef4004170" integrity sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA== clean-stack@^2.0.0: version "2.2.0" - resolved "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== cli-cursor@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" integrity sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw== dependencies: restore-cursor "^2.0.0" cli-cursor@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== dependencies: restore-cursor "^3.1.0" cli-spinners@^2.0.0, cli-spinners@^2.5.0: version "2.9.2" - resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz#1773a8f4b9c4d6ac31563df53b3fc1d79462fe41" integrity sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg== cliui@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== dependencies: string-width "^4.2.0" @@ -3776,7 +3809,7 @@ cliui@^6.0.0: cliui@^8.0.1: version "8.0.1" - resolved "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== dependencies: string-width "^4.2.0" @@ -3785,7 +3818,7 @@ cliui@^8.0.1: clone-deep@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== dependencies: is-plain-object "^2.0.4" @@ -3794,51 +3827,51 @@ clone-deep@^4.0.1: clone@^1.0.2: version "1.0.4" - resolved "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== clone@^2.1.2: version "2.1.2" - resolved "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz" + resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" integrity sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w== co@^4.6.0: version "4.6.0" - resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== collect-v8-coverage@^1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz#c0b29bcd33bcd0779a1344c2136051e6afd3d9e9" integrity sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q== color-convert@^1.9.0: version "1.9.3" - resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== dependencies: color-name "1.1.3" color-convert@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== dependencies: color-name "~1.1.4" color-name@1.1.3: version "1.1.3" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== color-name@^1.0.0, color-name@~1.1.4: version "1.1.4" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== color-string@^1.9.0: version "1.9.1" - resolved "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4" integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg== dependencies: color-name "^1.0.0" @@ -3846,7 +3879,7 @@ color-string@^1.9.0: color@^4.2.3: version "4.2.3" - resolved "https://registry.npmjs.org/color/-/color-4.2.3.tgz" + resolved "https://registry.yarnpkg.com/color/-/color-4.2.3.tgz#d781ecb5e57224ee43ea9627560107c0e0c6463a" integrity sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A== dependencies: color-convert "^2.0.1" @@ -3854,79 +3887,79 @@ color@^4.2.3: colorette@^1.0.7: version "1.4.0" - resolved "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40" integrity sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g== combined-stream@^1.0.8: version "1.0.8" - resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== dependencies: delayed-stream "~1.0.0" command-exists@^1.2.4, command-exists@^1.2.8: version "1.2.9" - resolved "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz" + resolved "https://registry.yarnpkg.com/command-exists/-/command-exists-1.2.9.tgz#c50725af3808c8ab0260fd60b01fbfa25b954f69" integrity sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w== commander@^2.20.0: version "2.20.3" - resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== commander@^4.0.0: version "4.1.1" - resolved "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz" + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== commander@^7.2.0: version "7.2.0" - resolved "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz" + resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== commander@^9.4.1: version "9.5.0" - resolved "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz" + resolved "https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz#bc08d1eb5cedf7ccb797a96199d41c7bc3e60d30" integrity sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ== commondir@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== component-type@^1.2.1: version "1.2.2" - resolved "https://registry.npmjs.org/component-type/-/component-type-1.2.2.tgz" + resolved "https://registry.yarnpkg.com/component-type/-/component-type-1.2.2.tgz#4458ecc0c1871efc6288bfaff0cbdab08141d079" integrity sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA== -compressible@~2.0.16: +compressible@~2.0.18: version "2.0.18" - resolved "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== dependencies: mime-db ">= 1.43.0 < 2" compression@^1.7.1: - version "1.7.4" - resolved "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz" - integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + version "1.7.5" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.5.tgz#fdd256c0a642e39e314c478f6c2cd654edd74c93" + integrity sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q== dependencies: - accepts "~1.3.5" - bytes "3.0.0" - compressible "~2.0.16" + bytes "3.1.2" + compressible "~2.0.18" debug "2.6.9" + negotiator "~0.6.4" on-headers "~1.0.2" - safe-buffer "5.1.2" + safe-buffer "5.2.1" vary "~1.1.2" concat-map@0.0.1: version "0.0.1" - resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== connect@^3.6.5, connect@^3.7.0: version "3.7.0" - resolved "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz" + resolved "https://registry.yarnpkg.com/connect/-/connect-3.7.0.tgz#5d49348910caa5e07a01800b030d0c35f20484f8" integrity sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ== dependencies: debug "2.6.9" @@ -3936,34 +3969,34 @@ connect@^3.6.5, connect@^3.7.0: convert-source-map@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== cookie-signature@^1.1.0: - version "1.2.1" - resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.1.tgz" - integrity sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw== + version "1.2.2" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.2.2.tgz#57c7fc3cc293acab9fec54d73e15690ebe4a1793" + integrity sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg== cookie@^0.6.0: version "0.6.0" - resolved "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051" integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== core-js-compat@^3.38.0: - version "3.38.1" - resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.38.1.tgz" - integrity sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw== + version "3.39.0" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.39.0.tgz#b12dccb495f2601dc860bdbe7b4e3ffa8ba63f61" + integrity sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw== dependencies: - browserslist "^4.23.3" + browserslist "^4.24.2" core-util-is@~1.0.0: version "1.0.3" - resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== cosmiconfig@^5.0.5, cosmiconfig@^5.1.0: version "5.2.1" - resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== dependencies: import-fresh "^2.0.0" @@ -3973,7 +4006,7 @@ cosmiconfig@^5.0.5, cosmiconfig@^5.1.0: create-jest@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/create-jest/-/create-jest-29.7.0.tgz#a355c5b3cb1e1af02ba177fe7afd7feee49a5320" integrity sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q== dependencies: "@jest/types" "^29.6.3" @@ -3986,15 +4019,15 @@ create-jest@^29.7.0: cross-fetch@^3.1.5: version "3.1.8" - resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz" + resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.8.tgz#0327eba65fd68a7d119f8fb2bf9334a1a7956f82" integrity sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg== dependencies: node-fetch "^2.6.12" cross-spawn@^6.0.0: - version "6.0.5" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz" - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + version "6.0.6" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.6.tgz#30d0efa0712ddb7eb5a76e1e8721bffafa6b5d57" + integrity sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw== dependencies: nice-try "^1.0.4" path-key "^2.0.1" @@ -4003,9 +4036,9 @@ cross-spawn@^6.0.0: which "^1.2.9" cross-spawn@^7.0.0, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + version "7.0.6" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" + integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== dependencies: path-key "^3.1.0" shebang-command "^2.0.0" @@ -4013,29 +4046,29 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.3: crypt@0.0.2, crypt@~0.0.1: version "0.0.2" - resolved "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz" + resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow== crypto-random-string@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" integrity sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg== crypto-random-string@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== css-in-js-utils@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/css-in-js-utils/-/css-in-js-utils-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/css-in-js-utils/-/css-in-js-utils-3.1.0.tgz#640ae6a33646d401fc720c54fc61c42cd76ae2bb" integrity sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A== dependencies: hyphenate-style-name "^1.0.3" css-select@^5.1.0: version "5.1.0" - resolved "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6" integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg== dependencies: boolbase "^1.0.0" @@ -4046,7 +4079,7 @@ css-select@^5.1.0: css-tree@^1.1.3: version "1.1.3" - resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== dependencies: mdn-data "2.0.14" @@ -4054,68 +4087,68 @@ css-tree@^1.1.3: css-what@^6.1.0: version "6.1.0" - resolved "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== cssom@^0.5.0: version "0.5.0" - resolved "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.5.0.tgz#d254fa92cd8b6fbd83811b9fbaed34663cc17c36" integrity sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw== cssom@~0.3.6: version "0.3.8" - resolved "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== cssstyle@^2.3.0: version "2.3.0" - resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== dependencies: cssom "~0.3.6" csstype@^3.0.2: version "3.1.3" - resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== "d3-array@2 - 3", "d3-array@2.10.0 - 3", d3-array@^3.1.6: version "3.2.4" - resolved "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz" + resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-3.2.4.tgz#15fec33b237f97ac5d7c986dc77da273a8ed0bb5" integrity sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg== dependencies: internmap "1 - 2" "d3-color@1 - 3": version "3.1.0" - resolved "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-3.1.0.tgz#395b2833dfac71507f12ac2f7af23bf819de24e2" integrity sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA== d3-ease@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/d3-ease/-/d3-ease-3.0.1.tgz#9658ac38a2140d59d346160f1f6c30fda0bd12f4" integrity sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w== "d3-format@1 - 3": version "3.1.0" - resolved "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-3.1.0.tgz#9260e23a28ea5cb109e93b21a06e24e2ebd55641" integrity sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA== "d3-interpolate@1.2.0 - 3", d3-interpolate@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-3.0.1.tgz#3c47aa5b32c5b3dfb56ef3fd4342078a632b400d" integrity sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g== dependencies: d3-color "1 - 3" d3-path@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-3.1.0.tgz#22df939032fb5a71ae8b1800d61ddb7851c42526" integrity sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ== d3-scale@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz" + resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-4.0.2.tgz#82b38e8e8ff7080764f8dcec77bd4be393689396" integrity sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ== dependencies: d3-array "2.10.0 - 3" @@ -4126,48 +4159,48 @@ d3-scale@^4.0.2: d3-shape@^3.1.0: version "3.2.0" - resolved "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz" + resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-3.2.0.tgz#a1a839cbd9ba45f28674c69d7f855bcf91dfc6a5" integrity sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA== dependencies: d3-path "^3.1.0" "d3-time-format@2 - 4": version "4.1.0" - resolved "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-4.1.0.tgz#7ab5257a5041d11ecb4fe70a5c7d16a195bb408a" integrity sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg== dependencies: d3-time "1 - 3" "d3-time@1 - 3", "d3-time@2.1.1 - 3", d3-time@^3.0.0: version "3.1.0" - resolved "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-3.1.0.tgz#9310db56e992e3c0175e1ef385e545e48a9bb5c7" integrity sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q== dependencies: d3-array "2 - 3" d3-timer@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-3.0.1.tgz#6284d2a2708285b1abb7e201eda4380af35e63b0" integrity sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA== d3-voronoi@^1.1.4: version "1.1.4" - resolved "https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.4.tgz" + resolved "https://registry.yarnpkg.com/d3-voronoi/-/d3-voronoi-1.1.4.tgz#dd3c78d7653d2bb359284ae478645d95944c8297" integrity sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg== dag-map@~1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/dag-map/-/dag-map-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/dag-map/-/dag-map-1.0.2.tgz#e8379f041000ed561fc515475c1ed2c85eece8d7" integrity sha512-+LSAiGFwQ9dRnRdOeaj7g47ZFJcOUPukAP8J3A3fuZ1g9Y44BG+P1sgApjLXTQPOzC4+7S9Wr8kXsfpINM4jpw== data-uri-to-buffer@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz#594b8973938c5bc2c33046535785341abc4f3636" integrity sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og== data-urls@^3.0.2: version "3.0.2" - resolved "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-3.0.2.tgz#9cf24a477ae22bcef5cd5f6f0bfbc1d2d3be9143" integrity sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ== dependencies: abab "^2.0.6" @@ -4176,7 +4209,7 @@ data-urls@^3.0.2: data-view-buffer@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.1.tgz#8ea6326efec17a2e42620696e671d7d5a8bc66b2" integrity sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA== dependencies: call-bind "^1.0.6" @@ -4185,7 +4218,7 @@ data-view-buffer@^1.0.1: data-view-byte-length@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz#90721ca95ff280677eb793749fce1011347669e2" integrity sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ== dependencies: call-bind "^1.0.7" @@ -4194,7 +4227,7 @@ data-view-byte-length@^1.0.1: data-view-byte-offset@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz#5e0bbfb4828ed2d1b9b400cd8a7d119bca0ff18a" integrity sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA== dependencies: call-bind "^1.0.6" @@ -4203,43 +4236,43 @@ data-view-byte-offset@^1.0.0: dayjs@^1.8.15: version "1.11.13" - resolved "https://registry.npmjs.org/dayjs/-/dayjs-1.11.13.tgz" + resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.13.tgz#92430b0139055c3ebb60150aa13e860a4b5a366c" integrity sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg== debug@2.6.9, debug@^2.2.0, debug@^2.6.9: version "2.6.9" - resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: - version "4.3.7" - resolved "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz" - integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== + version "4.4.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a" + integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA== dependencies: ms "^2.1.3" debug@^3.1.0: version "3.2.7" - resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== dependencies: ms "^2.1.1" decamelize@^1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== decimal.js@^10.4.2: version "10.4.3" - resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz" + resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.3.tgz#1044092884d245d1b7f65725fa4ad4c6f781cc23" integrity sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA== decode-uri-component@^0.2.2: version "0.2.2" - resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== dedent@^0.6.0: @@ -4249,22 +4282,22 @@ dedent@^0.6.0: dedent@^1.0.0: version "1.5.3" - resolved "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-1.5.3.tgz#99aee19eb9bae55a67327717b6e848d0bf777e5a" integrity sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ== deep-extend@^0.6.0: version "0.6.0" - resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== deepmerge@^4.2.2, deepmerge@^4.3.0: version "4.3.1" - resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== default-gateway@^4.2.0: version "4.2.0" - resolved "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz" + resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-4.2.0.tgz#167104c7500c2115f6dd69b0a536bb8ed720552b" integrity sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA== dependencies: execa "^1.0.0" @@ -4272,14 +4305,14 @@ default-gateway@^4.2.0: defaults@^1.0.3: version "1.0.4" - resolved "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== dependencies: clone "^1.0.2" define-data-property@^1.0.1, define-data-property@^1.1.4: version "1.1.4" - resolved "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== dependencies: es-define-property "^1.0.0" @@ -4288,12 +4321,12 @@ define-data-property@^1.0.1, define-data-property@^1.1.4: define-lazy-prop@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== define-properties@^1.2.0, define-properties@^1.2.1: version "1.2.1" - resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== dependencies: define-data-property "^1.0.1" @@ -4302,7 +4335,7 @@ define-properties@^1.2.0, define-properties@^1.2.1: del@^6.0.0: version "6.1.1" - resolved "https://registry.npmjs.org/del/-/del-6.1.1.tgz" + resolved "https://registry.yarnpkg.com/del/-/del-6.1.1.tgz#3b70314f1ec0aa325c6b14eb36b95786671edb7a" integrity sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg== dependencies: globby "^11.0.1" @@ -4316,66 +4349,66 @@ del@^6.0.0: delaunator@^4.0.0: version "4.0.1" - resolved "https://registry.npmjs.org/delaunator/-/delaunator-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/delaunator/-/delaunator-4.0.1.tgz#3d779687f57919a7a418f8ab947d3bddb6846957" integrity sha512-WNPWi1IRKZfCt/qIDMfERkDp93+iZEmOxN2yy4Jg+Xhv8SLk2UTqqbe1sfiipn0and9QrE914/ihdx82Y/Giag== delaunay-find@0.0.6: version "0.0.6" - resolved "https://registry.npmjs.org/delaunay-find/-/delaunay-find-0.0.6.tgz" + resolved "https://registry.yarnpkg.com/delaunay-find/-/delaunay-find-0.0.6.tgz#2ed017a79410013717fa7d9422e082c2502d4ae3" integrity sha512-1+almjfrnR7ZamBk0q3Nhg6lqSe6Le4vL0WJDSMx4IDbQwTpUTXPjxC00lqLBT8MYsJpPCbI16sIkw9cPsbi7Q== dependencies: delaunator "^4.0.0" delayed-stream@~1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== denodeify@^1.2.1: version "1.2.1" - resolved "https://registry.npmjs.org/denodeify/-/denodeify-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/denodeify/-/denodeify-1.2.1.tgz#3a36287f5034e699e7577901052c2e6c94251631" integrity sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg== depd@2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== destroy@1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== detect-libc@^1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg== detect-newline@^3.0.0: version "3.1.0" - resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== diff-sequences@^29.6.3: version "29.6.3" - resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.6.3.tgz#4deaf894d11407c51efc8418012f9e70b84ea921" integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== dijkstrajs@^1.0.1: version "1.0.3" - resolved "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.3.tgz" + resolved "https://registry.yarnpkg.com/dijkstrajs/-/dijkstrajs-1.0.3.tgz#4c8dbdea1f0f6478bff94d9c49c784d623e4fc23" integrity sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA== dir-glob@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== dependencies: path-type "^4.0.0" dom-serializer@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== dependencies: domelementtype "^2.3.0" @@ -4384,31 +4417,31 @@ dom-serializer@^2.0.0: dom-walk@^0.1.0: version "0.1.2" - resolved "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz" + resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84" integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w== domelementtype@^2.3.0: version "2.3.0" - resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== domexception@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/domexception/-/domexception-4.0.0.tgz#4ad1be56ccadc86fc76d033353999a8037d03673" integrity sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw== dependencies: webidl-conversions "^7.0.0" domhandler@^5.0.2, domhandler@^5.0.3: version "5.0.3" - resolved "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== dependencies: domelementtype "^2.3.0" domutils@^3.0.1: version "3.1.0" - resolved "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e" integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA== dependencies: dom-serializer "^2.0.0" @@ -4416,35 +4449,44 @@ domutils@^3.0.1: domhandler "^5.0.3" dotenv-expand@~11.0.6: - version "11.0.6" - resolved "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-11.0.6.tgz" - integrity sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g== + version "11.0.7" + resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-11.0.7.tgz#af695aea007d6fdc84c86cd8d0ad7beb40a0bd08" + integrity sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA== dependencies: - dotenv "^16.4.4" + dotenv "^16.4.5" -dotenv@^16.4.4, dotenv@~16.4.5: - version "16.4.5" - resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz" - integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg== +dotenv@^16.4.5, dotenv@~16.4.5: + version "16.4.7" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.7.tgz#0e20c5b82950140aa99be360a8a5f52335f53c26" + integrity sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ== + +dunder-proto@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.0.tgz#c2fce098b3c8f8899554905f4377b6d85dabaa80" + integrity sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A== + dependencies: + call-bind-apply-helpers "^1.0.0" + es-errors "^1.3.0" + gopd "^1.2.0" eastasianwidth@^0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz" + resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== ee-first@1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== -electron-to-chromium@^1.5.28: - version "1.5.37" - resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.37.tgz" - integrity sha512-u7000ZB/X0K78TaQqXZ5ktoR7J79B9US7IkE4zyvcILYwOGY2Tx9GRPYstn7HmuPcMxZ+BDGqIsyLpZQi9ufPw== +electron-to-chromium@^1.5.41: + version "1.5.72" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.72.tgz#a732805986d3a5b5fedd438ddf4616c7d78ac2df" + integrity sha512-ZpSAUOZ2Izby7qnZluSrAlGgGQzucmFbN0n64dYzocYxnxV5ufurpj3VgEe4cUp7ir9LmeLxNYo8bVnlM8bQHw== elliptic@6.5.4: version "6.5.4" - resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== dependencies: bn.js "^4.11.9" @@ -4457,82 +4499,82 @@ elliptic@6.5.4: emittery@^0.13.1: version "0.13.1" - resolved "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz" + resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.13.1.tgz#c04b8c3457490e0847ae51fced3af52d338e3dad" integrity sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ== emoji-regex@^8.0.0: version "8.0.0" - resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== emoji-regex@^9.2.2: version "9.2.2" - resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== encodeurl@~1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== encodeurl@~2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58" integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== end-of-stream@^1.1.0: version "1.4.4" - resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== dependencies: once "^1.4.0" entities@^4.2.0, entities@^4.5.0: version "4.5.0" - resolved "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz" + resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== env-editor@^0.4.1: version "0.4.2" - resolved "https://registry.npmjs.org/env-editor/-/env-editor-0.4.2.tgz" + resolved "https://registry.yarnpkg.com/env-editor/-/env-editor-0.4.2.tgz#4e76568d0bd8f5c2b6d314a9412c8fe9aa3ae861" integrity sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA== envinfo@^7.10.0: version "7.14.0" - resolved "https://registry.npmjs.org/envinfo/-/envinfo-7.14.0.tgz" + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.14.0.tgz#26dac5db54418f2a4c1159153a0b2ae980838aae" integrity sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg== eol@^0.9.1: version "0.9.1" - resolved "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz" + resolved "https://registry.yarnpkg.com/eol/-/eol-0.9.1.tgz#f701912f504074be35c6117a5c4ade49cd547acd" integrity sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg== error-ex@^1.3.1: version "1.3.2" - resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== dependencies: is-arrayish "^0.2.1" error-stack-parser@^2.0.6: version "2.1.4" - resolved "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz" + resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.1.4.tgz#229cb01cdbfa84440bfa91876285b94680188286" integrity sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ== dependencies: stackframe "^1.3.4" errorhandler@^1.5.1: version "1.5.1" - resolved "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz" + resolved "https://registry.yarnpkg.com/errorhandler/-/errorhandler-1.5.1.tgz#b9ba5d17cf90744cd1e851357a6e75bf806a9a91" integrity sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A== dependencies: accepts "~1.3.7" escape-html "~1.0.3" -es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0: - version "1.23.3" - resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz" - integrity sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A== +es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.5: + version "1.23.5" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.5.tgz#f4599a4946d57ed467515ed10e4f157289cd52fb" + integrity sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ== dependencies: array-buffer-byte-length "^1.0.1" arraybuffer.prototype.slice "^1.0.3" @@ -4549,7 +4591,7 @@ es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0: function.prototype.name "^1.1.6" get-intrinsic "^1.2.4" get-symbol-description "^1.0.2" - globalthis "^1.0.3" + globalthis "^1.0.4" gopd "^1.0.1" has-property-descriptors "^1.0.2" has-proto "^1.0.3" @@ -4565,10 +4607,10 @@ es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0: is-string "^1.0.7" is-typed-array "^1.1.13" is-weakref "^1.0.2" - object-inspect "^1.13.1" + object-inspect "^1.13.3" object-keys "^1.1.1" object.assign "^4.1.5" - regexp.prototype.flags "^1.5.2" + regexp.prototype.flags "^1.5.3" safe-array-concat "^1.1.2" safe-regex-test "^1.0.3" string.prototype.trim "^1.2.9" @@ -4581,28 +4623,26 @@ es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0: unbox-primitive "^1.0.2" which-typed-array "^1.1.15" -es-define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz" - integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== - dependencies: - get-intrinsic "^1.2.4" +es-define-property@^1.0.0, es-define-property@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa" + integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== es-errors@^1.2.1, es-errors@^1.3.0: version "1.3.0" - resolved "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz" + resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== es-object-atoms@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.0.0.tgz#ddb55cd47ac2e240701260bc2a8e31ecb643d941" integrity sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw== dependencies: es-errors "^1.3.0" es-set-tostringtag@^2.0.3: version "2.0.3" - resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz#8bb60f0a440c2e4281962428438d58545af39777" integrity sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ== dependencies: get-intrinsic "^1.2.4" @@ -4610,42 +4650,42 @@ es-set-tostringtag@^2.0.3: hasown "^2.0.1" es-to-primitive@^1.2.1: - version "1.2.1" - resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz" - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.3.0.tgz#96c89c82cc49fd8794a24835ba3e1ff87f214e18" + integrity sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g== dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" + is-callable "^1.2.7" + is-date-object "^1.0.5" + is-symbol "^1.0.4" escalade@^3.1.1, escalade@^3.2.0: version "3.2.0" - resolved "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== escape-html@~1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== escape-string-regexp@^1.0.5: version "1.0.5" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== escape-string-regexp@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== escape-string-regexp@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== escodegen@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.1.0.tgz#ba93bbb7a43986d29d6041f99f5262da773e2e17" integrity sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w== dependencies: esprima "^4.0.1" @@ -4654,29 +4694,39 @@ escodegen@^2.0.0: optionalDependencies: source-map "~0.6.1" +eslint-visitor-keys@^3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" + integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== + +eslint-visitor-keys@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz#687bacb2af884fcdda8a6e7d65c606f46a14cd45" + integrity sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw== + esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0: version "4.0.1" - resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== estraverse@^5.2.0: version "5.3.0" - resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== esutils@^2.0.2: version "2.0.3" - resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== etag@~1.8.1: version "1.8.1" - resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== ethers@^5.7.2: version "5.7.2" - resolved "https://registry.npmjs.org/ethers/-/ethers-5.7.2.tgz" + resolved "https://registry.yarnpkg.com/ethers/-/ethers-5.7.2.tgz#3a7deeabbb8c030d4126b24f84e525466145872e" integrity sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg== dependencies: "@ethersproject/abi" "5.7.0" @@ -4712,22 +4762,22 @@ ethers@^5.7.2: event-target-shim@^5.0.0, event-target-shim@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== -eventemitter3@^5.0.1: +eventemitter3@5.0.1, eventemitter3@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz#53f5ffd0a492ac800721bb42c66b841de96423c4" integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA== exec-async@^2.2.0: version "2.2.0" - resolved "https://registry.npmjs.org/exec-async/-/exec-async-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/exec-async/-/exec-async-2.2.0.tgz#c7c5ad2eef3478d38390c6dd3acfe8af0efc8301" integrity sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw== execa@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== dependencies: cross-spawn "^6.0.0" @@ -4740,7 +4790,7 @@ execa@^1.0.0: execa@^5.0.0, execa@^5.1.1: version "5.1.1" - resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== dependencies: cross-spawn "^7.0.3" @@ -4755,17 +4805,17 @@ execa@^5.0.0, execa@^5.1.1: exif-parser@^0.1.12: version "0.1.12" - resolved "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz" + resolved "https://registry.yarnpkg.com/exif-parser/-/exif-parser-0.1.12.tgz#58a9d2d72c02c1f6f02a0ef4a9166272b7760922" integrity sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw== exit@^0.1.2: version "0.1.2" - resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz" + resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== expect@^29.0.0, expect@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/expect/-/expect-29.7.0.tgz#578874590dcb3214514084c08115d8aee61e11bc" integrity sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw== dependencies: "@jest/expect-utils" "^29.7.0" @@ -4776,17 +4826,17 @@ expect@^29.0.0, expect@^29.7.0: expo-apple-authentication@^6.4.2: version "6.4.2" - resolved "https://registry.npmjs.org/expo-apple-authentication/-/expo-apple-authentication-6.4.2.tgz" + resolved "https://registry.yarnpkg.com/expo-apple-authentication/-/expo-apple-authentication-6.4.2.tgz#1c2ea4fcbd1de5736483dccd370cdd6b8e3de15d" integrity sha512-X4u1n3Ql1hOpztXHbKNq4I1l4+Ff82gC6RmEeW43Eht7VE6E8PrQBpYKw+JJv8osrCJt7R5O1PZwed6WLN5oig== expo-application@^5.9.1: version "5.9.1" - resolved "https://registry.npmjs.org/expo-application/-/expo-application-5.9.1.tgz" + resolved "https://registry.yarnpkg.com/expo-application/-/expo-application-5.9.1.tgz#a12e0cf2741b6f084cc49cd0121ad0a70c770459" integrity sha512-uAfLBNZNahnDZLRU41ZFmNSKtetHUT9Ua557/q189ua0AWV7pQjoVAx49E4953feuvqc9swtU3ScZ/hN1XO/FQ== expo-asset@~10.0.10: version "10.0.10" - resolved "https://registry.npmjs.org/expo-asset/-/expo-asset-10.0.10.tgz" + resolved "https://registry.yarnpkg.com/expo-asset/-/expo-asset-10.0.10.tgz#9e6e02c1a6ec3d19b50d5e615e4dd8e5cc30e857" integrity sha512-0qoTIihB79k+wGus9wy0JMKq7DdenziVx3iUkGvMAy2azscSgWH6bd2gJ9CGnhC6JRd3qTMFBL0ou/fx7WZl7A== dependencies: expo-constants "~16.0.0" @@ -4795,7 +4845,7 @@ expo-asset@~10.0.10: expo-build-properties@~0.12.5: version "0.12.5" - resolved "https://registry.npmjs.org/expo-build-properties/-/expo-build-properties-0.12.5.tgz" + resolved "https://registry.yarnpkg.com/expo-build-properties/-/expo-build-properties-0.12.5.tgz#4d6232389f00c846ba37ca5df2c0b5527c2d94ca" integrity sha512-donC1le0PYfLKCPKRMGQoixuWuwDWCngzXSoQXUPsgHTDHQUKr8aw+lcWkTwZcItgNovcnk784I0dyfYDcxybA== dependencies: ajv "^8.11.0" @@ -4803,7 +4853,7 @@ expo-build-properties@~0.12.5: expo-constants@^16.0.2, expo-constants@~16.0.0: version "16.0.2" - resolved "https://registry.npmjs.org/expo-constants/-/expo-constants-16.0.2.tgz" + resolved "https://registry.yarnpkg.com/expo-constants/-/expo-constants-16.0.2.tgz#eb5a1bddb7308fd8cadac8fc44decaf4784cac5e" integrity sha512-9tNY3OVO0jfiMzl7ngb6IOyR5VFzNoN5OOazUWoeGfmMqVB5kltTemRvKraK9JRbBKIw+SOYLEmF0sEqgFZ6OQ== dependencies: "@expo/config" "~9.0.0" @@ -4811,76 +4861,76 @@ expo-constants@^16.0.2, expo-constants@~16.0.0: expo-crypto@^13.0.2: version "13.0.2" - resolved "https://registry.npmjs.org/expo-crypto/-/expo-crypto-13.0.2.tgz" + resolved "https://registry.yarnpkg.com/expo-crypto/-/expo-crypto-13.0.2.tgz#e892874f571967f588b1f1e2e4924cafaf4f6823" integrity sha512-7f/IMPYJZkBM21LNEMXGrNo/0uXSVfZTwufUdpNKedJR0fm5fH4DCSN79ZddlV26nF90PuXjK2inIbI6lb0qRA== dependencies: base64-js "^1.3.0" expo-dev-client@~4.0.26: - version "4.0.28" - resolved "https://registry.npmjs.org/expo-dev-client/-/expo-dev-client-4.0.28.tgz" - integrity sha512-wz5G4vY3Gbk5GuQTyijdqY4Hwr/NDt5OUTErbOu1vd4XRIAsI+8IkK5hsBUhGmqrdkYnP5NxxOxC/soFzX/9+w== + version "4.0.29" + resolved "https://registry.yarnpkg.com/expo-dev-client/-/expo-dev-client-4.0.29.tgz#86683c584db6b787828b10e2a049f810a246441d" + integrity sha512-aANlw9dC4PJEPaRNpe+X5xwyYI+aCIcbZklAAsFlkv2/05gLrsvAFgmQpRtowAzF+VggHWde1eKUOeUccAYIEg== dependencies: - expo-dev-launcher "4.0.28" - expo-dev-menu "5.0.22" - expo-dev-menu-interface "1.8.3" + expo-dev-launcher "4.0.29" + expo-dev-menu "5.0.23" + expo-dev-menu-interface "1.8.4" expo-manifests "~0.14.0" expo-updates-interface "~0.16.2" -expo-dev-launcher@4.0.28: - version "4.0.28" - resolved "https://registry.npmjs.org/expo-dev-launcher/-/expo-dev-launcher-4.0.28.tgz" - integrity sha512-goE7jcaGVA2zu4gV3/hQ9RXqGhUZZAu339VYNLbwPdaNCzFaG6A8MZHg18gytCUnZ5QkRJsYi4q/8YcwUCASlQ== +expo-dev-launcher@4.0.29: + version "4.0.29" + resolved "https://registry.yarnpkg.com/expo-dev-launcher/-/expo-dev-launcher-4.0.29.tgz#c655d842802f696ad6a5e446c60d20c1e453d175" + integrity sha512-0a0SL8mc4FrqPeGxJHe9kf0kG+Di+38Gd+HP5DEL9dcOa8m2qffKnk22UcyujCT6+Qk0OUK1s53nnfqFB26uVw== dependencies: ajv "8.11.0" - expo-dev-menu "5.0.22" + expo-dev-menu "5.0.23" expo-manifests "~0.14.0" resolve-from "^5.0.0" semver "^7.6.0" -expo-dev-menu-interface@1.8.3: - version "1.8.3" - resolved "https://registry.npmjs.org/expo-dev-menu-interface/-/expo-dev-menu-interface-1.8.3.tgz" - integrity sha512-QM0LRozeFT5Ek0N7XpV93M+HMdEKRLEOXn0aW5M3uoUlnqC1+PLtF3HMy3k3hMKTTE/kJ1y1Z7akH07T0lunCQ== +expo-dev-menu-interface@1.8.4: + version "1.8.4" + resolved "https://registry.yarnpkg.com/expo-dev-menu-interface/-/expo-dev-menu-interface-1.8.4.tgz#fa23bf3228ea51cf412599fcb715c27259ffdd84" + integrity sha512-FpYI57EUu9qTSOOi+FZJ58xkCGJK7QD0mTiXK/y1I8lRdZGjCmdBqVvC4dAx2GcbIT78EPxaVf4/90tK/KRK6A== -expo-dev-menu@5.0.22: - version "5.0.22" - resolved "https://registry.npmjs.org/expo-dev-menu/-/expo-dev-menu-5.0.22.tgz" - integrity sha512-VzpdQReAtjbI1qIuwOf0sUzf91HsfGThojgJD9Ez0eca12qY5tTGYzHa1EM9V+zIcNuNZ7+A8bHJJdmZ4zvU6g== +expo-dev-menu@5.0.23: + version "5.0.23" + resolved "https://registry.yarnpkg.com/expo-dev-menu/-/expo-dev-menu-5.0.23.tgz#7e6d6fd93c54ca955e8a69601a0b1991b64389b3" + integrity sha512-ztDvrSdFGkRbMoQlGLyKMS6CslMGylonVW4kQHUrBQApCL0c2NtRwLlr2bA1SXF0S7qYdPPg/ayLnj7DDR5X2w== dependencies: - expo-dev-menu-interface "1.8.3" + expo-dev-menu-interface "1.8.4" semver "^7.5.4" expo-file-system@~17.0.1: version "17.0.1" - resolved "https://registry.npmjs.org/expo-file-system/-/expo-file-system-17.0.1.tgz" + resolved "https://registry.yarnpkg.com/expo-file-system/-/expo-file-system-17.0.1.tgz#b9f8af8c1c06ec71d96fd7a0d2567fa9e1c88f15" integrity sha512-dYpnZJqTGj6HCYJyXAgpFkQWsiCH3HY1ek2cFZVHFoEc5tLz9gmdEgTF6nFHurvmvfmXqxi7a5CXyVm0aFYJBw== expo-font@~12.0.10, expo-font@~12.0.9: version "12.0.10" - resolved "https://registry.npmjs.org/expo-font/-/expo-font-12.0.10.tgz" + resolved "https://registry.yarnpkg.com/expo-font/-/expo-font-12.0.10.tgz#62deaf1f46159d7839f01305f44079268781b1db" integrity sha512-Q1i2NuYri3jy32zdnBaHHCya1wH1yMAsI+3CCmj9zlQzlhsS9Bdwcj2W3c5eU5FvH2hsNQy4O+O1NnM6o/pDaQ== dependencies: fontfaceobserver "^2.1.0" expo-haptics@~13.0.1: version "13.0.1" - resolved "https://registry.npmjs.org/expo-haptics/-/expo-haptics-13.0.1.tgz" + resolved "https://registry.yarnpkg.com/expo-haptics/-/expo-haptics-13.0.1.tgz#35679c7fde4ae1c21ae3bc2d2cb34c266049dc2c" integrity sha512-qG0EOLDE4bROVT3DtUSyV9g3iB3YFu9j3711X7SNNEnBDXc+2/p3wGDPTnJvPW0ao6HG3/McAOrBQA5hVSdWng== expo-json-utils@~0.13.0: version "0.13.1" - resolved "https://registry.npmjs.org/expo-json-utils/-/expo-json-utils-0.13.1.tgz" + resolved "https://registry.yarnpkg.com/expo-json-utils/-/expo-json-utils-0.13.1.tgz#e49b697198e11c573d346f08ab91c467095934a9" integrity sha512-mlfaSArGVb+oJmUcR22jEONlgPp0wj4iNIHfQ2je9Q8WTOqMc0Ws9tUciz3JdJnhffdHqo/k8fpvf0IRmN5HPA== expo-keep-awake@~13.0.2: version "13.0.2" - resolved "https://registry.npmjs.org/expo-keep-awake/-/expo-keep-awake-13.0.2.tgz" + resolved "https://registry.yarnpkg.com/expo-keep-awake/-/expo-keep-awake-13.0.2.tgz#5ef31311a339671eec9921b934fdd90ab9652b0e" integrity sha512-kKiwkVg/bY0AJ5q1Pxnm/GvpeB6hbNJhcFsoOWDh2NlpibhCLaHL826KHUM+WsnJRbVRxJ+K9vbPRHEMvFpVyw== expo-linking@^6.3.1: version "6.3.1" - resolved "https://registry.npmjs.org/expo-linking/-/expo-linking-6.3.1.tgz" + resolved "https://registry.yarnpkg.com/expo-linking/-/expo-linking-6.3.1.tgz#05aef8a42bd310391d0b00644be40d80ece038d9" integrity sha512-xuZCntSBGWCD/95iZ+mTUGTwHdy8Sx+immCqbUBxdvZ2TN61P02kKg7SaLS8A4a/hLrSCwrg5tMMwu5wfKr35g== dependencies: expo-constants "~16.0.0" @@ -4888,7 +4938,7 @@ expo-linking@^6.3.1: expo-manifests@~0.14.0: version "0.14.3" - resolved "https://registry.npmjs.org/expo-manifests/-/expo-manifests-0.14.3.tgz" + resolved "https://registry.yarnpkg.com/expo-manifests/-/expo-manifests-0.14.3.tgz#17854c45c8c9ced4a07031ae0838c38ac3115fbc" integrity sha512-L3b5/qocBPiQjbW0cpOHfnqdKZbTJS7sA3mgeDJT+mWga/xYsdpma1EfNmsuvrOzjLGjStr1k1fceM9Bl49aqQ== dependencies: "@expo/config" "~9.0.0" @@ -4896,7 +4946,7 @@ expo-manifests@~0.14.0: expo-modules-autolinking@1.11.3: version "1.11.3" - resolved "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-1.11.3.tgz" + resolved "https://registry.yarnpkg.com/expo-modules-autolinking/-/expo-modules-autolinking-1.11.3.tgz#bc64d278c04015014bb5802e3cfcd942d7c07168" integrity sha512-oYh8EZEvYF5TYppxEKUTTJmbr8j7eRRnrIxzZtMvxLTXoujThVPMFS/cbnSnf2bFm1lq50TdDNABhmEi7z0ngQ== dependencies: chalk "^4.1.0" @@ -4909,15 +4959,15 @@ expo-modules-autolinking@1.11.3: expo-modules-core@1.12.26: version "1.12.26" - resolved "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-1.12.26.tgz" + resolved "https://registry.yarnpkg.com/expo-modules-core/-/expo-modules-core-1.12.26.tgz#86c4087dc6246abfc4d7f5e61097dc8cc4b22262" integrity sha512-y8yDWjOi+rQRdO+HY+LnUlz8qzHerUaw/LUjKPU/mX8PRXP4UUPEEp5fjAwBU44xjNmYSHWZDwet4IBBE+yQUA== dependencies: invariant "^2.2.4" expo-router@~3.5.23: - version "3.5.23" - resolved "https://registry.npmjs.org/expo-router/-/expo-router-3.5.23.tgz" - integrity sha512-Re2kYcxov67hWrcjuu0+3ovsLxYn79PuX6hgtYN20MgigY5ttX79KOIBEVGTO3F3y9dxSrGHyy5Z14BcO+usGQ== + version "3.5.24" + resolved "https://registry.yarnpkg.com/expo-router/-/expo-router-3.5.24.tgz#ac834b66c023151a3f919c456805cdd7377a677f" + integrity sha512-wFi+PIUrOntF5cgg0PgBMlkxEZlWedIv5dWnPFEzN6Tr3A3bpsqdDLgOEIwvwd+pxn5DLzykTmg9EkQ1pPGspw== dependencies: "@expo/metro-runtime" "3.2.3" "@expo/server" "^0.4.0" @@ -4925,37 +4975,30 @@ expo-router@~3.5.23: "@react-navigation/bottom-tabs" "~6.5.7" "@react-navigation/native" "~6.1.6" "@react-navigation/native-stack" "~6.9.12" - expo-splash-screen "0.27.5" + expo-splash-screen "0.27.7" react-native-helmet-async "2.0.4" schema-utils "^4.0.1" expo-secure-store@^13.0.2: version "13.0.2" - resolved "https://registry.npmjs.org/expo-secure-store/-/expo-secure-store-13.0.2.tgz" + resolved "https://registry.yarnpkg.com/expo-secure-store/-/expo-secure-store-13.0.2.tgz#ba8f6076fc38062a28bb2ce5edab9cd28ef88598" integrity sha512-3QYgoneo8p8yeeBPBiAfokNNc2xq6+n8+Ob4fAlErEcf4H7Y72LH+K/dx0nQyWau2ZKZUXBxyyfuHFyVKrEVLg== -expo-splash-screen@0.27.5: - version "0.27.5" - resolved "https://registry.npmjs.org/expo-splash-screen/-/expo-splash-screen-0.27.5.tgz" - integrity sha512-9rdZuLkFCfgJBxrheUsOEOIW6Rp+9NVlpSE0hgXQwbTCLTncf00IHSE8/L2NbFyeDLNjof1yZBppaV7tXHRUzA== +expo-splash-screen@0.27.7, expo-splash-screen@~0.27.5: + version "0.27.7" + resolved "https://registry.yarnpkg.com/expo-splash-screen/-/expo-splash-screen-0.27.7.tgz#52171be54d8c008880d928e802819d767fbd3c12" + integrity sha512-s+eGcG185878nixlrjhhLD6UDYrvoqBUaBkIEozBVWFg3pkdsKpONPiUAco4XR3h7I/9ODq4quN28RJLFO+s0Q== dependencies: - "@expo/prebuild-config" "7.0.6" - -expo-splash-screen@~0.27.5: - version "0.27.6" - resolved "https://registry.npmjs.org/expo-splash-screen/-/expo-splash-screen-0.27.6.tgz" - integrity sha512-joUwZQS48k3VMnucQ0Y8Dle1t1FyIvluQA4kjuPx2x7l2dRrfctbo34ahTnC0p1o2go5oN2iEnSTOElY4wRQHw== - dependencies: - "@expo/prebuild-config" "7.0.8" + "@expo/prebuild-config" "7.0.9" expo-status-bar@~1.12.1: version "1.12.1" - resolved "https://registry.npmjs.org/expo-status-bar/-/expo-status-bar-1.12.1.tgz" + resolved "https://registry.yarnpkg.com/expo-status-bar/-/expo-status-bar-1.12.1.tgz#52ce594aab5064a0511d14375364d718ab78aa66" integrity sha512-/t3xdbS8KB0prj5KG5w7z+wZPFlPtkgs95BsmrP/E7Q0xHXTcDcQ6Cu2FkFuRM+PKTb17cJDnLkawyS5vDLxMA== expo-system-ui@~3.0.7: version "3.0.7" - resolved "https://registry.npmjs.org/expo-system-ui/-/expo-system-ui-3.0.7.tgz" + resolved "https://registry.yarnpkg.com/expo-system-ui/-/expo-system-ui-3.0.7.tgz#73fee2a61db435e5d66cbf6407e0987f39c25b4e" integrity sha512-KAs72F5JKhdIfPR9ZNVlRubTPK9uUuevPy5oYEp12xNEzSQcjZKvypH5NpwJuNWkXzrp3n3vZ+3pXsudA7J3KA== dependencies: "@react-native/normalize-colors" "0.74.85" @@ -4963,23 +5006,23 @@ expo-system-ui@~3.0.7: expo-updates-interface@~0.16.2: version "0.16.2" - resolved "https://registry.npmjs.org/expo-updates-interface/-/expo-updates-interface-0.16.2.tgz" + resolved "https://registry.yarnpkg.com/expo-updates-interface/-/expo-updates-interface-0.16.2.tgz#ad1ac2ca8ee5a8cc84052ea3c18a11da64da569b" integrity sha512-929XBU70q5ELxkKADj1xL0UIm3HvhYhNAOZv5DSk7rrKvLo7QDdPyl+JVnwZm9LrkNbH4wuE2rLoKu1KMgZ+9A== expo-web-browser@^13.0.3: version "13.0.3" - resolved "https://registry.npmjs.org/expo-web-browser/-/expo-web-browser-13.0.3.tgz" + resolved "https://registry.yarnpkg.com/expo-web-browser/-/expo-web-browser-13.0.3.tgz#dceb05dbc187b498ca937b02adf385b0232a4e92" integrity sha512-HXb7y82ApVJtqk8tManyudtTrCtx8xcUnVzmJECeHCB0SsWSQ+penVLZxJkcyATWoJOsFMnfVSVdrTcpKKGszQ== expo@~51.0.38: - version "51.0.38" - resolved "https://registry.npmjs.org/expo/-/expo-51.0.38.tgz" - integrity sha512-/B9npFkOPmv6WMIhdjQXEY0Z9k/67UZIVkodW8JxGIXwKUZAGHL+z1R5hTtWimpIrvVhyHUFU3f8uhfEKYhHNQ== + version "51.0.39" + resolved "https://registry.yarnpkg.com/expo/-/expo-51.0.39.tgz#d9efab081a91a0d3e925b0e4648722b13a8fceae" + integrity sha512-Cs/9xopyzJrpXWbyVUZnr37rprdFJorRgfSp6cdBfvbjxZeKnw2MEu7wJwV/s626i5lZTPGjZPHUF9uQvt51cg== dependencies: "@babel/runtime" "^7.20.0" - "@expo/cli" "0.18.30" + "@expo/cli" "0.18.31" "@expo/config" "9.0.4" - "@expo/config-plugins" "8.0.10" + "@expo/config-plugins" "8.0.11" "@expo/metro-config" "0.18.11" "@expo/vector-icons" "^14.0.3" babel-preset-expo "~11.0.15" @@ -4994,22 +5037,22 @@ expo@~51.0.38: exponential-backoff@^3.1.1: version "3.1.1" - resolved "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz" + resolved "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.1.tgz#64ac7526fe341ab18a39016cd22c787d01e00bf6" integrity sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw== fast-base64-decode@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/fast-base64-decode/-/fast-base64-decode-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/fast-base64-decode/-/fast-base64-decode-1.0.0.tgz#b434a0dd7d92b12b43f26819300d2dafb83ee418" integrity sha512-qwaScUgUGBYeDNRnbc/KyllVU88Jk1pRHPStuF/lO7B0/RTRLj7U0lkdTAutlBblY08rwZDff6tNU9cjv6j//Q== fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" - resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== fast-glob@^3.2.5, fast-glob@^3.2.9, fast-glob@^3.3.2: version "3.3.2" - resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== dependencies: "@nodelib/fs.stat" "^2.0.2" @@ -5020,60 +5063,60 @@ fast-glob@^3.2.5, fast-glob@^3.2.9, fast-glob@^3.3.2: fast-json-stable-stringify@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== fast-loops@^1.1.3: version "1.1.4" - resolved "https://registry.npmjs.org/fast-loops/-/fast-loops-1.1.4.tgz" + resolved "https://registry.yarnpkg.com/fast-loops/-/fast-loops-1.1.4.tgz#61bc77d518c0af5073a638c6d9d5c7683f069ce2" integrity sha512-8dbd3XWoKCTms18ize6JmQF1SFnnfj5s0B7rRry22EofgMu7B6LKHVh+XfFqFGsqnbH54xgeO83PzpKI+ODhlg== fast-text-encoding@^1.0.6: version "1.0.6" - resolved "https://registry.npmjs.org/fast-text-encoding/-/fast-text-encoding-1.0.6.tgz" + resolved "https://registry.yarnpkg.com/fast-text-encoding/-/fast-text-encoding-1.0.6.tgz#0aa25f7f638222e3396d72bf936afcf1d42d6867" integrity sha512-VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w== fast-uri@^3.0.1: - version "3.0.2" - resolved "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.2.tgz" - integrity sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row== + version "3.0.3" + resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.3.tgz#892a1c91802d5d7860de728f18608a0573142241" + integrity sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw== fast-xml-parser@^4.0.12, fast-xml-parser@^4.2.4: version "4.5.0" - resolved "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.0.tgz" + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.5.0.tgz#2882b7d01a6825dfdf909638f2de0256351def37" integrity sha512-/PlTQCI96+fZMAOLMZK4CWG1ItCbfZ/0jx7UIJFChPNrx7tcEgerUgWbeieCM9MfHInUDyK8DWYZ+YrywDJuTg== dependencies: strnum "^1.0.5" fastq@^1.6.0: version "1.17.1" - resolved "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== dependencies: reusify "^1.0.4" fb-watchman@^2.0.0: version "2.0.2" - resolved "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== dependencies: bser "2.1.1" fbemitter@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/fbemitter/-/fbemitter-3.0.0.tgz#00b2a1af5411254aab416cd75f9e6289bee4bff3" integrity sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw== dependencies: fbjs "^3.0.0" fbjs-css-vars@^1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz#216551136ae02fe255932c3ec8775f18e2c078b8" integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ== fbjs@^3.0.0, fbjs@^3.0.4: version "3.0.5" - resolved "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz" + resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-3.0.5.tgz#aa0edb7d5caa6340011790bd9249dbef8a81128d" integrity sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg== dependencies: cross-fetch "^3.1.5" @@ -5086,17 +5129,17 @@ fbjs@^3.0.0, fbjs@^3.0.4: fetch-retry@^4.1.1: version "4.1.1" - resolved "https://registry.npmjs.org/fetch-retry/-/fetch-retry-4.1.1.tgz" + resolved "https://registry.yarnpkg.com/fetch-retry/-/fetch-retry-4.1.1.tgz#fafe0bb22b54f4d0a9c788dff6dd7f8673ca63f3" integrity sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA== fetch-retry@^5.0.6: version "5.0.6" - resolved "https://registry.npmjs.org/fetch-retry/-/fetch-retry-5.0.6.tgz" + resolved "https://registry.yarnpkg.com/fetch-retry/-/fetch-retry-5.0.6.tgz#17d0bc90423405b7a88b74355bf364acd2a7fa56" integrity sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ== file-type@^16.5.4: version "16.5.4" - resolved "https://registry.npmjs.org/file-type/-/file-type-16.5.4.tgz" + resolved "https://registry.yarnpkg.com/file-type/-/file-type-16.5.4.tgz#474fb4f704bee427681f98dd390058a172a6c2fd" integrity sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw== dependencies: readable-web-to-node-stream "^3.0.0" @@ -5105,19 +5148,19 @@ file-type@^16.5.4: fill-range@^7.1.1: version "7.1.1" - resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== dependencies: to-regex-range "^5.0.1" filter-obj@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/filter-obj/-/filter-obj-1.1.0.tgz#9b311112bc6c6127a16e016c6c5d7f19e0805c5b" integrity sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ== finalhandler@1.1.2: version "1.1.2" - resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== dependencies: debug "2.6.9" @@ -5130,7 +5173,7 @@ finalhandler@1.1.2: find-cache-dir@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== dependencies: commondir "^1.0.1" @@ -5139,14 +5182,14 @@ find-cache-dir@^2.0.0: find-up@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== dependencies: locate-path "^3.0.0" find-up@^4.0.0, find-up@^4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== dependencies: locate-path "^5.0.0" @@ -5154,7 +5197,7 @@ find-up@^4.0.0, find-up@^4.1.0: find-up@^5.0.0, find-up@~5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== dependencies: locate-path "^6.0.0" @@ -5162,41 +5205,41 @@ find-up@^5.0.0, find-up@~5.0.0: find-yarn-workspace-root@~2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz#f47fb8d239c900eb78179aa81b66673eac88f7bd" integrity sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ== dependencies: micromatch "^4.0.2" flow-enums-runtime@^0.0.6: version "0.0.6" - resolved "https://registry.npmjs.org/flow-enums-runtime/-/flow-enums-runtime-0.0.6.tgz" + resolved "https://registry.yarnpkg.com/flow-enums-runtime/-/flow-enums-runtime-0.0.6.tgz#5bb0cd1b0a3e471330f4d109039b7eba5cb3e787" integrity sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw== flow-parser@0.*: - version "0.248.1" - resolved "https://registry.npmjs.org/flow-parser/-/flow-parser-0.248.1.tgz" - integrity sha512-fkCfVPelbTzSVp+jVwSvEyc+I4WG8MNhRG/EWSZZTlgHAMEdhXJaFEbfErXxMktboMhVGchvEFhWxkzNGM1m2A== + version "0.256.0" + resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.256.0.tgz#2a453925caa0f40beb83ef72ea6479ef7b25d739" + integrity sha512-HFb/GgB7hq+TYosLJuMLdLp8aGlyAVfrJaTvcM0w2rz2T33PjkVbRU419ncK/69cjowUksewuspkBheq9ZX9Hw== follow-redirects@^1.15.6: version "1.15.9" - resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.9.tgz#a604fa10e443bf98ca94228d9eebcc2e8a2c8ee1" integrity sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ== fontfaceobserver@^2.1.0: version "2.3.0" - resolved "https://registry.npmjs.org/fontfaceobserver/-/fontfaceobserver-2.3.0.tgz" + resolved "https://registry.yarnpkg.com/fontfaceobserver/-/fontfaceobserver-2.3.0.tgz#5fb392116e75d5024b7ec8e4f2ce92106d1488c8" integrity sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg== for-each@^0.3.3: version "0.3.3" - resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== dependencies: is-callable "^1.1.3" foreground-child@^3.1.0: version "3.3.0" - resolved "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz" + resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.0.tgz#0ac8644c06e431439f8561db8ecf29a7b5519c77" integrity sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg== dependencies: cross-spawn "^7.0.0" @@ -5204,7 +5247,7 @@ foreground-child@^3.1.0: form-data@^3.0.1: version "3.0.2" - resolved "https://registry.npmjs.org/form-data/-/form-data-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.2.tgz#83ad9ced7c03feaad97e293d6f6091011e1659c8" integrity sha512-sJe+TQb2vIaIyO783qN6BlMYWMw3WBOHA1Ay2qxsnjuafEOQFJ2JakedOQirT6D5XPRxDvS7AHYyem9fTpb4LQ== dependencies: asynckit "^0.4.0" @@ -5213,7 +5256,7 @@ form-data@^3.0.1: form-data@^4.0.0: version "4.0.1" - resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.1.tgz#ba1076daaaa5bfd7e99c1a6cb02aa0a5cff90d48" integrity sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw== dependencies: asynckit "^0.4.0" @@ -5222,17 +5265,17 @@ form-data@^4.0.0: freeport-async@2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/freeport-async/-/freeport-async-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/freeport-async/-/freeport-async-2.0.0.tgz#6adf2ec0c629d11abff92836acd04b399135bab4" integrity sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ== fresh@0.5.2: version "0.5.2" - resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== fs-extra@9.0.0: version "9.0.0" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.0.tgz" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.0.tgz#b6afc31036e247b2466dc99c29ae797d5d4580a3" integrity sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g== dependencies: at-least-node "^1.0.0" @@ -5242,7 +5285,7 @@ fs-extra@9.0.0: fs-extra@^8.1.0, fs-extra@~8.1.0: version "8.1.0" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== dependencies: graceful-fs "^4.2.0" @@ -5251,7 +5294,7 @@ fs-extra@^8.1.0, fs-extra@~8.1.0: fs-extra@^9.0.0, fs-extra@^9.1.0: version "9.1.0" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== dependencies: at-least-node "^1.0.0" @@ -5261,36 +5304,36 @@ fs-extra@^9.0.0, fs-extra@^9.1.0: fs-minipass@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== dependencies: minipass "^3.0.0" fs-minipass@^3.0.0: version "3.0.3" - resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz#79a85981c4dc120065e96f62086bf6f9dc26cc54" integrity sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw== dependencies: minipass "^7.0.3" fs.realpath@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== fsevents@^2.3.2: version "2.3.3" - resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== function-bind@^1.1.2: version "1.1.2" - resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== function.prototype.name@^1.1.6: version "1.1.6" - resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd" integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg== dependencies: call-bind "^1.0.2" @@ -5300,55 +5343,58 @@ function.prototype.name@^1.1.6: functions-have-names@^1.2.3: version "1.2.3" - resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== gensync@^1.0.0-beta.2: version "1.0.0-beta.2" - resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== get-caller-file@^2.0.1, get-caller-file@^2.0.5: version "2.0.5" - resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: - version "1.2.4" - resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz" - integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== +get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: + version "1.2.5" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.5.tgz#dfe7dd1b30761b464fe51bf4bb00ac7c37b681e7" + integrity sha512-Y4+pKa7XeRUPWFNvOOYHkRYrfzW07oraURSvjDmRVOJ748OrVmeXtpE4+GCEHncjCjkTxPNRt8kEbxDhsn6VTg== dependencies: + call-bind-apply-helpers "^1.0.0" + dunder-proto "^1.0.0" + es-define-property "^1.0.1" es-errors "^1.3.0" function-bind "^1.1.2" - has-proto "^1.0.1" - has-symbols "^1.0.3" - hasown "^2.0.0" + gopd "^1.2.0" + has-symbols "^1.1.0" + hasown "^2.0.2" get-package-type@^0.1.0: version "0.1.0" - resolved "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz" + resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== get-port@^3.2.0: version "3.2.0" - resolved "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz" + resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.2.0.tgz#dd7ce7de187c06c8bf353796ac71e099f0980ebc" integrity sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg== get-stream@^4.0.0: version "4.1.0" - resolved "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== dependencies: pump "^3.0.0" get-stream@^6.0.0: version "6.0.1" - resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== get-symbol-description@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.2.tgz#533744d5aa20aca4e079c8e5daf7fd44202821f5" integrity sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg== dependencies: call-bind "^1.0.5" @@ -5357,12 +5403,12 @@ get-symbol-description@^1.0.2: getenv@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/getenv/-/getenv-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/getenv/-/getenv-1.0.0.tgz#874f2e7544fbca53c7a4738f37de8605c3fcfc31" integrity sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg== gifwrap@^0.9.2: version "0.9.4" - resolved "https://registry.npmjs.org/gifwrap/-/gifwrap-0.9.4.tgz" + resolved "https://registry.yarnpkg.com/gifwrap/-/gifwrap-0.9.4.tgz#f4eb6169ba027d61df64aafbdcb1f8ae58ccc0c5" integrity sha512-MDMwbhASQuVeD4JKd1fKgNgCRL3fGqMM4WaqpNhWO0JiMOAjbQdumbs4BbBZEy9/M00EHEjKN3HieVhCUlwjeQ== dependencies: image-q "^4.0.0" @@ -5370,14 +5416,14 @@ gifwrap@^0.9.2: glob-parent@^5.1.2: version "5.1.2" - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== dependencies: is-glob "^4.0.1" glob@7.1.6: version "7.1.6" - resolved "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== dependencies: fs.realpath "^1.0.0" @@ -5389,7 +5435,7 @@ glob@7.1.6: glob@^10.2.2, glob@^10.4.2: version "10.4.5" - resolved "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz#f4d9f0b90ffdbab09c9d77f5f29b4262517b0956" integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg== dependencies: foreground-child "^3.1.0" @@ -5401,7 +5447,7 @@ glob@^10.2.2, glob@^10.4.2: glob@^7.1.1, glob@^7.1.3, glob@^7.1.4, glob@^7.1.7, glob@^7.2.3: version "7.2.3" - resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== dependencies: fs.realpath "^1.0.0" @@ -5413,7 +5459,7 @@ glob@^7.1.1, glob@^7.1.3, glob@^7.1.4, glob@^7.1.7, glob@^7.2.3: global@~4.4.0: version "4.4.0" - resolved "https://registry.npmjs.org/global/-/global-4.4.0.tgz" + resolved "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406" integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w== dependencies: min-document "^2.19.0" @@ -5421,12 +5467,12 @@ global@~4.4.0: globals@^11.1.0: version "11.12.0" - resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== -globalthis@^1.0.3: +globalthis@^1.0.4: version "1.0.4" - resolved "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz" + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz#7430ed3a975d97bfb59bcce41f5cabbafa651236" integrity sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ== dependencies: define-properties "^1.2.1" @@ -5434,7 +5480,7 @@ globalthis@^1.0.3: globby@^11.0.1: version "11.1.0" - resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== dependencies: array-union "^2.1.0" @@ -5444,72 +5490,72 @@ globby@^11.0.1: merge2 "^1.4.1" slash "^3.0.0" -gopd@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz" - integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== - dependencies: - get-intrinsic "^1.1.3" +gopd@^1.0.1, gopd@^1.1.0, gopd@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" + integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== graceful-fs@^4.1.11, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9: version "4.2.11" - resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== graphql-tag@^2.10.1: version "2.12.6" - resolved "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz" + resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.12.6.tgz#d441a569c1d2537ef10ca3d1633b48725329b5f1" integrity sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg== dependencies: tslib "^2.1.0" graphql@15.8.0: version "15.8.0" - resolved "https://registry.npmjs.org/graphql/-/graphql-15.8.0.tgz" + resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.8.0.tgz#33410e96b012fa3bdb1091cc99a94769db212b38" integrity sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw== -has-bigints@^1.0.1, has-bigints@^1.0.2: +has-bigints@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== has-flag@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== has-flag@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== dependencies: es-define-property "^1.0.0" -has-proto@^1.0.1, has-proto@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz" - integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== +has-proto@^1.0.3: + version "1.2.0" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.2.0.tgz#5de5a6eabd95fdffd9818b43055e8065e39fe9d5" + integrity sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ== + dependencies: + dunder-proto "^1.0.0" -has-symbols@^1.0.2, has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== +has-symbols@^1.0.3, has-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338" + integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== dependencies: has-symbols "^1.0.3" hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3: version "1.1.7" - resolved "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== dependencies: inherits "^2.0.3" @@ -5517,45 +5563,45 @@ hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3: hasown@^2.0.0, hasown@^2.0.1, hasown@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== dependencies: function-bind "^1.1.2" hermes-estree@0.19.1: version "0.19.1" - resolved "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.19.1.tgz" + resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.19.1.tgz#d5924f5fac2bf0532547ae9f506d6db8f3c96392" integrity sha512-daLGV3Q2MKk8w4evNMKwS8zBE/rcpA800nu1Q5kM08IKijoSnPe9Uo1iIxzPKRkn95IxxsgBMPeYHt3VG4ej2g== hermes-estree@0.23.1: version "0.23.1" - resolved "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.23.1.tgz" + resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.23.1.tgz#d0bac369a030188120ee7024926aabe5a9f84fdb" integrity sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg== hermes-parser@0.19.1: version "0.19.1" - resolved "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.19.1.tgz" + resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.19.1.tgz#1044348097165b7c93dc198a80b04ed5130d6b1a" integrity sha512-Vp+bXzxYJWrpEuJ/vXxUsLnt0+y4q9zyi4zUlkLqD8FKv4LjIfOvP69R/9Lty3dCyKh0E2BU7Eypqr63/rKT/A== dependencies: hermes-estree "0.19.1" hermes-parser@0.23.1: version "0.23.1" - resolved "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.23.1.tgz" + resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.23.1.tgz#e5de648e664f3b3d84d01b48fc7ab164f4b68205" integrity sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA== dependencies: hermes-estree "0.23.1" hermes-profile-transformer@^0.0.6: version "0.0.6" - resolved "https://registry.npmjs.org/hermes-profile-transformer/-/hermes-profile-transformer-0.0.6.tgz" + resolved "https://registry.yarnpkg.com/hermes-profile-transformer/-/hermes-profile-transformer-0.0.6.tgz#bd0f5ecceda80dd0ddaae443469ab26fb38fc27b" integrity sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ== dependencies: source-map "^0.7.3" hmac-drbg@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== dependencies: hash.js "^1.0.3" @@ -5564,33 +5610,40 @@ hmac-drbg@^1.0.1: hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.2: version "3.3.2" - resolved "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz" + resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== dependencies: react-is "^16.7.0" hosted-git-info@^3.0.2: version "3.0.8" - resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.8.tgz" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.8.tgz#6e35d4cc87af2c5f816e4cb9ce350ba87a3f370d" integrity sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw== dependencies: lru-cache "^6.0.0" +hosted-git-info@^7.0.0: + version "7.0.2" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-7.0.2.tgz#9b751acac097757667f30114607ef7b661ff4f17" + integrity sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w== + dependencies: + lru-cache "^10.0.1" + html-encoding-sniffer@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz#2cb1a8cf0db52414776e5b2a7a04d5dd98158de9" integrity sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA== dependencies: whatwg-encoding "^2.0.0" html-escaper@^2.0.0: version "2.0.2" - resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== http-errors@2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== dependencies: depd "2.0.0" @@ -5601,7 +5654,7 @@ http-errors@2.0.0: http-proxy-agent@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== dependencies: "@tootallnate/once" "2" @@ -5610,7 +5663,7 @@ http-proxy-agent@^5.0.0: https-proxy-agent@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== dependencies: agent-base "6" @@ -5618,53 +5671,53 @@ https-proxy-agent@^5.0.1: human-signals@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== hyphenate-style-name@^1.0.3: version "1.1.0" - resolved "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.1.0.tgz#1797bf50369588b47b72ca6d5e65374607cf4436" integrity sha512-WDC/ui2VVRrz3jOVi+XtjqkDjiVjTtFaAGiW37k6b+ohyQ5wYDOGkvCZa8+H0nx3gyvv0+BST9xuOgIyGQ00gw== iconv-lite@0.6.3: version "0.6.3" - resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== dependencies: safer-buffer ">= 2.1.2 < 3.0.0" ieee754@^1.1.13, ieee754@^1.2.1: version "1.2.1" - resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== ignore@^5.2.0: version "5.3.2" - resolved "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== image-q@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/image-q/-/image-q-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/image-q/-/image-q-4.0.0.tgz#31e075be7bae3c1f42a85c469b4732c358981776" integrity sha512-PfJGVgIfKQJuq3s0tTDOKtztksibuUEbJQIYT3by6wctQo+Rdlh7ef4evJ5NCdxY4CfMbvFkocEwbl4BF8RlJw== dependencies: "@types/node" "16.9.1" image-size@^1.0.2: version "1.1.1" - resolved "https://registry.npmjs.org/image-size/-/image-size-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/image-size/-/image-size-1.1.1.tgz#ddd67d4dc340e52ac29ce5f546a09f4e29e840ac" integrity sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ== dependencies: queue "6.0.2" immer@^10.0.3: version "10.1.1" - resolved "https://registry.npmjs.org/immer/-/immer-10.1.1.tgz" + resolved "https://registry.yarnpkg.com/immer/-/immer-10.1.1.tgz#206f344ea372d8ea176891545ee53ccc062db7bc" integrity sha512-s2MPrmjovJcoMaHtx6K11Ra7oD05NT97w1IC5zpMkT6Atjr7H8LjaDd81iIxUYpMKSRRNMJE703M1Fhr/TctHw== import-fresh@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" integrity sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg== dependencies: caller-path "^2.0.0" @@ -5672,7 +5725,7 @@ import-fresh@^2.0.0: import-local@^3.0.2: version "3.2.0" - resolved "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.2.0.tgz#c3d5c745798c02a6f8b897726aba5100186ee260" integrity sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA== dependencies: pkg-dir "^4.2.0" @@ -5680,17 +5733,17 @@ import-local@^3.0.2: imurmurhash@^0.1.4: version "0.1.4" - resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== indent-string@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== inflight@^1.0.4: version "1.0.6" - resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== dependencies: once "^1.3.0" @@ -5698,17 +5751,17 @@ inflight@^1.0.4: inherits@2, inherits@2.0.4, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: version "2.0.4" - resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== ini@~1.3.0: version "1.3.8" - resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== inline-style-prefixer@^6.0.1: version "6.0.4" - resolved "https://registry.npmjs.org/inline-style-prefixer/-/inline-style-prefixer-6.0.4.tgz" + resolved "https://registry.yarnpkg.com/inline-style-prefixer/-/inline-style-prefixer-6.0.4.tgz#4290ed453ab0e4441583284ad86e41ad88384f44" integrity sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg== dependencies: css-in-js-utils "^3.1.0" @@ -5716,7 +5769,7 @@ inline-style-prefixer@^6.0.1: internal-ip@4.3.0: version "4.3.0" - resolved "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz" + resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907" integrity sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg== dependencies: default-gateway "^4.2.0" @@ -5724,7 +5777,7 @@ internal-ip@4.3.0: internal-slot@^1.0.7: version "1.0.7" - resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.7.tgz#c06dcca3ed874249881007b0a5523b172a190802" integrity sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g== dependencies: es-errors "^1.3.0" @@ -5733,29 +5786,29 @@ internal-slot@^1.0.7: "internmap@1 - 2": version "2.0.3" - resolved "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz" + resolved "https://registry.yarnpkg.com/internmap/-/internmap-2.0.3.tgz#6685f23755e43c524e251d29cbc97248e3061009" integrity sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg== invariant@2.2.4, invariant@^2.2.2, invariant@^2.2.4: version "2.2.4" - resolved "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== dependencies: loose-envify "^1.0.0" ip-regex@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" integrity sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw== ipaddr.js@^1.9.0: version "1.9.1" - resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== is-arguments@^1.0.4: version "1.1.1" - resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== dependencies: call-bind "^1.0.2" @@ -5763,7 +5816,7 @@ is-arguments@^1.0.4: is-array-buffer@^3.0.4: version "3.0.4" - resolved "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.4.tgz#7a1f92b3d61edd2bc65d24f130530ea93d7fae98" integrity sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw== dependencies: call-bind "^1.0.2" @@ -5771,287 +5824,330 @@ is-array-buffer@^3.0.4: is-arrayish@^0.2.1: version "0.2.1" - resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== is-arrayish@^0.3.1: version "0.3.2" - resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== -is-bigint@^1.0.1: - version "1.0.4" - resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz" - integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== +is-async-function@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.0.0.tgz#8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646" + integrity sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA== dependencies: - has-bigints "^1.0.1" + has-tostringtag "^1.0.0" -is-boolean-object@^1.1.0: - version "1.1.2" - resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz" - integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== +is-bigint@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.1.0.tgz#dda7a3445df57a42583db4228682eba7c4170672" + integrity sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ== dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" + has-bigints "^1.0.2" + +is-boolean-object@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.2.0.tgz#9743641e80a62c094b5941c5bb791d66a88e497a" + integrity sha512-kR5g0+dXf/+kXnqI+lu0URKYPKgICtHGGNCDSB10AaUFj3o/HkB3u7WfpRBJGFopxxY0oH3ux7ZsDjLtK7xqvw== + dependencies: + call-bind "^1.0.7" + has-tostringtag "^1.0.2" is-buffer@~1.1.1, is-buffer@~1.1.6: version "1.1.6" - resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== -is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: +is-callable@^1.1.3, is-callable@^1.2.7: version "1.2.7" - resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== is-core-module@^2.13.0: version "2.15.1" - resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.15.1.tgz#a7363a25bee942fefab0de13bf6aa372c82dcc37" integrity sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ== dependencies: hasown "^2.0.2" is-data-view@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.1.tgz#4b4d3a511b70f3dc26d42c03ca9ca515d847759f" integrity sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w== dependencies: is-typed-array "^1.1.13" -is-date-object@^1.0.1: +is-date-object@^1.0.5: version "1.0.5" - resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== dependencies: has-tostringtag "^1.0.0" is-directory@^0.3.1: version "0.3.1" - resolved "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz" + resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" integrity sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw== is-docker@^2.0.0, is-docker@^2.1.1: version "2.2.1" - resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== is-extglob@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" integrity sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww== is-extglob@^2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== +is-finalizationregistry@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.1.0.tgz#d74a7d0c5f3578e34a20729e69202e578d495dc2" + integrity sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA== + dependencies: + call-bind "^1.0.7" + is-fullwidth-code-point@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== is-fullwidth-code-point@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== is-function@^1.0.1: version "1.0.2" - resolved "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.2.tgz#4f097f30abf6efadac9833b17ca5dc03f8144e08" integrity sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ== is-generator-fn@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== -is-generator-function@^1.0.7: +is-generator-function@^1.0.10, is-generator-function@^1.0.7: version "1.0.10" - resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz" + resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== dependencies: has-tostringtag "^1.0.0" is-glob@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" integrity sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg== dependencies: is-extglob "^1.0.0" -is-glob@^4.0.1: +is-glob@^4.0.1, is-glob@^4.0.3: version "4.0.3" - resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== dependencies: is-extglob "^2.1.1" is-interactive@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== is-invalid-path@^0.1.0: version "0.1.0" - resolved "https://registry.npmjs.org/is-invalid-path/-/is-invalid-path-0.1.0.tgz" + resolved "https://registry.yarnpkg.com/is-invalid-path/-/is-invalid-path-0.1.0.tgz#307a855b3cf1a938b44ea70d2c61106053714f34" integrity sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ== dependencies: is-glob "^2.0.0" +is-map@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz#ede96b7fe1e270b3c4465e3a465658764926d62e" + integrity sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw== + is-negative-zero@^2.0.3: version "2.0.3" - resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747" integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== -is-number-object@^1.0.4: - version "1.0.7" - resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz" - integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== +is-number-object@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.1.0.tgz#5a867e9ecc3d294dda740d9f127835857af7eb05" + integrity sha512-KVSZV0Dunv9DTPkhXwcZ3Q+tUc9TsaE1ZwX5J2WMvsSGS6Md8TFPun5uwh0yRdrNerI6vf/tbJxqSx4c1ZI1Lw== dependencies: - has-tostringtag "^1.0.0" + call-bind "^1.0.7" + has-tostringtag "^1.0.2" is-number@^7.0.0: version "7.0.0" - resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== is-path-cwd@^2.2.0: version "2.2.0" - resolved "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== is-path-inside@^3.0.2: version "3.0.3" - resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== is-plain-obj@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== is-plain-object@^2.0.4: version "2.0.4" - resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== dependencies: isobject "^3.0.1" is-potential-custom-element-name@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== is-regex@^1.1.4: - version "1.1.4" - resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz" - integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + version "1.2.0" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.2.0.tgz#41b9d266e7eb7451312c64efc37e8a7d453077cf" + integrity sha512-B6ohK4ZmoftlUe+uvenXSbPJFo6U37BH7oO1B3nQH8f/7h27N56s85MhUtbFJAziz5dcmuR3i8ovUl35zp8pFA== dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" + call-bind "^1.0.7" + gopd "^1.1.0" + has-tostringtag "^1.0.2" + hasown "^2.0.2" + +is-set@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz#8ab209ea424608141372ded6e0cb200ef1d9d01d" + integrity sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg== is-shared-array-buffer@^1.0.2, is-shared-array-buffer@^1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz#1237f1cba059cdb62431d378dcc37d9680181688" integrity sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg== dependencies: call-bind "^1.0.7" is-stream@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" integrity sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ== is-stream@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== -is-string@^1.0.5, is-string@^1.0.7: - version "1.0.7" - resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz" - integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== +is-string@^1.0.7, is-string@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.1.0.tgz#8cb83c5d57311bf8058bc6c8db294711641da45d" + integrity sha512-PlfzajuF9vSo5wErv3MJAKD/nqf9ngAs1NFQYm16nUYFO2IzxJ2hcm+IOCg+EEopdykNNUhVq5cz35cAUxU8+g== dependencies: - has-tostringtag "^1.0.0" + call-bind "^1.0.7" + has-tostringtag "^1.0.2" -is-symbol@^1.0.2, is-symbol@^1.0.3: - version "1.0.4" - resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz" - integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== +is-symbol@^1.0.4, is-symbol@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.1.0.tgz#ae993830a56d4781886d39f9f0a46b3e89b7b60b" + integrity sha512-qS8KkNNXUZ/I+nX6QT8ZS1/Yx0A444yhzdTKxCzKkNjQ9sHErBxJnJAgh+f5YhusYECEcjo4XcyH87hn6+ks0A== dependencies: - has-symbols "^1.0.2" + call-bind "^1.0.7" + has-symbols "^1.0.3" + safe-regex-test "^1.0.3" is-typed-array@^1.1.13, is-typed-array@^1.1.3: version "1.1.13" - resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.13.tgz#d6c5ca56df62334959322d7d7dd1cca50debe229" integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw== dependencies: which-typed-array "^1.1.14" is-unicode-supported@^0.1.0: version "0.1.0" - resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz" + resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== is-valid-path@^0.1.1: version "0.1.1" - resolved "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz" + resolved "https://registry.yarnpkg.com/is-valid-path/-/is-valid-path-0.1.1.tgz#110f9ff74c37f663e1ec7915eb451f2db93ac9df" integrity sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A== dependencies: is-invalid-path "^0.1.0" +is-weakmap@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz#bf72615d649dfe5f699079c54b83e47d1ae19cfd" + integrity sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w== + is-weakref@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== dependencies: call-bind "^1.0.2" +is-weakset@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.3.tgz#e801519df8c0c43e12ff2834eead84ec9e624007" + integrity sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ== + dependencies: + call-bind "^1.0.7" + get-intrinsic "^1.2.4" + is-wsl@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" integrity sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw== is-wsl@^2.1.1, is-wsl@^2.2.0: version "2.2.0" - resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== dependencies: is-docker "^2.0.0" isarray@^2.0.5: version "2.0.5" - resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== isarray@~1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== isexe@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== isobject@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== isows@1.0.6: version "1.0.6" - resolved "https://registry.npmjs.org/isows/-/isows-1.0.6.tgz" + resolved "https://registry.yarnpkg.com/isows/-/isows-1.0.6.tgz#0da29d706fa51551c663c627ace42769850f86e7" integrity sha512-lPHCayd40oW98/I0uvgaHKWCSvkzY27LjWLbtzOm64yQ+G3Q5npjjbdppU65iZXkK1Zt+kH9pfegli0AYfwYYw== istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: version "3.2.2" - resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz#2d166c4b0644d43a39f04bf6c2edd1e585f31756" integrity sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg== istanbul-lib-instrument@^5.0.4: version "5.2.1" - resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== dependencies: "@babel/core" "^7.12.3" @@ -6062,7 +6158,7 @@ istanbul-lib-instrument@^5.0.4: istanbul-lib-instrument@^6.0.0: version "6.0.3" - resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz#fa15401df6c15874bcb2105f773325d78c666765" integrity sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q== dependencies: "@babel/core" "^7.23.9" @@ -6073,7 +6169,7 @@ istanbul-lib-instrument@^6.0.0: istanbul-lib-report@^3.0.0: version "3.0.1" - resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz#908305bac9a5bd175ac6a74489eafd0fc2445a7d" integrity sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw== dependencies: istanbul-lib-coverage "^3.0.0" @@ -6082,7 +6178,7 @@ istanbul-lib-report@^3.0.0: istanbul-lib-source-maps@^4.0.0: version "4.0.1" - resolved "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== dependencies: debug "^4.1.1" @@ -6091,7 +6187,7 @@ istanbul-lib-source-maps@^4.0.0: istanbul-reports@^3.1.3: version "3.1.7" - resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.7.tgz#daed12b9e1dca518e15c056e1e537e741280fa0b" integrity sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g== dependencies: html-escaper "^2.0.0" @@ -6099,7 +6195,7 @@ istanbul-reports@^3.1.3: jackspeak@^3.1.2: version "3.4.3" - resolved "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz#8833a9d89ab4acde6188942bd1c53b6390ed5a8a" integrity sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw== dependencies: "@isaacs/cliui" "^8.0.2" @@ -6108,7 +6204,7 @@ jackspeak@^3.1.2: jest-changed-files@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.7.0.tgz#1c06d07e77c78e1585d020424dedc10d6e17ac3a" integrity sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w== dependencies: execa "^5.0.0" @@ -6117,7 +6213,7 @@ jest-changed-files@^29.7.0: jest-circus@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.7.0.tgz#b6817a45fcc835d8b16d5962d0c026473ee3668a" integrity sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw== dependencies: "@jest/environment" "^29.7.0" @@ -6143,7 +6239,7 @@ jest-circus@^29.7.0: jest-cli@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.7.0.tgz#5592c940798e0cae677eec169264f2d839a37995" integrity sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg== dependencies: "@jest/core" "^29.7.0" @@ -6160,7 +6256,7 @@ jest-cli@^29.7.0: jest-config@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.7.0.tgz#bcbda8806dbcc01b1e316a46bb74085a84b0245f" integrity sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ== dependencies: "@babel/core" "^7.11.6" @@ -6188,7 +6284,7 @@ jest-config@^29.7.0: jest-diff@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.7.0.tgz#017934a66ebb7ecf6f205e84699be10afd70458a" integrity sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw== dependencies: chalk "^4.0.0" @@ -6198,14 +6294,14 @@ jest-diff@^29.7.0: jest-docblock@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.7.0.tgz#8fddb6adc3cdc955c93e2a87f61cfd350d5d119a" integrity sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g== dependencies: detect-newline "^3.0.0" jest-each@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.7.0.tgz#162a9b3f2328bdd991beaabffbb74745e56577d1" integrity sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ== dependencies: "@jest/types" "^29.6.3" @@ -6216,7 +6312,7 @@ jest-each@^29.7.0: jest-environment-jsdom@^29.2.1: version "29.7.0" - resolved "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz#d206fa3551933c3fd519e5dfdb58a0f5139a837f" integrity sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA== dependencies: "@jest/environment" "^29.7.0" @@ -6230,7 +6326,7 @@ jest-environment-jsdom@^29.2.1: jest-environment-node@^29.6.3, jest-environment-node@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.7.0.tgz#0b93e111dda8ec120bc8300e6d1fb9576e164376" integrity sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw== dependencies: "@jest/environment" "^29.7.0" @@ -6242,7 +6338,7 @@ jest-environment-node@^29.6.3, jest-environment-node@^29.7.0: jest-expo@~51.0.3: version "51.0.4" - resolved "https://registry.npmjs.org/jest-expo/-/jest-expo-51.0.4.tgz" + resolved "https://registry.yarnpkg.com/jest-expo/-/jest-expo-51.0.4.tgz#a780e5a2f7d3c54534f799666fd00a5a11de0ac7" integrity sha512-WmlR4rUur1TNF/F14brKCmPdX3TWf7Bno/6A1PuxnflN79LEIXpXuPKMlMWwCCChTohGB5FRniknRibblWu1ug== dependencies: "@expo/config" "~9.0.0-beta.0" @@ -6260,12 +6356,12 @@ jest-expo@~51.0.3: jest-get-type@^29.6.3: version "29.6.3" - resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.6.3.tgz#36f499fdcea197c1045a127319c0481723908fd1" integrity sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw== jest-haste-map@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.7.0.tgz#3c2396524482f5a0506376e6c858c3bbcc17b104" integrity sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA== dependencies: "@jest/types" "^29.6.3" @@ -6284,7 +6380,7 @@ jest-haste-map@^29.7.0: jest-leak-detector@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz#5b7ec0dadfdfec0ca383dc9aa016d36b5ea4c728" integrity sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw== dependencies: jest-get-type "^29.6.3" @@ -6292,7 +6388,7 @@ jest-leak-detector@^29.7.0: jest-matcher-utils@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz#ae8fec79ff249fd592ce80e3ee474e83a6c44f12" integrity sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g== dependencies: chalk "^4.0.0" @@ -6302,7 +6398,7 @@ jest-matcher-utils@^29.7.0: jest-message-util@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.7.0.tgz#8bc392e204e95dfe7564abbe72a404e28e51f7f3" integrity sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w== dependencies: "@babel/code-frame" "^7.12.13" @@ -6317,7 +6413,7 @@ jest-message-util@^29.7.0: jest-mock@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.7.0.tgz#4e836cf60e99c6fcfabe9f99d017f3fdd50a6347" integrity sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw== dependencies: "@jest/types" "^29.6.3" @@ -6326,17 +6422,17 @@ jest-mock@^29.7.0: jest-pnp-resolver@^1.2.2: version "1.2.3" - resolved "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz" + resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== jest-regex-util@^29.0.0, jest-regex-util@^29.6.3: version "29.6.3" - resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.6.3.tgz#4a556d9c776af68e1c5f48194f4d0327d24e8a52" integrity sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg== jest-resolve-dependencies@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz#1b04f2c095f37fc776ff40803dc92921b1e88428" integrity sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA== dependencies: jest-regex-util "^29.6.3" @@ -6344,7 +6440,7 @@ jest-resolve-dependencies@^29.7.0: jest-resolve@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.7.0.tgz#64d6a8992dd26f635ab0c01e5eef4399c6bcbc30" integrity sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA== dependencies: chalk "^4.0.0" @@ -6359,7 +6455,7 @@ jest-resolve@^29.7.0: jest-runner@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.7.0.tgz#809af072d408a53dcfd2e849a4c976d3132f718e" integrity sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ== dependencies: "@jest/console" "^29.7.0" @@ -6386,7 +6482,7 @@ jest-runner@^29.7.0: jest-runtime@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.7.0.tgz#efecb3141cf7d3767a3a0cc8f7c9990587d3d817" integrity sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ== dependencies: "@jest/environment" "^29.7.0" @@ -6414,7 +6510,7 @@ jest-runtime@^29.7.0: jest-snapshot@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.7.0.tgz#c2c574c3f51865da1bb329036778a69bf88a6be5" integrity sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw== dependencies: "@babel/core" "^7.11.6" @@ -6440,7 +6536,7 @@ jest-snapshot@^29.7.0: jest-util@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc" integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== dependencies: "@jest/types" "^29.6.3" @@ -6452,7 +6548,7 @@ jest-util@^29.7.0: jest-validate@^29.6.3, jest-validate@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.7.0.tgz#7bf705511c64da591d46b15fce41400d52147d9c" integrity sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw== dependencies: "@jest/types" "^29.6.3" @@ -6464,7 +6560,7 @@ jest-validate@^29.6.3, jest-validate@^29.7.0: jest-watch-select-projects@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/jest-watch-select-projects/-/jest-watch-select-projects-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/jest-watch-select-projects/-/jest-watch-select-projects-2.0.0.tgz#4373d7e4de862aae28b46e036b669a4c913ea867" integrity sha512-j00nW4dXc2NiCW6znXgFLF9g8PJ0zP25cpQ1xRro/HU2GBfZQFZD0SoXnAlaoKkIY4MlfTMkKGbNXFpvCdjl1w== dependencies: ansi-escapes "^4.3.0" @@ -6473,7 +6569,7 @@ jest-watch-select-projects@^2.0.0: jest-watch-typeahead@2.2.1: version "2.2.1" - resolved "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-2.2.1.tgz" + resolved "https://registry.yarnpkg.com/jest-watch-typeahead/-/jest-watch-typeahead-2.2.1.tgz#36601520a2a30fd561788552dbda9c76bb44814a" integrity sha512-jYpYmUnTzysmVnwq49TAxlmtOAwp8QIqvZyoofQFn8fiWhEDZj33ZXzg3JA4nGnzWFm1hbWf3ADpteUokvXgFA== dependencies: ansi-escapes "^6.0.0" @@ -6486,7 +6582,7 @@ jest-watch-typeahead@2.2.1: jest-watcher@^29.0.0, jest-watcher@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.7.0.tgz#7810d30d619c3a62093223ce6bb359ca1b28a2f2" integrity sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g== dependencies: "@jest/test-result" "^29.7.0" @@ -6500,7 +6596,7 @@ jest-watcher@^29.0.0, jest-watcher@^29.7.0: jest-worker@^29.6.3, jest-worker@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.7.0.tgz#acad073acbbaeb7262bd5389e1bcf43e10058d4a" integrity sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw== dependencies: "@types/node" "*" @@ -6510,7 +6606,7 @@ jest-worker@^29.6.3, jest-worker@^29.7.0: jest@^29.2.1: version "29.7.0" - resolved "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/jest/-/jest-29.7.0.tgz#994676fc24177f088f1c5e3737f5697204ff2613" integrity sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw== dependencies: "@jest/core" "^29.7.0" @@ -6520,12 +6616,12 @@ jest@^29.2.1: jimp-compact@0.16.1: version "0.16.1" - resolved "https://registry.npmjs.org/jimp-compact/-/jimp-compact-0.16.1.tgz" + resolved "https://registry.yarnpkg.com/jimp-compact/-/jimp-compact-0.16.1.tgz#9582aea06548a2c1e04dd148d7c3ab92075aefa3" integrity sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww== joi@^17.2.1: version "17.13.3" - resolved "https://registry.npmjs.org/joi/-/joi-17.13.3.tgz" + resolved "https://registry.yarnpkg.com/joi/-/joi-17.13.3.tgz#0f5cc1169c999b30d344366d384b12d92558bcec" integrity sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA== dependencies: "@hapi/hoek" "^9.3.0" @@ -6536,37 +6632,37 @@ joi@^17.2.1: join-component@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/join-component/-/join-component-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/join-component/-/join-component-1.1.0.tgz#b8417b750661a392bee2c2537c68b2a9d4977cd5" integrity sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ== jose@^4.15.5: version "4.15.9" - resolved "https://registry.npmjs.org/jose/-/jose-4.15.9.tgz" + resolved "https://registry.yarnpkg.com/jose/-/jose-4.15.9.tgz#9b68eda29e9a0614c042fa29387196c7dd800100" integrity sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA== jpeg-js@^0.4.2: version "0.4.4" - resolved "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz" + resolved "https://registry.yarnpkg.com/jpeg-js/-/jpeg-js-0.4.4.tgz#a9f1c6f1f9f0fa80cdb3484ed9635054d28936aa" integrity sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg== js-cookie@^3.0.5: version "3.0.5" - resolved "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.5.tgz" + resolved "https://registry.yarnpkg.com/js-cookie/-/js-cookie-3.0.5.tgz#0b7e2fd0c01552c58ba86e0841f94dc2557dcdbc" integrity sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw== js-sha3@0.8.0: version "0.8.0" - resolved "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz" + resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== js-yaml@^3.13.1: version "3.14.1" - resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== dependencies: argparse "^1.0.7" @@ -6574,24 +6670,24 @@ js-yaml@^3.13.1: js-yaml@^4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== dependencies: argparse "^2.0.1" jsc-android@^250231.0.0: version "250231.0.0" - resolved "https://registry.npmjs.org/jsc-android/-/jsc-android-250231.0.0.tgz" + resolved "https://registry.yarnpkg.com/jsc-android/-/jsc-android-250231.0.0.tgz#91720f8df382a108872fa4b3f558f33ba5e95262" integrity sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw== jsc-safe-url@^0.2.2, jsc-safe-url@^0.2.4: version "0.2.4" - resolved "https://registry.npmjs.org/jsc-safe-url/-/jsc-safe-url-0.2.4.tgz" + resolved "https://registry.yarnpkg.com/jsc-safe-url/-/jsc-safe-url-0.2.4.tgz#141c14fbb43791e88d5dc64e85a374575a83477a" integrity sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q== jscodeshift@^0.14.0: version "0.14.0" - resolved "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.14.0.tgz" + resolved "https://registry.yarnpkg.com/jscodeshift/-/jscodeshift-0.14.0.tgz#7542e6715d6d2e8bde0b4e883f0ccea358b46881" integrity sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA== dependencies: "@babel/core" "^7.13.16" @@ -6616,7 +6712,7 @@ jscodeshift@^0.14.0: jsdom@^20.0.0: version "20.0.3" - resolved "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-20.0.3.tgz#886a41ba1d4726f67a8858028c99489fed6ad4db" integrity sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ== dependencies: abab "^2.0.6" @@ -6648,27 +6744,32 @@ jsdom@^20.0.0: jsesc@^2.5.1: version "2.5.2" - resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== -jsesc@^3.0.2, jsesc@~3.0.2: +jsesc@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz#74d335a234f67ed19907fdadfac7ccf9d409825d" + integrity sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA== + +jsesc@~3.0.2: version "3.0.2" - resolved "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.0.2.tgz#bb8b09a6597ba426425f2e4a07245c3d00b9343e" integrity sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g== json-parse-better-errors@^1.0.1: version "1.0.2" - resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== json-parse-even-better-errors@^2.3.0: version "2.3.1" - resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== json-schema-deref-sync@^0.13.0: version "0.13.0" - resolved "https://registry.npmjs.org/json-schema-deref-sync/-/json-schema-deref-sync-0.13.0.tgz" + resolved "https://registry.yarnpkg.com/json-schema-deref-sync/-/json-schema-deref-sync-0.13.0.tgz#cb08b4ff435a48b5a149652d7750fdd071009823" integrity sha512-YBOEogm5w9Op337yb6pAT6ZXDqlxAsQCanM3grid8lMWNxRJO/zWEJi3ZzqDL8boWfwhTFym5EFrNgWwpqcBRg== dependencies: clone "^2.1.2" @@ -6682,29 +6783,29 @@ json-schema-deref-sync@^0.13.0: json-schema-traverse@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== json-stringify-safe@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== json5@^2.2.2, json5@^2.2.3: version "2.2.3" - resolved "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== jsonfile@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== optionalDependencies: graceful-fs "^4.1.6" jsonfile@^6.0.1: version "6.1.0" - resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== dependencies: universalify "^2.0.0" @@ -6713,27 +6814,27 @@ jsonfile@^6.0.1: kind-of@^6.0.2: version "6.0.3" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== kleur@^3.0.3: version "3.0.3" - resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== leven@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== libphonenumber-js@^1.10.31, libphonenumber-js@^1.10.44: - version "1.11.12" - resolved "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.11.12.tgz" - integrity sha512-QkJn9/D7zZ1ucvT++TQSvZuSA2xAWeUytU+DiEQwbPKLyrDpvbul2AFs1CGbRAPpSCCk47aRAb5DX5mmcayp4g== + version "1.11.16" + resolved "https://registry.yarnpkg.com/libphonenumber-js/-/libphonenumber-js-1.11.16.tgz#3aa64a8a95ffc59253a5df3009940a9604a02102" + integrity sha512-Noyazmt0yOvnG0OeRY45Cd1ur8G7Z0HWVkuCuKe+yysGNxPQwBAODBQQ40j0AIagi9ZWurfmmZWNlpg4h4W+XQ== lighthouse-logger@^1.0.0: version "1.4.2" - resolved "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz" + resolved "https://registry.yarnpkg.com/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz#aef90f9e97cd81db367c7634292ee22079280aaa" integrity sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g== dependencies: debug "^2.6.9" @@ -6741,7 +6842,7 @@ lighthouse-logger@^1.0.0: lightningcss-darwin-arm64@1.19.0: version "1.19.0" - resolved "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.19.0.tgz" + resolved "https://registry.yarnpkg.com/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.19.0.tgz#56ab071e932f845dbb7667f44f5b78441175a343" integrity sha512-wIJmFtYX0rXHsXHSr4+sC5clwblEMji7HHQ4Ub1/CznVRxtCFha6JIt5JZaNf8vQrfdZnBxLLC6R8pC818jXqg== lightningcss-darwin-x64@1.19.0: @@ -6781,7 +6882,7 @@ lightningcss-win32-x64-msvc@1.19.0: lightningcss@~1.19.0: version "1.19.0" - resolved "https://registry.npmjs.org/lightningcss/-/lightningcss-1.19.0.tgz" + resolved "https://registry.yarnpkg.com/lightningcss/-/lightningcss-1.19.0.tgz#fbbad0975de66252e38d96b5bdd2a62f2dd0ffbf" integrity sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA== dependencies: detect-libc "^1.0.3" @@ -6797,12 +6898,12 @@ lightningcss@~1.19.0: lines-and-columns@^1.1.6: version "1.2.4" - resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== load-bmfont@^1.3.1: version "1.4.2" - resolved "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.2.tgz" + resolved "https://registry.yarnpkg.com/load-bmfont/-/load-bmfont-1.4.2.tgz#e0f4516064fa5be8439f9c3696c01423a64e8717" integrity sha512-qElWkmjW9Oq1F9EI5Gt7aD9zcdHb9spJCW1L/dmPf7KzCCEJxq8nhHz5eCgI9aMf7vrG/wyaCqdsI+Iy9ZTlog== dependencies: buffer-equal "0.0.1" @@ -6816,7 +6917,7 @@ load-bmfont@^1.3.1: locate-path@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== dependencies: p-locate "^3.0.0" @@ -6824,43 +6925,43 @@ locate-path@^3.0.0: locate-path@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== dependencies: p-locate "^4.1.0" locate-path@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== dependencies: p-locate "^5.0.0" lodash.debounce@^4.0.8: version "4.0.8" - resolved "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== lodash.throttle@^4.1.1: version "4.1.1" - resolved "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz" + resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ== lodash@^4.17.10, lodash@^4.17.13, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21: version "4.17.21" - resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== log-symbols@^2.2.0: version "2.2.0" - resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== dependencies: chalk "^2.0.1" log-symbols@^4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== dependencies: chalk "^4.1.0" @@ -6868,7 +6969,7 @@ log-symbols@^4.1.0: logkitty@^0.7.1: version "0.7.1" - resolved "https://registry.npmjs.org/logkitty/-/logkitty-0.7.1.tgz" + resolved "https://registry.yarnpkg.com/logkitty/-/logkitty-0.7.1.tgz#8e8d62f4085a826e8d38987722570234e33c6aa7" integrity sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ== dependencies: ansi-fragments "^0.2.1" @@ -6877,7 +6978,7 @@ logkitty@^0.7.1: loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: version "1.4.0" - resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== dependencies: js-tokens "^3.0.0 || ^4.0.0" @@ -6897,26 +6998,26 @@ lottie-react-native@^5.1.5: lru-cache@^10.0.1, lru-cache@^10.2.0: version "10.4.3" - resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119" integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== lru-cache@^5.1.1: version "5.1.1" - resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== dependencies: yallist "^3.0.2" lru-cache@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== dependencies: yallist "^4.0.0" make-dir@^2.0.0, make-dir@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== dependencies: pify "^4.0.1" @@ -6924,33 +7025,33 @@ make-dir@^2.0.0, make-dir@^2.1.0: make-dir@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-4.0.0.tgz#c3c2307a771277cd9638305f915c29ae741b614e" integrity sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw== dependencies: semver "^7.5.3" makeerror@1.0.12: version "1.0.12" - resolved "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== dependencies: tmpl "1.0.5" marky@^1.2.2: version "1.2.5" - resolved "https://registry.npmjs.org/marky/-/marky-1.2.5.tgz" + resolved "https://registry.yarnpkg.com/marky/-/marky-1.2.5.tgz#55796b688cbd72390d2d399eaaf1832c9413e3c0" integrity sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q== md5-file@^3.2.3: version "3.2.3" - resolved "https://registry.npmjs.org/md5-file/-/md5-file-3.2.3.tgz" + resolved "https://registry.yarnpkg.com/md5-file/-/md5-file-3.2.3.tgz#f9bceb941eca2214a4c0727f5e700314e770f06f" integrity sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw== dependencies: buffer-alloc "^1.1.0" md5@^2.2.1: version "2.3.0" - resolved "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz" + resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== dependencies: charenc "0.0.2" @@ -6959,7 +7060,7 @@ md5@^2.2.1: md5@~2.2.0: version "2.2.1" - resolved "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz" + resolved "https://registry.yarnpkg.com/md5/-/md5-2.2.1.tgz#53ab38d5fe3c8891ba465329ea23fac0540126f9" integrity sha512-PlGG4z5mBANDGCKsYQe0CaUYHdZYZt8ZPZLmEt+Urf0W4GlpTX4HescwHU+dc9+Z/G/vZKYZYFrwgm9VxK6QOQ== dependencies: charenc "~0.0.1" @@ -6968,49 +7069,49 @@ md5@~2.2.0: md5hex@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/md5hex/-/md5hex-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/md5hex/-/md5hex-1.0.0.tgz#ed74b477a2ee9369f75efee2f08d5915e52a42e8" integrity sha512-c2YOUbp33+6thdCUi34xIyOU/a7bvGKj/3DB1iaPMTuPHf/Q2d5s4sn1FaCOO43XkXggnb08y5W2PU8UNYNLKQ== mdn-data@2.0.14: version "2.0.14" - resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== memoize-one@^5.0.0: version "5.2.1" - resolved "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz" + resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.2.1.tgz#8337aa3c4335581839ec01c3d594090cebe8f00e" integrity sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q== memoize-one@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-6.0.0.tgz#b2591b871ed82948aee4727dc6abceeeac8c1045" integrity sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw== memory-cache@~0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/memory-cache/-/memory-cache-0.2.0.tgz" + resolved "https://registry.yarnpkg.com/memory-cache/-/memory-cache-0.2.0.tgz#7890b01d52c00c8ebc9d533e1f8eb17e3034871a" integrity sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA== merge-options@^3.0.4: version "3.0.4" - resolved "https://registry.npmjs.org/merge-options/-/merge-options-3.0.4.tgz" + resolved "https://registry.yarnpkg.com/merge-options/-/merge-options-3.0.4.tgz#84709c2aa2a4b24c1981f66c179fe5565cc6dbb7" integrity sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ== dependencies: is-plain-obj "^2.1.0" merge-stream@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== merge2@^1.3.0, merge2@^1.4.1: version "1.4.1" - resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== metro-babel-transformer@0.80.12: version "0.80.12" - resolved "https://registry.npmjs.org/metro-babel-transformer/-/metro-babel-transformer-0.80.12.tgz" + resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.80.12.tgz#ad02ade921dd4ced27b26b18ff31eb60608e3f56" integrity sha512-YZziRs0MgA3pzCkkvOoQRXjIoVjvrpi/yRlJnObyIvMP6lFdtyG4nUGIwGY9VXnBvxmXD6mPY2e+NSw6JAyiRg== dependencies: "@babel/core" "^7.20.0" @@ -7020,14 +7121,14 @@ metro-babel-transformer@0.80.12: metro-cache-key@0.80.12: version "0.80.12" - resolved "https://registry.npmjs.org/metro-cache-key/-/metro-cache-key-0.80.12.tgz" + resolved "https://registry.yarnpkg.com/metro-cache-key/-/metro-cache-key-0.80.12.tgz#52f5de698b85866503ace45d0ad76f75aaec92a4" integrity sha512-o4BspKnugg/pE45ei0LGHVuBJXwRgruW7oSFAeSZvBKA/sGr0UhOGY3uycOgWInnS3v5yTTfiBA9lHlNRhsvGA== dependencies: flow-enums-runtime "^0.0.6" metro-cache@0.80.12: version "0.80.12" - resolved "https://registry.npmjs.org/metro-cache/-/metro-cache-0.80.12.tgz" + resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.80.12.tgz#bd81af02c4f17b5aeab19bb030566b14147cee8b" integrity sha512-p5kNHh2KJ0pbQI/H7ZBPCEwkyNcSz7OUkslzsiIWBMPQGFJ/xArMwkV7I+GJcWh+b4m6zbLxE5fk6fqbVK1xGA== dependencies: exponential-backoff "^3.1.1" @@ -7036,7 +7137,7 @@ metro-cache@0.80.12: metro-config@0.80.12, metro-config@^0.80.3: version "0.80.12" - resolved "https://registry.npmjs.org/metro-config/-/metro-config-0.80.12.tgz" + resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.80.12.tgz#1543009f37f7ad26352ffc493fc6305d38bdf1c0" integrity sha512-4rwOWwrhm62LjB12ytiuR5NgK1ZBNr24/He8mqCsC+HXZ+ATbrewLNztzbAZHtFsrxP4D4GLTGgh96pCpYLSAQ== dependencies: connect "^3.6.5" @@ -7050,7 +7151,7 @@ metro-config@0.80.12, metro-config@^0.80.3: metro-core@0.80.12, metro-core@^0.80.3: version "0.80.12" - resolved "https://registry.npmjs.org/metro-core/-/metro-core-0.80.12.tgz" + resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.80.12.tgz#5ae337923ab19ff524077efa1aeacdf4480cfa28" integrity sha512-QqdJ/yAK+IpPs2HU/h5v2pKEdANBagSsc6DRSjnwSyJsCoHlmyJKCaCJ7KhWGx+N4OHxh37hoA8fc2CuZbx0Fw== dependencies: flow-enums-runtime "^0.0.6" @@ -7059,7 +7160,7 @@ metro-core@0.80.12, metro-core@^0.80.3: metro-file-map@0.80.12: version "0.80.12" - resolved "https://registry.npmjs.org/metro-file-map/-/metro-file-map-0.80.12.tgz" + resolved "https://registry.yarnpkg.com/metro-file-map/-/metro-file-map-0.80.12.tgz#b03240166a68aa16c5a168c26e190d9da547eefb" integrity sha512-sYdemWSlk66bWzW2wp79kcPMzwuG32x1ZF3otI0QZTmrnTaaTiGyhE66P1z6KR4n2Eu5QXiABa6EWbAQv0r8bw== dependencies: anymatch "^3.0.3" @@ -7078,7 +7179,7 @@ metro-file-map@0.80.12: metro-minify-terser@0.80.12: version "0.80.12" - resolved "https://registry.npmjs.org/metro-minify-terser/-/metro-minify-terser-0.80.12.tgz" + resolved "https://registry.yarnpkg.com/metro-minify-terser/-/metro-minify-terser-0.80.12.tgz#9951030e3bc52d7f3ac8664ce5862401c673e3c6" integrity sha512-muWzUw3y5k+9083ZoX9VaJLWEV2Jcgi+Oan0Mmb/fBNMPqP9xVDuy4pOMn/HOiGndgfh/MK7s4bsjkyLJKMnXQ== dependencies: flow-enums-runtime "^0.0.6" @@ -7086,14 +7187,14 @@ metro-minify-terser@0.80.12: metro-resolver@0.80.12: version "0.80.12" - resolved "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.80.12.tgz" + resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.80.12.tgz#e3815914c21315b04db200032c3243a4cc22dfb6" integrity sha512-PR24gYRZnYHM3xT9pg6BdbrGbM/Cu1TcyIFBVlAk7qDAuHkUNQ1nMzWumWs+kwSvtd9eZGzHoucGJpTUEeLZAw== dependencies: flow-enums-runtime "^0.0.6" metro-runtime@0.80.12, metro-runtime@^0.80.3: version "0.80.12" - resolved "https://registry.npmjs.org/metro-runtime/-/metro-runtime-0.80.12.tgz" + resolved "https://registry.yarnpkg.com/metro-runtime/-/metro-runtime-0.80.12.tgz#a68af3a2a013f5372d3b8cee234fdd467455550b" integrity sha512-LIx7+92p5rpI0i6iB4S4GBvvLxStNt6fF0oPMaUd1Weku7jZdfkCZzmrtDD9CSQ6EPb0T9NUZoyXIxlBa3wOCw== dependencies: "@babel/runtime" "^7.25.0" @@ -7101,7 +7202,7 @@ metro-runtime@0.80.12, metro-runtime@^0.80.3: metro-source-map@0.80.12, metro-source-map@^0.80.3: version "0.80.12" - resolved "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.80.12.tgz" + resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.80.12.tgz#36a2768c880f8c459d6d758e2d0975e36479f49c" integrity sha512-o+AXmE7hpvM8r8MKsx7TI21/eerYYy2DCDkWfoBkv+jNkl61khvDHlQn0cXZa6lrcNZiZkl9oHSMcwLLIrFmpw== dependencies: "@babel/traverse" "^7.20.0" @@ -7116,7 +7217,7 @@ metro-source-map@0.80.12, metro-source-map@^0.80.3: metro-symbolicate@0.80.12: version "0.80.12" - resolved "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.80.12.tgz" + resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.80.12.tgz#3a6aa783c6e494e2879342d88d5379fab69d1ed2" integrity sha512-/dIpNdHksXkGHZXARZpL7doUzHqSNxgQ8+kQGxwpJuHnDhGkENxB5PS2QBaTDdEcmyTMjS53CN1rl9n1gR6fmw== dependencies: flow-enums-runtime "^0.0.6" @@ -7129,7 +7230,7 @@ metro-symbolicate@0.80.12: metro-transform-plugins@0.80.12: version "0.80.12" - resolved "https://registry.npmjs.org/metro-transform-plugins/-/metro-transform-plugins-0.80.12.tgz" + resolved "https://registry.yarnpkg.com/metro-transform-plugins/-/metro-transform-plugins-0.80.12.tgz#4a3853630ad0f36cc2bffd53bae659ee171a389c" integrity sha512-WQWp00AcZvXuQdbjQbx1LzFR31IInlkCDYJNRs6gtEtAyhwpMMlL2KcHmdY+wjDO9RPcliZ+Xl1riOuBecVlPA== dependencies: "@babel/core" "^7.20.0" @@ -7141,7 +7242,7 @@ metro-transform-plugins@0.80.12: metro-transform-worker@0.80.12: version "0.80.12" - resolved "https://registry.npmjs.org/metro-transform-worker/-/metro-transform-worker-0.80.12.tgz" + resolved "https://registry.yarnpkg.com/metro-transform-worker/-/metro-transform-worker-0.80.12.tgz#80be8a185b7deb93402b682f58a1dd6724317ad1" integrity sha512-KAPFN1y3eVqEbKLx1I8WOarHPqDMUa8WelWxaJCNKO/yHCP26zELeqTJvhsQup+8uwB6EYi/sp0b6TGoh6lOEA== dependencies: "@babel/core" "^7.20.0" @@ -7160,7 +7261,7 @@ metro-transform-worker@0.80.12: metro@0.80.12, metro@^0.80.3: version "0.80.12" - resolved "https://registry.npmjs.org/metro/-/metro-0.80.12.tgz" + resolved "https://registry.yarnpkg.com/metro/-/metro-0.80.12.tgz#29a61fb83581a71e50c4d8d5d8458270edfe34cc" integrity sha512-1UsH5FzJd9quUsD1qY+zUG4JY3jo3YEMxbMYH9jT6NK3j4iORhlwTK8fYTfAUBhDKjgLfKjAh7aoazNE23oIRA== dependencies: "@babel/code-frame" "^7.0.0" @@ -7206,9 +7307,9 @@ metro@0.80.12, metro@^0.80.3: ws "^7.5.10" yargs "^17.6.2" -micromatch@^4.0.2, micromatch@^4.0.4: +micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.8: version "4.0.8" - resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== dependencies: braces "^3.0.3" @@ -7216,118 +7317,118 @@ micromatch@^4.0.2, micromatch@^4.0.4: mime-db@1.52.0: version "1.52.0" - resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== "mime-db@>= 1.43.0 < 2": version "1.53.0" - resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.53.0.tgz#3cb63cd820fc29896d9d4e8c32ab4fcd74ccb447" integrity sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg== mime-types@^2.1.12, mime-types@^2.1.27, mime-types@~2.1.34: version "2.1.35" - resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: mime-db "1.52.0" mime@1.6.0, mime@^1.3.4: version "1.6.0" - resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== mime@^2.4.1: version "2.6.0" - resolved "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz" + resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== mimic-fn@^1.0.0: version "1.2.0" - resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== mimic-fn@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== min-document@^2.19.0: version "2.19.0" - resolved "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz" + resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" integrity sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ== dependencies: dom-walk "^0.1.0" minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== minimalistic-crypto-utils@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== minimatch@^3.0.2, minimatch@^3.0.4, minimatch@^3.1.1: version "3.1.2" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== dependencies: brace-expansion "^1.1.7" minimatch@^9.0.4: version "9.0.5" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5" integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== dependencies: brace-expansion "^2.0.1" minimist@^1.2.0, minimist@^1.2.6: version "1.2.8" - resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== minipass-collect@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/minipass-collect/-/minipass-collect-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz#1621bc77e12258a12c60d34e2276ec5c20680863" integrity sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw== dependencies: minipass "^7.0.3" minipass-flush@^1.0.5: version "1.0.5" - resolved "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz" + resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== dependencies: minipass "^3.0.0" minipass-pipeline@^1.2.4: version "1.2.4" - resolved "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz" + resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== dependencies: minipass "^3.0.0" minipass@^3.0.0: version "3.3.6" - resolved "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== dependencies: yallist "^4.0.0" minipass@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== "minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.3, minipass@^7.1.2: version "7.1.2" - resolved "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707" integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== minizlib@^2.1.1: version "2.1.2" - resolved "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== dependencies: minipass "^3.0.0" @@ -7335,44 +7436,44 @@ minizlib@^2.1.1: mitt@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/mitt/-/mitt-3.0.1.tgz#ea36cf0cc30403601ae074c8f77b7092cdab36d1" integrity sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw== mkdirp@^0.5.1: version "0.5.6" - resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== dependencies: minimist "^1.2.6" mkdirp@^1.0.3, mkdirp@^1.0.4: version "1.0.4" - resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== moment@^2.30.1: version "2.30.1" - resolved "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz" + resolved "https://registry.yarnpkg.com/moment/-/moment-2.30.1.tgz#f8c91c07b7a786e30c59926df530b4eac96974ae" integrity sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how== mrmime@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/mrmime/-/mrmime-1.0.1.tgz#5f90c825fad4bdd41dc914eff5d1a8cfdaf24f27" integrity sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw== ms@2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== ms@2.1.3, ms@^2.1.1, ms@^2.1.3: version "2.1.3" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== mz@^2.7.0: version "2.7.0" - resolved "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz" + resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== dependencies: any-promise "^1.0.0" @@ -7380,82 +7481,87 @@ mz@^2.7.0: thenify-all "^1.0.0" nanoid@^3.1.23, nanoid@^3.3.7: - version "3.3.7" - resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz" - integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== + version "3.3.8" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.8.tgz#b1be3030bee36aaff18bacb375e5cce521684baf" + integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w== natural-compare@^1.4.0: version "1.4.0" - resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== negotiator@0.6.3: version "0.6.3" - resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== +negotiator@~0.6.4: + version "0.6.4" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.4.tgz#777948e2452651c570b712dd01c23e262713fff7" + integrity sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w== + neo-async@^2.5.0: version "2.6.2" - resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== nested-error-stacks@~2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-2.0.1.tgz#d2cc9fc5235ddb371fc44d506234339c8e4b0a4b" integrity sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A== nice-try@^1.0.4: version "1.0.5" - resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz" + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== nocache@^3.0.1: version "3.0.4" - resolved "https://registry.npmjs.org/nocache/-/nocache-3.0.4.tgz" + resolved "https://registry.yarnpkg.com/nocache/-/nocache-3.0.4.tgz#5b37a56ec6e09fc7d401dceaed2eab40c8bfdf79" integrity sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw== node-abort-controller@^3.1.1: version "3.1.1" - resolved "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz" + resolved "https://registry.yarnpkg.com/node-abort-controller/-/node-abort-controller-3.1.1.tgz#a94377e964a9a37ac3976d848cb5c765833b8548" integrity sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ== node-dir@^0.1.17: version "0.1.17" - resolved "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz" + resolved "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.17.tgz#5f5665d93351335caabef8f1c554516cf5f1e4e5" integrity sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg== dependencies: minimatch "^3.0.2" node-fetch@^2.2.0, node-fetch@^2.6.0, node-fetch@^2.6.1, node-fetch@^2.6.12, node-fetch@^2.6.7: version "2.7.0" - resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== dependencies: whatwg-url "^5.0.0" node-forge@^1, node-forge@^1.2.1, node-forge@^1.3.1: version "1.3.1" - resolved "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz" + resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== node-int64@^0.4.0: version "0.4.0" - resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== node-releases@^2.0.18: - version "2.0.18" - resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz" - integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== + version "2.0.19" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.19.tgz#9e445a52950951ec4d177d843af370b411caf314" + integrity sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw== node-stream-zip@^1.9.1: version "1.15.0" - resolved "https://registry.npmjs.org/node-stream-zip/-/node-stream-zip-1.15.0.tgz" + resolved "https://registry.yarnpkg.com/node-stream-zip/-/node-stream-zip-1.15.0.tgz#158adb88ed8004c6c49a396b50a6a5de3bca33ea" integrity sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw== node-vibrant@3.1.6: version "3.1.6" - resolved "https://registry.npmjs.org/node-vibrant/-/node-vibrant-3.1.6.tgz" + resolved "https://registry.yarnpkg.com/node-vibrant/-/node-vibrant-3.1.6.tgz#8554c3108903232cbe1e722f928469ee4379aa18" integrity sha512-Wlc/hQmBMOu6xon12ZJHS2N3M+I6J8DhrD3Yo6m5175v8sFkVIN+UjhKVRcO+fqvre89ASTpmiFEP3nPO13SwA== dependencies: "@jimp/custom" "^0.16.1" @@ -7468,12 +7574,22 @@ node-vibrant@3.1.6: normalize-path@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== +npm-package-arg@^11.0.0: + version "11.0.3" + resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-11.0.3.tgz#dae0c21199a99feca39ee4bfb074df3adac87e2d" + integrity sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw== + dependencies: + hosted-git-info "^7.0.0" + proc-log "^4.0.0" + semver "^7.3.5" + validate-npm-package-name "^5.0.0" + npm-package-arg@^7.0.0: version "7.0.0" - resolved "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-7.0.0.tgz" + resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-7.0.0.tgz#52cdf08b491c0c59df687c4c925a89102ef794a5" integrity sha512-xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g== dependencies: hosted-git-info "^3.0.2" @@ -7483,60 +7599,60 @@ npm-package-arg@^7.0.0: npm-run-path@^2.0.0: version "2.0.2" - resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" integrity sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw== dependencies: path-key "^2.0.0" npm-run-path@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== dependencies: path-key "^3.0.0" nth-check@^2.0.1: version "2.1.1" - resolved "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== dependencies: boolbase "^1.0.0" nullthrows@^1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1" integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw== nwsapi@^2.2.2: - version "2.2.13" - resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.13.tgz" - integrity sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ== + version "2.2.16" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.16.tgz#177760bba02c351df1d2644e220c31dfec8cdb43" + integrity sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ== ob1@0.80.12: version "0.80.12" - resolved "https://registry.npmjs.org/ob1/-/ob1-0.80.12.tgz" + resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.80.12.tgz#0451944ba6e5be225cc9751d8cd0d7309d2d1537" integrity sha512-VMArClVT6LkhUGpnuEoBuyjG9rzUyEzg4PDkav6wK1cLhOK02gPCYFxoiB4mqVnrMhDpIzJcrGNAMVi9P+hXrw== dependencies: flow-enums-runtime "^0.0.6" object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: version "4.1.1" - resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== -object-inspect@^1.13.1: - version "1.13.2" - resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz" - integrity sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g== +object-inspect@^1.13.1, object-inspect@^1.13.3: + version "1.13.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.3.tgz#f14c183de51130243d6d18ae149375ff50ea488a" + integrity sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA== object-keys@^1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== object.assign@^4.1.5: version "4.1.5" - resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0" integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== dependencies: call-bind "^1.0.5" @@ -7546,59 +7662,59 @@ object.assign@^4.1.5: omggif@^1.0.10, omggif@^1.0.9: version "1.0.10" - resolved "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz" + resolved "https://registry.yarnpkg.com/omggif/-/omggif-1.0.10.tgz#ddaaf90d4a42f532e9e7cb3a95ecdd47f17c7b19" integrity sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw== on-finished@2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== dependencies: ee-first "1.1.1" on-finished@~2.3.0: version "2.3.0" - resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" integrity sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww== dependencies: ee-first "1.1.1" on-headers@~1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" - resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== dependencies: wrappy "1" onetime@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" integrity sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ== dependencies: mimic-fn "^1.0.0" onetime@^5.1.0, onetime@^5.1.2: version "5.1.2" - resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== dependencies: mimic-fn "^2.1.0" open@^6.2.0: version "6.4.0" - resolved "https://registry.npmjs.org/open/-/open-6.4.0.tgz" + resolved "https://registry.yarnpkg.com/open/-/open-6.4.0.tgz#5c13e96d0dc894686164f18965ecfe889ecfc8a9" integrity sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg== dependencies: is-wsl "^1.1.0" open@^7.0.3: version "7.4.2" - resolved "https://registry.npmjs.org/open/-/open-7.4.2.tgz" + resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321" integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q== dependencies: is-docker "^2.0.0" @@ -7606,7 +7722,7 @@ open@^7.0.3: open@^8.0.4, open@^8.3.0: version "8.4.2" - resolved "https://registry.npmjs.org/open/-/open-8.4.2.tgz" + resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ== dependencies: define-lazy-prop "^2.0.0" @@ -7615,7 +7731,7 @@ open@^8.0.4, open@^8.3.0: ora@3.4.0, ora@^3.4.0: version "3.4.0" - resolved "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz" + resolved "https://registry.yarnpkg.com/ora/-/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318" integrity sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg== dependencies: chalk "^2.4.2" @@ -7627,7 +7743,7 @@ ora@3.4.0, ora@^3.4.0: ora@^5.4.1: version "5.4.1" - resolved "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz" + resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== dependencies: bl "^4.1.0" @@ -7642,97 +7758,110 @@ ora@^5.4.1: os-homedir@^1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" integrity sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ== os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== osenv@^0.1.5: version "0.1.5" - resolved "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== dependencies: os-homedir "^1.0.0" os-tmpdir "^1.0.0" +ox@0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/ox/-/ox-0.1.2.tgz#0f791be2ccabeaf4928e6d423498fe1c8094e560" + integrity sha512-ak/8K0Rtphg9vnRJlbOdaX9R7cmxD2MiSthjWGaQdMk3D7hrAlDoM+6Lxn7hN52Za3vrXfZ7enfke/5WjolDww== + dependencies: + "@adraffy/ens-normalize" "^1.10.1" + "@noble/curves" "^1.6.0" + "@noble/hashes" "^1.5.0" + "@scure/bip32" "^1.5.0" + "@scure/bip39" "^1.4.0" + abitype "^1.0.6" + eventemitter3 "5.0.1" + p-finally@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== p-limit@^2.0.0, p-limit@^2.2.0: version "2.3.0" - resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== dependencies: p-try "^2.0.0" p-limit@^3.0.2, p-limit@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== dependencies: yocto-queue "^0.1.0" p-locate@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== dependencies: p-limit "^2.0.0" p-locate@^4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== dependencies: p-limit "^2.2.0" p-locate@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== dependencies: p-limit "^3.0.2" p-map@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== dependencies: aggregate-error "^3.0.0" p-try@^2.0.0: version "2.2.0" - resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== package-json-from-dist@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505" integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== pako@^1.0.5: version "1.0.11" - resolved "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== parse-bmfont-ascii@^1.0.3: version "1.0.6" - resolved "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz" + resolved "https://registry.yarnpkg.com/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz#11ac3c3ff58f7c2020ab22769079108d4dfa0285" integrity sha512-U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA== parse-bmfont-binary@^1.0.5: version "1.0.6" - resolved "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz" + resolved "https://registry.yarnpkg.com/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz#d038b476d3e9dd9db1e11a0b0e53a22792b69006" integrity sha512-GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA== parse-bmfont-xml@^1.1.4: version "1.1.6" - resolved "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.6.tgz" + resolved "https://registry.yarnpkg.com/parse-bmfont-xml/-/parse-bmfont-xml-1.1.6.tgz#016b655da7aebe6da38c906aca16bf0415773767" integrity sha512-0cEliVMZEhrFDwMh4SxIyVJpqYoOWDJ9P895tFuS+XuNzI5UBmBk5U5O4KuJdTnZpSBI4LFA2+ZiJaiwfSwlMA== dependencies: xml-parse-from-string "^1.0.0" @@ -7740,12 +7869,12 @@ parse-bmfont-xml@^1.1.4: parse-headers@^2.0.0: version "2.0.5" - resolved "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.5.tgz" + resolved "https://registry.yarnpkg.com/parse-headers/-/parse-headers-2.0.5.tgz#069793f9356a54008571eb7f9761153e6c770da9" integrity sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA== parse-json@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== dependencies: error-ex "^1.3.1" @@ -7753,7 +7882,7 @@ parse-json@^4.0.0: parse-json@^5.2.0: version "5.2.0" - resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== dependencies: "@babel/code-frame" "^7.0.0" @@ -7763,26 +7892,26 @@ parse-json@^5.2.0: parse-png@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/parse-png/-/parse-png-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/parse-png/-/parse-png-2.1.0.tgz#2a42ad719fedf90f81c59ebee7ae59b280d6b338" integrity sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ== dependencies: pngjs "^3.3.0" parse5@^7.0.0, parse5@^7.1.1: - version "7.2.0" - resolved "https://registry.npmjs.org/parse5/-/parse5-7.2.0.tgz" - integrity sha512-ZkDsAOcxsUMZ4Lz5fVciOehNcJ+Gb8gTzcA4yl3wnc273BAybYWrQ+Ks/OjCjSEpjvQkDSeZbybK9qj2VHHdGA== + version "7.2.1" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.2.1.tgz#8928f55915e6125f430cc44309765bf17556a33a" + integrity sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ== dependencies: entities "^4.5.0" parseurl@~1.3.3: version "1.3.3" - resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== password-prompt@^1.0.4: version "1.1.3" - resolved "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.3.tgz" + resolved "https://registry.yarnpkg.com/password-prompt/-/password-prompt-1.1.3.tgz#05e539f4e7ca4d6c865d479313f10eb9db63ee5f" integrity sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw== dependencies: ansi-escapes "^4.3.2" @@ -7790,37 +7919,37 @@ password-prompt@^1.0.4: path-exists@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== path-exists@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== path-is-absolute@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== path-key@^2.0.0, path-key@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== path-key@^3.0.0, path-key@^3.1.0: version "3.1.1" - resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== path-parse@^1.0.5, path-parse@^1.0.7: version "1.0.7" - resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== path-scurry@^1.11.1: version "1.11.1" - resolved "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2" integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== dependencies: lru-cache "^10.2.0" @@ -7828,80 +7957,80 @@ path-scurry@^1.11.1: path-type@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== peek-readable@^4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/peek-readable/-/peek-readable-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/peek-readable/-/peek-readable-4.1.0.tgz#4ece1111bf5c2ad8867c314c81356847e8a62e72" integrity sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg== permissionless@^0.2.17: - version "0.2.17" - resolved "https://registry.npmjs.org/permissionless/-/permissionless-0.2.17.tgz" - integrity sha512-M2+8qXNWTo2mmiriBhCFtNUOKd8UDJ1AXNnLflJw9VePIv5PNR1QqkTa76wWb1mzoZyc1hVObmA0pi7puCBj3A== + version "0.2.22" + resolved "https://registry.yarnpkg.com/permissionless/-/permissionless-0.2.22.tgz#77253208cdbdce7f2b519895146e519743952db4" + integrity sha512-6pyXxSXomHXmCgwST4/MM0CM3ISBhj8R0Il+g46RlDOZgVOWwwQxaVmbbg7vZBNulIg5PYFjVaFCNISc2Ia2uA== phin@^2.9.1: version "2.9.3" - resolved "https://registry.npmjs.org/phin/-/phin-2.9.3.tgz" + resolved "https://registry.yarnpkg.com/phin/-/phin-2.9.3.tgz#f9b6ac10a035636fb65dfc576aaaa17b8743125c" integrity sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA== phin@^3.7.1: version "3.7.1" - resolved "https://registry.npmjs.org/phin/-/phin-3.7.1.tgz" + resolved "https://registry.yarnpkg.com/phin/-/phin-3.7.1.tgz#bf841da75ee91286691b10e41522a662aa628fd6" integrity sha512-GEazpTWwTZaEQ9RhL7Nyz0WwqilbqgLahDM3D0hxWwmVDI52nXEybHqiN6/elwpkJBhcuj+WbBu+QfT0uhPGfQ== dependencies: centra "^2.7.0" -picocolors@^1.0.0, picocolors@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz" - integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw== +picocolors@^1.0.0, picocolors@^1.1.0, picocolors@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: version "2.3.1" - resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== picomatch@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/picomatch/-/picomatch-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-3.0.1.tgz#817033161def55ec9638567a2f3bbc876b3e7516" integrity sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag== pify@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== pirates@^4.0.1, pirates@^4.0.4, pirates@^4.0.6: version "4.0.6" - resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== pixelmatch@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/pixelmatch/-/pixelmatch-4.0.2.tgz" + resolved "https://registry.yarnpkg.com/pixelmatch/-/pixelmatch-4.0.2.tgz#8f47dcec5011b477b67db03c243bc1f3085e8854" integrity sha512-J8B6xqiO37sU/gkcMglv6h5Jbd9xNER7aHzpfRdNmV4IbQBzBpe4l9XmbG+xPF/znacgu2jfEw+wHffaq/YkXA== dependencies: pngjs "^3.0.0" pkg-dir@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== dependencies: find-up "^3.0.0" pkg-dir@^4.2.0: version "4.2.0" - resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== dependencies: find-up "^4.0.0" plist@^3.0.5: version "3.1.0" - resolved "https://registry.npmjs.org/plist/-/plist-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz#797a516a93e62f5bde55e0b9cc9c967f860893c9" integrity sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ== dependencies: "@xmldom/xmldom" "^0.8.8" @@ -7910,46 +8039,46 @@ plist@^3.0.5: pngjs@^3.0.0, pngjs@^3.3.0, pngjs@^3.3.3: version "3.4.0" - resolved "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz" + resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-3.4.0.tgz#99ca7d725965fb655814eaf65f38f12bbdbf555f" integrity sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w== pngjs@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/pngjs/-/pngjs-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-5.0.0.tgz#e79dd2b215767fd9c04561c01236df960bce7fbb" integrity sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw== possible-typed-array-names@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz#89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f" integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== postcss-value-parser@^4.2.0: version "4.2.0" - resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== postcss@~8.4.32: - version "8.4.47" - resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz" - integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ== + version "8.4.49" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.49.tgz#4ea479048ab059ab3ae61d082190fabfd994fe19" + integrity sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA== dependencies: nanoid "^3.3.7" - picocolors "^1.1.0" + picocolors "^1.1.1" source-map-js "^1.2.1" prettier@^3.3.3: - version "3.3.3" - resolved "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz" - integrity sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew== + version "3.4.2" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.4.2.tgz#a5ce1fb522a588bf2b78ca44c6e6fe5aa5a2b13f" + integrity sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ== pretty-bytes@5.6.0: version "5.6.0" - resolved "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz" + resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== pretty-format@^24: version "24.9.0" - resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.9.0.tgz#12fac31b37019a4eea3c11aa9a959eb7628aa7c9" integrity sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA== dependencies: "@jest/types" "^24.9.0" @@ -7959,7 +8088,7 @@ pretty-format@^24: pretty-format@^26.5.2, pretty-format@^26.6.2: version "26.6.2" - resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93" integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg== dependencies: "@jest/types" "^26.6.2" @@ -7969,45 +8098,50 @@ pretty-format@^26.5.2, pretty-format@^26.6.2: pretty-format@^29.0.0, pretty-format@^29.7.0: version "29.7.0" - resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.7.0.tgz#ca42c758310f365bfa71a0bda0a807160b776812" integrity sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ== dependencies: "@jest/schemas" "^29.6.3" ansi-styles "^5.0.0" react-is "^18.0.0" +proc-log@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-4.2.0.tgz#b6f461e4026e75fdfe228b265e9f7a00779d7034" + integrity sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA== + process-nextick-args@~2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== process@^0.11.10: version "0.11.10" - resolved "https://registry.npmjs.org/process/-/process-0.11.10.tgz" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== progress@2.0.3: version "2.0.3" - resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz" + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== promise@^7.1.1: version "7.3.1" - resolved "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz" + resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== dependencies: asap "~2.0.3" promise@^8.3.0: version "8.3.0" - resolved "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz" + resolved "https://registry.yarnpkg.com/promise/-/promise-8.3.0.tgz#8cb333d1edeb61ef23869fbb8a4ea0279ab60e0a" integrity sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg== dependencies: asap "~2.0.6" prompts@^2.0.1, prompts@^2.2.1, prompts@^2.3.2, prompts@^2.4.2: version "2.4.2" - resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== dependencies: kleur "^3.0.3" @@ -8015,7 +8149,7 @@ prompts@^2.0.1, prompts@^2.2.1, prompts@^2.3.2, prompts@^2.4.2: prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.0, prop-types@^15.8.1: version "15.8.1" - resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== dependencies: loose-envify "^1.4.0" @@ -8024,17 +8158,24 @@ prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.0, prop-types@^15.8.1: property-expr@^2.0.5: version "2.0.6" - resolved "https://registry.npmjs.org/property-expr/-/property-expr-2.0.6.tgz" + resolved "https://registry.yarnpkg.com/property-expr/-/property-expr-2.0.6.tgz#f77bc00d5928a6c748414ad12882e83f24aec1e8" integrity sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA== +proxy-from-env@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" + integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== + psl@^1.1.33: - version "1.9.0" - resolved "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz" - integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== + version "1.15.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.15.0.tgz#bdace31896f1d97cec6a79e8224898ce93d974c6" + integrity sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w== + dependencies: + punycode "^2.3.1" pump@^3.0.0: version "3.0.2" - resolved "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.2.tgz#836f3edd6bc2ee599256c924ffe0d88573ddcbf8" integrity sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw== dependencies: end-of-stream "^1.1.0" @@ -8042,27 +8183,27 @@ pump@^3.0.0: punycode@^1.4.1: version "1.4.1" - resolved "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== -punycode@^2.1.0, punycode@^2.1.1: +punycode@^2.1.0, punycode@^2.1.1, punycode@^2.3.1: version "2.3.1" - resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== pure-rand@^6.0.0: version "6.1.0" - resolved "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz" + resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.1.0.tgz#d173cf23258231976ccbdb05247c9787957604f2" integrity sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA== qrcode-terminal@0.11.0: version "0.11.0" - resolved "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.11.0.tgz" + resolved "https://registry.yarnpkg.com/qrcode-terminal/-/qrcode-terminal-0.11.0.tgz#ffc6c28a2fc0bfb47052b47e23f4f446a5fbdb9e" integrity sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ== qrcode@^1.5.1: version "1.5.4" - resolved "https://registry.npmjs.org/qrcode/-/qrcode-1.5.4.tgz" + resolved "https://registry.yarnpkg.com/qrcode/-/qrcode-1.5.4.tgz#5cb81d86eb57c675febb08cf007fff963405da88" integrity sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg== dependencies: dijkstrajs "^1.0.1" @@ -8070,15 +8211,15 @@ qrcode@^1.5.1: yargs "^15.3.1" qs@^6.12.3: - version "6.13.0" - resolved "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz" - integrity sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg== + version "6.13.1" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.13.1.tgz#3ce5fc72bd3a8171b85c99b93c65dd20b7d1b16e" + integrity sha512-EJPeIn0CYrGu+hli1xilKAPXODtJ12T0sP63Ijx2/khC2JtuaN3JyNIpvmnkmaEtha9ocbG4A4cMcr+TvqvwQg== dependencies: side-channel "^1.0.6" query-string@^7.1.3: version "7.1.3" - resolved "https://registry.npmjs.org/query-string/-/query-string-7.1.3.tgz" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-7.1.3.tgz#a1cf90e994abb113a325804a972d98276fe02328" integrity sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg== dependencies: decode-uri-component "^0.2.2" @@ -8088,34 +8229,34 @@ query-string@^7.1.3: querystring@^0.2.1: version "0.2.1" - resolved "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.1.tgz#40d77615bb09d16902a85c3e38aa8b5ed761c2dd" integrity sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg== querystringify@^2.1.1: version "2.2.0" - resolved "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== queue-microtask@^1.2.2: version "1.2.3" - resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== queue@6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/queue/-/queue-6.0.2.tgz#b91525283e2315c7553d2efa18d83e76432fed65" integrity sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA== dependencies: inherits "~2.0.3" range-parser@~1.2.1: version "1.2.1" - resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== rc@~1.2.7: version "1.2.8" - resolved "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== dependencies: deep-extend "^0.6.0" @@ -8125,7 +8266,7 @@ rc@~1.2.7: react-devtools-core@^5.0.0: version "5.3.2" - resolved "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-5.3.2.tgz" + resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-5.3.2.tgz#d5df92f8ef2a587986d094ef2c47d84cf4ae46ec" integrity sha512-crr9HkVrDiJ0A4zot89oS0Cgv0Oa4OG1Em4jit3P3ZxZSKPMYyMjfwMqgcJna9o625g8oN87rBm8SWWrSTBZxg== dependencies: shell-quote "^1.6.1" @@ -8133,7 +8274,7 @@ react-devtools-core@^5.0.0: react-dom@18.2.0: version "18.2.0" - resolved "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== dependencies: loose-envify "^1.1.0" @@ -8141,61 +8282,56 @@ react-dom@18.2.0: react-fast-compare@^3.2.0, react-fast-compare@^3.2.2: version "3.2.2" - resolved "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz" + resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.2.tgz#929a97a532304ce9fee4bcae44234f1ce2c21d49" integrity sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ== react-freeze@^1.0.0: version "1.0.4" - resolved "https://registry.npmjs.org/react-freeze/-/react-freeze-1.0.4.tgz" + resolved "https://registry.yarnpkg.com/react-freeze/-/react-freeze-1.0.4.tgz#cbbea2762b0368b05cbe407ddc9d518c57c6f3ad" integrity sha512-r4F0Sec0BLxWicc7HEyo2x3/2icUTrRmDjaaRyzzn+7aDyFZliszMDOgLVwSnQnYENOlL1o569Ze2HZefk8clA== react-hook-form@^7.53.0: - version "7.53.0" - resolved "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.53.0.tgz" - integrity sha512-M1n3HhqCww6S2hxLxciEXy2oISPnAzxY7gvwVPrtlczTM/1dDadXgUxDpHMrMTblDOcm/AXtXxHwZ3jpg1mqKQ== + version "7.54.0" + resolved "https://registry.yarnpkg.com/react-hook-form/-/react-hook-form-7.54.0.tgz#46bd9142d65fd16ac064a2bbf4dc0333e2d6840d" + integrity sha512-PS05+UQy/IdSbJNojBypxAo9wllhHgGmyr8/dyGQcPoiMf3e7Dfb9PWYVRco55bLbxH9S+1yDDJeTdlYCSxO3A== "react-is@^16.12.0 || ^17.0.0 || ^18.0.0", react-is@^18.0.0, react-is@^18.2.0: version "18.3.1" - resolved "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e" integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg== react-is@^16.13.0, react-is@^16.13.1, react-is@^16.7.0, react-is@^16.8.4: version "16.13.1" - resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== react-is@^17.0.1: version "17.0.2" - resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== react-native-animatable@1.3.3: version "1.3.3" - resolved "https://registry.npmjs.org/react-native-animatable/-/react-native-animatable-1.3.3.tgz" + resolved "https://registry.yarnpkg.com/react-native-animatable/-/react-native-animatable-1.3.3.tgz#a13a4af8258e3bb14d0a9d839917e9bb9274ec8a" integrity sha512-2ckIxZQAsvWn25Ho+DK3d1mXIgj7tITkrS4pYDvx96WyOttSvzzFeQnM2od0+FUMzILbdHDsDEqZvnz1DYNQ1w== dependencies: prop-types "^15.7.2" react-native-draggable-flatlist@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/react-native-draggable-flatlist/-/react-native-draggable-flatlist-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/react-native-draggable-flatlist/-/react-native-draggable-flatlist-4.0.1.tgz#2f027d387ba4b8f3eb0907340e32cb85e6460df2" integrity sha512-ZO1QUTNx64KZfXGXeXcBfql67l38X7kBcJ3rxUVZzPHt5r035GnGzIC0F8rqSXp6zgnwgUYMfB6zQc5PKmPL9Q== dependencies: "@babel/preset-typescript" "^7.17.12" react-native-fast-image@^8.6.3: version "8.6.3" - resolved "https://registry.npmjs.org/react-native-fast-image/-/react-native-fast-image-8.6.3.tgz" + resolved "https://registry.yarnpkg.com/react-native-fast-image/-/react-native-fast-image-8.6.3.tgz#6edc3f9190092a909d636d93eecbcc54a8822255" integrity sha512-Sdw4ESidXCXOmQ9EcYguNY2swyoWmx53kym2zRsvi+VeFCHEdkO+WG1DK+6W81juot40bbfLNhkc63QnWtesNg== -react-native-flipper@^0.164.0: - version "0.164.0" - resolved "https://registry.npmjs.org/react-native-flipper/-/react-native-flipper-0.164.0.tgz" - integrity sha512-iJhIe3rqx6okuzBp4AJsTa2b8VRAOGzoLRFx/4HGbaGvu8AurZjz8TTQkhJsRma8dsHN2b6KKZPvGGW3wdWzvA== - react-native-gesture-handler@~2.16.1: version "2.16.2" - resolved "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-2.16.2.tgz" + resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.16.2.tgz#032bd2a07334292d7f6cff1dc9d1ec928f72e26d" integrity sha512-vGFlrDKlmyI+BT+FemqVxmvO7nqxU33cgXVsn6IKAFishvlG3oV2Ds67D5nPkHMea8T+s1IcuMm0bF8ntZtAyg== dependencies: "@egjs/hammerjs" "^2.0.17" @@ -8206,14 +8342,14 @@ react-native-gesture-handler@~2.16.1: react-native-get-random-values@^1.11.0: version "1.11.0" - resolved "https://registry.npmjs.org/react-native-get-random-values/-/react-native-get-random-values-1.11.0.tgz" + resolved "https://registry.yarnpkg.com/react-native-get-random-values/-/react-native-get-random-values-1.11.0.tgz#1ca70d1271f4b08af92958803b89dccbda78728d" integrity sha512-4BTbDbRmS7iPdhYLRcz3PGFIpFJBwNZg9g42iwa2P6FOv9vZj/xJc678RZXnLNZzd0qd7Q3CCF6Yd+CU2eoXKQ== dependencies: fast-base64-decode "^1.0.0" react-native-helmet-async@2.0.4: version "2.0.4" - resolved "https://registry.npmjs.org/react-native-helmet-async/-/react-native-helmet-async-2.0.4.tgz" + resolved "https://registry.yarnpkg.com/react-native-helmet-async/-/react-native-helmet-async-2.0.4.tgz#93f53a1ff22d6898039688a541653a2d6b6866bb" integrity sha512-m3CkXWss6B1dd6mCMleLpzDCJJGGaHOLQsUzZv8kAASJmMfmVT4d2fx375iXKTRWT25ThBfae3dECuX5cq/8hg== dependencies: invariant "^2.2.4" @@ -8222,43 +8358,43 @@ react-native-helmet-async@2.0.4: react-native-image-colors@^2.4.0: version "2.4.0" - resolved "https://registry.npmjs.org/react-native-image-colors/-/react-native-image-colors-2.4.0.tgz" + resolved "https://registry.yarnpkg.com/react-native-image-colors/-/react-native-image-colors-2.4.0.tgz#6af1d5fe0e994331de789c1fa33788971f755aec" integrity sha512-qlC31+UNVthByNLVuYSEQeZghOXn3uy1GLF6lHKlvT1HM1GGFH/LXNhU8iXAoQvUyzNa1bEAOTo09Hwinvp/rA== dependencies: node-vibrant "3.1.6" react-native-linear-gradient@^2.8.3: version "2.8.3" - resolved "https://registry.npmjs.org/react-native-linear-gradient/-/react-native-linear-gradient-2.8.3.tgz" + resolved "https://registry.yarnpkg.com/react-native-linear-gradient/-/react-native-linear-gradient-2.8.3.tgz#9a116649f86d74747304ee13db325e20b21e564f" integrity sha512-KflAXZcEg54PXkLyflaSZQ3PJp4uC4whM7nT/Uot9m0e/qxFV3p6uor1983D1YOBJbJN7rrWdqIjq0T42jOJyA== react-native-modal@^13.0.1: version "13.0.1" - resolved "https://registry.npmjs.org/react-native-modal/-/react-native-modal-13.0.1.tgz" + resolved "https://registry.yarnpkg.com/react-native-modal/-/react-native-modal-13.0.1.tgz#691f1e646abb96fa82c1788bf18a16d585da37cd" integrity sha512-UB+mjmUtf+miaG/sDhOikRfBOv0gJdBU2ZE1HtFWp6UixW9jCk/bhGdHUgmZljbPpp0RaO/6YiMmQSSK3kkMaw== dependencies: prop-types "^15.6.2" react-native-animatable "1.3.3" react-native-otp-entry@^1.7.3: - version "1.7.3" - resolved "https://registry.npmjs.org/react-native-otp-entry/-/react-native-otp-entry-1.7.3.tgz" - integrity sha512-BN/oEpNMfA0cnw9tB9Oq6PZZQztOiq1Ow/M+rAFd0Nll9aO1gwfCwymgIGI89/+63FkmMbv39LcgsfkZNAYzWw== + version "1.8.1" + resolved "https://registry.yarnpkg.com/react-native-otp-entry/-/react-native-otp-entry-1.8.1.tgz#e9ee5df57cbd32580b23f55a6db5a37b991c11cd" + integrity sha512-uN5BZNzh5YkU9rNzUI1hFQxaz4R6PAVnDN+udB3fblt+XJgqTfVz+KEx8Z67/+Qga87m747oFysKOX1gI8UzLA== react-native-pager-view@6.3.0: version "6.3.0" - resolved "https://registry.npmjs.org/react-native-pager-view/-/react-native-pager-view-6.3.0.tgz" + resolved "https://registry.yarnpkg.com/react-native-pager-view/-/react-native-pager-view-6.3.0.tgz#7e734e84b1692f877591335373f6fd92f0d67aa6" integrity sha512-ufJOoVa9pFL1J/yb4hpsCqp8n1qTlcF5VvwqvCacHX//D7hSeRscsiIXg1u1pXNWwllvACb+mqxec/3Uj2mxrA== react-native-passkeys@^0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/react-native-passkeys/-/react-native-passkeys-0.3.0.tgz" - integrity sha512-xjdoZVRInwFXXD92jpUvSM1OGiEmJgPWm6xc4WFSHb7LnypJ4LjSbfofi59WwA/n7Z/25mcnqZNh5Xq4Viuk+Q== + version "0.3.1" + resolved "https://registry.yarnpkg.com/react-native-passkeys/-/react-native-passkeys-0.3.1.tgz#424f2a63b155605250bb3f178b1482850262c03f" + integrity sha512-3M9/V/IJeCXBLcQsIul7BX0x4YJC1X0yID9k9b7gfy1uf9N1JRZIKmndpWs2MVsnE0XnVk2TGVXt0aL0u3xfkw== react-native-qrcode-svg@^6.3.2: - version "6.3.2" - resolved "https://registry.npmjs.org/react-native-qrcode-svg/-/react-native-qrcode-svg-6.3.2.tgz" - integrity sha512-IJ0UoKd33ATm08K569SOAQx0tP/MTmSjwhIPfEfgbCUGQuU6JTfgDT7sm1TVgAwPbTuA10wwJJYgWXnnFBQ4FQ== + version "6.3.12" + resolved "https://registry.yarnpkg.com/react-native-qrcode-svg/-/react-native-qrcode-svg-6.3.12.tgz#ee2c34c836c0c58f0a7f2d79304bcf12b9e151a9" + integrity sha512-7Bx23ZdFNJJdVXyW9BJmFWdI5kccjnpotzmL3exkV0irUKTmj51jesxpn5sqtgVdYFE4IUVoGzdS+8qg6Ua9BA== dependencies: prop-types "^15.8.0" qrcode "^1.5.1" @@ -8266,7 +8402,7 @@ react-native-qrcode-svg@^6.3.2: react-native-reanimated@~3.10.1: version "3.10.1" - resolved "https://registry.npmjs.org/react-native-reanimated/-/react-native-reanimated-3.10.1.tgz" + resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-3.10.1.tgz#3c37d1100bbba0065df39c96aab0c1ff1b50c0fa" integrity sha512-sfxg6vYphrDc/g4jf/7iJ7NRi+26z2+BszPmvmk0Vnrz6FL7HYljJqTf531F1x6tFmsf+FEAmuCtTUIXFLVo9w== dependencies: "@babel/plugin-transform-arrow-functions" "^7.0.0-0" @@ -8280,7 +8416,7 @@ react-native-reanimated@~3.10.1: react-native-safe-area-context@4.10.5: version "4.10.5" - resolved "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-4.10.5.tgz" + resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-4.10.5.tgz#a9c677a48bd273afa6876772062ce08e8af1f18d" integrity sha512-Wyb0Nqw2XJ6oZxW/cK8k5q7/UAhg/wbEG6UVf89rQqecDZTDA5ic//P9J6VvJRVZerzGmxWQpVuM7f+PRYUM4g== react-native-safe-modules@^1.0.3: @@ -8292,7 +8428,7 @@ react-native-safe-modules@^1.0.3: react-native-screens@3.31.1: version "3.31.1" - resolved "https://registry.npmjs.org/react-native-screens/-/react-native-screens-3.31.1.tgz" + resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-3.31.1.tgz#909a890f669e32b0fb1b1410278b71ad2f8238f6" integrity sha512-8fRW362pfZ9y4rS8KY5P3DFScrmwo/vu1RrRMMx0PNHbeC9TLq0Kw1ubD83591yz64gLNHFLTVkTJmWeWCXKtQ== dependencies: react-freeze "^1.0.0" @@ -8300,7 +8436,7 @@ react-native-screens@3.31.1: react-native-svg@15.2.0: version "15.2.0" - resolved "https://registry.npmjs.org/react-native-svg/-/react-native-svg-15.2.0.tgz" + resolved "https://registry.yarnpkg.com/react-native-svg/-/react-native-svg-15.2.0.tgz#9561a6b3bd6b44689f437ba13182afee33bd5557" integrity sha512-R0E6IhcJfVLsL0lRmnUSm72QO+mTqcAOM5Jb8FVGxJqX3NfJMlMP0YyvcajZiaRR8CqQUpEoqrY25eyZb006kw== dependencies: css-select "^5.1.0" @@ -8308,15 +8444,15 @@ react-native-svg@15.2.0: react-native-tab-view@^3.5.2: version "3.5.2" - resolved "https://registry.npmjs.org/react-native-tab-view/-/react-native-tab-view-3.5.2.tgz" + resolved "https://registry.yarnpkg.com/react-native-tab-view/-/react-native-tab-view-3.5.2.tgz#2789b8af6148b16835869566bf13dc3b0e6c1b46" integrity sha512-nE5WqjbeEPsWQx4mtz81QGVvgHRhujTNIIZiMCx3Bj6CBFDafbk7XZp9ocmtzXUQaZ4bhtVS43R4FIiR4LboJw== dependencies: use-latest-callback "^0.1.5" react-native-web@~0.19.10: - version "0.19.12" - resolved "https://registry.npmjs.org/react-native-web/-/react-native-web-0.19.12.tgz" - integrity sha512-o2T0oztoVDQjztt4YksO9S1XRjoH/AqcSvifgWLrPJgGVbMWsfhILgl6lfUdEamVZzZSVV/2gqDVMAk/qq7mZw== + version "0.19.13" + resolved "https://registry.yarnpkg.com/react-native-web/-/react-native-web-0.19.13.tgz#2d84849bf0251ec0e3a8072fda7f9a7c29375331" + integrity sha512-etv3bN8rJglrRCp/uL4p7l8QvUNUC++QwDbdZ8CB7BvZiMvsxfFIRM1j04vxNldG3uo2puRd6OSWR3ibtmc29A== dependencies: "@babel/runtime" "^7.18.6" "@react-native/normalize-colors" "^0.74.1" @@ -8328,16 +8464,16 @@ react-native-web@~0.19.10: styleq "^0.1.3" react-native-webview@^13.12.3: - version "13.12.3" - resolved "https://registry.npmjs.org/react-native-webview/-/react-native-webview-13.12.3.tgz" - integrity sha512-Y1I5YyDYyE7NC96RHLhd2nxh7ymLYOYLTefgx5ixxw2OToQK0ow3OJ+o77QcI1Tuevj5PCxwqC/14ceS/7yPJQ== + version "13.12.5" + resolved "https://registry.yarnpkg.com/react-native-webview/-/react-native-webview-13.12.5.tgz#ed9eec1eda234d7cf18d329859b9bdebf7e258b6" + integrity sha512-INOKPom4dFyzkbxbkuQNfeRG9/iYnyRDzrDkJeyvSWgJAW2IDdJkWFJBS2v0RxIL4gqLgHkiIZDOfiLaNnw83Q== dependencies: escape-string-regexp "^4.0.0" invariant "2.2.4" react-native@0.74.5: version "0.74.5" - resolved "https://registry.npmjs.org/react-native/-/react-native-0.74.5.tgz" + resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.74.5.tgz#80e556690fc2583d46714d5618ecd30d93c24e81" integrity sha512-Bgg2WvxaGODukJMTZFTZBNMKVaROHLwSb8VAGEdrlvKwfb1hHg/3aXTUICYk7dwgAnb+INbGMwnF8yeAgIUmqw== dependencies: "@jest/create-cache-key-function" "^29.6.3" @@ -8379,21 +8515,21 @@ react-native@0.74.5: yargs "^17.6.2" react-redux@^9.1.2: - version "9.1.2" - resolved "https://registry.npmjs.org/react-redux/-/react-redux-9.1.2.tgz" - integrity sha512-0OA4dhM1W48l3uzmv6B7TXPCGmokUU4p1M44DGN2/D9a1FjVPukVjER1PcPX97jIg6aUeLq1XJo1IpfbgULn0w== + version "9.2.0" + resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-9.2.0.tgz#96c3ab23fb9a3af2cb4654be4b51c989e32366f5" + integrity sha512-ROY9fvHhwOD9ySfrF0wmvu//bKCQ6AeZZq1nJNtbDC+kk5DuSuNX/n6YWYF/SYy7bSba4D4FSz8DJeKY/S/r+g== dependencies: - "@types/use-sync-external-store" "^0.0.3" - use-sync-external-store "^1.0.0" + "@types/use-sync-external-store" "^0.0.6" + use-sync-external-store "^1.4.0" react-refresh@^0.14.0, react-refresh@^0.14.2: version "0.14.2" - resolved "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz" + resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.2.tgz#3833da01ce32da470f1f936b9d477da5c7028bf9" integrity sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA== react-shallow-renderer@^16.15.0: version "16.15.0" - resolved "https://registry.npmjs.org/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz" + resolved "https://registry.yarnpkg.com/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz#48fb2cf9b23d23cde96708fe5273a7d3446f4457" integrity sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA== dependencies: object-assign "^4.1.1" @@ -8401,7 +8537,7 @@ react-shallow-renderer@^16.15.0: react-test-renderer@18.2.0: version "18.2.0" - resolved "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-18.2.0.tgz" + resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-18.2.0.tgz#1dd912bd908ff26da5b9fca4fd1c489b9523d37e" integrity sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA== dependencies: react-is "^18.2.0" @@ -8410,36 +8546,34 @@ react-test-renderer@18.2.0: react@18.2.0: version "18.2.0" - resolved "https://registry.npmjs.org/react/-/react-18.2.0.tgz" + resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== dependencies: loose-envify "^1.1.0" -reactotron-core-client@2.9.4: - version "2.9.4" - resolved "https://registry.npmjs.org/reactotron-core-client/-/reactotron-core-client-2.9.4.tgz" - integrity sha512-0MVo8R2YVC0t6uEkFJbdelC0lOzJun/+qIOlEpIYh08VKiNVR7GYXevhZvJfSmMAUSVFoGVpeQyTbeW3brgSDQ== +reactotron-core-client@2.9.6: + version "2.9.6" + resolved "https://registry.yarnpkg.com/reactotron-core-client/-/reactotron-core-client-2.9.6.tgz#3130f06d85dec2a8d50404ffa4520f8c6cc04002" + integrity sha512-7krCkKn/uy8VF1UhSmgrhYsPJ2VNJ+btYSG0S8NBlhW/EtsRHUtLQy+tbBVg2cHaTHbejY4qrvr0yP5L7L2Osw== dependencies: reactotron-core-contract "0.2.4" reactotron-core-contract@0.2.4: version "0.2.4" - resolved "https://registry.npmjs.org/reactotron-core-contract/-/reactotron-core-contract-0.2.4.tgz" + resolved "https://registry.yarnpkg.com/reactotron-core-contract/-/reactotron-core-contract-0.2.4.tgz#c7038ce6bac5b8674b462895d7fe5e30661b24e8" integrity sha512-CmNYahBdk9uES4vimlRsoM1gAQA6T5gXTuJzDvduOjKd0IZufZjkxzBAvhpkX5OIkPl4Xlsv+1AHXLWSJSwFLA== reactotron-react-native@^5.1.9: - version "5.1.9" - resolved "https://registry.npmjs.org/reactotron-react-native/-/reactotron-react-native-5.1.9.tgz" - integrity sha512-tHkC5ZADXBJ9vRcs8TFEWOcK1QzHEzI3UnorwDDSU3hnWpwVt5MtxBcgQkicLIRWcPROe4lIJMf6SG9uc+opuA== + version "5.1.10" + resolved "https://registry.yarnpkg.com/reactotron-react-native/-/reactotron-react-native-5.1.10.tgz#572a1332839e0be7036e2d47328654d4252fe3ce" + integrity sha512-CD20odAESgH0K2YJCyfJLQg5K5Ho1qnk0QBB3SjD1yjt5BJhPuHjdXFyuED8PYLgOz+YwOX7jyK2/wu3TCp1OQ== dependencies: mitt "^3.0.1" - reactotron-core-client "2.9.4" - optionalDependencies: - react-native-flipper "^0.164.0" + reactotron-core-client "2.9.6" readable-stream@^3.4.0, readable-stream@^3.6.0: version "3.6.2" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== dependencies: inherits "^2.0.3" @@ -8448,7 +8582,7 @@ readable-stream@^3.4.0, readable-stream@^3.6.0: readable-stream@~2.3.6: version "2.3.8" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== dependencies: core-util-is "~1.0.0" @@ -8461,19 +8595,19 @@ readable-stream@~2.3.6: readable-web-to-node-stream@^3.0.0: version "3.0.2" - resolved "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz#5d52bb5df7b54861fd48d015e93a2cb87b3ee0bb" integrity sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw== dependencies: readable-stream "^3.6.0" readline@^1.3.0: version "1.3.0" - resolved "https://registry.npmjs.org/readline/-/readline-1.3.0.tgz" + resolved "https://registry.yarnpkg.com/readline/-/readline-1.3.0.tgz#c580d77ef2cfc8752b132498060dc9793a7ac01c" integrity sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg== recast@^0.21.0: version "0.21.5" - resolved "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz" + resolved "https://registry.yarnpkg.com/recast/-/recast-0.21.5.tgz#e8cd22bb51bcd6130e54f87955d33a2b2e57b495" integrity sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg== dependencies: ast-types "0.15.2" @@ -8483,44 +8617,58 @@ recast@^0.21.0: redux-persist@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/redux-persist/-/redux-persist-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/redux-persist/-/redux-persist-6.0.0.tgz#b4d2972f9859597c130d40d4b146fecdab51b3a8" integrity sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ== redux-thunk@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/redux-thunk/-/redux-thunk-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-3.1.0.tgz#94aa6e04977c30e14e892eae84978c1af6058ff3" integrity sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw== redux@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/redux/-/redux-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/redux/-/redux-5.0.1.tgz#97fa26881ce5746500125585d5642c77b6e9447b" integrity sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w== +reflect.getprototypeof@^1.0.6: + version "1.0.8" + resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.8.tgz#c58afb17a4007b4d1118c07b92c23fca422c5d82" + integrity sha512-B5dj6usc5dkk8uFliwjwDHM8To5/QwdKz9JcBZ8Ic4G1f0YmeeJTtE/ZTdgRFPAfxZFiUaPhZ1Jcs4qeagItGQ== + dependencies: + call-bind "^1.0.8" + define-properties "^1.2.1" + dunder-proto "^1.0.0" + es-abstract "^1.23.5" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + gopd "^1.2.0" + which-builtin-type "^1.2.0" + regenerate-unicode-properties@^10.2.0: version "10.2.0" - resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz#626e39df8c372338ea9b8028d1f99dc3fd9c3db0" integrity sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA== dependencies: regenerate "^1.4.2" regenerate@^1.4.2: version "1.4.2" - resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.3: version "0.13.11" - resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== regenerator-runtime@^0.14.0: version "0.14.1" - resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz#356ade10263f685dda125100cd862c1db895327f" integrity sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== -regexp.prototype.flags@^1.5.2: +regexp.prototype.flags@^1.5.3: version "1.5.3" - resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.3.tgz#b3ae40b1d2499b8350ab2c3fe6ef3845d3a96f42" integrity sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ== dependencies: call-bind "^1.0.7" @@ -8530,7 +8678,7 @@ regexp.prototype.flags@^1.5.2: regexpu-core@^6.2.0: version "6.2.0" - resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-6.2.0.tgz#0e5190d79e542bf294955dccabae04d3c7d53826" integrity sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA== dependencies: regenerate "^1.4.2" @@ -8542,39 +8690,39 @@ regexpu-core@^6.2.0: regjsgen@^0.8.0: version "0.8.0" - resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.8.0.tgz#df23ff26e0c5b300a6470cad160a9d090c3a37ab" integrity sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q== regjsparser@^0.12.0: version "0.12.0" - resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.12.0.tgz#0e846df6c6530586429377de56e0475583b088dc" integrity sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ== dependencies: jsesc "~3.0.2" remove-trailing-slash@^0.1.0: version "0.1.1" - resolved "https://registry.npmjs.org/remove-trailing-slash/-/remove-trailing-slash-0.1.1.tgz" + resolved "https://registry.yarnpkg.com/remove-trailing-slash/-/remove-trailing-slash-0.1.1.tgz#be2285a59f39c74d1bce4f825950061915e3780d" integrity sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA== require-directory@^2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== require-from-string@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== require-main-filename@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== requireg@^0.2.2: version "0.2.2" - resolved "https://registry.npmjs.org/requireg/-/requireg-0.2.2.tgz" + resolved "https://registry.yarnpkg.com/requireg/-/requireg-0.2.2.tgz#437e77a5316a54c9bcdbbf5d1f755fe093089830" integrity sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg== dependencies: nested-error-stacks "~2.0.1" @@ -8583,39 +8731,44 @@ requireg@^0.2.2: requires-port@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== reselect@^5.1.0: version "5.1.1" - resolved "https://registry.npmjs.org/reselect/-/reselect-5.1.1.tgz" + resolved "https://registry.yarnpkg.com/reselect/-/reselect-5.1.1.tgz#c766b1eb5d558291e5e550298adb0becc24bb72e" integrity sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w== resolve-cwd@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== dependencies: resolve-from "^5.0.0" resolve-from@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" integrity sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw== resolve-from@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== +resolve-workspace-root@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/resolve-workspace-root/-/resolve-workspace-root-2.0.0.tgz#a0098daa0067cd0efa6eb525c57c8fb4a61e78f8" + integrity sha512-IsaBUZETJD5WsI11Wt8PKHwaIe45or6pwNc8yflvLJ4DWtImK9kuLoH5kUva/2Mmx/RdIyr4aONNSa2v9LTJsw== + resolve.exports@^2.0.0, resolve.exports@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz" - integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== + version "2.0.3" + resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.3.tgz#41955e6f1b4013b7586f873749a635dea07ebe3f" + integrity sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A== resolve@^1.14.2, resolve@^1.20.0, resolve@^1.22.2: version "1.22.8" - resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== dependencies: is-core-module "^2.13.0" @@ -8624,14 +8777,14 @@ resolve@^1.14.2, resolve@^1.20.0, resolve@^1.22.2: resolve@~1.7.1: version "1.7.1" - resolved "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.7.1.tgz#aadd656374fd298aee895bc026b8297418677fd3" integrity sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw== dependencies: path-parse "^1.0.5" restore-cursor@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" integrity sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q== dependencies: onetime "^2.0.0" @@ -8639,7 +8792,7 @@ restore-cursor@^2.0.0: restore-cursor@^3.1.0: version "3.1.0" - resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== dependencies: onetime "^5.1.0" @@ -8647,33 +8800,33 @@ restore-cursor@^3.1.0: reusify@^1.0.4: version "1.0.4" - resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== rimraf@^3.0.2: version "3.0.2" - resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== dependencies: glob "^7.1.3" rimraf@~2.6.2: version "2.6.3" - resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== dependencies: glob "^7.1.3" run-parallel@^1.1.9: version "1.2.0" - resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== dependencies: queue-microtask "^1.2.2" safe-array-concat@^1.1.2: version "1.1.2" - resolved "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz" + resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.2.tgz#81d77ee0c4e8b863635227c721278dd524c20edb" integrity sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q== dependencies: call-bind "^1.0.7" @@ -8681,19 +8834,19 @@ safe-array-concat@^1.1.2: has-symbols "^1.0.3" isarray "^2.0.5" -safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-buffer@~5.2.0: +safe-buffer@5.2.1, safe-buffer@~5.2.0: version "5.2.1" - resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== +safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + safe-regex-test@^1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz" + resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.3.tgz#a5b4c0f06e0ab50ea2c395c14d8371232924c377" integrity sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw== dependencies: call-bind "^1.0.6" @@ -8702,38 +8855,38 @@ safe-regex-test@^1.0.3: "safer-buffer@>= 2.1.2 < 3.0.0": version "2.1.2" - resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== sax@>=0.6.0: version "1.4.1" - resolved "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.4.1.tgz#44cc8988377f126304d3b3fc1010c733b929ef0f" integrity sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg== saxes@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/saxes/-/saxes-6.0.0.tgz#fe5b4a4768df4f14a201b1ba6a65c1f3d9988cc5" integrity sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA== dependencies: xmlchars "^2.2.0" scheduler@0.24.0-canary-efb381bbf-20230505: version "0.24.0-canary-efb381bbf-20230505" - resolved "https://registry.npmjs.org/scheduler/-/scheduler-0.24.0-canary-efb381bbf-20230505.tgz" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.24.0-canary-efb381bbf-20230505.tgz#5dddc60e29f91cd7f8b983d7ce4a99c2202d178f" integrity sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA== dependencies: loose-envify "^1.1.0" scheduler@^0.23.0: version "0.23.2" - resolved "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.2.tgz#414ba64a3b282892e944cf2108ecc078d115cdc3" integrity sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ== dependencies: loose-envify "^1.1.0" schema-utils@^4.0.1: version "4.2.0" - resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.2.0.tgz#70d7c93e153a273a805801882ebd3bff20d89c8b" integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw== dependencies: "@types/json-schema" "^7.0.9" @@ -8743,12 +8896,12 @@ schema-utils@^4.0.1: scrypt-js@3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/scrypt-js/-/scrypt-js-3.0.1.tgz#d314a57c2aef69d1ad98a138a21fe9eafa9ee312" integrity sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA== selfsigned@^2.4.1: version "2.4.1" - resolved "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz" + resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.4.1.tgz#560d90565442a3ed35b674034cec4e95dceb4ae0" integrity sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q== dependencies: "@types/node-forge" "^1.3.0" @@ -8756,22 +8909,22 @@ selfsigned@^2.4.1: semver@^5.5.0, semver@^5.6.0: version "5.7.2" - resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== semver@^6.3.0, semver@^6.3.1: version "6.3.1" - resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== semver@^7.3.5, semver@^7.5.2, semver@^7.5.3, semver@^7.5.4, semver@^7.6.0: version "7.6.3" - resolved "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== send@0.19.0: version "0.19.0" - resolved "https://registry.npmjs.org/send/-/send-0.19.0.tgz" + resolved "https://registry.yarnpkg.com/send/-/send-0.19.0.tgz#bbc5a388c8ea6c048967049dbeac0e4a3f09d7f8" integrity sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw== dependencies: debug "2.6.9" @@ -8790,7 +8943,7 @@ send@0.19.0: send@^0.18.0: version "0.18.0" - resolved "https://registry.npmjs.org/send/-/send-0.18.0.tgz" + resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== dependencies: debug "2.6.9" @@ -8809,12 +8962,12 @@ send@^0.18.0: serialize-error@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-2.1.0.tgz#50b679d5635cdf84667bdc8e59af4e5b81d5f60a" integrity sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw== serve-static@^1.13.1: version "1.16.2" - resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.16.2.tgz#b6a5343da47f6bdd2673848bf45754941e803296" integrity sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw== dependencies: encodeurl "~2.0.0" @@ -8824,17 +8977,17 @@ serve-static@^1.13.1: set-blocking@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== set-cookie-parser@^2.4.8, set-cookie-parser@^2.6.0: version "2.7.1" - resolved "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz" + resolved "https://registry.yarnpkg.com/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz#3016f150072202dfbe90fadee053573cc89d2943" integrity sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ== -set-function-length@^1.2.1: +set-function-length@^1.2.2: version "1.2.2" - resolved "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== dependencies: define-data-property "^1.1.4" @@ -8846,7 +8999,7 @@ set-function-length@^1.2.1: set-function-name@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985" integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== dependencies: define-data-property "^1.1.4" @@ -8856,58 +9009,58 @@ set-function-name@^2.0.2: setimmediate@^1.0.5: version "1.0.5" - resolved "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== setprototypeof@1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== shallow-clone@^3.0.0: version "3.0.1" - resolved "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== dependencies: kind-of "^6.0.2" shallowequal@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8" integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ== shebang-command@^1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== dependencies: shebang-regex "^1.0.0" shebang-command@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== dependencies: shebang-regex "^3.0.0" shebang-regex@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== shebang-regex@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== shell-quote@^1.6.1, shell-quote@^1.7.3: - version "1.8.1" - resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz" - integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== + version "1.8.2" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.2.tgz#d2d83e057959d53ec261311e9e9b8f51dcb2934a" + integrity sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA== side-channel@^1.0.4, side-channel@^1.0.6: version "1.0.6" - resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== dependencies: call-bind "^1.0.7" @@ -8917,17 +9070,17 @@ side-channel@^1.0.4, side-channel@^1.0.6: signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: version "3.0.7" - resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== signal-exit@^4.0.1: version "4.1.0" - resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== simple-plist@^1.1.0: version "1.3.1" - resolved "https://registry.npmjs.org/simple-plist/-/simple-plist-1.3.1.tgz" + resolved "https://registry.yarnpkg.com/simple-plist/-/simple-plist-1.3.1.tgz#16e1d8f62c6c9b691b8383127663d834112fb017" integrity sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw== dependencies: bplist-creator "0.1.0" @@ -8936,29 +9089,29 @@ simple-plist@^1.1.0: simple-swizzle@^0.2.2: version "0.2.2" - resolved "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz" + resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg== dependencies: is-arrayish "^0.3.1" sisteransi@^1.0.5: version "1.0.5" - resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== slash@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== slash@^5.0.0: version "5.1.0" - resolved "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz" + resolved "https://registry.yarnpkg.com/slash/-/slash-5.1.0.tgz#be3adddcdf09ac38eebe8dcdc7b1a57a75b095ce" integrity sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg== slice-ansi@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== dependencies: ansi-styles "^3.2.0" @@ -8967,17 +9120,17 @@ slice-ansi@^2.0.0: slugify@^1.3.4, slugify@^1.6.6: version "1.6.6" - resolved "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz" + resolved "https://registry.yarnpkg.com/slugify/-/slugify-1.6.6.tgz#2d4ac0eacb47add6af9e04d3be79319cbcc7924b" integrity sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw== source-map-js@^1.2.1: version "1.2.1" - resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== source-map-support@0.5.13: version "0.5.13" - resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== dependencies: buffer-from "^1.0.0" @@ -8985,7 +9138,7 @@ source-map-support@0.5.13: source-map-support@^0.5.16, source-map-support@^0.5.21, source-map-support@~0.5.20, source-map-support@~0.5.21: version "0.5.21" - resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== dependencies: buffer-from "^1.0.0" @@ -8993,70 +9146,70 @@ source-map-support@^0.5.16, source-map-support@^0.5.21, source-map-support@~0.5. source-map@0.5.6: version "0.5.6" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" integrity sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA== source-map@^0.5.0, source-map@^0.5.6: version "0.5.7" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: version "0.6.1" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== source-map@^0.7.3: version "0.7.4" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== split-on-first@^1.0.0: version "1.1.0" - resolved "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/split-on-first/-/split-on-first-1.1.0.tgz#f610afeee3b12bce1d0c30425e76398b78249a5f" integrity sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw== split@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/split/-/split-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== dependencies: through "2" sprintf-js@~1.0.2: version "1.0.3" - resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== ssri@^10.0.0: version "10.0.6" - resolved "https://registry.npmjs.org/ssri/-/ssri-10.0.6.tgz" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-10.0.6.tgz#a8aade2de60ba2bce8688e3fa349bad05c7dc1e5" integrity sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ== dependencies: minipass "^7.0.3" stack-generator@^2.0.5: version "2.0.10" - resolved "https://registry.npmjs.org/stack-generator/-/stack-generator-2.0.10.tgz" + resolved "https://registry.yarnpkg.com/stack-generator/-/stack-generator-2.0.10.tgz#8ae171e985ed62287d4f1ed55a1633b3fb53bb4d" integrity sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ== dependencies: stackframe "^1.3.4" stack-utils@^2.0.3: version "2.0.6" - resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz" + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== dependencies: escape-string-regexp "^2.0.0" stackframe@^1.3.4: version "1.3.4" - resolved "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz" + resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.3.4.tgz#b881a004c8c149a5e8efef37d51b16e412943310" integrity sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw== stacktrace-gps@^3.0.4: version "3.1.2" - resolved "https://registry.npmjs.org/stacktrace-gps/-/stacktrace-gps-3.1.2.tgz" + resolved "https://registry.yarnpkg.com/stacktrace-gps/-/stacktrace-gps-3.1.2.tgz#0c40b24a9b119b20da4525c398795338966a2fb0" integrity sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ== dependencies: source-map "0.5.6" @@ -9064,7 +9217,7 @@ stacktrace-gps@^3.0.4: stacktrace-js@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/stacktrace-js/-/stacktrace-js-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/stacktrace-js/-/stacktrace-js-2.0.2.tgz#4ca93ea9f494752d55709a081d400fdaebee897b" integrity sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg== dependencies: error-stack-parser "^2.0.6" @@ -9073,39 +9226,39 @@ stacktrace-js@^2.0.2: stacktrace-parser@^0.1.10: version "0.1.10" - resolved "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz" + resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz#29fb0cae4e0d0b85155879402857a1639eb6051a" integrity sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg== dependencies: type-fest "^0.7.1" statuses@2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== statuses@~1.5.0: version "1.5.0" - resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== stream-buffers@2.2.x, stream-buffers@~2.2.0: version "2.2.0" - resolved "https://registry.npmjs.org/stream-buffers/-/stream-buffers-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4" integrity sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg== stream-slice@^0.1.2: version "0.1.2" - resolved "https://registry.npmjs.org/stream-slice/-/stream-slice-0.1.2.tgz" + resolved "https://registry.yarnpkg.com/stream-slice/-/stream-slice-0.1.2.tgz#2dc4f4e1b936fb13f3eb39a2def1932798d07a4b" integrity sha512-QzQxpoacatkreL6jsxnVb7X5R/pGw9OUv2qWTYWnmLpg4NdN31snPy/f3TdQE1ZUXaThRvj1Zw4/OGg0ZkaLMA== strict-uri-encode@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" integrity sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ== string-length@^4.0.1: version "4.0.2" - resolved "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== dependencies: char-regex "^1.0.2" @@ -9113,7 +9266,7 @@ string-length@^4.0.1: string-length@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-5.0.1.tgz#3d647f497b6e8e8d41e422f7e0b23bc536c8381e" integrity sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow== dependencies: char-regex "^2.0.0" @@ -9121,7 +9274,7 @@ string-length@^5.0.1: "string-width-cjs@npm:string-width@^4.2.0": version "4.2.3" - resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== dependencies: emoji-regex "^8.0.0" @@ -9130,7 +9283,7 @@ string-length@^5.0.1: string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" - resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== dependencies: emoji-regex "^8.0.0" @@ -9139,7 +9292,7 @@ string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: string-width@^5.0.1, string-width@^5.1.2: version "5.1.2" - resolved "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== dependencies: eastasianwidth "^0.2.0" @@ -9148,7 +9301,7 @@ string-width@^5.0.1, string-width@^5.1.2: string.prototype.trim@^1.2.9: version "1.2.9" - resolved "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz#b6fa326d72d2c78b6df02f7759c73f8f6274faa4" integrity sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw== dependencies: call-bind "^1.0.7" @@ -9158,7 +9311,7 @@ string.prototype.trim@^1.2.9: string.prototype.trimend@^1.0.8: version "1.0.8" - resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz#3651b8513719e8a9f48de7f2f77640b26652b229" integrity sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ== dependencies: call-bind "^1.0.7" @@ -9167,7 +9320,7 @@ string.prototype.trimend@^1.0.8: string.prototype.trimstart@^1.0.8: version "1.0.8" - resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz#7ee834dda8c7c17eff3118472bb35bfedaa34dde" integrity sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg== dependencies: call-bind "^1.0.7" @@ -9176,79 +9329,79 @@ string.prototype.trimstart@^1.0.8: string_decoder@^1.1.1: version "1.3.0" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== dependencies: safe-buffer "~5.2.0" string_decoder@~1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== dependencies: safe-buffer "~5.1.0" "strip-ansi-cjs@npm:strip-ansi@^6.0.1": version "6.0.1" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== dependencies: ansi-regex "^5.0.1" strip-ansi@^5.0.0, strip-ansi@^5.2.0: version "5.2.0" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== dependencies: ansi-regex "^4.1.0" strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== dependencies: ansi-regex "^5.0.1" strip-ansi@^7.0.1: version "7.1.0" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== dependencies: ansi-regex "^6.0.1" strip-bom@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== strip-eof@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" integrity sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q== strip-final-newline@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== strip-json-comments@^3.1.1: version "3.1.1" - resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== strip-json-comments@~2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== strnum@^1.0.5: version "1.0.5" - resolved "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz" + resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db" integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA== strtok3@^6.2.4: version "6.3.0" - resolved "https://registry.npmjs.org/strtok3/-/strtok3-6.3.0.tgz" + resolved "https://registry.yarnpkg.com/strtok3/-/strtok3-6.3.0.tgz#358b80ffe6d5d5620e19a073aa78ce947a90f9a0" integrity sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw== dependencies: "@tokenizer/token" "^0.3.0" @@ -9256,17 +9409,17 @@ strtok3@^6.2.4: structured-headers@^0.4.1: version "0.4.1" - resolved "https://registry.npmjs.org/structured-headers/-/structured-headers-0.4.1.tgz" + resolved "https://registry.yarnpkg.com/structured-headers/-/structured-headers-0.4.1.tgz#77abd9410622c6926261c09b9d16cf10592694d1" integrity sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg== styleq@^0.1.3: version "0.1.3" - resolved "https://registry.npmjs.org/styleq/-/styleq-0.1.3.tgz" + resolved "https://registry.yarnpkg.com/styleq/-/styleq-0.1.3.tgz#8efb2892debd51ce7b31dc09c227ad920decab71" integrity sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA== sucrase@3.34.0: version "3.34.0" - resolved "https://registry.npmjs.org/sucrase/-/sucrase-3.34.0.tgz" + resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.34.0.tgz#1e0e2d8fcf07f8b9c3569067d92fbd8690fb576f" integrity sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw== dependencies: "@jridgewell/gen-mapping" "^0.3.2" @@ -9279,43 +9432,43 @@ sucrase@3.34.0: sudo-prompt@9.1.1: version "9.1.1" - resolved "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.1.1.tgz" + resolved "https://registry.yarnpkg.com/sudo-prompt/-/sudo-prompt-9.1.1.tgz#73853d729770392caec029e2470db9c221754db0" integrity sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA== sudo-prompt@^8.2.0: version "8.2.5" - resolved "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz" + resolved "https://registry.yarnpkg.com/sudo-prompt/-/sudo-prompt-8.2.5.tgz#cc5ef3769a134bb94b24a631cc09628d4d53603e" integrity sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw== sudo-prompt@^9.0.0: version "9.2.1" - resolved "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.2.1.tgz" + resolved "https://registry.yarnpkg.com/sudo-prompt/-/sudo-prompt-9.2.1.tgz#77efb84309c9ca489527a4e749f287e6bdd52afd" integrity sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw== supports-color@^5.3.0: version "5.5.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== dependencies: has-flag "^3.0.0" supports-color@^7.0.0, supports-color@^7.1.0: version "7.2.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== dependencies: has-flag "^4.0.0" supports-color@^8.0.0: version "8.1.1" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== dependencies: has-flag "^4.0.0" supports-hyperlinks@^2.0.0: version "2.3.0" - resolved "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz" + resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz#3943544347c1ff90b15effb03fc14ae45ec10624" integrity sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA== dependencies: has-flag "^4.0.0" @@ -9323,17 +9476,17 @@ supports-hyperlinks@^2.0.0: supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== symbol-tree@^3.2.4: version "3.2.4" - resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz" + resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== tar@^6.0.5, tar@^6.1.11: version "6.2.1" - resolved "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a" integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A== dependencies: chownr "^2.0.0" @@ -9345,24 +9498,24 @@ tar@^6.0.5, tar@^6.1.11: temp-dir@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d" integrity sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ== temp-dir@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-2.0.0.tgz#bde92b05bdfeb1516e804c9c00ad45177f31321e" integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg== temp@^0.8.4: version "0.8.4" - resolved "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz" + resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.4.tgz#8c97a33a4770072e0a05f919396c7665a7dd59f2" integrity sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg== dependencies: rimraf "~2.6.2" tempy@0.3.0: version "0.3.0" - resolved "https://registry.npmjs.org/tempy/-/tempy-0.3.0.tgz" + resolved "https://registry.yarnpkg.com/tempy/-/tempy-0.3.0.tgz#6f6c5b295695a16130996ad5ab01a8bd726e8bf8" integrity sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ== dependencies: temp-dir "^1.0.0" @@ -9371,7 +9524,7 @@ tempy@0.3.0: tempy@^0.7.1: version "0.7.1" - resolved "https://registry.npmjs.org/tempy/-/tempy-0.7.1.tgz" + resolved "https://registry.yarnpkg.com/tempy/-/tempy-0.7.1.tgz#5a654e6dbd1747cdd561efb112350b55cd9c1d46" integrity sha512-vXPxwOyaNVi9nyczO16mxmHGpl6ASC5/TVhRRHpqeYHvKQm58EaWNvZXxAhR0lYYnBOQFjXjhzeLsaXdjxLjRg== dependencies: del "^6.0.0" @@ -9382,16 +9535,16 @@ tempy@^0.7.1: terminal-link@^2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz" + resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== dependencies: ansi-escapes "^4.2.1" supports-hyperlinks "^2.0.0" terser@^5.15.0: - version "5.34.1" - resolved "https://registry.npmjs.org/terser/-/terser-5.34.1.tgz" - integrity sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA== + version "5.37.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.37.0.tgz#38aa66d1cfc43d0638fab54e43ff8a4f72a21ba3" + integrity sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA== dependencies: "@jridgewell/source-map" "^0.3.3" acorn "^8.8.2" @@ -9400,7 +9553,7 @@ terser@^5.15.0: test-exclude@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== dependencies: "@istanbuljs/schema" "^0.1.2" @@ -9409,36 +9562,36 @@ test-exclude@^6.0.0: text-encoding@^0.7.0: version "0.7.0" - resolved "https://registry.npmjs.org/text-encoding/-/text-encoding-0.7.0.tgz" + resolved "https://registry.yarnpkg.com/text-encoding/-/text-encoding-0.7.0.tgz#f895e836e45990624086601798ea98e8f36ee643" integrity sha512-oJQ3f1hrOnbRLOcwKz0Liq2IcrvDeZRHXhd9RgLrsT+DjWY/nty1Hi7v3dtkaEYbPYe0mUoOfzRrMwfXXwgPUA== text-table@^0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== thenify-all@^1.0.0: version "1.6.0" - resolved "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz" + resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== dependencies: thenify ">= 3.1.0 < 4" "thenify@>= 3.1.0 < 4": version "3.3.1" - resolved "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz" + resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== dependencies: any-promise "^1.0.0" throat@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b" integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA== through2@^2.0.1: version "2.0.5" - resolved "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== dependencies: readable-stream "~2.3.6" @@ -9446,51 +9599,51 @@ through2@^2.0.1: through@2: version "2.3.8" - resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== timm@^1.6.1: version "1.7.1" - resolved "https://registry.npmjs.org/timm/-/timm-1.7.1.tgz" + resolved "https://registry.yarnpkg.com/timm/-/timm-1.7.1.tgz#96bab60c7d45b5a10a8a4d0f0117c6b7e5aff76f" integrity sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw== tiny-case@^1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/tiny-case/-/tiny-case-1.0.3.tgz" + resolved "https://registry.yarnpkg.com/tiny-case/-/tiny-case-1.0.3.tgz#d980d66bc72b5d5a9ca86fb7c9ffdb9c898ddd03" integrity sha512-Eet/eeMhkO6TX8mnUteS9zgPbUMQa4I6Kkp5ORiBD5476/m+PIRiumP5tmh5ioJpH7k51Kehawy2UDfsnxxY8Q== tinycolor2@^1.4.1: version "1.6.0" - resolved "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz" + resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.6.0.tgz#f98007460169b0263b97072c5ae92484ce02d09e" integrity sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw== tmp@^0.0.33: version "0.0.33" - resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== dependencies: os-tmpdir "~1.0.2" tmpl@1.0.5: version "1.0.5" - resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== to-regex-range@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== dependencies: is-number "^7.0.0" toidentifier@1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== token-types@^4.1.1: version "4.2.1" - resolved "https://registry.npmjs.org/token-types/-/token-types-4.2.1.tgz" + resolved "https://registry.yarnpkg.com/token-types/-/token-types-4.2.1.tgz#0f897f03665846982806e138977dbe72d44df753" integrity sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ== dependencies: "@tokenizer/token" "^0.3.0" @@ -9498,12 +9651,12 @@ token-types@^4.1.1: toposort@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/toposort/-/toposort-2.0.2.tgz#ae21768175d1559d48bef35420b2f4962f09c330" integrity sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg== tough-cookie@^4.1.2: version "4.1.4" - resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.4.tgz#945f1461b45b5a8c76821c33ea49c3ac192c1b36" integrity sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag== dependencies: psl "^1.1.33" @@ -9513,19 +9666,19 @@ tough-cookie@^4.1.2: tr46@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-3.0.0.tgz#555c4e297a950617e8eeddef633c87d4d9d6cbf9" integrity sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA== dependencies: punycode "^2.1.1" tr46@~0.0.3: version "0.0.3" - resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== traverse@~0.6.6: version "0.6.10" - resolved "https://registry.npmjs.org/traverse/-/traverse-0.6.10.tgz" + resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.10.tgz#4c93482381d794dee046882c036f3c4eee481324" integrity sha512-hN4uFRxbK+PX56DxYiGHsTn2dME3TVr9vbNqlQGcGcPhJAn+tdP126iA+TArMpI4YSgnTkMWyoLl5bf81Hi5TA== dependencies: gopd "^1.0.1" @@ -9534,57 +9687,62 @@ traverse@~0.6.6: trim-right@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" integrity sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw== +ts-api-utils@^1.3.0: + version "1.4.3" + resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.4.3.tgz#bfc2215fe6528fecab2b0fba570a2e8a4263b064" + integrity sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw== + ts-interface-checker@^0.1.9: version "0.1.13" - resolved "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz" + resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== tslib@^2.0.1, tslib@^2.1.0, tslib@^2.4.0: - version "2.7.0" - resolved "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz" - integrity sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA== + version "2.8.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f" + integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== turbo-stream@2.4.0: version "2.4.0" - resolved "https://registry.npmjs.org/turbo-stream/-/turbo-stream-2.4.0.tgz" + resolved "https://registry.yarnpkg.com/turbo-stream/-/turbo-stream-2.4.0.tgz#1e4fca6725e90fa14ac4adb782f2d3759a5695f0" integrity sha512-FHncC10WpBd2eOmGwpmQsWLDoK4cqsA/UT/GqNoaKOQnT8uzhtCbg3EoUDMvqpOSAI0S26mr0rkjzbOO6S3v1g== type-detect@4.0.8: version "4.0.8" - resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz" + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== type-fest@^0.16.0: version "0.16.0" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.16.0.tgz#3240b891a78b0deae910dbeb86553e552a148860" integrity sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg== type-fest@^0.21.3: version "0.21.3" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== type-fest@^0.3.1: version "0.3.1" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1" integrity sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ== type-fest@^0.7.1: version "0.7.1" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.7.1.tgz#8dda65feaf03ed78f0a3f9678f1869147f7c5c48" integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg== type-fest@^2.19.0: version "2.19.0" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== typed-array-buffer@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz#1867c5d83b20fcb5ccf32649e5e2fc7424474ff3" integrity sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ== dependencies: call-bind "^1.0.7" @@ -9593,7 +9751,7 @@ typed-array-buffer@^1.0.2: typed-array-byte-length@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz#d92972d3cff99a3fa2e765a28fcdc0f1d89dec67" integrity sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw== dependencies: call-bind "^1.0.7" @@ -9603,9 +9761,9 @@ typed-array-byte-length@^1.0.1: is-typed-array "^1.1.13" typed-array-byte-offset@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz" - integrity sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA== + version "1.0.3" + resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.3.tgz#3fa9f22567700cc86aaf86a1e7176f74b59600f2" + integrity sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw== dependencies: available-typed-arrays "^1.0.7" call-bind "^1.0.7" @@ -9613,22 +9771,23 @@ typed-array-byte-offset@^1.0.2: gopd "^1.0.1" has-proto "^1.0.3" is-typed-array "^1.1.13" + reflect.getprototypeof "^1.0.6" typed-array-length@^1.0.6: - version "1.0.6" - resolved "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz" - integrity sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g== + version "1.0.7" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.7.tgz#ee4deff984b64be1e118b0de8c9c877d5ce73d3d" + integrity sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg== dependencies: call-bind "^1.0.7" for-each "^0.3.3" gopd "^1.0.1" - has-proto "^1.0.3" is-typed-array "^1.1.13" possible-typed-array-names "^1.0.0" + reflect.getprototypeof "^1.0.6" typedarray.prototype.slice@^1.0.3: version "1.0.3" - resolved "https://registry.npmjs.org/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.3.tgz" + resolved "https://registry.yarnpkg.com/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.3.tgz#bce2f685d3279f543239e4d595e0d021731d2d1a" integrity sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A== dependencies: call-bind "^1.0.7" @@ -9640,17 +9799,17 @@ typedarray.prototype.slice@^1.0.3: typescript@~5.3.3: version "5.3.3" - resolved "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37" integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw== ua-parser-js@^1.0.35: version "1.0.39" - resolved "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.39.tgz" + resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.39.tgz#bfc07f361549bf249bd8f4589a4cccec18fd2018" integrity sha512-k24RCVWlEcjkdOxYmVJgeD/0a1TiSpqLg+ZalVGV9lsnr4yqu0w7tX/x2xX6G4zpkgQnRf89lxuZ1wsbjXM8lw== unbox-primitive@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== dependencies: call-bind "^1.0.2" @@ -9660,27 +9819,27 @@ unbox-primitive@^1.0.2: undici-types@~5.26.4: version "5.26.5" - resolved "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== -undici-types@~6.19.2: - version "6.19.8" - resolved "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz" - integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw== +undici-types@~6.20.0: + version "6.20.0" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.20.0.tgz#8171bf22c1f588d1554d55bf204bc624af388433" + integrity sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg== undici@^6.11.1: - version "6.20.1" - resolved "https://registry.npmjs.org/undici/-/undici-6.20.1.tgz" - integrity sha512-AjQF1QsmqfJys+LXfGTNum+qw4S88CojRInG/6t31W/1fk6G59s92bnAvGz5Cmur+kQv2SURXEvvudLmbrE8QA== + version "6.21.0" + resolved "https://registry.yarnpkg.com/undici/-/undici-6.21.0.tgz#4b3d3afaef984e07b48e7620c34ed8a285ed4cd4" + integrity sha512-BUgJXc752Kou3oOIuU1i+yZZypyZRqNPW0vqoMPl8VaoalSfeR0D8/t4iAS3yirs79SSMTxTag+ZC86uswv+Cw== unicode-canonical-property-names-ecmascript@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz#cb3173fe47ca743e228216e4a3ddc4c84d628cc2" integrity sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg== unicode-match-property-ecmascript@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== dependencies: unicode-canonical-property-names-ecmascript "^2.0.0" @@ -9688,70 +9847,70 @@ unicode-match-property-ecmascript@^2.0.0: unicode-match-property-value-ecmascript@^2.1.0: version "2.2.0" - resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz#a0401aee72714598f739b68b104e4fe3a0cb3c71" integrity sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg== unicode-property-aliases-ecmascript@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== unique-filename@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-3.0.0.tgz#48ba7a5a16849f5080d26c760c86cf5cf05770ea" integrity sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g== dependencies: unique-slug "^4.0.0" unique-slug@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-4.0.0.tgz#6bae6bb16be91351badd24cdce741f892a6532e3" integrity sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ== dependencies: imurmurhash "^0.1.4" unique-string@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" integrity sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg== dependencies: crypto-random-string "^1.0.0" unique-string@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== dependencies: crypto-random-string "^2.0.0" universalify@^0.1.0: version "0.1.2" - resolved "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== universalify@^0.2.0: version "0.2.0" - resolved "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== universalify@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-1.0.0.tgz#b61a1da173e8435b2fe3c67d29b9adf8594bd16d" integrity sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug== universalify@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== unpipe@~1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== -update-browserslist-db@^1.1.0: +update-browserslist-db@^1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz#80846fba1d79e82547fb661f8d141e0945755fe5" integrity sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A== dependencies: escalade "^3.2.0" @@ -9759,19 +9918,19 @@ update-browserslist-db@^1.1.0: uri-js@^4.2.2: version "4.4.1" - resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== dependencies: punycode "^2.1.0" url-join@4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/url-join/-/url-join-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/url-join/-/url-join-4.0.0.tgz#4d3340e807d3773bda9991f8305acdcc2a665d2a" integrity sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA== url-parse@^1.5.3: version "1.5.10" - resolved "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== dependencies: querystringify "^2.1.1" @@ -9779,7 +9938,7 @@ url-parse@^1.5.3: url@^0.11.0: version "0.11.4" - resolved "https://registry.npmjs.org/url/-/url-0.11.4.tgz" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.4.tgz#adca77b3562d56b72746e76b330b7f27b6721f3c" integrity sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg== dependencies: punycode "^1.4.1" @@ -9787,34 +9946,39 @@ url@^0.11.0: use-latest-callback@^0.1.5: version "0.1.11" - resolved "https://registry.npmjs.org/use-latest-callback/-/use-latest-callback-0.1.11.tgz" + resolved "https://registry.yarnpkg.com/use-latest-callback/-/use-latest-callback-0.1.11.tgz#e073fcbba792cc95ac661d96bc13b6041956cfe1" integrity sha512-8nhb73STSD/z3GTHklvNjL8F9wMOo0bj0AFnulpIYuFTm6aQlT3ZcNbXF2YurKImIY8+kpSFSDHZZyQmurGrhw== use-latest-callback@^0.2.1: - version "0.2.1" - resolved "https://registry.npmjs.org/use-latest-callback/-/use-latest-callback-0.2.1.tgz" - integrity sha512-QWlq8Is8BGWBf883QOEQP5HWYX/kMI+JTbJ5rdtvJLmXTIh9XoHIO3PQcmQl8BU44VKxow1kbQUHa6mQSMALDQ== + version "0.2.3" + resolved "https://registry.yarnpkg.com/use-latest-callback/-/use-latest-callback-0.2.3.tgz#2d644d3063040b9bc2d4c55bb525a13ae3de9e16" + integrity sha512-7vI3fBuyRcP91pazVboc4qu+6ZqM8izPWX9k7cRnT8hbD5svslcknsh3S9BUhaK11OmgTV4oWZZVSeQAiV53SQ== -use-sync-external-store@1.2.2, use-sync-external-store@^1.0.0: +use-sync-external-store@1.2.2: version "1.2.2" - resolved "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz" + resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz#c3b6390f3a30eba13200d2302dcdf1e7b57b2ef9" integrity sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw== +use-sync-external-store@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.4.0.tgz#adbc795d8eeb47029963016cefdf89dc799fcebc" + integrity sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw== + utif@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/utif/-/utif-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/utif/-/utif-2.0.1.tgz#9e1582d9bbd20011a6588548ed3266298e711759" integrity sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg== dependencies: pako "^1.0.5" util-deprecate@^1.0.1, util-deprecate@~1.0.1: version "1.0.2" - resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== util@^0.12.3: version "0.12.5" - resolved "https://registry.npmjs.org/util/-/util-0.12.5.tgz" + resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc" integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA== dependencies: inherits "^2.0.3" @@ -9825,27 +9989,27 @@ util@^0.12.3: utils-merge@1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== "uuid@>=8 <10": version "9.0.1" - resolved "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== uuid@^7.0.3: version "7.0.3" - resolved "https://registry.npmjs.org/uuid/-/uuid-7.0.3.tgz" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.3.tgz#c5c9f2c8cf25dc0a372c4df1441c41f5bd0c680b" integrity sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg== uuid@^8.0.0, uuid@^8.3.2: version "8.3.2" - resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== v8-to-istanbul@^9.0.1: version "9.3.0" - resolved "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz" + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz#b9572abfa62bd556c16d75fdebc1a411d5ff3175" integrity sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA== dependencies: "@jridgewell/trace-mapping" "^0.3.12" @@ -9854,280 +10018,285 @@ v8-to-istanbul@^9.0.1: valid-url@~1.0.9: version "1.0.9" - resolved "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz" + resolved "https://registry.yarnpkg.com/valid-url/-/valid-url-1.0.9.tgz#1c14479b40f1397a75782f115e4086447433a200" integrity sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA== validate-npm-package-name@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" integrity sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw== dependencies: builtins "^1.0.3" +validate-npm-package-name@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz#a316573e9b49f3ccd90dbb6eb52b3f06c6d604e8" + integrity sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ== + vary@~1.1.2: version "1.1.2" - resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== -victory-area@37.1.2, victory-area@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-area/-/victory-area-37.1.2.tgz" - integrity sha512-72i02xTD47i7P+X02AHhZ32yO16VcM1h/7gulgAioLEx+8m3zShBKu46Md/vqmbyS2Bypr3xpUvd+8mCDIvCbw== +victory-area@37.3.4, victory-area@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-area/-/victory-area-37.3.4.tgz#312e2dcaccb9fa682c4e44c897d1d9e204b58897" + integrity sha512-1TUuXHBBttlW2E/totLcG982b364qqiRHvi+zPjIblPqLilQT0tbuk+CYMxxbs4+M5s5GgKP28KIEX5qlrqmLA== dependencies: lodash "^4.17.19" - victory-core "37.1.2" - victory-vendor "37.1.2" + victory-core "37.3.4" + victory-vendor "37.3.4" -victory-axis@37.1.2, victory-axis@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-axis/-/victory-axis-37.1.2.tgz" - integrity sha512-TuivC84cHrFoDetWDhU2VXQ34froIXBrtjYYPdmwBrMEFSu+FfrakYWUr3r25XNEPyOyk4z3a8lL/sqrxWYSRQ== +victory-axis@37.3.4, victory-axis@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-axis/-/victory-axis-37.3.4.tgz#7a67fa1094fa0bcf9da1c14e00a8c8e1336424fd" + integrity sha512-Z7SfBtR54vD3pKGzJDTzsqQJc16FNNUbGPBjn87uaTz+Va+foG7i37WnH6Z96TmtrMIWg+h/MzkySJpyDmC5Gg== dependencies: lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-bar@37.1.2, victory-bar@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-bar/-/victory-bar-37.1.2.tgz" - integrity sha512-VJDE+TGSgyIchvln189cPMuG3LYqa8zCjHa8kYValP3bFTa5c+D1Y8R/FjVger40uEL3aQz1teHJODJCOxuXGA== +victory-bar@37.3.4, victory-bar@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-bar/-/victory-bar-37.3.4.tgz#0eaf297a17cb411dc7d11f8697c33546d31a962b" + integrity sha512-I3hNbzlqG3QoqrUZMdlR0zAiNQOXpevDvIUVCFRegnGsRZPl05KiYjNoKzaIpc/82AuZyfKGenAIDCcbevkFjA== dependencies: lodash "^4.17.19" - victory-core "37.1.2" - victory-vendor "37.1.2" + victory-core "37.3.4" + victory-vendor "37.3.4" -victory-box-plot@37.1.2, victory-box-plot@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-box-plot/-/victory-box-plot-37.1.2.tgz" - integrity sha512-i7JIjpaPTr3uaoW6ibfX4PrH1QcUeLXNxeCbmPRb+Hs+ug0d16J4RELPCaeNo/ZNg4rEzfueNTvExsYFIpHaWw== +victory-box-plot@37.3.4, victory-box-plot@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-box-plot/-/victory-box-plot-37.3.4.tgz#5a38a2be8b367a356c638f5ad5491d909b226f62" + integrity sha512-6ghOwA9C4qPJTf2GKWX4PtPL4REmT4g8RD1frAZkeR04nzN5BGjF1HD1WAHwqAigXPr8tswEpvSQJT21RRstDA== dependencies: lodash "^4.17.19" - victory-core "37.1.2" - victory-vendor "37.1.2" + victory-core "37.3.4" + victory-vendor "37.3.4" -victory-brush-container@37.1.2, victory-brush-container@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-brush-container/-/victory-brush-container-37.1.2.tgz" - integrity sha512-pJrMSo815UJxOT5OTXnq1tI5qQxQLnrlgDRNF8pxVF9dSxm7BhETjZSQfZgcLmCe3N931U19j8oCxw8sMSpJJw== +victory-brush-container@37.3.4, victory-brush-container@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-brush-container/-/victory-brush-container-37.3.4.tgz#3a1c33b5f8759f1cecd48979d4cd4a13e2a6ddf2" + integrity sha512-Blc0FsT6bqU86x7vBixpPjL3bDwJIc8UX8w/MkNQGU4REsRkN83a5yVL/vbfc/H3aUG4YJaMep7Gh0RwuNBYag== dependencies: lodash "^4.17.19" react-fast-compare "^3.2.0" - victory-core "37.1.2" + victory-core "37.3.4" -victory-brush-line@37.1.2, victory-brush-line@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-brush-line/-/victory-brush-line-37.1.2.tgz" - integrity sha512-Bq9JGu/o4p/NQ/ZOASUm6MmomS+2b0EvAHjULa06z7nsElNePpedTYPk2aAb7mr4sJZe6u/AsDMthG+C8Zc32Q== +victory-brush-line@37.3.4, victory-brush-line@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-brush-line/-/victory-brush-line-37.3.4.tgz#18dff53b47e917fae3c30921c42ca586a931c48b" + integrity sha512-osKm2ouWGg0J19KF08GDjSkN4zHRtjvBG+pcxdeiAaOBa3jfD03Mrlx0gXkWK1X6F3NTFEsaf8iUpubeDrlHyg== dependencies: lodash "^4.17.19" react-fast-compare "^3.2.0" - victory-core "37.1.2" + victory-core "37.3.4" -victory-candlestick@37.1.2, victory-candlestick@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-candlestick/-/victory-candlestick-37.1.2.tgz" - integrity sha512-X+pLwvdIj/+nrvk1bZxhdJ9UBj7QLN4jdkIPDl6ekjfZ9Ylhi8/I/ttAkBu+7w7ilpGudIK6fr7PVHyZyYU6TA== +victory-candlestick@37.3.4, victory-candlestick@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-candlestick/-/victory-candlestick-37.3.4.tgz#06cc21d1cb56dc1e27b673a3f24a7ec4fb0bcca1" + integrity sha512-6pphv0oGzbjbTSMDsy9b5jVs+q2KH9sRaqcIGFMRUZicnuTLettie945gohWrr/FGYd/2Q1/ss8Jq5/lizFYpA== dependencies: lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-canvas@37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-canvas/-/victory-canvas-37.1.2.tgz" - integrity sha512-4Qmz7YpFBj2KaBSe+j5zLVrKAJLG3HtXVVaKI3oUzw4GzHlYXf77dJLYe2EqJVEFCMgVsmASqE3xVTklioMV7g== +victory-canvas@37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-canvas/-/victory-canvas-37.3.4.tgz#18adac06c9218dc78de99a352a162f3fb33e331a" + integrity sha512-32Ql5kXrKlqLLZbP3IDmB6w9ONpzVG+EuUWB6rAxIONeSPy6eZfIx+IYy0CUAkJj+zwa50iVL5GeRtLNb05WZw== dependencies: lodash "^4.17.19" - victory-bar "37.1.2" - victory-core "37.1.2" + victory-bar "37.3.4" + victory-core "37.3.4" -victory-chart@37.1.2, victory-chart@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-chart/-/victory-chart-37.1.2.tgz" - integrity sha512-efV7lnqwu4+zLzB6aY3jjYbbfYJ9+1VC6uwx+8AGjbb8vGkbByUOKC6Fhdcuca2mLqNQHM0Ynvevs3+4XrBz1g== +victory-chart@37.3.4, victory-chart@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-chart/-/victory-chart-37.3.4.tgz#9afa2360125108448544a2c6c40df5424062cc2e" + integrity sha512-iQ7jSnDSpvHFe+L97jaOPaSPXQzpPhYX5TE4j8olDR/hqWEwALDkFzTCiZt/cLD9lhL+OJQSRbxtwlXMndPlgg== dependencies: lodash "^4.17.19" react-fast-compare "^3.2.0" - victory-axis "37.1.2" - victory-core "37.1.2" - victory-polar-axis "37.1.2" - victory-shared-events "37.1.2" + victory-axis "37.3.4" + victory-core "37.3.4" + victory-polar-axis "37.3.4" + victory-shared-events "37.3.4" -victory-core@37.1.2, victory-core@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-core/-/victory-core-37.1.2.tgz" - integrity sha512-9fskAQw9MvYEBL+0cDk2lihKyECdrh+8HGicDfSKGOWtsSLk+x7R6PKCpOzhmSgc9fG+HjWYfs2uTWSPNTjF9A== +victory-core@37.3.4, victory-core@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-core/-/victory-core-37.3.4.tgz#255c23068a9399377a5465d0c9c12fee825f6704" + integrity sha512-EGPjBMsVjOEXOtcNOalG96AgytcUb6Ko3EdlSMIrPO8MV6REjmokwbit1zV6ImlptXhSjZbrCvsFQ96+5ucMvQ== dependencies: lodash "^4.17.21" react-fast-compare "^3.2.0" - victory-vendor "37.1.2" + victory-vendor "37.3.4" -victory-create-container@37.1.2, victory-create-container@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-create-container/-/victory-create-container-37.1.2.tgz" - integrity sha512-GvWA+N3SXf6he+hW1IQqaRjKG7XSV9WBr06mZixRVyOeHJGGZ5g7Vsse1WrwUz5/DM8HcqF34PTfhTs39v6zaw== +victory-create-container@37.3.4, victory-create-container@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-create-container/-/victory-create-container-37.3.4.tgz#c44f5c51fd23c657b02a50da635ebd72bcba3610" + integrity sha512-jYSuw5LrqczhBj0oeiDZSLG8VmLIgEc5LYH375iVBHoeSBlLC5f1WRhr7BsSHV4hVqE5IlpYE+4LR0pUM9Ea+w== dependencies: lodash "^4.17.19" - victory-brush-container "37.1.2" - victory-core "37.1.2" - victory-cursor-container "37.1.2" - victory-selection-container "37.1.2" - victory-voronoi-container "37.1.2" - victory-zoom-container "37.1.2" - -victory-cursor-container@37.1.2, victory-cursor-container@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-cursor-container/-/victory-cursor-container-37.1.2.tgz" - integrity sha512-GqOVB/Emas/ODw7Sb7FX1FmUyH3jb5eNF+2sR+DdYfDMTFmjVUyqGkSpi1bIgHoSWTrdG9C2tkxA69gI9JDtLA== + victory-brush-container "37.3.4" + victory-core "37.3.4" + victory-cursor-container "37.3.4" + victory-selection-container "37.3.4" + victory-voronoi-container "37.3.4" + victory-zoom-container "37.3.4" + +victory-cursor-container@37.3.4, victory-cursor-container@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-cursor-container/-/victory-cursor-container-37.3.4.tgz#131a5a7d28eecd7f564fba177716713fae774c6e" + integrity sha512-UJrYWnhIhMSTECsL5BOCeM3ck6zsKj5Dy9UI2Ok45kqDy0E9NH86J6mvpBgEuhgR4nf/lBBHc2fYjLx8fLJi2A== dependencies: lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-errorbar@37.1.2, victory-errorbar@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-errorbar/-/victory-errorbar-37.1.2.tgz" - integrity sha512-sgs1nla57Ctt9slG5WXWdxqTXtTdKcZM+u83C5j1ceKKmMjCiqiNYmMQpF7yz7Nj2ewJTrOzZON9h2zgurr2Cg== +victory-errorbar@37.3.4, victory-errorbar@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-errorbar/-/victory-errorbar-37.3.4.tgz#0e0d41b46b1414a70ad1af53e52cb2dd69aab7a5" + integrity sha512-Ys7fIzTaVtlYg4hA0O9R4oe4oAyT36Mv/fMaqOV3PWCm07IrAeqCX5mP+UPAUvZF3cRp5qHRh1BiaBAEzf+/qg== dependencies: lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-group@37.1.2, victory-group@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-group/-/victory-group-37.1.2.tgz" - integrity sha512-Zwdvs6pSfF02xax8rQbahSqRP7eua4mS0so0gFYr/M2sNiKN4hxnM72j3dLo9nQ63kQpYhcUZe8U/hEjlhHxYQ== +victory-group@37.3.4, victory-group@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-group/-/victory-group-37.3.4.tgz#aae4d33421e59d1258f7595b3c380932901d0608" + integrity sha512-V93yQp/2+JsHdkp2F97Vy/fEJ9WFjzFIhoQ+9KaCI6eOcE72/aIYSJ9Z4JO1yLAR74akl0fPvC624xm8E2VBzg== dependencies: lodash "^4.17.19" react-fast-compare "^3.2.0" - victory-core "37.1.2" - victory-shared-events "37.1.2" + victory-core "37.3.4" + victory-shared-events "37.3.4" -victory-histogram@37.1.2, victory-histogram@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-histogram/-/victory-histogram-37.1.2.tgz" - integrity sha512-IGeQZ2HGuvmMyYxoKOczIILNH6ARDJaWcDG3h5BX4jP4JH2+eWeEukCVHGT3b1VM1OFxuvPijJrePXYzKgQ+AQ== +victory-histogram@37.3.4, victory-histogram@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-histogram/-/victory-histogram-37.3.4.tgz#d0056d2e35235b0d2cfd7806081fb5ea0ec3261c" + integrity sha512-uqewLuEHDv/CkxDp04KrOaGCenbbjNqklbd52SHlH+C/tSJ0lW9z22WmyHjiygQHzLCpnRjy8jIi1ztQZFDkKg== dependencies: lodash "^4.17.19" react-fast-compare "^3.2.0" - victory-bar "37.1.2" - victory-core "37.1.2" - victory-vendor "37.1.2" + victory-bar "37.3.4" + victory-core "37.3.4" + victory-vendor "37.3.4" -victory-legend@37.1.2, victory-legend@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-legend/-/victory-legend-37.1.2.tgz" - integrity sha512-dmwwHtFpEXPIelY9iH1a2Q/V2Ji8DaF0a2g+hLH4SM/xbA9YwjP2/9DIQcwS7/OVl4l1AnSbLFcu5RyDPJ0kww== +victory-legend@37.3.4, victory-legend@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-legend/-/victory-legend-37.3.4.tgz#1e562f964e8257759bd2017f25c68fa0be9e39f9" + integrity sha512-EwkE6kAzZUxJkWgSVZ1g93tFFtbyElxy7PPRW7ipmWQbtL99kb8hmL40GsEEKHGyOX4bPo2M1TpckL35qEFihA== dependencies: lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-line@37.1.2, victory-line@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-line/-/victory-line-37.1.2.tgz" - integrity sha512-DjttWkQG0iZtQ9SM/KphN168dQUgw1xwyr0qR1aN12VtVb1jspI1LkBH8XqUeYXgfuI1vKQJWcV/zMOK2Q1n8g== +victory-line@37.3.4, victory-line@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-line/-/victory-line-37.3.4.tgz#2fed142d45d529a01420eeeb4aa4452048439e25" + integrity sha512-WO4EiBxJG7MS/dfxirRdtrC7qkwCyCKpqtCFSEDJyCyctN8iNp6+SfXiYfIGw6fA4cdT/23weOIaC0DQgI2vBw== dependencies: lodash "^4.17.19" - victory-core "37.1.2" - victory-vendor "37.1.2" + victory-core "37.3.4" + victory-vendor "37.3.4" victory-native@^37.0.3-next.0: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-native/-/victory-native-37.1.2.tgz" - integrity sha512-df9RRGv9S4Im6jEo2u/RHT2IhDvkzbsoXXZW8ib7IzDOK4ZWd9l7p4shB+Za8NRdfbqYJMoLA0h5bhpxM4VmWg== + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-native/-/victory-native-37.3.4.tgz#84ec1a57c9b3b18770870f94942549db701f59a9" + integrity sha512-KI3P/ZwjviQj6mSddIaMs/RZ6z55xVRFsrEx8YHRs8kCTYegTrN1kl4Aol2ZZZHZ5l69LoWHONsMdiRyIeolCQ== dependencies: hoist-non-react-statics "^3.3.2" lodash "^4.17.21" react-fast-compare "^3.2.0" - victory "^37.1.2" - victory-area "^37.1.2" - victory-axis "^37.1.2" - victory-bar "^37.1.2" - victory-box-plot "^37.1.2" - victory-brush-container "^37.1.2" - victory-brush-line "^37.1.2" - victory-candlestick "^37.1.2" - victory-chart "^37.1.2" - victory-core "^37.1.2" - victory-create-container "^37.1.2" - victory-cursor-container "^37.1.2" - victory-errorbar "^37.1.2" - victory-group "^37.1.2" - victory-histogram "^37.1.2" - victory-legend "^37.1.2" - victory-line "^37.1.2" - victory-pie "^37.1.2" - victory-polar-axis "^37.1.2" - victory-scatter "^37.1.2" - victory-selection-container "^37.1.2" - victory-shared-events "^37.1.2" - victory-stack "^37.1.2" - victory-tooltip "^37.1.2" - victory-voronoi "^37.1.2" - victory-voronoi-container "^37.1.2" - victory-zoom-container "^37.1.2" - -victory-pie@37.1.2, victory-pie@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-pie/-/victory-pie-37.1.2.tgz" - integrity sha512-lwPMAtkcGDJ4gdpKFmR7hRnowJZIGQ6XIvyPj7Ir+QfL6ew64kl7YiIsQpDnC4zqwAjDPIbIW/kRROiSKRjXjQ== + victory "^37.3.4" + victory-area "^37.3.4" + victory-axis "^37.3.4" + victory-bar "^37.3.4" + victory-box-plot "^37.3.4" + victory-brush-container "^37.3.4" + victory-brush-line "^37.3.4" + victory-candlestick "^37.3.4" + victory-chart "^37.3.4" + victory-core "^37.3.4" + victory-create-container "^37.3.4" + victory-cursor-container "^37.3.4" + victory-errorbar "^37.3.4" + victory-group "^37.3.4" + victory-histogram "^37.3.4" + victory-legend "^37.3.4" + victory-line "^37.3.4" + victory-pie "^37.3.4" + victory-polar-axis "^37.3.4" + victory-scatter "^37.3.4" + victory-selection-container "^37.3.4" + victory-shared-events "^37.3.4" + victory-stack "^37.3.4" + victory-tooltip "^37.3.4" + victory-voronoi "^37.3.4" + victory-voronoi-container "^37.3.4" + victory-zoom-container "^37.3.4" + +victory-pie@37.3.4, victory-pie@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-pie/-/victory-pie-37.3.4.tgz#83a8d0be3cc83670e6dfc8107f1ba13e873f31b1" + integrity sha512-J0qdbySZh2D4SoCpNiIvh9n8DxeafHVPU717cZ/77FAF/ICVf6UWzmqnTUaKQ3leeHt3iJRluBEbXbwrur0WKQ== dependencies: lodash "^4.17.19" - victory-core "37.1.2" - victory-vendor "37.1.2" + victory-core "37.3.4" + victory-vendor "37.3.4" -victory-polar-axis@37.1.2, victory-polar-axis@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-polar-axis/-/victory-polar-axis-37.1.2.tgz" - integrity sha512-cvELVQ5MwDjDfC/n/g8QVfUhexLNKcp7kXxbjp6IGbzQMCfNtROHaVaHaISNH7/EV5zinwBhNj0+ISWatROtrQ== +victory-polar-axis@37.3.4, victory-polar-axis@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-polar-axis/-/victory-polar-axis-37.3.4.tgz#0bdb6d607c829407aa2d04354433240ebea39cae" + integrity sha512-qS5cWgh21HiFlzeMGA30f3gf4hsxlESgWhtXVXHZbbXjV3uG+N4OioPYGh2Y1uJjFfDQNMmKekl3YrnsQtBCeg== dependencies: lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-scatter@37.1.2, victory-scatter@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-scatter/-/victory-scatter-37.1.2.tgz" - integrity sha512-6orfcqdfZCuTHqf/wE+B+sQbpzf2/TyEvLZhvYIXFr5GzdVu39psNl74K3GQ2Ky0db+e6oLEHV8nZYO2IvWoWg== +victory-scatter@37.3.4, victory-scatter@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-scatter/-/victory-scatter-37.3.4.tgz#cc4fd4bfb2dfd5d4ba1c0639872183ca819e5b91" + integrity sha512-7VGkK6S57mQ2hUtXdT0+D5UI7T0h93TR7XtJPG/PWZuoY+jwp+Poq57Eh5Ebf0HdigGTVkKVp9Devh9822K/vQ== dependencies: lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-selection-container@37.1.2, victory-selection-container@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-selection-container/-/victory-selection-container-37.1.2.tgz" - integrity sha512-1sp1CV9LrBADnsBcFgVQuYUNCLeANuybtOS9/5TvPPELBGWQQ55nBN3mH/laVPDy9gGyPARh1lmdPgREHmSkmQ== +victory-selection-container@37.3.4, victory-selection-container@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-selection-container/-/victory-selection-container-37.3.4.tgz#c8f5be96ade4143fffdc8a10b9adc718b882004a" + integrity sha512-8XVY3unWH7nJmD+8PPgNZpweIR6eJkAIoXAJC9eef3CAG4GSTtNflXCJVajRCgrd41RX4b4p7zXOisW9fEQ8Jw== dependencies: lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-shared-events@37.1.2, victory-shared-events@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-shared-events/-/victory-shared-events-37.1.2.tgz" - integrity sha512-fpgpe6eI0A9dD39ZsFaid3sXdrCf1WIzFnpkNFT6hBYrDDD5Fd2/2SgqOxuul64PlYJAk6NOY+F1agmEtmB+/Q== +victory-shared-events@37.3.4, victory-shared-events@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-shared-events/-/victory-shared-events-37.3.4.tgz#bc0f5aa6ae940c699c91326ce12407801701af25" + integrity sha512-eX0Vko3k62R1OnQHe8VikkRP3H8O8nrGXG6GfcUjQWN2uBe31zhwXUOpzZcQstHyfo3L8u3JbQWMQGXEg9LlXw== dependencies: json-stringify-safe "^5.0.1" lodash "^4.17.19" react-fast-compare "^3.2.0" - victory-core "37.1.2" + victory-core "37.3.4" -victory-stack@37.1.2, victory-stack@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-stack/-/victory-stack-37.1.2.tgz" - integrity sha512-H3FWiv3c6s/++PB3pBZ/9r8mcry1FHg8JK+03DZhRKHtJIti/38iIYUUiFOoQKmjVUQ7wrLdftYiemy3st77Dg== +victory-stack@37.3.4, victory-stack@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-stack/-/victory-stack-37.3.4.tgz#13a30749b12192743e674e39498bf908481a5c57" + integrity sha512-2aWAKnf3D+xk02l2ib+5ft5dlMHl2JegyTmNVCrNZsgHuqsblfffQN+VfRsng8U56KJ5MzVTsWdA3dT4ioveag== dependencies: lodash "^4.17.19" react-fast-compare "^3.2.0" - victory-core "37.1.2" - victory-shared-events "37.1.2" + victory-core "37.3.4" + victory-shared-events "37.3.4" -victory-tooltip@37.1.2, victory-tooltip@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-tooltip/-/victory-tooltip-37.1.2.tgz" - integrity sha512-j1r1t83X0epSwivhf4eYSD2DoWRVy5fkINbLk4sVnnV2EUT4Lt4yH3uelIhYQuT4Y+Ez9KFLoQvR6bfwmHyfZw== +victory-tooltip@37.3.4, victory-tooltip@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-tooltip/-/victory-tooltip-37.3.4.tgz#1bba0080d6474085cb412af2f7054925966cd658" + integrity sha512-kWIO5DEWdqhp+gvdjWb1TtjzSpGiQTr23OWR51FW2nXpkBzvy6GbRYRUB76F7/5XaJk0dsQDX4MYVs9JOxxN+w== dependencies: lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-vendor@37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-vendor/-/victory-vendor-37.1.2.tgz" - integrity sha512-kZ2UVcoINrisEW7JDaxws2v17D4n4ShRzsPUcYnF37/avByNbjzybhvs8JrqO6+vUmoP2W1DrTEI2L/86PEQjw== +victory-vendor@37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-vendor/-/victory-vendor-37.3.4.tgz#149c5bfa16aa37868b3f9a6f02576594e87e78e8" + integrity sha512-VD0ddlxWErbl4a2KEG2ruPynLdjDskPny0FuhQkrPVz1o5SBaxkYR8/6mFHUAQBurL8w6eujqP3jJIGVNevbiQ== dependencies: "@types/d3-array" "^3.0.3" "@types/d3-ease" "^3.0.0" @@ -10144,116 +10313,116 @@ victory-vendor@37.1.2: d3-time "^3.0.0" d3-timer "^3.0.1" -victory-voronoi-container@37.1.2, victory-voronoi-container@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-voronoi-container/-/victory-voronoi-container-37.1.2.tgz" - integrity sha512-uFnZmRWp+QP7mH9jqetmoSR/KYhnFr4sFGR9+HrQkUbOzBQpT7Q2SNrDcr5l29Hm7Lb+3iUuF/l0E//EzuS+Ig== +victory-voronoi-container@37.3.4, victory-voronoi-container@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-voronoi-container/-/victory-voronoi-container-37.3.4.tgz#f6880739a8c18cddf963d30b8090e2057dcfaeab" + integrity sha512-Vt4l85rg/qHwUZR0j8zcHwsMY5VnowJIEgD9u8FJ69PvBDvW0906+Lh7FJ+aw8zUkUq0S5sE6CRUKyilbOCk+A== dependencies: delaunay-find "0.0.6" lodash "^4.17.19" react-fast-compare "^3.2.0" - victory-core "37.1.2" - victory-tooltip "37.1.2" + victory-core "37.3.4" + victory-tooltip "37.3.4" -victory-voronoi@37.1.2, victory-voronoi@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-voronoi/-/victory-voronoi-37.1.2.tgz" - integrity sha512-rbihVJMDLmrMKfm6mbzTft9BbaJWZkymFkYxZZT0ZdHjsyaFm7t3jjrtvG1cq6HsTI10AfCh7iWmD9aky69eMQ== +victory-voronoi@37.3.4, victory-voronoi@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-voronoi/-/victory-voronoi-37.3.4.tgz#9eb0a0fe233432e2f6cbeec5c2bf65f66f43673e" + integrity sha512-wNeE3M7g1ggk2JuyDTLVp9ACOHu4Al4Eq8qHDcfkrN1RWRmmDylBoBT7VMOnor4T2QPof513/+EBsZ6a46CUcw== dependencies: d3-voronoi "^1.1.4" lodash "^4.17.19" - victory-core "37.1.2" + victory-core "37.3.4" -victory-zoom-container@37.1.2, victory-zoom-container@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory-zoom-container/-/victory-zoom-container-37.1.2.tgz" - integrity sha512-OI0AgskIpruWaFWF1BkJWi4UZGyEJ+ol3uzlIMk3tPmYkuw5Gh4pTW6kEw/0E1BP+PwJjv+IRGBbT46/YxV3UQ== +victory-zoom-container@37.3.4, victory-zoom-container@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory-zoom-container/-/victory-zoom-container-37.3.4.tgz#ee65548ca6f215abfd89228b304391f04bd0d184" + integrity sha512-hXMlG2HX2Lr/VdrsZCxhwAfhDaL2W+f2kn7lk/shy02yEVcRh6B1rJDSUWHxJGWOBRngxzzAToNNOuNzJMRovw== dependencies: lodash "^4.17.19" - victory-core "37.1.2" - -victory@^37.1.2: - version "37.1.2" - resolved "https://registry.npmjs.org/victory/-/victory-37.1.2.tgz" - integrity sha512-V1YkJiWQ/vu5MSZ/Yf9/AJQeE+N1p1eUW6r5xJgOjbhioIbnL7FBTyJW1AXqqDZN9WdyECI3TkFQ1l/QbgztoA== - dependencies: - victory-area "37.1.2" - victory-axis "37.1.2" - victory-bar "37.1.2" - victory-box-plot "37.1.2" - victory-brush-container "37.1.2" - victory-brush-line "37.1.2" - victory-candlestick "37.1.2" - victory-canvas "37.1.2" - victory-chart "37.1.2" - victory-core "37.1.2" - victory-create-container "37.1.2" - victory-cursor-container "37.1.2" - victory-errorbar "37.1.2" - victory-group "37.1.2" - victory-histogram "37.1.2" - victory-legend "37.1.2" - victory-line "37.1.2" - victory-pie "37.1.2" - victory-polar-axis "37.1.2" - victory-scatter "37.1.2" - victory-selection-container "37.1.2" - victory-shared-events "37.1.2" - victory-stack "37.1.2" - victory-tooltip "37.1.2" - victory-voronoi "37.1.2" - victory-voronoi-container "37.1.2" - victory-zoom-container "37.1.2" + victory-core "37.3.4" + +victory@^37.3.4: + version "37.3.4" + resolved "https://registry.yarnpkg.com/victory/-/victory-37.3.4.tgz#fa16cf99e727a8b90280549e41aef785d406ca28" + integrity sha512-4fozCnfG8z6EqgQ1G3e0JNTjfr87cUx+MDVwmqfeq0NZATUcXaJ16dcjkZHpXHLoFu/CCZCXGqZSpL/y4l1yUQ== + dependencies: + victory-area "37.3.4" + victory-axis "37.3.4" + victory-bar "37.3.4" + victory-box-plot "37.3.4" + victory-brush-container "37.3.4" + victory-brush-line "37.3.4" + victory-candlestick "37.3.4" + victory-canvas "37.3.4" + victory-chart "37.3.4" + victory-core "37.3.4" + victory-create-container "37.3.4" + victory-cursor-container "37.3.4" + victory-errorbar "37.3.4" + victory-group "37.3.4" + victory-histogram "37.3.4" + victory-legend "37.3.4" + victory-line "37.3.4" + victory-pie "37.3.4" + victory-polar-axis "37.3.4" + victory-scatter "37.3.4" + victory-selection-container "37.3.4" + victory-shared-events "37.3.4" + victory-stack "37.3.4" + victory-tooltip "37.3.4" + victory-voronoi "37.3.4" + victory-voronoi-container "37.3.4" + victory-zoom-container "37.3.4" viem@^2.21.29: - version "2.21.29" - resolved "https://registry.npmjs.org/viem/-/viem-2.21.29.tgz" - integrity sha512-n9LoCJjmI1XsE33nl+M4p3Wy5hczv7YC682RpX4Qk9cw8s9HJU+hUi5eDcNDPBcAwIHGCPKsf8yFBEYnE2XYVg== - dependencies: - "@adraffy/ens-normalize" "1.11.0" - "@noble/curves" "1.6.0" - "@noble/hashes" "1.5.0" - "@scure/bip32" "1.5.0" - "@scure/bip39" "1.4.0" - abitype "1.0.6" + version "2.21.54" + resolved "https://registry.yarnpkg.com/viem/-/viem-2.21.54.tgz#76d6f86ab8809078f1ac140ac1a2beadbc86b9f6" + integrity sha512-G9mmtbua3UtnVY9BqAtWdNp+3AO+oWhD0B9KaEsZb6gcrOWgmA4rz02yqEMg+qW9m6KgKGie7q3zcHqJIw6AqA== + dependencies: + "@noble/curves" "1.7.0" + "@noble/hashes" "1.6.1" + "@scure/bip32" "1.6.0" + "@scure/bip39" "1.5.0" + abitype "1.0.7" isows "1.0.6" + ox "0.1.2" webauthn-p256 "0.0.10" ws "8.18.0" vlq@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/vlq/-/vlq-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/vlq/-/vlq-1.0.1.tgz#c003f6e7c0b4c1edd623fd6ee50bbc0d6a1de468" integrity sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w== w3c-xmlserializer@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz#aebdc84920d806222936e3cdce408e32488a3073" integrity sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw== dependencies: xml-name-validator "^4.0.0" walker@^1.0.7, walker@^1.0.8: version "1.0.8" - resolved "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== dependencies: makeerror "1.0.12" warn-once@^0.1.0: version "0.1.1" - resolved "https://registry.npmjs.org/warn-once/-/warn-once-0.1.1.tgz" + resolved "https://registry.yarnpkg.com/warn-once/-/warn-once-0.1.1.tgz#952088f4fb56896e73fd4e6a3767272a3fccce43" integrity sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q== wcwidth@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== dependencies: defaults "^1.0.3" web-encoding@1.1.5: version "1.1.5" - resolved "https://registry.npmjs.org/web-encoding/-/web-encoding-1.1.5.tgz" + resolved "https://registry.yarnpkg.com/web-encoding/-/web-encoding-1.1.5.tgz#fc810cf7667364a6335c939913f5051d3e0c4864" integrity sha512-HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA== dependencies: util "^0.12.3" @@ -10262,12 +10431,12 @@ web-encoding@1.1.5: web-streams-polyfill@^3.1.1: version "3.3.3" - resolved "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz#2073b91a2fdb1fbfbd401e7de0ac9f8214cecb4b" integrity sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw== webauthn-p256@0.0.10: version "0.0.10" - resolved "https://registry.npmjs.org/webauthn-p256/-/webauthn-p256-0.0.10.tgz" + resolved "https://registry.yarnpkg.com/webauthn-p256/-/webauthn-p256-0.0.10.tgz#877e75abe8348d3e14485932968edf3325fd2fdd" integrity sha512-EeYD+gmIT80YkSIDb2iWq0lq2zbHo1CxHlQTeJ+KkCILWpVy3zASH3ByD4bopzfk0uCwXxLqKGLqp2W4O28VFA== dependencies: "@noble/curves" "^1.4.0" @@ -10275,39 +10444,39 @@ webauthn-p256@0.0.10: webidl-conversions@^3.0.0: version "3.0.1" - resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== webidl-conversions@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== webidl-conversions@^7.0.0: version "7.0.0" - resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-7.0.0.tgz#256b4e1882be7debbf01d05f0aa2039778ea080a" integrity sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g== whatwg-encoding@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz#e7635f597fd87020858626805a2729fa7698ac53" integrity sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg== dependencies: iconv-lite "0.6.3" whatwg-fetch@^3.0.0: version "3.6.20" - resolved "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz" + resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz#580ce6d791facec91d37c72890995a0b48d31c70" integrity sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg== whatwg-mimetype@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz#5fa1a7623867ff1af6ca3dc72ad6b8a4208beba7" integrity sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q== whatwg-url-without-unicode@8.0.0-3: version "8.0.0-3" - resolved "https://registry.npmjs.org/whatwg-url-without-unicode/-/whatwg-url-without-unicode-8.0.0-3.tgz" + resolved "https://registry.yarnpkg.com/whatwg-url-without-unicode/-/whatwg-url-without-unicode-8.0.0-3.tgz#ab6df4bf6caaa6c85a59f6e82c026151d4bb376b" integrity sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig== dependencies: buffer "^5.4.3" @@ -10316,7 +10485,7 @@ whatwg-url-without-unicode@8.0.0-3: whatwg-url@^11.0.0: version "11.0.0" - resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-11.0.0.tgz#0a849eebb5faf2119b901bb76fd795c2848d4018" integrity sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ== dependencies: tr46 "^3.0.0" @@ -10324,32 +10493,61 @@ whatwg-url@^11.0.0: whatwg-url@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== dependencies: tr46 "~0.0.3" webidl-conversions "^3.0.0" which-boxed-primitive@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.1.0.tgz#2d850d6c4ac37b95441a67890e19f3fda8b6c6d9" + integrity sha512-Ei7Miu/AXe2JJ4iNF5j/UphAgRoma4trE6PtisM09bPygb3egMH3YLW/befsWb1A1AxvNSFidOFTB18XtnIIng== + dependencies: + is-bigint "^1.1.0" + is-boolean-object "^1.2.0" + is-number-object "^1.1.0" + is-string "^1.1.0" + is-symbol "^1.1.0" + +which-builtin-type@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.2.0.tgz#58042ac9602d78a6d117c7e811349df1268ba63c" + integrity sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA== + dependencies: + call-bind "^1.0.7" + function.prototype.name "^1.1.6" + has-tostringtag "^1.0.2" + is-async-function "^2.0.0" + is-date-object "^1.0.5" + is-finalizationregistry "^1.1.0" + is-generator-function "^1.0.10" + is-regex "^1.1.4" + is-weakref "^1.0.2" + isarray "^2.0.5" + which-boxed-primitive "^1.0.2" + which-collection "^1.0.2" + which-typed-array "^1.1.15" + +which-collection@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz" - integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz#627ef76243920a107e7ce8e96191debe4b16c2a0" + integrity sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw== dependencies: - is-bigint "^1.0.1" - is-boolean-object "^1.1.0" - is-number-object "^1.0.4" - is-string "^1.0.5" - is-symbol "^1.0.3" + is-map "^2.0.3" + is-set "^2.0.3" + is-weakmap "^2.0.2" + is-weakset "^2.0.3" which-module@^2.0.0: version "2.0.1" - resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== which-typed-array@^1.1.14, which-typed-array@^1.1.15, which-typed-array@^1.1.2: - version "1.1.15" - resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz" - integrity sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA== + version "1.1.16" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.16.tgz#db4db429c4706feca2f01677a144278e4a8c216b" + integrity sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ== dependencies: available-typed-arrays "^1.0.7" call-bind "^1.0.7" @@ -10359,31 +10557,31 @@ which-typed-array@^1.1.14, which-typed-array@^1.1.15, which-typed-array@^1.1.2: which@^1.2.9: version "1.3.1" - resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== dependencies: isexe "^2.0.0" which@^2.0.1: version "2.0.2" - resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== dependencies: isexe "^2.0.0" wonka@^4.0.14: version "4.0.15" - resolved "https://registry.npmjs.org/wonka/-/wonka-4.0.15.tgz" + resolved "https://registry.yarnpkg.com/wonka/-/wonka-4.0.15.tgz#9aa42046efa424565ab8f8f451fcca955bf80b89" integrity sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg== wonka@^6.3.2: version "6.3.4" - resolved "https://registry.npmjs.org/wonka/-/wonka-6.3.4.tgz" + resolved "https://registry.yarnpkg.com/wonka/-/wonka-6.3.4.tgz#76eb9316e3d67d7febf4945202b5bdb2db534594" integrity sha512-CjpbqNtBGNAeyNS/9W6q3kSkKE52+FjIj7AkFlLr11s/VWGUu6a2CdYSdGxocIhIVjaW/zchesBQUKPVU69Cqg== "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": version "7.0.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== dependencies: ansi-styles "^4.0.0" @@ -10392,7 +10590,7 @@ wonka@^6.3.2: wrap-ansi@^6.2.0: version "6.2.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== dependencies: ansi-styles "^4.0.0" @@ -10401,7 +10599,7 @@ wrap-ansi@^6.2.0: wrap-ansi@^7.0.0: version "7.0.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== dependencies: ansi-styles "^4.0.0" @@ -10410,7 +10608,7 @@ wrap-ansi@^7.0.0: wrap-ansi@^8.1.0: version "8.1.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== dependencies: ansi-styles "^6.1.0" @@ -10419,12 +10617,12 @@ wrap-ansi@^8.1.0: wrappy@1: version "1.0.2" - resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== write-file-atomic@^2.3.0: version "2.4.3" - resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== dependencies: graceful-fs "^4.1.11" @@ -10433,7 +10631,7 @@ write-file-atomic@^2.3.0: write-file-atomic@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== dependencies: imurmurhash "^0.1.4" @@ -10441,29 +10639,29 @@ write-file-atomic@^4.0.2: ws@7.4.6: version "7.4.6" - resolved "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c" integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A== ws@8.18.0, ws@^8.11.0, ws@^8.12.1: version "8.18.0" - resolved "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc" integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw== ws@^6.2.2: version "6.2.3" - resolved "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz" + resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.3.tgz#ccc96e4add5fd6fedbc491903075c85c5a11d9ee" integrity sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA== dependencies: async-limiter "~1.0.0" ws@^7, ws@^7.5.10: version "7.5.10" - resolved "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.10.tgz#58b5c20dc281633f6c19113f39b349bd8bd558d9" integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ== xcode@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/xcode/-/xcode-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/xcode/-/xcode-3.0.1.tgz#3efb62aac641ab2c702458f9a0302696146aa53c" integrity sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA== dependencies: simple-plist "^1.1.0" @@ -10471,7 +10669,7 @@ xcode@^3.0.1: xhr@^2.0.1: version "2.6.0" - resolved "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz" + resolved "https://registry.yarnpkg.com/xhr/-/xhr-2.6.0.tgz#b69d4395e792b4173d6b7df077f0fc5e4e2b249d" integrity sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA== dependencies: global "~4.4.0" @@ -10481,17 +10679,17 @@ xhr@^2.0.1: xml-name-validator@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== xml-parse-from-string@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz#a9029e929d3dbcded169f3c6e28238d95a5d5a28" integrity sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g== xml2js@0.6.0: version "0.6.0" - resolved "https://registry.npmjs.org/xml2js/-/xml2js-0.6.0.tgz" + resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.6.0.tgz#07afc447a97d2bd6507a1f76eeadddb09f7a8282" integrity sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w== dependencies: sax ">=0.6.0" @@ -10499,7 +10697,7 @@ xml2js@0.6.0: xml2js@^0.5.0: version "0.5.0" - resolved "https://registry.npmjs.org/xml2js/-/xml2js-0.5.0.tgz" + resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.5.0.tgz#d9440631fbb2ed800203fad106f2724f62c493b7" integrity sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA== dependencies: sax ">=0.6.0" @@ -10507,57 +10705,57 @@ xml2js@^0.5.0: xmlbuilder@^14.0.0: version "14.0.0" - resolved "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-14.0.0.tgz" + resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-14.0.0.tgz#876b5aec4f05ffd5feb97b0a871c855d16fbeb8c" integrity sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg== xmlbuilder@^15.1.1: version "15.1.1" - resolved "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz" + resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz#9dcdce49eea66d8d10b42cae94a79c3c8d0c2ec5" integrity sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg== xmlbuilder@~11.0.0: version "11.0.1" - resolved "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz" + resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== xmlchars@^2.2.0: version "2.2.0" - resolved "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== xtend@^4.0.0, xtend@~4.0.1: version "4.0.2" - resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== y18n@^4.0.0: version "4.0.3" - resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== y18n@^5.0.5: version "5.0.8" - resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== yallist@^3.0.2: version "3.1.1" - resolved "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== yallist@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== yaml@^2.2.1: - version "2.6.0" - resolved "https://registry.npmjs.org/yaml/-/yaml-2.6.0.tgz" - integrity sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ== + version "2.6.1" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.6.1.tgz#42f2b1ba89203f374609572d5349fb8686500773" + integrity sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg== yargs-parser@^18.1.2: version "18.1.3" - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== dependencies: camelcase "^5.0.0" @@ -10565,12 +10763,12 @@ yargs-parser@^18.1.2: yargs-parser@^21.1.1: version "21.1.1" - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== yargs@^15.1.0, yargs@^15.3.1: version "15.4.1" - resolved "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== dependencies: cliui "^6.0.0" @@ -10587,7 +10785,7 @@ yargs@^15.1.0, yargs@^15.3.1: yargs@^17.3.1, yargs@^17.6.2: version "17.7.2" - resolved "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== dependencies: cliui "^8.0.1" @@ -10600,13 +10798,13 @@ yargs@^17.3.1, yargs@^17.6.2: yocto-queue@^0.1.0: version "0.1.0" - resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== yup@^1.4.0: - version "1.4.0" - resolved "https://registry.npmjs.org/yup/-/yup-1.4.0.tgz" - integrity sha512-wPbgkJRCqIf+OHyiTBQoJiP5PFuAXaWiJK6AmYkzQAh5/c2K9hzSApBZG5wV9KoKSePF7sAxmNSvh/13YHkFDg== + version "1.5.0" + resolved "https://registry.yarnpkg.com/yup/-/yup-1.5.0.tgz#1aaa5e453f04424094b9c8a0e5292e0ac2d97246" + integrity sha512-NJfBIHnp1QbqZwxcgl6irnDMIsb/7d1prNhFx02f1kp8h+orpi4xs3w90szNpOh68a/iHPdMsYvhZWoDmUvXBQ== dependencies: property-expr "^2.0.5" tiny-case "^1.0.3" @@ -10615,17 +10813,17 @@ yup@^1.4.0: zod-validation-error@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/zod-validation-error/-/zod-validation-error-2.1.0.tgz#208eac75237dfed47c0018d2fe8fd03501bfc9ac" integrity sha512-VJh93e2wb4c3tWtGgTa0OF/dTt/zoPCPzXq4V11ZjxmEAFaPi/Zss1xIZdEB5RD8GD00U0/iVXgqkF77RV7pdQ== zod@^3.21.4, zod@^3.22.4: - version "3.23.8" - resolved "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz" - integrity sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g== + version "3.24.1" + resolved "https://registry.yarnpkg.com/zod/-/zod-3.24.1.tgz#27445c912738c8ad1e9de1bea0359fa44d9d35ee" + integrity sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A== zustand@^4.4.1: version "4.5.5" - resolved "https://registry.npmjs.org/zustand/-/zustand-4.5.5.tgz" + resolved "https://registry.yarnpkg.com/zustand/-/zustand-4.5.5.tgz#f8c713041543715ec81a2adda0610e1dc82d4ad1" integrity sha512-+0PALYNJNgK6hldkgDq2vLrw5f6g/jCInz52n9RTpropGgeAf/ioFUCdtsjCqu4gNhW9D01rUQBROoRjdzyn2Q== dependencies: use-sync-external-store "1.2.2" From e010bb84dfd2d310ba9a3ebf78c27b4cbb3d88a3 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Sat, 14 Dec 2024 21:28:53 +0100 Subject: [PATCH 84/95] revert strategy actions --- services/feeds/queries.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/services/feeds/queries.ts b/services/feeds/queries.ts index 4515dc4..d790947 100644 --- a/services/feeds/queries.ts +++ b/services/feeds/queries.ts @@ -8,6 +8,7 @@ import { isDev } from '@/constants/env'; import { useToastActions } from '@/store/toast/actions'; import { useState } from 'react'; import useSystemFunctions from '@/hooks/useSystemFunctions'; +import useAppActions from '@/store/app/actions'; const useFeeds = () => { return useInfiniteQuery({ @@ -30,6 +31,7 @@ const useWriteFeed = () => { const { router } = useSystemFunctions(); const { createStrategy } = useLiquidity(publicClient as PublicClient); const { showToast } = useToastActions(); + const { handleStrategyActions } = useAppActions(); const [loading, setLoading] = useState(false); const postStrategy = async (data: StrategyBody) => { @@ -43,6 +45,8 @@ const useWriteFeed = () => { variant: 'success', }); + handleStrategyActions([]); + return router.replace('/(tabs)/home'); } catch (error: any) { if (error.cause?.message && error.cause?.message.includes('Biometrics must be enabled')) { From 6d169363fc0727775a90aaed3f1e21feccd41a5f Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Sat, 14 Dec 2024 22:38:28 +0100 Subject: [PATCH 85/95] Crypto Deposit Screen / Bug fix (#104) * fix: avoid keyboard bottomsheet * fix: keyboard avoid view on comment modal * chore: crypto deposit screen ui update * chore: truncate text on feed-card component * fix: fixed parent card press on child pressable * fix: active state on focus comment input * chore: codebase clean up --- app/(tabs)/_layout.tsx | 22 ++++---- components/bottom-sheet/index.tsx | 4 +- components/button/index.tsx | 16 ++++++ components/button/types.ts | 2 +- components/feed-card/index.tsx | 79 ++++++++++++++++++---------- components/feed-card/types.ts | 7 ++- screens/deposit/crypto/index.tsx | 43 +++++++++------ screens/deposit/method-selection.tsx | 1 + screens/discover/dummy.ts | 2 +- screens/discover/index.tsx | 2 + screens/home/dummy.ts | 4 +- screens/home/index.tsx | 6 ++- screens/portfolio/index.tsx | 44 ++++++++++------ screens/portfolio/types.ts | 6 +++ screens/profile/dummy.ts | 4 +- screens/profile/index.tsx | 10 ++-- screens/strategy-detail/index.tsx | 40 ++++++++------ 17 files changed, 195 insertions(+), 97 deletions(-) diff --git a/app/(tabs)/_layout.tsx b/app/(tabs)/_layout.tsx index 23c1241..e3041c2 100644 --- a/app/(tabs)/_layout.tsx +++ b/app/(tabs)/_layout.tsx @@ -29,16 +29,17 @@ export default function TabLayout() { - ( - setSelectedAction(item.id)} /> - )} - keyExtractor={(_, index) => index.toString()} - showsHorizontalScrollIndicator={false} - contentContainerStyle={styles.protocalContainerStyle} - /> + + {sortList.map((action, index) => ( + setSelectedAction(action.id)} + /> + ))} + - + + void; onLongPress?: () => void; - variant?: 'primary' | 'secondary' | 'tertiary' | 'tertiaryOutline'; + variant?: 'primary' | 'secondary' | 'tertiary' | 'tertiaryOutline' | 'light'; disabled?: boolean; loading?: boolean; style?: StyleProp; diff --git a/components/feed-card/index.tsx b/components/feed-card/index.tsx index 1cb6bf7..875d24f 100644 --- a/components/feed-card/index.tsx +++ b/components/feed-card/index.tsx @@ -1,22 +1,33 @@ import { Pressable, StyleSheet, Text, View } from 'react-native'; -import React from 'react'; +import React, { useState } from 'react'; import FastImage from 'react-native-fast-image'; import { CommentIcon, FlashIcon, MoreIcon, ReTweetIcon, ShareIcon, SwatchIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import FeedStep from './feed-step'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -const LQDFeedCard = ({ feed, showInvest = true, showComment }: FeedCard) => { +const LQDFeedCard = ({ feed, onPressInvest, onPressComment, onPressShare, onPressLike, onNavigate }: FeedCard) => { const { router } = useSystemFunctions(); + const { steps, photo, username, address, date, percentage, estimate, title, description, commentCount, shareCount, likeCount } = feed; + const StrLength = 40; - const handlePress = () => { - router.push('/(create-strategy)/[strtegyId]/'); + const [isExpanded, setIsExpanded] = useState(false); + + const truncatedDescription = description.substring(0, StrLength); + + const handleToggle = () => { + setIsExpanded(!isExpanded); }; - const { steps, photo, username, address, date, percentage, estimate, title, description, commentCount, shareCount, flashCount } = feed; + const handlePressAction = (action?: () => void) => { + action?.(); + if (!action) { + onNavigate?.(); + } + }; return ( - + handlePressAction(onNavigate)}> { {estimate} {percentage}% - {description} - - See more... - + {isExpanded ? description : truncatedDescription} + + {description.length > StrLength && !isExpanded && ( + + See more... + + )} + {isExpanded && ( + + See less... + + )} - - {showInvest && ( - - Invest - - )} + + + {onPressInvest && ( + handlePressAction(onPressInvest)}> + Invest + + )} - - - {commentCount} - - - - {shareCount} - - - - {flashCount} + handlePressAction(onPressComment)} style={styles.actionFlex}> + + {commentCount} + + handlePressAction(onPressShare)} style={styles.actionFlex}> + + {shareCount} + + handlePressAction(onPressLike)} style={styles.actionFlex}> + + {likeCount} + + + + - diff --git a/components/feed-card/types.ts b/components/feed-card/types.ts index f25b34f..9ab171f 100644 --- a/components/feed-card/types.ts +++ b/components/feed-card/types.ts @@ -1,7 +1,10 @@ interface FeedCard { feed: any; - showInvest?: boolean; - showComment?: () => void; + onPressComment?: () => void; + onPressInvest?: () => void; + onPressShare?: () => void; + onPressLike?: () => void; + onNavigate?: () => void; } interface IFeedStep { diff --git a/screens/deposit/crypto/index.tsx b/screens/deposit/crypto/index.tsx index c5b6991..b87bcb1 100644 --- a/screens/deposit/crypto/index.tsx +++ b/screens/deposit/crypto/index.tsx @@ -9,6 +9,7 @@ import { CaretDownIcon, CoinsIcon, CopyIcon } from '@/assets/icons'; import PaymentMethodSelection from '../method-selection'; import sharedStyles from '../styles'; import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { LQDButton } from '@/components'; const CryptoDeposit = () => { const { smartAccountState } = useSystemFunctions(); @@ -22,6 +23,12 @@ const CryptoDeposit = () => { <> + setShowBottomSheet(true)}> + + Crypto + + + @@ -33,16 +40,13 @@ const CryptoDeposit = () => { {hasCopied ? 'Copied' : 'Copy'} - - setShowBottomSheet(true)}> - - Crypto - - - + Deposit from external wallet Send USDC, ETH or any ERC20 token on Base + + + @@ -103,13 +107,14 @@ const styles = StyleSheet.create({ }, infoContainer: { - flexDirection: 'row', - padding: 16, + paddingHorizontal: 20, + paddingVertical: 20, alignSelf: 'stretch', - gap: 16, - alignItems: 'center', - borderRadius: 20, - backgroundColor: '#EBF1FF', + gap: 12, + borderRadius: 12, + backgroundColor: '#F8FAFC', + borderWidth: 1, + borderColor: '#EAEEF4', }, infoImage: { @@ -117,12 +122,20 @@ const styles = StyleSheet.create({ height: 18, }, - text: { - flex: 1, + title: { color: '#162664', + fontSize: adjustFontSizeForIOS(16, 3), + fontWeight: '500', + fontFamily: 'AeonikMedium', + }, + text: { + color: '#475569', fontSize: adjustFontSizeForIOS(14, 2), lineHeight: 18.48, textAlign: 'left', fontFamily: 'AeonikRegular', }, + buttonWrapper: { + marginTop: 10, + }, }); diff --git a/screens/deposit/method-selection.tsx b/screens/deposit/method-selection.tsx index 2158517..ef94eca 100644 --- a/screens/deposit/method-selection.tsx +++ b/screens/deposit/method-selection.tsx @@ -66,6 +66,7 @@ const styles = StyleSheet.create({ container: { alignSelf: 'stretch', gap: 14, + paddingBottom: 50, }, selectorCard: { diff --git a/screens/discover/dummy.ts b/screens/discover/dummy.ts index f627d19..21f4e69 100644 --- a/screens/discover/dummy.ts +++ b/screens/discover/dummy.ts @@ -39,7 +39,7 @@ export const actionList: IActionsListItem[] = [ }, ]; -export const addMoney = [ +export const addMoney: AddMoneyActionItem[] = [ { id: '1', icon: 'debitCard', diff --git a/screens/discover/index.tsx b/screens/discover/index.tsx index 9684381..2629a79 100644 --- a/screens/discover/index.tsx +++ b/screens/discover/index.tsx @@ -131,6 +131,8 @@ const Discover = () => { )} {}} data={strategyies} showsVerticalScrollIndicator={false} renderItem={({ item }) => } diff --git a/screens/home/dummy.ts b/screens/home/dummy.ts index 78fb09f..7daca02 100644 --- a/screens/home/dummy.ts +++ b/screens/home/dummy.ts @@ -10,7 +10,7 @@ export const feeds: Array = [ title: 'Moonwell - USDC', commentCount: 26, shareCount: 26, - flashCount: 26, + likeCount: 26, description: 'This strategy starts as an ease in for first and second quaterss of 2025', steps: [ { @@ -55,7 +55,7 @@ export const feeds: Array = [ title: 'Moonwell - USDC', commentCount: 26, shareCount: 26, - flashCount: 26, + likeCount: 26, description: 'This strategy starts as an ease in for first and second quaterss of 2025', steps: [ { diff --git a/screens/home/index.tsx b/screens/home/index.tsx index 1a1508f..a94beaf 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -33,6 +33,10 @@ const Home = () => { getAllPools(); }); + const handleNavigate = () => { + router.push('/(create-strategy)/[strtegyId]/'); + }; + return ( <> router.navigate('/(create-strategy)/create-strategy')} style={styles.addIcon}> @@ -46,7 +50,7 @@ const Home = () => { refreshing={accountState.refreshing} data={feeds} showsVerticalScrollIndicator={false} - renderItem={({ item }) => } + renderItem={({ item }) => {}} feed={item} />} keyExtractor={(_, index) => index.toString()} showsHorizontalScrollIndicator={false} style={{ backgroundColor: '#fff' }} diff --git a/screens/portfolio/index.tsx b/screens/portfolio/index.tsx index 2e24509..b350b80 100644 --- a/screens/portfolio/index.tsx +++ b/screens/portfolio/index.tsx @@ -3,7 +3,6 @@ import React, { useState } from 'react'; import { LQDActionCard, LQDBottomSheet, LQDButton, LQDFlatlist, LQDScrollView, LQDSlider, LQDStrategyCard } from '@/components'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import { addMoney, strategyies } from '../discover/dummy'; -import { ActionIconVariant } from '@/components/action-card/types'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import AssetItem from './asset-item'; @@ -20,6 +19,25 @@ const Portfolio = () => { router.push('/withdraw'); }; + const handleSelectAction = () => { + openModal(); + + if (selectedAction === '1') { + setSelectedAction(''); + router.push('/deposit/debit'); + } + + if (selectedAction === '2') { + setSelectedAction(''); + router.push('/deposit/crypto'); + } + + if (selectedAction === '3') { + // handle coinbase + setSelectedAction(''); + } + }; + return ( <> @@ -88,24 +106,20 @@ const Portfolio = () => { - ( + + {addMoney.map((action, index) => ( setSelectedAction(item.id)} + key={index} + variant={action.icon} + selected={selectedAction === action.id} + actions={action} + onSelect={() => setSelectedAction(action.id)} /> - )} - keyExtractor={(_, index) => index.toString()} - showsHorizontalScrollIndicator={false} - contentContainerStyle={styles.modalContainerStyle} - /> + ))} + - + diff --git a/screens/portfolio/types.ts b/screens/portfolio/types.ts index 06ebdeb..f089c09 100644 --- a/screens/portfolio/types.ts +++ b/screens/portfolio/types.ts @@ -3,3 +3,9 @@ interface IAssetItem { subTitle: string; icon: string; } + +interface AddMoneyActionItem { + title: string; + id: string; + icon: 'debitCard' | 'crypto' | 'coinBase' | 'supply'; +} diff --git a/screens/profile/dummy.ts b/screens/profile/dummy.ts index fb22053..095442d 100644 --- a/screens/profile/dummy.ts +++ b/screens/profile/dummy.ts @@ -10,7 +10,7 @@ export const feeds: Array = [ title: 'Moonwell - USDC', commentCount: 26, shareCount: 26, - flashCount: 26, + likeCount: 26, description: 'This strategy starts as an ease in for first and second quaterss of 2025', steps: [ { @@ -55,7 +55,7 @@ export const feeds: Array = [ title: 'Moonwell - USDC', commentCount: 26, shareCount: 26, - flashCount: 26, + likeCount: 26, description: 'This strategy starts as an ease in for first and second quaterss of 2025', steps: [ { diff --git a/screens/profile/index.tsx b/screens/profile/index.tsx index 9bae8b0..79c59e4 100644 --- a/screens/profile/index.tsx +++ b/screens/profile/index.tsx @@ -13,6 +13,10 @@ const Profile = () => { const { router } = useSystemFunctions(); const [copyProfileLink, setCopyProfileLink] = useState(false); + const handleNavigate = () => { + router.push('/(create-strategy)/[strtegyId]/'); + }; + const handleCopyPL = () => { setCopyProfileLink((prev) => !prev); @@ -26,7 +30,7 @@ const Profile = () => { } + renderItem={({ item }) => {}} onNavigate={handleNavigate} />} keyExtractor={(_, index) => index.toString()} showsHorizontalScrollIndicator={false} style={{ backgroundColor: '#fff' }} @@ -40,7 +44,7 @@ const Profile = () => { } + renderItem={({ item }) => } keyExtractor={(_, index) => index.toString()} showsHorizontalScrollIndicator={false} style={{ backgroundColor: '#fff' }} @@ -54,7 +58,7 @@ const Profile = () => { } + renderItem={({ item }) => } keyExtractor={(_, index) => index.toString()} showsHorizontalScrollIndicator={false} style={{ backgroundColor: '#fff' }} diff --git a/screens/strategy-detail/index.tsx b/screens/strategy-detail/index.tsx index 2b2a952..7114f35 100644 --- a/screens/strategy-detail/index.tsx +++ b/screens/strategy-detail/index.tsx @@ -1,8 +1,8 @@ import { FlatList, StyleSheet, Text, TextInput, TouchableOpacity, View } from 'react-native'; import React, { useRef, useState } from 'react'; -import { LQDBottomSheet, LQDButton, LQDFeedCard, LQDFlatlist, LQDImage, LQDInput, LQDScrollView, LQShrimeLoader } from '@/components'; +import { LQDBottomSheet, LQDButton, LQDFeedCard, LQDFlatlist, LQDImage, LQDScrollView, LQShrimeLoader } from '@/components'; import { feeds, strategyInfo } from '../home/dummy'; -import { ArrowUpCircleIcon, DiscoverUSDIcon, FlashIcon, SmileEmojiIcon, CuratorIcon } from '@/assets/icons'; +import { ArrowUpCircleIcon, DiscoverUSDIcon, FlashIcon, SmileEmojiIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import StatsCard from './stats-card'; import CommentCard from './comment-card'; @@ -11,7 +11,8 @@ const StrategyDetail = ({ strategyId }: any) => { const flatListRef = useRef(null); const [comment, setComment] = useState(''); - const [showComment, setShowComment] = useState(false); + const [onPressComment, setonPressComment] = useState(false); + const [isInputFocused, setIsInputFocused] = useState(false); const [dynamicHeight, setDynamicHeight] = useState(0); const [comments, setComments] = useState([]); @@ -34,7 +35,7 @@ const StrategyDetail = ({ strategyId }: any) => { }; const openComment = () => { - setShowComment((prev) => !prev); + setonPressComment((prev) => !prev); }; const EmptyState = () => ( @@ -49,22 +50,23 @@ const StrategyDetail = ({ strategyId }: any) => { const bottomInput = () => ( - + setComment(val)} multiline={true} onContentSizeChange={(event) => setDynamicHeight(event.nativeEvent.contentSize.height)} - style={{ flex: 1 }} - autoFocus + style={styles.textInput} + onFocus={() => setIsInputFocused(true)} + onBlur={() => setIsInputFocused(false)} /> {comment.length > 0 ? ( - + ) : ( - + )} @@ -72,7 +74,7 @@ const StrategyDetail = ({ strategyId }: any) => { return ( {}} style={styles.container}> - + Strategy Info @@ -100,7 +102,7 @@ const StrategyDetail = ({ strategyId }: any) => { - + {!comments.length && } @@ -140,7 +142,7 @@ const styles = StyleSheet.create({ lineThree: { height: 8, borderRadius: 10, marginTop: 10, width: '40%' }, emptyStateWrapper: { alignItems: 'center', marginTop: 30 }, commentContainer: { - bottom: 30, + bottom: 10, left: 0, right: 0, flexDirection: 'row', @@ -163,10 +165,11 @@ const styles = StyleSheet.create({ height: 44, borderRadius: 16, alignItems: 'center', - paddingHorizontal: 10, + paddingLeft: 10, + paddingRight: 6, flex: 1, flexDirection: 'row', - gap: 5, + gap: 3, }, infoContainer: { paddingVertical: 10, @@ -251,5 +254,12 @@ const styles = StyleSheet.create({ buttonWrapper: { marginTop: 20, }, - flatlistWrapper: { flex: 1, height: 400, maxHeight: 450 }, + flatlistWrapper: { flex: 1, height: 320, maxHeight: 450 }, + textInput: { + flex: 1, + }, + focusedInput: { + borderColor: '#4691FE', + borderWidth: 1.2, + }, }); From 6acf83a5b7030a30bcb3e6e5cb3af27df7910e24 Mon Sep 17 00:00:00 2001 From: Justice Eziefule Date: Mon, 16 Dec 2024 11:00:04 +0100 Subject: [PATCH 86/95] Feature/integrate strategies (#105) * update feed integration * integrate strategies - integrate feeds - integrate user strategies - integrate user liked strategies - integrate user reposts - integrate strategy detail page * integrate comments * integrate discover * seperate axios instances --- app/(create-strategy)/[strtegyId]/index.tsx | 12 - app/(create-strategy)/strategy-detail.tsx | 5 - .../_layout.tsx | 2 +- .../create-strategy.tsx | 0 app/(strategy)/details/[id].tsx | 10 + .../details}/_layout.tsx | 0 .../new-action-strategy.tsx | 0 .../preview-strategy.tsx | 0 app/_layout.tsx | 2 +- assets/icons/aerodrome-icon.tsx | 6 +- assets/icons/flash-icon.tsx | 4 +- assets/icons/moonwell-icon.tsx | 6 +- assets/icons/morpho-icon.tsx | 6 +- assets/icons/types.ts | 1 + components/feed-card/feed-step.tsx | 43 +++- components/feed-card/index.tsx | 119 +++++---- components/feed-card/preview-feed-step.tsx | 122 +++++++++ components/feed-card/types.ts | 8 +- components/flatlist/footer-loader.tsx | 17 ++ components/flatlist/index.tsx | 10 +- components/flatlist/types.ts | 5 +- components/strategy-card/index.tsx | 66 +++-- constants/addresses.ts | 28 +++ init/axios.ts | 68 ++++- .../create-strategy/new-action-strategy.tsx | 3 +- screens/create-strategy/preview-strategy.tsx | 4 +- screens/discover/dummy.ts | 21 -- screens/discover/filters.tsx | 232 ++++++++++++++++++ screens/discover/index.tsx | 226 ++--------------- screens/home/dummy.ts | 31 --- screens/home/index.tsx | 74 +++--- screens/home/loader.tsx | 2 +- screens/profile/index.tsx | 62 +---- screens/profile/user-liked-strategies.tsx | 40 +++ screens/profile/user-repost-strategies.tsx | 39 +++ screens/profile/user-strategies.tsx | 40 +++ screens/strategy-detail/comment-card.tsx | 48 ++-- screens/strategy-detail/comment-input.tsx | 84 +++++++ screens/strategy-detail/comments.tsx | 128 ++++++++++ screens/strategy-detail/index.tsx | 182 +++++--------- screens/strategy-detail/types.ts | 12 - services/comments/apis.ts | 18 ++ services/comments/queries.ts | 14 ++ services/comments/types.ts | 26 ++ services/feeds/apis.ts | 19 +- services/feeds/types.ts | 76 ++---- services/user/apis.ts | 8 +- services/user/types.ts | 40 +-- utils/helpers.ts | 18 +- 49 files changed, 1251 insertions(+), 736 deletions(-) delete mode 100644 app/(create-strategy)/[strtegyId]/index.tsx delete mode 100644 app/(create-strategy)/strategy-detail.tsx rename app/{(create-strategy) => (strategy)}/_layout.tsx (97%) rename app/{(create-strategy) => (strategy)}/create-strategy.tsx (100%) create mode 100644 app/(strategy)/details/[id].tsx rename app/{(create-strategy)/[strtegyId] => (strategy)/details}/_layout.tsx (100%) rename app/{(create-strategy) => (strategy)}/new-action-strategy.tsx (100%) rename app/{(create-strategy) => (strategy)}/preview-strategy.tsx (100%) create mode 100644 components/feed-card/preview-feed-step.tsx create mode 100644 components/flatlist/footer-loader.tsx create mode 100644 screens/discover/filters.tsx create mode 100644 screens/profile/user-liked-strategies.tsx create mode 100644 screens/profile/user-repost-strategies.tsx create mode 100644 screens/profile/user-strategies.tsx create mode 100644 screens/strategy-detail/comment-input.tsx create mode 100644 screens/strategy-detail/comments.tsx create mode 100644 services/comments/apis.ts create mode 100644 services/comments/queries.ts create mode 100644 services/comments/types.ts diff --git a/app/(create-strategy)/[strtegyId]/index.tsx b/app/(create-strategy)/[strtegyId]/index.tsx deleted file mode 100644 index 3eb41cd..0000000 --- a/app/(create-strategy)/[strtegyId]/index.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { StrategyDetail } from '@/screens'; - -const PoolDetailScreen = () => { - const { params } = useSystemFunctions(); - - const { strategyId } = params; - - return ; -}; - -export default PoolDetailScreen; diff --git a/app/(create-strategy)/strategy-detail.tsx b/app/(create-strategy)/strategy-detail.tsx deleted file mode 100644 index d99b1f1..0000000 --- a/app/(create-strategy)/strategy-detail.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import { StrategyDetail } from '@/screens'; - -const StrategyDetailScreen = () => ; - -export default StrategyDetailScreen; diff --git a/app/(create-strategy)/_layout.tsx b/app/(strategy)/_layout.tsx similarity index 97% rename from app/(create-strategy)/_layout.tsx rename to app/(strategy)/_layout.tsx index 948694f..5be549d 100644 --- a/app/(create-strategy)/_layout.tsx +++ b/app/(strategy)/_layout.tsx @@ -29,7 +29,7 @@ const StrategyStack = () => { }} /> { + const { id } = useLocalSearchParams(); + + return ; +}; + +export default StrategyDetailScreen; diff --git a/app/(create-strategy)/[strtegyId]/_layout.tsx b/app/(strategy)/details/_layout.tsx similarity index 100% rename from app/(create-strategy)/[strtegyId]/_layout.tsx rename to app/(strategy)/details/_layout.tsx diff --git a/app/(create-strategy)/new-action-strategy.tsx b/app/(strategy)/new-action-strategy.tsx similarity index 100% rename from app/(create-strategy)/new-action-strategy.tsx rename to app/(strategy)/new-action-strategy.tsx diff --git a/app/(create-strategy)/preview-strategy.tsx b/app/(strategy)/preview-strategy.tsx similarity index 100% rename from app/(create-strategy)/preview-strategy.tsx rename to app/(strategy)/preview-strategy.tsx diff --git a/app/_layout.tsx b/app/_layout.tsx index 20641c0..f979201 100644 --- a/app/_layout.tsx +++ b/app/_layout.tsx @@ -83,7 +83,7 @@ function RootStack() { }} /> - + {/* Common routes */} diff --git a/assets/icons/aerodrome-icon.tsx b/assets/icons/aerodrome-icon.tsx index 60b6341..9cd4262 100644 --- a/assets/icons/aerodrome-icon.tsx +++ b/assets/icons/aerodrome-icon.tsx @@ -1,7 +1,7 @@ import Svg, { Path, Defs, Pattern, Use, Image } from 'react-native-svg'; const AerodromeIcon = ({ fill = '', height = 25, width = 25 }: IconProps) => ( - + @@ -10,8 +10,8 @@ const AerodromeIcon = ({ fill = '', height = 25, width = 25 }: IconProps) => ( diff --git a/assets/icons/flash-icon.tsx b/assets/icons/flash-icon.tsx index c5855de..d69c023 100644 --- a/assets/icons/flash-icon.tsx +++ b/assets/icons/flash-icon.tsx @@ -1,7 +1,7 @@ import Svg, { Path } from 'react-native-svg'; -const FlashIcon = ({ fill = '#0F172A', height = 20, width = 21 }: IconProps) => ( - +const FlashIcon = ({ fill = '#0F172A', height = 20, width = 21, bg = 'none' }: IconProps) => ( + ( - + @@ -10,8 +10,8 @@ const MoonWellIcon = ({ fill = '', height = 18, width = 24 }: IconProps) => ( diff --git a/assets/icons/morpho-icon.tsx b/assets/icons/morpho-icon.tsx index 363ba7e..40c54c1 100644 --- a/assets/icons/morpho-icon.tsx +++ b/assets/icons/morpho-icon.tsx @@ -1,7 +1,7 @@ import Svg, { Path, Defs, Pattern, Use, Image } from 'react-native-svg'; const MorphoIcon = ({ fill = '', height = 24, width = 24 }: IconProps) => ( - + @@ -10,8 +10,8 @@ const MorphoIcon = ({ fill = '', height = 24, width = 24 }: IconProps) => ( diff --git a/assets/icons/types.ts b/assets/icons/types.ts index c382f06..d80e19b 100644 --- a/assets/icons/types.ts +++ b/assets/icons/types.ts @@ -2,4 +2,5 @@ interface IconProps { width?: number; height?: number; fill?: string; + bg?: string; } diff --git a/components/feed-card/feed-step.tsx b/components/feed-card/feed-step.tsx index d423826..d9fd4bc 100644 --- a/components/feed-card/feed-step.tsx +++ b/components/feed-card/feed-step.tsx @@ -6,6 +6,7 @@ import { AerodromeIcon, BorrowIcon, DepositIcon, MoonWellIcon, MorphoIcon, Stake import { adjustFontSizeForIOS } from '@/utils/helpers'; import LQDPoolImages from '../pool-images'; import LQDTokenImage from '../pool-images/token-image'; +import { protocolList } from '@/constants/addresses'; const connector = require('../../assets/images/connector.png'); const icons = { @@ -18,39 +19,50 @@ const icons = { morpho: , }; -const FeedStep = ({ variant, tokenIconURL, token, isLast, title = '', protocolIcon, protocolTitle }: IFeedStep) => { - const deposite = variant === 'deposit'; +const FeedStep = ({ step, isLast }: { step: StrategyStep; isLast: boolean }) => { + const { actionType } = step; + + const deposite = actionType === 'deposit'; + + const protocol = protocolList.find((protocol) => protocol.address == step.protocolAddress); + const tokenIconUrl = 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png'; + const poolPair = 'DAI/USDC'; + const tokenName = 'cbBTC'; const depositVariant = () => ( - {variant} + {actionType} into - {token} + {poolPair} - + ); const otherVariant = () => ( - {variant} - - {token} + {actionType} - into + {tokenName} + + + + {actionType == 'borrow' || actionType == 'stake' ? 'on' : 'into'} - {icons[protocolIcon]} - {protocolTitle} + {protocol?.title} + + {icons[protocol?.icon!]} ); return ( - {icons[variant]} + {icons[actionType]} {!isLast && } + {deposite && depositVariant()} {!deposite && otherVariant()} @@ -66,9 +78,14 @@ const styles = StyleSheet.create({ gap: 2, }, + protocolIconWrapper: { + paddingTop: 9, + }, + connectorWrap: { alignItems: 'center', width: 32, + paddingTop: 6, }, iconContainer: { @@ -90,7 +107,7 @@ const styles = StyleSheet.create({ flexDirection: 'row', alignItems: 'center', flexWrap: 'wrap', - gap: 2, + gap: 4, }, variantText: { diff --git a/components/feed-card/index.tsx b/components/feed-card/index.tsx index 875d24f..d095022 100644 --- a/components/feed-card/index.tsx +++ b/components/feed-card/index.tsx @@ -1,33 +1,56 @@ -import { Pressable, StyleSheet, Text, View } from 'react-native'; +import { Pressable, StyleSheet, Text, TouchableOpacity, View } from 'react-native'; import React, { useState } from 'react'; import FastImage from 'react-native-fast-image'; -import { CommentIcon, FlashIcon, MoreIcon, ReTweetIcon, ShareIcon, SwatchIcon } from '@/assets/icons'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; + +import { CommentIcon, FlashIcon, MoreIcon, ReTweetIcon, ShareIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS, formatTimestamp, truncate } from '@/utils/helpers'; import FeedStep from './feed-step'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -const LQDFeedCard = ({ feed, onPressInvest, onPressComment, onPressShare, onPressLike, onNavigate }: FeedCard) => { - const { router } = useSystemFunctions(); - const { steps, photo, username, address, date, percentage, estimate, title, description, commentCount, shareCount, likeCount } = feed; - const StrLength = 40; +const photo = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; +const maxDescriptionLength = 40; +const LQDFeedCard = ({ feed, isDetailPage, handleCommentPress }: FeedCard) => { + const { router } = useSystemFunctions(); const [isExpanded, setIsExpanded] = useState(false); - const truncatedDescription = description.substring(0, StrLength); - const handleToggle = () => { setIsExpanded(!isExpanded); }; - const handlePressAction = (action?: () => void) => { - action?.(); - if (!action) { - onNavigate?.(); - } + const { steps, curatorAddress, createdAt, name, description, metrics, userInteraction, id } = feed; + const { commentCount, likeCount, repostCount, apy } = metrics; + + const truncatedDescription = description.substring(0, maxDescriptionLength); + + const handleInvestPress = () => { + console.log('Invest'); + }; + + const handleRepostPress = () => { + console.log('Repost'); + }; + + const handleLikePress = () => { + console.log('Like'); + }; + + const handleSharePress = () => { + console.log('Share'); + }; + + const handleMorePress = () => { + console.log('More'); + }; + + const handleNavigate = () => { + if (isDetailPage) return; + + router.push(`/details/${id}`); }; return ( - handlePressAction(onNavigate)}> + - {username} - {date} + Meister + {formatTimestamp(createdAt)} - {address} + {truncate(curatorAddress)} - + + + + - {steps.map((step: IFeedStep, index: number) => ( - + {steps.map((step, index: number) => ( + ))} - {title} + {name} - {estimate} - {percentage}% + Est. APY + {apy}% - {isExpanded ? description : truncatedDescription} + {isExpanded ? description : `${truncatedDescription}...`} - {description.length > StrLength && !isExpanded && ( - + {isDetailPage && description.length > maxDescriptionLength && !isExpanded && ( + See more... - + )} + {isExpanded && ( - + See less... - + )} - {onPressInvest && ( - handlePressAction(onPressInvest)}> - Invest - - )} + + Invest + - handlePressAction(onPressComment)} style={styles.actionFlex}> + {commentCount} - - handlePressAction(onPressShare)} style={styles.actionFlex}> + + + - {shareCount} - - handlePressAction(onPressLike)} style={styles.actionFlex}> - + {repostCount} + + + + {userInteraction?.hasLiked ? : } + {likeCount} - + - + + - + diff --git a/components/feed-card/preview-feed-step.tsx b/components/feed-card/preview-feed-step.tsx new file mode 100644 index 0000000..ac335cf --- /dev/null +++ b/components/feed-card/preview-feed-step.tsx @@ -0,0 +1,122 @@ +import React, { useState } from 'react'; +import { View, Text, StyleSheet } from 'react-native'; +import FastImage from 'react-native-fast-image'; +import Animated from 'react-native-reanimated'; +import { AerodromeIcon, BorrowIcon, DepositIcon, MoonWellIcon, MorphoIcon, StakeIcon, SupplyIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import LQDPoolImages from '../pool-images'; +import LQDTokenImage from '../pool-images/token-image'; + +const connector = require('../../assets/images/connector.png'); +const icons = { + stake: , + deposit: , + borrow: , + supply: , + aerodrome: , + moonwell: , + morpho: , +}; + +const PreviewFeedStep = ({ variant, tokenIconURL, token, isLast, title = '', protocolIcon, protocolTitle }: IFeedStep) => { + const deposite = variant === 'deposit'; + + const depositVariant = () => ( + + {variant} + into + + {token} + + + + ); + + const otherVariant = () => ( + + {variant} + + {token} + + into + + {icons[protocolIcon]} + {protocolTitle} + + ); + + return ( + + + {icons[variant]} + {!isLast && } + + {deposite && depositVariant()} + {!deposite && otherVariant()} + + ); +}; + +export default PreviewFeedStep; + +const styles = StyleSheet.create({ + container: { + flexDirection: 'row', + alignItems: 'flex-start', + gap: 2, + }, + + connectorWrap: { + alignItems: 'center', + width: 32, + }, + + iconContainer: { + width: 24, + height: 24, + justifyContent: 'center', + alignItems: 'center', + }, + + connector: { + width: 2, + height: 20, + flex: 1, + marginBottom: 5, + }, + + details: { + flex: 1, + flexDirection: 'row', + alignItems: 'center', + flexWrap: 'wrap', + gap: 2, + }, + + variantText: { + fontSize: adjustFontSizeForIOS(11, 3), + fontWeight: '400', + color: '#64748B', + fontFamily: 'AeonikRegular', + textTransform: 'capitalize', + }, + actionText: { + fontSize: adjustFontSizeForIOS(11, 2), + fontWeight: '600', + color: '#0F172A', + fontFamily: 'AeonikMedium', + }, + + tokenText: { + fontSize: adjustFontSizeForIOS(11, 2), + fontWeight: '400', + color: '#64748B', + fontFamily: 'AeonikBold', + }, + + tokenIcon: { + width: 16, + height: 16, + marginHorizontal: 4, + }, +}); diff --git a/components/feed-card/types.ts b/components/feed-card/types.ts index 9ab171f..f6f3cee 100644 --- a/components/feed-card/types.ts +++ b/components/feed-card/types.ts @@ -1,10 +1,8 @@ interface FeedCard { - feed: any; - onPressComment?: () => void; - onPressInvest?: () => void; - onPressShare?: () => void; - onPressLike?: () => void; + feed: Strategy; onNavigate?: () => void; + handleCommentPress?: () => void; + isDetailPage?: boolean; } interface IFeedStep { diff --git a/components/flatlist/footer-loader.tsx b/components/flatlist/footer-loader.tsx new file mode 100644 index 0000000..e934e90 --- /dev/null +++ b/components/flatlist/footer-loader.tsx @@ -0,0 +1,17 @@ +import { ActivityIndicator, StyleSheet, View } from 'react-native'; + +const DefaultFooterLoader = () => ( + + + +); + +export default DefaultFooterLoader; + +const styles = StyleSheet.create({ + loaderContainer: { + paddingVertical: 16, + justifyContent: 'center', + alignItems: 'center', + }, +}); diff --git a/components/flatlist/index.tsx b/components/flatlist/index.tsx index b649ce8..8e31d92 100644 --- a/components/flatlist/index.tsx +++ b/components/flatlist/index.tsx @@ -20,7 +20,7 @@ const LQDFlatlist = forwardRef( contentContainerStyle, horizontal = false, style, - loader = false, + isFetchingNextPage = false, }: LQDFlatlistProps, ref: React.Ref> ) => { @@ -30,11 +30,11 @@ const LQDFlatlist = forwardRef( ); - const IsRefresh = () => { + const Refresh = () => { if (onRefresh) { return ( } keyExtractor={keyExtractor} ListHeaderComponent={ListHeaderComponent} - ListFooterComponent={loader ? : ListFooterComponent} + ListFooterComponent={isFetchingNextPage ? : ListFooterComponent} ListEmptyComponent={ListEmptyComponent} refreshing={refreshing} - refreshControl={} + refreshControl={} onRefresh={onRefresh} onEndReached={onEndReached} onEndReachedThreshold={onEndReachedThreshold} diff --git a/components/flatlist/types.ts b/components/flatlist/types.ts index e0a9ed9..6f12594 100644 --- a/components/flatlist/types.ts +++ b/components/flatlist/types.ts @@ -1,10 +1,7 @@ import { FlatList, FlatListProps } from 'react-native'; export interface LQDFlatlistProps extends FlatListProps { - loader?: boolean; - horizontal?: boolean; + isFetchingNextPage?: boolean; ListEmptyComponent?: React.ComponentType | React.ReactElement | null; ListFooterComponent?: React.ComponentType | React.ReactElement | null; - refreshing?: boolean; - onRefresh?: () => void; } diff --git a/components/strategy-card/index.tsx b/components/strategy-card/index.tsx index 825e8f1..cc9bebd 100644 --- a/components/strategy-card/index.tsx +++ b/components/strategy-card/index.tsx @@ -1,46 +1,48 @@ -import { View, StyleSheet, Text, TouchableOpacity, Pressable } from 'react-native'; +import { View, StyleSheet, Text, TouchableOpacity } from 'react-native'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import useAppActions from '@/store/app/actions'; import LQDImage from '../image'; -import { IStrategyCard } from './types'; import { MoneysIcon } from '@/assets/icons'; -const LQDStrategyCard = ({ strategy, navigationVariant = 'primary' }: IStrategyCard) => { - const { router, pathname } = useSystemFunctions(); +const LQDStrategyCard = (strategy: Strategy) => { + const { router } = useSystemFunctions(); const { searchIsFocused } = useAppActions(); - const { id } = strategy; - const onPress = () => { + + const { id, metrics, steps } = strategy; + + const onPress = (strategyId: string) => { searchIsFocused(false); - router.push('/(create-strategy)/[strtegyId]/'); + router.push(`/details/${strategyId}`); }; - const avatar = strategy.image; - const username = strategy.username; - const tvl = strategy.tvl; - const estimate = strategy.estimate; - const steps = strategy.steps; + const username = 'Meister'; + const tvl = metrics.tvl; + const apy = metrics.apy; return ( - - - + onPress(strategy.id)} style={styles.container}> + + - {username} + @{username} - + + - {steps.length} actions... + {steps.length} action{steps.length > 1 ? 's' : ''}... - + + Est. APY - {estimate} + {apy}% - + + TVL {tvl} @@ -53,9 +55,9 @@ export default LQDStrategyCard; const styles = StyleSheet.create({ container: { flexDirection: 'row', + justifyContent: 'space-between', alignSelf: 'stretch', alignItems: 'center', - gap: 8 + 15, paddingHorizontal: 14, paddingVertical: 12, borderRadius: 10, @@ -68,6 +70,22 @@ const styles = StyleSheet.create({ gap: 5, }, + profileContainer: { + width: '25%', + }, + + actionsContainer: { + width: '30%', + }, + + apyContainer: { + width: '22%', + }, + + tvlContainer: { + width: '19%', + }, + icon: { width: 24, height: 24, @@ -94,7 +112,7 @@ const styles = StyleSheet.create({ }, value: { color: '#4691FE', - fontSize: adjustFontSizeForIOS(14, 2), + fontSize: adjustFontSizeForIOS(13, 2), fontWeight: '500', fontFamily: 'ClashDisplayMedium', lineHeight: 15.6, @@ -102,7 +120,7 @@ const styles = StyleSheet.create({ }, actions: { color: '#64748B', - fontSize: adjustFontSizeForIOS(14, 2), + fontSize: adjustFontSizeForIOS(13, 2), fontWeight: '500', lineHeight: 16.12, fontFamily: 'ClashDisplayMedium', diff --git a/constants/addresses.ts b/constants/addresses.ts index 5159227..abb1e2a 100644 --- a/constants/addresses.ts +++ b/constants/addresses.ts @@ -32,4 +32,32 @@ export const CONNECTORS_BASE: Address[] = [ '0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA', // USDbC ]; +export const protocolList: ProtocolItem[] = [ + { + id: '1', + icon: 'moonwell', + title: 'Moonwell', + address: '0x123456789abcdef123456789abcdef1234567890', + }, + { + id: '2', + icon: 'aerodrome', + title: 'Aerodrome', + address: '0xabcdefabcdefabcdefabcdefabcdefabcdefabcd', + }, + { + id: '3', + icon: 'morpho', + title: 'Morpho', + address: '0x789abcdef123456789abcdef123456789abcdef12', + }, + // this is dummy + { + id: '4', + icon: 'moonwell', + title: 'Moonwell', + address: '0x3234567890123456789012345678901234567890', + }, +]; + export const OFFCHAIN_ORACLE_ADDRESS: Address = '0xf224a25453D76A41c4427DD1C05369BC9f498444' as Address; diff --git a/init/axios.ts b/init/axios.ts index 64a4da4..027da44 100644 --- a/init/axios.ts +++ b/init/axios.ts @@ -25,4 +25,70 @@ const removeTokenHeader = () => { delete axiosInstance.defaults.headers.common.Authorization; }; -export { axiosInstance, setTokenHeader, removeTokenHeader }; +// ====================== +// STRATEGY API INSTANCE +// ====================== + +const strategyAxiosInstance = axios.create({ + baseURL: `${apiUrl}/strategy/strategies/`, +}); + +strategyAxiosInstance.interceptors.response.use( + (response) => { + return response; + }, + (error) => { + if (error?.response?.status === 401 || error?.response?.status === 403) { + // user not authenticated + } + return Promise.reject(error); + } +); + +const setStrategyTokenHeader = async (token: string) => { + strategyAxiosInstance.defaults.headers.common.Authorization = `Bearer ${token}`; +}; + +const removeStrategyTokenHeader = () => { + delete strategyAxiosInstance.defaults.headers.common.Authorization; +}; + +// ====================== +// AUTH API INSTANCE +// ====================== + +const authAxiosInstance = axios.create({ + baseURL: `${apiUrl}/auth/auth/`, +}); + +authAxiosInstance.interceptors.response.use( + (response) => { + return response; + }, + (error) => { + if (error?.response?.status === 401 || error?.response?.status === 403) { + // user not authenticated + } + return Promise.reject(error); + } +); + +const setAuthTokenHeader = async (token: string) => { + authAxiosInstance.defaults.headers.common.Authorization = `Bearer ${token}`; +}; + +const removeAuthTokenHeader = () => { + delete authAxiosInstance.defaults.headers.common.Authorization; +}; + +export { + axiosInstance, + setTokenHeader, + removeTokenHeader, + strategyAxiosInstance, + setStrategyTokenHeader, + removeStrategyTokenHeader, + authAxiosInstance, + setAuthTokenHeader, + removeAuthTokenHeader, +}; diff --git a/screens/create-strategy/new-action-strategy.tsx b/screens/create-strategy/new-action-strategy.tsx index 374a87d..83cb3f2 100644 --- a/screens/create-strategy/new-action-strategy.tsx +++ b/screens/create-strategy/new-action-strategy.tsx @@ -6,8 +6,9 @@ import { LQDActionCard, LQDAssetSelection, LQDBottomSheet, LQDButton, LQDProtoco import useSystemFunctions from '@/hooks/useSystemFunctions'; import useAppActions from '@/store/app/actions'; import { TokenItem } from '@/store/account/types'; +import { protocolList } from '@/constants/addresses'; import ICONS from '@/constants/icons'; -import { actionList, protocolList } from '../discover/dummy'; +import { actionList } from '../discover/dummy'; const ActionItem = ({ title, label, icon, action }: IActionItem) => { return ( diff --git a/screens/create-strategy/preview-strategy.tsx b/screens/create-strategy/preview-strategy.tsx index 779e8df..3a2b3db 100644 --- a/screens/create-strategy/preview-strategy.tsx +++ b/screens/create-strategy/preview-strategy.tsx @@ -3,11 +3,11 @@ import { StyleSheet, Text, View } from 'react-native'; import { useLocalSearchParams } from 'expo-router'; import { LQDButton } from '@/components'; -import FeedStep from '@/components/feed-card/feed-step'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import Loader from './loader'; import { useWriteFeed } from '@/services/feeds/queries'; +import PreviewFeedStep from '@/components/feed-card/preview-feed-step'; const SUPPLY = 0; // Supply assets const WITHDRAW = 1; // Withdraw assets @@ -91,7 +91,7 @@ const RreviewStrategy = () => { {strategySteps().map((step, index: number) => ( - + ))} diff --git a/screens/discover/dummy.ts b/screens/discover/dummy.ts index 21f4e69..48a2e1d 100644 --- a/screens/discover/dummy.ts +++ b/screens/discover/dummy.ts @@ -1,26 +1,5 @@ const image = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; -export const protocolList: ProtocolItem[] = [ - { - id: '1', - icon: 'moonwell', - title: 'Moonwell', - address: '0x', - }, - { - id: '2', - icon: 'aerodrome', - title: 'Aerodrome', - address: '0x', - }, - { - id: '3', - icon: 'morpho', - title: 'Morpho', - address: '0x', - }, -]; - export const actionList: IActionsListItem[] = [ { id: '1', diff --git a/screens/discover/filters.tsx b/screens/discover/filters.tsx new file mode 100644 index 0000000..04bdfae --- /dev/null +++ b/screens/discover/filters.tsx @@ -0,0 +1,232 @@ +import { useCallback, useEffect, useRef, useState } from 'react'; +import { StyleSheet, View, Text, StatusBar as RNStatusBar, Pressable, Platform, Animated } from 'react-native'; +import { useForm } from 'react-hook-form'; +import { LQDAssetSelection, LQDBottomSheet, LQDButton, LQDFlatlist, LQDInput, LQDProtocolCard } from '@/components'; +import { ArrowCircleDownIcon, DiscoverTVLIcon, SearchIcon, DiscoverUSDIcon, AerodromeIcon } from '@/assets/icons'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { protocolList } from '@/constants/addresses'; +import PercentageSetter from '../liquidity-actions/remove/percentage-setter'; + +const DiscoverFilters = () => { + const [search, setSearch] = useState(false); + const [showTvl, setShowTvl] = useState(false); + const [protocal, setProtocal] = useState(false); + const [_, setPercentage] = useState(25); + const [selectedToken, setSelecteToken] = useState(''); + const [selectedAssets, setSelectedAssets] = useState([]); + + const stableSetPercentage = useCallback((value: number) => setPercentage(value), []); + const { control, watch } = useForm(); + const [showAssets, setShowAssets] = useState(false); + + const animationValue = useRef(new Animated.Value(0)).current; + + const discoverStyle = { + opacity: animationValue.interpolate({ + inputRange: [0, 1], + outputRange: [1, 0], + }), + transform: [ + { + translateY: animationValue.interpolate({ + inputRange: [0, 1], + outputRange: [0, -20], + }), + }, + ], + }; + + const searchStyle = { + opacity: animationValue.interpolate({ + inputRange: [0, 1], + outputRange: [0, 1], + }), + transform: [ + { + translateY: animationValue.interpolate({ + inputRange: [0, 1], + outputRange: [20, 0], + }), + }, + ], + }; + + const closeInput = () => { + setSearch((prev) => !prev); + }; + + const openTvl = () => { + setShowTvl((prev) => !prev); + }; + + const openProtocal = () => { + setProtocal((prev) => !prev); + }; + + const handleShowAsset = () => { + setShowAssets((prev) => !prev); + }; + + const handleAsset = (data: TokenItem) => { + const newAssets = [...selectedAssets]; + newAssets[0] = data; + setSelectedAssets(newAssets); + }; + + useEffect(() => { + Animated.timing(animationValue, { + toValue: search ? 1 : 0, + duration: 300, + useNativeDriver: true, + }).start(); + }, [search]); + + return ( + <> + {!search && ( + + Discover + + + + + + + + + + + + + + + + + + + + + + + + + )} + + {search && ( + + setSearch(false)} + /> + + )} + + + + + + + + + + + + ( + setSelecteToken(item.id)} + /> + )} + keyExtractor={(_, index) => index.toString()} + showsHorizontalScrollIndicator={false} + contentContainerStyle={styles.protocalContainerStyle} + /> + + + + ); +}; + +export default DiscoverFilters; + +const styles = StyleSheet.create({ + topText: { + flex: 1, + fontSize: adjustFontSizeForIOS(20, 3), + fontFamily: 'AeonikMedium', + fontWeight: '500', + }, + topIconWrapper: { + flex: 1, + flexDirection: 'row', + alignItems: 'center', + justifyContent: 'space-between', + }, + dropIcon: { + position: 'absolute', + bottom: 0, + right: 0, + }, + relativeWrapper: { + position: 'relative', + }, + + percentageSetterContainer: { + alignSelf: 'stretch', + padding: 11, + justifyContent: 'center', + alignItems: 'center', + gap: 20, + borderRadius: 12, + borderWidth: 1, + borderColor: '#EAEEF4', + marginBottom: 40, + }, + searchWrapper: { + flex: 1, + paddingHorizontal: 16, + backgroundColor: '#fff', + paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, + paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, + }, + + protocalContainerStyle: { + gap: 20, + paddingBottom: 50, + }, + recentContainerStyle: { + gap: 10, + paddingBottom: 0, + paddingHorizontal: 12, + }, + searchModalWrapper: { + paddingHorizontal: 12, + paddingBottom: 10, + }, + discoverTopWrapper: { + flexDirection: 'row', + alignItems: 'center', + marginHorizontal: 16, + paddingVertical: 10, + }, +}); diff --git a/screens/discover/index.tsx b/screens/discover/index.tsx index 2629a79..cc46d0e 100644 --- a/screens/discover/index.tsx +++ b/screens/discover/index.tsx @@ -1,180 +1,39 @@ -import { StyleSheet, View, Text, StatusBar as RNStatusBar, Pressable, Platform, Animated } from 'react-native'; -import React, { useCallback, useEffect, useRef, useState } from 'react'; -import { LQDAssetSelection, LQDBottomSheet, LQDButton, LQDFlatlist, LQDInput, LQDProtocolCard, LQDStrategyCard } from '@/components'; -import { ArrowCircleDownIcon, DiscoverTVLIcon, SearchIcon, DiscoverUSDIcon, AerodromeIcon } from '@/assets/icons'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; -import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { protocolList, strategyies } from './dummy'; -import { useForm } from 'react-hook-form'; -import PercentageSetter from '../liquidity-actions/remove/percentage-setter'; +import { StyleSheet, View, FlatList } from 'react-native'; +import { LQDStrategyCard } from '@/components'; +import { useFeeds } from '@/services/feeds/queries'; +import DefaultFooterLoader from '@/components/flatlist/footer-loader'; +import DiscoverFilters from './filters'; +import Loader from '../home/loader'; const Discover = () => { - const { router, dispatch } = useSystemFunctions(); - const [search, setSearch] = useState(false); - const [showTvl, setShowTvl] = useState(false); - const [protocal, setProtocal] = useState(false); - const [_, setPercentage] = useState(25); - const [selectedToken, setSelecteToken] = useState(''); - const [selectedAssets, setSelectedAssets] = useState([]); + const { data, fetchNextPage, hasNextPage, isFetchingNextPage, isLoading, isFetching, isError, error, refetch } = useFeeds(); - const stableSetPercentage = useCallback((value: number) => setPercentage(value), []); - const { control, watch } = useForm(); - const [showAssets, setShowAssets] = useState(false); + const strategies = data?.pages.flatMap((page) => page.strategies) || []; - const animationValue = useRef(new Animated.Value(0)).current; - - useEffect(() => { - Animated.timing(animationValue, { - toValue: search ? 1 : 0, - duration: 300, - useNativeDriver: true, - }).start(); - }, [search]); - - const discoverStyle = { - opacity: animationValue.interpolate({ - inputRange: [0, 1], - outputRange: [1, 0], - }), - transform: [ - { - translateY: animationValue.interpolate({ - inputRange: [0, 1], - outputRange: [0, -20], - }), - }, - ], - }; - - const searchStyle = { - opacity: animationValue.interpolate({ - inputRange: [0, 1], - outputRange: [0, 1], - }), - transform: [ - { - translateY: animationValue.interpolate({ - inputRange: [0, 1], - outputRange: [20, 0], - }), - }, - ], - }; - - const closeInput = () => { - setSearch((prev) => !prev); - }; - - const openTvl = () => { - setShowTvl((prev) => !prev); - }; - - const openProtocal = () => { - setProtocal((prev) => !prev); - }; - - const handleShowAsset = () => { - setShowAssets((prev) => !prev); + const loadMoreStrategies = () => { + if (hasNextPage && !isFetchingNextPage) { + fetchNextPage(); + } }; - const handleAsset = (data: TokenItem) => { - const newAssets = [...selectedAssets]; - newAssets[0] = data; - setSelectedAssets(newAssets); - }; + if (isLoading) { + return ; + } return ( - {!search && ( - - Discover - - - - - - - - - - - - - - - - - - - - - - - - - )} + - {search && ( - - setSearch(false)} - /> - - )} - {}} - data={strategyies} + } + renderItem={({ item }) => } keyExtractor={(_, index) => index.toString()} - showsHorizontalScrollIndicator={false} - style={{ paddingTop: 15 }} contentContainerStyle={styles.strategyContainerStyle} - /> - - - - - - - - - - - - ( - setSelecteToken(item.id)} - /> - )} - keyExtractor={(_, index) => index.toString()} - showsHorizontalScrollIndicator={false} - contentContainerStyle={styles.protocalContainerStyle} - /> - - : null} /> ); @@ -188,41 +47,10 @@ const styles = StyleSheet.create({ backgroundColor: '#FFF', paddingTop: 20, }, - topText: { - flex: 1, - fontSize: adjustFontSizeForIOS(20, 3), - fontFamily: 'AeonikMedium', - fontWeight: '500', - }, - topIconWrapper: { - flex: 1, - flexDirection: 'row', - alignItems: 'center', - justifyContent: 'space-between', - }, - dropIcon: { position: 'absolute', bottom: 0, right: 0 }, - relativeWrapper: { position: 'relative' }, - percentageSetterContainer: { - alignSelf: 'stretch', - padding: 11, - justifyContent: 'center', - alignItems: 'center', + strategyContainerStyle: { gap: 20, - borderRadius: 12, - borderWidth: 1, - borderColor: '#EAEEF4', - marginBottom: 40, - }, - searchWrapper: { - flex: 1, - paddingHorizontal: 16, - backgroundColor: '#fff', - paddingTop: Platform.OS === 'android' ? RNStatusBar.currentHeight : 20, - paddingBottom: Platform.OS === 'android' ? -(RNStatusBar.currentHeight || 0) : -48, + paddingBottom: 120, + paddingHorizontal: 12, + paddingTop: 15, }, - strategyContainerStyle: { gap: 20, paddingBottom: 120, paddingHorizontal: 12 }, - protocalContainerStyle: { gap: 20, paddingBottom: 50 }, - recentContainerStyle: { gap: 10, paddingBottom: 0, paddingHorizontal: 12 }, - searchModalWrapper: { paddingHorizontal: 12, paddingBottom: 10 }, - discoverTopWrapper: { flexDirection: 'row', alignItems: 'center', marginHorizontal: 16, paddingVertical: 10 }, }); diff --git a/screens/home/dummy.ts b/screens/home/dummy.ts index 7daca02..fa24751 100644 --- a/screens/home/dummy.ts +++ b/screens/home/dummy.ts @@ -91,34 +91,3 @@ export const feeds: Array = [ ], }, ]; - -export const strategyInfo = [ - { - id: '1', - variant: 'locked', - title: 'Total value locked', - value: '$1.3M', - active: false, - }, - { - id: '2', - variant: 'risk', - title: 'Risk profile', - value: 'Stable', - active: true, - }, - { - id: '3', - variant: 'deposit', - title: 'No. of deposits', - value: '1,947', - active: false, - }, - { - id: '4', - variant: 'curator', - title: 'Curator fee', - value: '0.5%', - active: false, - }, -]; diff --git a/screens/home/index.tsx b/screens/home/index.tsx index a94beaf..1a5cfbc 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -1,62 +1,47 @@ -import { useEffect } from 'react'; -import { StyleSheet, Platform, StatusBar as RNStatusBar, Pressable } from 'react-native'; +import { StyleSheet, Platform, StatusBar as RNStatusBar, Pressable, FlatList } from 'react-native'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { adjustFontSizeForIOS } from '@/utils/helpers'; -import { LQDFeedCard, LQDFlatlist } from '@/components'; +import { LQDFeedCard } from '@/components'; import { PlusIcon } from '@/assets/icons'; -import { useAccountActions } from '@/store/account/actions'; -import { usePoolActions } from '@/store/pools/actions'; -import { useOnMount } from '@/hooks/useOnMount'; import Loader from './loader'; -import { feeds } from './dummy'; import { useFeeds } from '@/services/feeds/queries'; +import DefaultFooterLoader from '@/components/flatlist/footer-loader'; const Home = () => { - const { router, poolsState, smartAccountState, accountState } = useSystemFunctions(); - const { getTokens } = useAccountActions(); - const { getAllPools } = usePoolActions(); - const { status, data, error, isFetching } = useFeeds(); - - const { loadingPools } = poolsState; - const { loading: loadingAccounts } = accountState; - const globalLoading = loadingPools || loadingAccounts; - - useEffect( - function fetchBalances() { - getTokens(); - }, - [smartAccountState.address] - ); + const { router } = useSystemFunctions(); + const { data, fetchNextPage, hasNextPage, isFetchingNextPage, isLoading, isFetching, isError, error, refetch } = useFeeds(); - useOnMount(function loadData() { - getAllPools(); - }); + const feeds = data?.pages.flatMap((page) => page.strategies) || []; - const handleNavigate = () => { - router.push('/(create-strategy)/[strtegyId]/'); + const loadMoreFeeds = () => { + if (hasNextPage && !isFetchingNextPage) { + fetchNextPage(); + } }; + if (isLoading) { + return ; + } + return ( <> - router.navigate('/(create-strategy)/create-strategy')} style={styles.addIcon}> + router.navigate('/(strategy)/create-strategy')} style={styles.addIcon}> - {globalLoading && } - - {!globalLoading && ( - {}} feed={item} />} - keyExtractor={(_, index) => index.toString()} - showsHorizontalScrollIndicator={false} - style={{ backgroundColor: '#fff' }} - onRefresh={() => {}} - /> - )} + } + keyExtractor={(_, index) => index.toString()} + showsHorizontalScrollIndicator={false} + contentContainerStyle={styles.listContainer} + onRefresh={refetch} + onEndReached={loadMoreFeeds} + ListFooterComponent={isFetchingNextPage ? : null} + /> ); }; @@ -76,6 +61,11 @@ const styles = StyleSheet.create({ paddingBottom: 150, }, + listContainer: { + backgroundColor: '#fff', + paddingBottom: 100, + }, + balanceAndActionContainer: { alignSelf: 'stretch', gap: 24, diff --git a/screens/home/loader.tsx b/screens/home/loader.tsx index c9f5061..907c106 100644 --- a/screens/home/loader.tsx +++ b/screens/home/loader.tsx @@ -1,4 +1,4 @@ -import { View, Text, StyleSheet, Platform, StatusBar as RNStatusBar } from 'react-native'; +import { View, StyleSheet, Platform, StatusBar as RNStatusBar } from 'react-native'; import React from 'react'; import { LQShrimeLoader } from '@/components'; import { createArrayWithIndexes } from '@/utils/helpers'; diff --git a/screens/profile/index.tsx b/screens/profile/index.tsx index 79c59e4..aaaeb22 100644 --- a/screens/profile/index.tsx +++ b/screens/profile/index.tsx @@ -1,22 +1,20 @@ -import { Pressable, StyleSheet, Text, View } from 'react-native'; import React, { useState } from 'react'; -import { LQDFeedCard, LQDFlatlist, LQDImage } from '@/components'; +import { Pressable, StyleSheet, Text, View } from 'react-native'; +import { SceneMap } from 'react-native-tab-view'; +import { LQDImage } from '@/components'; import { CopyIcon, FamcasterIcon, FillCheckIcon, LinkIcon, UserOctagonIcon, XIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; -import { SceneMap } from 'react-native-tab-view'; import useCustomTabView from '@/hooks/useCustomTabview'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { feeds } from './dummy'; +import UserStrategies from './user-strategies'; +import UserLikedStrategies from './user-liked-strategies'; +import UserRepostStrategies from './user-repost-strategies'; const Profile = () => { const { CustomTabView } = useCustomTabView(); const { router } = useSystemFunctions(); const [copyProfileLink, setCopyProfileLink] = useState(false); - const handleNavigate = () => { - router.push('/(create-strategy)/[strtegyId]/'); - }; - const handleCopyPL = () => { setCopyProfileLink((prev) => !prev); @@ -25,52 +23,10 @@ const Profile = () => { }, 3000); }; - const StrategyRoute = () => { - return ( - {}} onNavigate={handleNavigate} />} - keyExtractor={(_, index) => index.toString()} - showsHorizontalScrollIndicator={false} - style={{ backgroundColor: '#fff' }} - onRefresh={() => {}} - /> - ); - }; - - const DepositRoute = () => { - return ( - } - keyExtractor={(_, index) => index.toString()} - showsHorizontalScrollIndicator={false} - style={{ backgroundColor: '#fff' }} - onRefresh={() => {}} - /> - ); - }; - - const LikesRoute = () => { - return ( - } - keyExtractor={(_, index) => index.toString()} - showsHorizontalScrollIndicator={false} - style={{ backgroundColor: '#fff' }} - onRefresh={() => {}} - /> - ); - }; - const renderScene = SceneMap({ - strategy: StrategyRoute, - deposit: DepositRoute, - like: LikesRoute, + strategy: UserStrategies, + deposit: UserRepostStrategies, + like: UserLikedStrategies, }); const [routes] = React.useState([ diff --git a/screens/profile/user-liked-strategies.tsx b/screens/profile/user-liked-strategies.tsx new file mode 100644 index 0000000..56ccb19 --- /dev/null +++ b/screens/profile/user-liked-strategies.tsx @@ -0,0 +1,40 @@ +import { FlatList } from 'react-native'; +import { useUserLikes } from '@/services/user/queries'; +import { LQDFeedCard } from '@/components'; +import DefaultFooterLoader from '@/components/flatlist/footer-loader'; +import Loader from '../home/loader'; + +const UserLikedStrategies = () => { + const { data, fetchNextPage, hasNextPage, isFetchingNextPage, isLoading, isFetching, isError, error, refetch } = useUserLikes( + '0x1234567890123456789012345678901234567890' + ); + + const feeds = data?.pages.flatMap((page) => page.data) || []; + + const loadMoreStrategies = () => { + if (hasNextPage && !isFetchingNextPage) { + fetchNextPage(); + } + }; + + if (isLoading) { + return ; + } + + return ( + } + keyExtractor={(_, index) => index.toString()} + showsHorizontalScrollIndicator={false} + style={{ backgroundColor: '#fff' }} + onRefresh={refetch} + onEndReached={loadMoreStrategies} + ListFooterComponent={isFetchingNextPage ? : null} + /> + ); +}; + +export default UserLikedStrategies; diff --git a/screens/profile/user-repost-strategies.tsx b/screens/profile/user-repost-strategies.tsx new file mode 100644 index 0000000..59fc545 --- /dev/null +++ b/screens/profile/user-repost-strategies.tsx @@ -0,0 +1,39 @@ +import { FlatList } from 'react-native'; +import { useUserLikes } from '@/services/user/queries'; +import { LQDFeedCard } from '@/components'; +import DefaultFooterLoader from '@/components/flatlist/footer-loader'; +import Loader from '../home/loader'; + +const UserRepostStrategies = () => { + const { data, fetchNextPage, hasNextPage, isFetchingNextPage, isLoading, isFetching, isError, error, refetch } = useUserLikes( + '0x1234567890123456789012345678901234567890' + ); + + const feeds = data?.pages.flatMap((page) => page.data) || []; + + const loadMoreStrategies = () => { + if (hasNextPage && !isFetchingNextPage) { + fetchNextPage(); + } + }; + + if (isLoading) { + return ; + } + + return ( + } + keyExtractor={(_, index) => index.toString()} + style={{ backgroundColor: '#fff' }} + onRefresh={refetch} + onEndReached={loadMoreStrategies} + ListFooterComponent={isFetchingNextPage ? : null} + /> + ); +}; + +export default UserRepostStrategies; diff --git a/screens/profile/user-strategies.tsx b/screens/profile/user-strategies.tsx new file mode 100644 index 0000000..c9062e7 --- /dev/null +++ b/screens/profile/user-strategies.tsx @@ -0,0 +1,40 @@ +import { FlatList } from 'react-native'; +import { useUserStrategies } from '@/services/user/queries'; +import { LQDFeedCard } from '@/components'; +import DefaultFooterLoader from '@/components/flatlist/footer-loader'; +import Loader from '../home/loader'; + +const UserStrategies = () => { + const { data, fetchNextPage, hasNextPage, isFetchingNextPage, isLoading, isFetching, isError, error, refetch } = useUserStrategies( + '0x1234567890123456789012345678901234567890' + ); + + const feeds = data?.pages.flatMap((page) => page.data) || []; + + const loadMoreStrategies = () => { + if (hasNextPage && !isFetchingNextPage) { + fetchNextPage(); + } + }; + + if (isLoading) { + return ; + } + + return ( + } + keyExtractor={(_, index) => index.toString()} + showsHorizontalScrollIndicator={false} + style={{ backgroundColor: '#fff' }} + onRefresh={refetch} + onEndReached={loadMoreStrategies} + ListFooterComponent={isFetchingNextPage ? : null} + /> + ); +}; + +export default UserStrategies; diff --git a/screens/strategy-detail/comment-card.tsx b/screens/strategy-detail/comment-card.tsx index 743a3d8..791d3b2 100644 --- a/screens/strategy-detail/comment-card.tsx +++ b/screens/strategy-detail/comment-card.tsx @@ -1,26 +1,27 @@ -import { StyleSheet, Text, View } from 'react-native'; +import { StyleSheet, Text, TouchableOpacity, View } from 'react-native'; import React from 'react'; import { FlashIcon } from '@/assets/icons'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { adjustFontSizeForIOS, formatTimestamp } from '@/utils/helpers'; import { LQDImage } from '@/components'; -const CommentCard = ({ comment }: ICommentCard) => { - const { content, likes, date, username, image } = comment; +const CommentCard = ({ author, content, createdAt, isLiked, likeCount, id }: CommentItem) => { return ( + - {username} - {date} + Meister + {formatTimestamp(createdAt)} {content} - - - {likes || 0} - + + {isLiked ? : } + + {likeCount} + ); }; @@ -28,11 +29,27 @@ const CommentCard = ({ comment }: ICommentCard) => { export default CommentCard; const styles = StyleSheet.create({ - container: { flexDirection: 'row', gap: 8 }, - commentRightWrapper: { alignItems: 'center', gap: 6 }, - commentLeftWrapper: { flex: 1, marginRight: 10, gap: 5 }, - commentCardContainer: { flexDirection: 'row', gap: 8 }, - usernameFlex: { flexDirection: 'row', gap: 7 }, + container: { + flexDirection: 'row', + gap: 8, + }, + commentRightWrapper: { + alignItems: 'center', + gap: 6, + }, + commentLeftWrapper: { + flex: 1, + marginRight: 10, + gap: 5, + }, + commentCardContainer: { + flexDirection: 'row', + gap: 8, + }, + usernameFlex: { + flexDirection: 'row', + gap: 7, + }, username: { fontSize: adjustFontSizeForIOS(13, 3), fontFamily: 'ClashDisplayBold', @@ -43,7 +60,6 @@ const styles = StyleSheet.create({ fontSize: adjustFontSizeForIOS(11, 3), fontFamily: 'AeonikRegular', fontWeight: '400', - color: '#1E293B', }, title: { fontSize: adjustFontSizeForIOS(15, 3), diff --git a/screens/strategy-detail/comment-input.tsx b/screens/strategy-detail/comment-input.tsx new file mode 100644 index 0000000..f49b3cd --- /dev/null +++ b/screens/strategy-detail/comment-input.tsx @@ -0,0 +1,84 @@ +import { useRef, useState } from 'react'; +import { FlatList, StyleSheet, TextInput, TouchableOpacity, View } from 'react-native'; +import { LQDImage } from '@/components'; +import { ArrowUpCircleIcon, SmileEmojiIcon } from '@/assets/icons'; + +const CommentInput = () => { + const flatListRef = useRef(null); + const [comment, setComment] = useState(''); + const [isInputFocused, setIsInputFocused] = useState(false); + const [dynamicHeight, setDynamicHeight] = useState(0); + + const inputheight = Math.min(Math.max(44, dynamicHeight), 80); + + const handleComment = () => { + setComment(''); + + flatListRef.current?.scrollToEnd({ animated: true }); + }; + + return ( + + + + setComment(val)} + multiline={true} + onContentSizeChange={(event) => setDynamicHeight(event.nativeEvent.contentSize.height)} + style={styles.textInput} + onFocus={() => setIsInputFocused(true)} + onBlur={() => setIsInputFocused(false)} + /> + {comment.length > 0 ? ( + + + + ) : ( + + )} + + + ); +}; + +export default CommentInput; + +const styles = StyleSheet.create({ + commentContainer: { + bottom: 10, + left: 0, + right: 0, + flexDirection: 'row', + gap: 10, + alignItems: 'center', + backgroundColor: '#FFFFFF', + paddingVertical: 8, + + borderTopColor: '#EAEEF4', + zIndex: 10, + }, + + commentInput: { + borderWidth: 1, + borderColor: '#EAEEF4', + height: 44, + borderRadius: 16, + alignItems: 'center', + paddingLeft: 10, + paddingRight: 6, + flex: 1, + flexDirection: 'row', + gap: 3, + }, + + textInput: { + flex: 1, + }, + + focusedInput: { + borderColor: '#4691FE', + borderWidth: 1.2, + }, +}); diff --git a/screens/strategy-detail/comments.tsx b/screens/strategy-detail/comments.tsx new file mode 100644 index 0000000..3104076 --- /dev/null +++ b/screens/strategy-detail/comments.tsx @@ -0,0 +1,128 @@ +import { FlatList, StyleSheet, Text, View } from 'react-native'; +import { LQDBottomSheet, LQShrimeLoader } from '@/components'; +import CommentCard from './comment-card'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { useComments } from '@/services/comments/queries'; +import DefaultFooterLoader from '@/components/flatlist/footer-loader'; +import CommentInput from './comment-input'; +import Loader from '../home/loader'; + +const EmptyState = () => ( + + No comments + + + + +); + +const Comments = ({ + openCloseComment, + showCommentSection, + strategyId, +}: { + openCloseComment: () => void; + showCommentSection: boolean; + strategyId: string; +}) => { + const { data, fetchNextPage, hasNextPage, isFetchingNextPage, isLoading, isFetching, isError, error, refetch } = useComments(strategyId); + + const comments = data?.pages.flatMap((page) => page.data) || []; + + const loadMoreComments = () => { + if (hasNextPage && !isFetchingNextPage) { + fetchNextPage(); + } + }; + + if (isLoading) { + return ; + } + + return ( + + + + + {comments.length > 0 ? ( + } + keyExtractor={(_, index) => index.toString()} + onRefresh={refetch} + onEndReached={loadMoreComments} + ListFooterComponent={isFetchingNextPage ? : null} + contentContainerStyle={styles.commentContainerStyle} + /> + ) : ( + + )} + + + + + + + ); +}; + +export default Comments; + +const styles = StyleSheet.create({ + lineOne: { + height: 8, + borderRadius: 10, + marginTop: 10, + width: '80%', + }, + lineTwo: { + height: 8, + borderRadius: 10, + marginTop: 10, + width: '60%', + }, + lineThree: { + height: 8, + borderRadius: 10, + marginTop: 10, + width: '40%', + }, + emptyStateWrapper: { + alignItems: 'center', + marginTop: 30, + }, + commentContainer: { + bottom: 10, + left: 0, + right: 0, + flexDirection: 'row', + gap: 10, + alignItems: 'center', + backgroundColor: '#FFFFFF', + paddingVertical: 8, + + borderTopColor: '#EAEEF4', + zIndex: 10, + }, + commentContainerStyle: { + gap: 24, + paddingBottom: 50, + }, + + emptyText: { + fontSize: adjustFontSizeForIOS(16, 1), + fontFamily: 'AeonikBold', + fontWeight: '500', + color: '#1E293B', + lineHeight: 19.2, + marginBottom: 5, + }, + + flatlistWrapper: { + flex: 1, + height: 320, + maxHeight: 450, + }, +}); diff --git a/screens/strategy-detail/index.tsx b/screens/strategy-detail/index.tsx index 7114f35..35ac8d5 100644 --- a/screens/strategy-detail/index.tsx +++ b/screens/strategy-detail/index.tsx @@ -1,80 +1,64 @@ -import { FlatList, StyleSheet, Text, TextInput, TouchableOpacity, View } from 'react-native'; -import React, { useRef, useState } from 'react'; -import { LQDBottomSheet, LQDButton, LQDFeedCard, LQDFlatlist, LQDImage, LQDScrollView, LQShrimeLoader } from '@/components'; -import { feeds, strategyInfo } from '../home/dummy'; -import { ArrowUpCircleIcon, DiscoverUSDIcon, FlashIcon, SmileEmojiIcon } from '@/assets/icons'; +import React, { useState } from 'react'; +import { StyleSheet, Text, View } from 'react-native'; +import { LQDButton, LQDFeedCard, LQDScrollView } from '@/components'; +import { DiscoverUSDIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { useFeed } from '@/services/feeds/queries'; import StatsCard from './stats-card'; -import CommentCard from './comment-card'; +import Comments from './comments'; +import Loader from '../home/loader'; -const StrategyDetail = ({ strategyId }: any) => { - const flatListRef = useRef(null); +const StrategyDetail = ({ strategyId }: { strategyId: string }) => { + const { data, isLoading, isFetching, isError, refetch } = useFeed(strategyId); - const [comment, setComment] = useState(''); - const [onPressComment, setonPressComment] = useState(false); - const [isInputFocused, setIsInputFocused] = useState(false); - const [dynamicHeight, setDynamicHeight] = useState(0); - const [comments, setComments] = useState([]); + const [showCommentSection, setShowCommentSection] = useState(false); - const inputheight = Math.min(Math.max(44, dynamicHeight), 80); - - const handleComment = () => { - const payload = { - content: comment, - date: '2h', - likes: 34, - username: '@Njoku', - image: '', - }; - if (comment.trim().length > 0) { - setComments((prev: any) => [...prev, payload]); - setComment(''); - } - - flatListRef.current?.scrollToEnd({ animated: true }); + const openCloseComment = () => { + setShowCommentSection((prev) => !prev); }; - const openComment = () => { - setonPressComment((prev) => !prev); - }; - - const EmptyState = () => ( - - No comments - - - - - ); - - const bottomInput = () => ( - - - - setComment(val)} - multiline={true} - onContentSizeChange={(event) => setDynamicHeight(event.nativeEvent.contentSize.height)} - style={styles.textInput} - onFocus={() => setIsInputFocused(true)} - onBlur={() => setIsInputFocused(false)} - /> - {comment.length > 0 ? ( - - - - ) : ( - - )} - - - ); + const strategyInfo = [ + { + id: '1', + variant: 'locked', + title: 'Total value locked', + value: '$1.3M', + active: false, + }, + { + id: '2', + variant: 'risk', + title: 'Risk profile', + value: 'Stable', + active: true, + }, + { + id: '3', + variant: 'deposit', + title: 'No. of deposits', + value: Number(data?.metrics.totalDepositAmount || 0).toLocaleString(), + active: false, + }, + { + id: '4', + variant: 'curator', + title: 'Curator fee', + value: `${data?.performanceFee}%`, + active: false, + }, + ]; + + if (isLoading) { + return ; + } + + if (isError) { + return error; + } return ( - {}} style={styles.container}> - + + Strategy Info @@ -101,27 +85,7 @@ const StrategyDetail = ({ strategyId }: any) => { - - - - - {!comments.length && } - {comments.length > 0 && ( - } - keyExtractor={(_, index) => index.toString()} - showsHorizontalScrollIndicator={false} - contentContainerStyle={styles.commentContainerStyle} - /> - )} - - {bottomInput()} - - - + ); }; @@ -133,48 +97,18 @@ const styles = StyleSheet.create({ flex: 1, backgroundColor: '#FFFFFF', }, - statsWrapper: { flexDirection: 'row', width: '100%', flexWrap: 'wrap', gap: 20 }, - commentRightWrapper: { alignItems: 'center', gap: 6 }, - commentLeftWrapper: { flex: 1, marginRight: 10, gap: 5 }, - commentCardContainer: { flexDirection: 'row', gap: 8 }, - lineOne: { height: 8, borderRadius: 10, marginTop: 10, width: '80%' }, - lineTwo: { height: 8, borderRadius: 10, marginTop: 10, width: '60%' }, - lineThree: { height: 8, borderRadius: 10, marginTop: 10, width: '40%' }, - emptyStateWrapper: { alignItems: 'center', marginTop: 30 }, - commentContainer: { - bottom: 10, - left: 0, - right: 0, + statsWrapper: { flexDirection: 'row', - gap: 10, - alignItems: 'center', - backgroundColor: '#FFFFFF', - paddingVertical: 8, - - borderTopColor: '#EAEEF4', - zIndex: 10, - }, - commentContainerStyle: { + width: '100%', + flexWrap: 'wrap', gap: 20, - paddingBottom: 50, }, - commentInput: { - borderWidth: 1, - borderColor: '#EAEEF4', - height: 44, - borderRadius: 16, - alignItems: 'center', - paddingLeft: 10, - paddingRight: 6, - flex: 1, - flexDirection: 'row', - gap: 3, - }, infoContainer: { paddingVertical: 10, paddingHorizontal: 16, }, + emptyText: { fontSize: adjustFontSizeForIOS(16, 1), fontFamily: 'AeonikBold', @@ -254,7 +188,7 @@ const styles = StyleSheet.create({ buttonWrapper: { marginTop: 20, }, - flatlistWrapper: { flex: 1, height: 320, maxHeight: 450 }, + textInput: { flex: 1, }, diff --git a/screens/strategy-detail/types.ts b/screens/strategy-detail/types.ts index a48903f..7299a09 100644 --- a/screens/strategy-detail/types.ts +++ b/screens/strategy-detail/types.ts @@ -4,15 +4,3 @@ interface IStatCard { value: string; isActive: boolean; } - -interface Comment { - image: string; - username: string; - content: string; - likes: string; - date: string; -} - -interface ICommentCard { - comment: Comment; -} diff --git a/services/comments/apis.ts b/services/comments/apis.ts new file mode 100644 index 0000000..b1330cd --- /dev/null +++ b/services/comments/apis.ts @@ -0,0 +1,18 @@ +import { strategyAxiosInstance } from '@/init/axios'; + +const fetchComments = async (strategyId: string, pageParam?: string) => { + return ( + await strategyAxiosInstance.get(`$${strategyId}/comments`, { + params: { + cursor: pageParam, + limit: 10, + }, + }) + ).data; +}; + +const commentOnAStrategy = async (strategyId: string, data: PostCommentBody) => { + return (await strategyAxiosInstance.post(`${strategyId}/comments`, data)).data; +}; + +export { fetchComments, commentOnAStrategy }; diff --git a/services/comments/queries.ts b/services/comments/queries.ts new file mode 100644 index 0000000..a8b87ed --- /dev/null +++ b/services/comments/queries.ts @@ -0,0 +1,14 @@ +import { useInfiniteQuery } from '@tanstack/react-query'; + +import { fetchComments } from './apis'; + +const useComments = (strategyId: string) => { + return useInfiniteQuery({ + queryKey: ['comments'], + queryFn: ({ pageParam }) => fetchComments(strategyId, pageParam), + getNextPageParam: (lastPage) => (lastPage.pagination.hasMore ? lastPage.pagination.nextCursor : undefined), + initialPageParam: '', + }); +}; + +export { useComments }; diff --git a/services/comments/types.ts b/services/comments/types.ts new file mode 100644 index 0000000..87b169d --- /dev/null +++ b/services/comments/types.ts @@ -0,0 +1,26 @@ +type Comments = { + data: CommentItem[]; + pagination: { + nextCursor?: string; + hasMore: boolean; + }; +}; + +type CommentItem = { + id: string; + content: string; + createdAt: string; + author: { + address: string; + }; + likeCount: number; + isLiked: boolean; + stategyId: string; + replyToId: string; + replies: string[]; +}; + +type PostCommentBody = { + content: string; + replyToId?: string; +}; diff --git a/services/feeds/apis.ts b/services/feeds/apis.ts index a93985f..8241b81 100644 --- a/services/feeds/apis.ts +++ b/services/feeds/apis.ts @@ -1,8 +1,11 @@ -import { axiosInstance } from '@/init/axios'; +import { strategyAxiosInstance, setStrategyTokenHeader } from '@/init/axios'; const fetchFeeds = async (pageParam?: string, sort?: 'latest' | 'trending') => { + await setStrategyTokenHeader( + 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjB4MTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTIzNDU2Nzg5MCIsImFkZHJlc3MiOiIweDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTIzNDU2Nzg5MDEyMzQ1Njc4OTAiLCJpYXQiOjE3MzQxMTc5OTF9.qeL-tK0Yh6bMq8L7WrYakYpwUFqvBkv7XSoyTWBqMmY' + ); return ( - await axiosInstance.get('/feed', { + await strategyAxiosInstance.get(`feed`, { params: { cursor: pageParam, limit: 10, @@ -13,19 +16,15 @@ const fetchFeeds = async (pageParam?: string, sort?: 'latest' | 'trending') => { }; const fetchFeed = async (strategyId: string) => { - return (await axiosInstance.get(`/strategies/:${strategyId}`)).data; -}; - -const commentOnAStrategy = async (strategyId: string, data: PostCommentBody) => { - return (await axiosInstance.post(`/strategies/${strategyId}/comments`, data)).data; + return (await strategyAxiosInstance.get(`${strategyId}`)).data; }; const likeAStrategy = async (strategyId: string) => { - return (await axiosInstance.post(`/strategies/${strategyId}/likes`)).data; + return (await strategyAxiosInstance.post(`${strategyId}/likes`)).data; }; const unLikeAStrategy = async (strategyId: string) => { - return (await axiosInstance.delete(`/strategies/${strategyId}/likes`)).data; + return (await strategyAxiosInstance.delete(`${strategyId}/likes`)).data; }; -export { fetchFeeds, fetchFeed, commentOnAStrategy, likeAStrategy, unLikeAStrategy }; +export { fetchFeeds, fetchFeed, likeAStrategy, unLikeAStrategy }; diff --git a/services/feeds/types.ts b/services/feeds/types.ts index 671b81b..7be030a 100644 --- a/services/feeds/types.ts +++ b/services/feeds/types.ts @@ -2,79 +2,51 @@ type Feeds = { strategies: Strategy[]; nextCursor?: string; hasMore: boolean; - metadata?: { - totalStrategies: number; - totalTvl: string; - uniqueProtocols: number; - }; }; type Strategy = { id: string; name: string; + onchainId: number; + curatorAddress: string; description: string; - contractAddress: string; - curator: { - walletAddress: string; - username: string; - avatar?: string; - }; - steps: { - stepIndex: number; - protocolAddress: string; - actionType: 'supply' | 'withdraw' | 'borrow' | 'repay' | 'stake' | 'unstake' | 'swap' | 'claim'; - assetIn: string; - assetOut?: string; - amountRatio: number; - }[]; + minDeposit: number; + maxTvl: number; + performanceFee: number; + steps: StrategyStep[]; metrics: { tvl: string; repostCount: number; likeCount: number; commentCount: number; - averageDeposit: string; + apy: number; + totalDepositAmount: string; }; assets: { - addresses: string[]; + addresses: `0x${string}`[]; count: number; }; - protocols: { - addresses: string[]; - count: number; - actionTypes: string[]; - }; - - userInteraction?: { - // Present if user is authenticated + userInteraction: { hasLiked: boolean; - hasDeposited: boolean; - depositAmount?: string; + deposit: { + amount: number; + }; }; createdAt: string; - transactionHash: string; + transactionHash: `0x${string}`; }; -type PostCommentBody = { - content: string; - replyToId?: string; -}; - -type PostCommentResponse = { +type StrategyStep = { id: string; - content: string; - author: { - walletAddress: string; - username: string; - avatar?: string; - }; - replyTo?: { - id: string; - author: { - username: string; - }; - }; - likeCount: number; - createdAt: string; + strategyId: string; + stepIndex: number; + protocolAddress: `0x${string}`; + actionType: 'supply' | 'borrow' | 'stake' | 'deposit'; + assetIn: `0x${string}`; + assetOut: `0x${string}`[]; + amountRatio: number; + blockNumber: BigInt; + transactionHash: `0x${string}`; }; type LikeStrategyResponse = { diff --git a/services/user/apis.ts b/services/user/apis.ts index 7bf8801..937a972 100644 --- a/services/user/apis.ts +++ b/services/user/apis.ts @@ -1,4 +1,4 @@ -import { axiosInstance } from '@/init/axios'; +import { axiosInstance, strategyAxiosInstance } from '@/init/axios'; const fetchUserInfo = async (walletAddress: string) => { return (await axiosInstance.get(`/users/${walletAddress}`)).data; @@ -6,7 +6,7 @@ const fetchUserInfo = async (walletAddress: string) => { const fetchUserStrategies = async (walletAddress: string, pageParam?: string) => { return ( - await axiosInstance.get(`/users/${walletAddress}/strategies`, { + await strategyAxiosInstance.get(`user/${walletAddress}`, { params: { cursor: pageParam, limit: 10, @@ -17,7 +17,7 @@ const fetchUserStrategies = async (walletAddress: string, pageParam?: string) => const fetchUserDeposits = async (walletAddress: string, pageParam?: string) => { return ( - await axiosInstance.get(`/users/${walletAddress}/deposits`, { + await strategyAxiosInstance.get(`user/${walletAddress}/deposits`, { params: { cursor: pageParam, limit: 10, @@ -28,7 +28,7 @@ const fetchUserDeposits = async (walletAddress: string, pageParam?: string) => { const fetchUserLikes = async (walletAddress: string, pageParam?: string) => { return ( - await axiosInstance.get(`/users/${walletAddress}/likes`, { + await strategyAxiosInstance.get(`user/${walletAddress}/liked`, { params: { cursor: pageParam, limit: 10, diff --git a/services/user/types.ts b/services/user/types.ts index e34bb80..ba258d9 100644 --- a/services/user/types.ts +++ b/services/user/types.ts @@ -16,45 +16,7 @@ type User = { }; type UserStrategies = { - items: { - id: string; - name: string; - description: string; - metrics: { - tvl: string; - depositorCount: number; - likeCount: number; - }; - createdAt: string; - transactionHash: string; - }[]; - nextCursor?: string; - hasMore: boolean; -}; - -type UserDeposits = { - items: { - strategyId: string; - strategyName: string; - amount: string; - status: 'active' | 'withdrawn'; - depositedAt: string; - transactionHash: string; - }[]; - nextCursor?: string; - hasMore: boolean; -}; - -type UserLikes = { - items: { - strategyId: string; - strategyName: string; - likedAt: string; - curator: { - walletAddress: string; - username: string; - }; - }[]; + data: Strategy[]; nextCursor?: string; hasMore: boolean; }; diff --git a/utils/helpers.ts b/utils/helpers.ts index aea31fa..f35b642 100644 --- a/utils/helpers.ts +++ b/utils/helpers.ts @@ -1,5 +1,6 @@ import { decodeAbiParameters, formatUnits, Hex, hexToBigInt } from 'viem'; import { Platform } from 'react-native'; +import moment from 'moment'; const formatAmount = (amount?: number | string, decimals = 4): number => { if (!amount) return 0; @@ -136,7 +137,7 @@ const formatInputAmount = (value: string): string => { return newValue; }; -export const formatSymbol = (symbol: string, showFullSymbol?: boolean) => { +const formatSymbol = (symbol: string, showFullSymbol?: boolean) => { if (!showFullSymbol) { return symbol.split('-')[1].replace('/', ' / '); } @@ -157,7 +158,6 @@ const createArrayWithIndexes = (length: number): number[] => { }; function splitSignature(signature: string): { r: bigint; s: bigint } { - console.log(signature, 'from splitting'); let [r, s] = decodeAbiParameters([{ type: 'uint256' }, { type: 'uint256' }], signature as Hex); const n = hexToBigInt('0xffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551'); if (s > n / 2n) { @@ -175,6 +175,19 @@ export const findQuoteIndices = (input: string): { beforeType: bigint; beforeCha }; }; +const formatTimestamp = (timestamp: string | number | Date): string => { + const now = moment(); + const time = moment(timestamp); + + const diffInHours = now.diff(time, 'hours'); + + if (diffInHours < 24) { + return time.fromNow(); // e.g., "1hr ago", "few secs ago" + } else { + return time.format('MMM D, YYYY'); // e.g., "Dec 13, 2024" + } +}; + export { formatNumberWithSuffix, truncateDecimal, @@ -194,4 +207,5 @@ export { formatSymbol, createArrayWithIndexes, splitSignature, + formatTimestamp, }; From 6d3cafb776f60352a4017d1744e54d7be2a1a198 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Mon, 16 Dec 2024 12:30:30 +0100 Subject: [PATCH 87/95] update integration --- screens/strategy-detail/index.tsx | 4 ++-- services/comments/apis.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/screens/strategy-detail/index.tsx b/screens/strategy-detail/index.tsx index 35ac8d5..bad9968 100644 --- a/screens/strategy-detail/index.tsx +++ b/screens/strategy-detail/index.tsx @@ -2,7 +2,7 @@ import React, { useState } from 'react'; import { StyleSheet, Text, View } from 'react-native'; import { LQDButton, LQDFeedCard, LQDScrollView } from '@/components'; import { DiscoverUSDIcon } from '@/assets/icons'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { adjustFontSizeForIOS, formatNumberWithSuffix } from '@/utils/helpers'; import { useFeed } from '@/services/feeds/queries'; import StatsCard from './stats-card'; import Comments from './comments'; @@ -22,7 +22,7 @@ const StrategyDetail = ({ strategyId }: { strategyId: string }) => { id: '1', variant: 'locked', title: 'Total value locked', - value: '$1.3M', + value: `$${formatNumberWithSuffix(data?.metrics.tvl || 0)}`, active: false, }, { diff --git a/services/comments/apis.ts b/services/comments/apis.ts index b1330cd..3125cb0 100644 --- a/services/comments/apis.ts +++ b/services/comments/apis.ts @@ -2,7 +2,7 @@ import { strategyAxiosInstance } from '@/init/axios'; const fetchComments = async (strategyId: string, pageParam?: string) => { return ( - await strategyAxiosInstance.get(`$${strategyId}/comments`, { + await strategyAxiosInstance.get(`${strategyId}/comments`, { params: { cursor: pageParam, limit: 10, From 4da2b52f7ba701bb29a29c7c720551edebc50c77 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Mon, 16 Dec 2024 15:01:18 +0100 Subject: [PATCH 88/95] update reponse types --- components/feed-card/feed-step.tsx | 4 ++-- components/feed-card/index.tsx | 18 ++++++++++++----- screens/discover/index.tsx | 2 +- screens/home/index.tsx | 2 +- screens/strategy-detail/index.tsx | 2 +- services/feeds/apis.ts | 2 +- services/feeds/queries.ts | 2 +- services/feeds/types.ts | 32 ++++++++++++++++++++---------- 8 files changed, 41 insertions(+), 23 deletions(-) diff --git a/components/feed-card/feed-step.tsx b/components/feed-card/feed-step.tsx index d9fd4bc..267ebb4 100644 --- a/components/feed-card/feed-step.tsx +++ b/components/feed-card/feed-step.tsx @@ -25,9 +25,9 @@ const FeedStep = ({ step, isLast }: { step: StrategyStep; isLast: boolean }) => const deposite = actionType === 'deposit'; const protocol = protocolList.find((protocol) => protocol.address == step.protocolAddress); - const tokenIconUrl = 'https://res.cloudinary.com/djzeufu4j/image/upload/v1732105634/tokenAIcon_jgy241.png'; const poolPair = 'DAI/USDC'; - const tokenName = 'cbBTC'; + const tokenName = step.assetOutTokens[0].symbol; + const tokenIconUrl = step.assetOutTokens[0].logoUrl; const depositVariant = () => ( diff --git a/components/feed-card/index.tsx b/components/feed-card/index.tsx index d095022..56e6918 100644 --- a/components/feed-card/index.tsx +++ b/components/feed-card/index.tsx @@ -7,7 +7,6 @@ import { adjustFontSizeForIOS, formatTimestamp, truncate } from '@/utils/helpers import FeedStep from './feed-step'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -const photo = 'https://pics.craiyon.com/2023-08-02/7a951cac85bd4aa2b0e70dbaabb8404e.webp'; const maxDescriptionLength = 40; const LQDFeedCard = ({ feed, isDetailPage, handleCommentPress }: FeedCard) => { @@ -18,8 +17,9 @@ const LQDFeedCard = ({ feed, isDetailPage, handleCommentPress }: FeedCard) => { setIsExpanded(!isExpanded); }; - const { steps, curatorAddress, createdAt, name, description, metrics, userInteraction, id } = feed; + const { steps, curator, createdAt, name, description, metrics, userInteraction, id } = feed; const { commentCount, likeCount, repostCount, apy } = metrics; + const { address: curatorAddress, avatarUrl, username } = curator; const truncatedDescription = description.substring(0, maxDescriptionLength); @@ -56,7 +56,7 @@ const LQDFeedCard = ({ feed, isDetailPage, handleCommentPress }: FeedCard) => { { - Meister + + {username} + {formatTimestamp(createdAt)} @@ -245,5 +247,11 @@ const styles = StyleSheet.create({ bottomActionContainer: { flexDirection: 'row', gap: 20, alignItems: 'center' }, bottomActionInnerContainer: { flex: 1, flexDirection: 'row', gap: 20 }, rightContentFlex: { flexDirection: 'row', justifyContent: 'space-between' }, - usernameFlex: { flexDirection: 'row', gap: 9, alignItems: 'center', marginBottom: 5 }, + usernameFlex: { + flexDirection: 'row', + gap: 9, + alignItems: 'center', + marginBottom: 5, + maxWidth: '70%', + }, }); diff --git a/screens/discover/index.tsx b/screens/discover/index.tsx index cc46d0e..9f84760 100644 --- a/screens/discover/index.tsx +++ b/screens/discover/index.tsx @@ -8,7 +8,7 @@ import Loader from '../home/loader'; const Discover = () => { const { data, fetchNextPage, hasNextPage, isFetchingNextPage, isLoading, isFetching, isError, error, refetch } = useFeeds(); - const strategies = data?.pages.flatMap((page) => page.strategies) || []; + const strategies = data?.pages.flatMap((page) => page.data) || []; const loadMoreStrategies = () => { if (hasNextPage && !isFetchingNextPage) { diff --git a/screens/home/index.tsx b/screens/home/index.tsx index 1a5cfbc..56e60fc 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -12,7 +12,7 @@ const Home = () => { const { router } = useSystemFunctions(); const { data, fetchNextPage, hasNextPage, isFetchingNextPage, isLoading, isFetching, isError, error, refetch } = useFeeds(); - const feeds = data?.pages.flatMap((page) => page.strategies) || []; + const feeds = data?.pages.flatMap((page) => page.data) || []; const loadMoreFeeds = () => { if (hasNextPage && !isFetchingNextPage) { diff --git a/screens/strategy-detail/index.tsx b/screens/strategy-detail/index.tsx index bad9968..8537538 100644 --- a/screens/strategy-detail/index.tsx +++ b/screens/strategy-detail/index.tsx @@ -43,7 +43,7 @@ const StrategyDetail = ({ strategyId }: { strategyId: string }) => { id: '4', variant: 'curator', title: 'Curator fee', - value: `${data?.performanceFee}%`, + value: `5%`, active: false, }, ]; diff --git a/services/feeds/apis.ts b/services/feeds/apis.ts index 8241b81..29b038e 100644 --- a/services/feeds/apis.ts +++ b/services/feeds/apis.ts @@ -16,7 +16,7 @@ const fetchFeeds = async (pageParam?: string, sort?: 'latest' | 'trending') => { }; const fetchFeed = async (strategyId: string) => { - return (await strategyAxiosInstance.get(`${strategyId}`)).data; + return (await strategyAxiosInstance.get(`${strategyId}`)).data?.data; }; const likeAStrategy = async (strategyId: string) => { diff --git a/services/feeds/queries.ts b/services/feeds/queries.ts index d790947..38c1da2 100644 --- a/services/feeds/queries.ts +++ b/services/feeds/queries.ts @@ -14,7 +14,7 @@ const useFeeds = () => { return useInfiniteQuery({ queryKey: ['feeds'], queryFn: ({ pageParam }) => fetchFeeds(pageParam), - getNextPageParam: (lastPage) => (lastPage.hasMore ? lastPage.nextCursor : undefined), + getNextPageParam: (lastPage) => (lastPage.pagination.hasMore ? lastPage.pagination.nextCursor : undefined), initialPageParam: '', }); }; diff --git a/services/feeds/types.ts b/services/feeds/types.ts index 7be030a..8cece65 100644 --- a/services/feeds/types.ts +++ b/services/feeds/types.ts @@ -1,18 +1,21 @@ type Feeds = { - strategies: Strategy[]; - nextCursor?: string; - hasMore: boolean; + data: Strategy[]; + pagination: { + hasMore: boolean; + nextCursor?: string; + }; }; type Strategy = { id: string; name: string; onchainId: number; - curatorAddress: string; description: string; - minDeposit: number; - maxTvl: number; - performanceFee: number; + curator: { + address: `0x${string}`; + username: string; + avatarUrl: string; + }; steps: StrategyStep[]; metrics: { tvl: string; @@ -38,14 +41,21 @@ type Strategy = { type StrategyStep = { id: string; - strategyId: string; stepIndex: number; protocolAddress: `0x${string}`; actionType: 'supply' | 'borrow' | 'stake' | 'deposit'; - assetIn: `0x${string}`; - assetOut: `0x${string}`[]; + assetInToken: { + address: `0x${string}`; + symbol: string; + logoUrl: string; + }; + assetOutTokens: { + address: `0x${string}`; + symbol: string; + logoUrl: string; + }[]; amountRatio: number; - blockNumber: BigInt; + blockNumber: string; transactionHash: `0x${string}`; }; From f9869ca60ece096c89c71f452b4a09e3318afd3c Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Tue, 17 Dec 2024 11:30:34 +0100 Subject: [PATCH 89/95] Like / Unlike Strategy (#106) * Like / Unlike strategy * feature: like and unlike strategy * chores: clean up * fix: removed local state to track like and unlike * fix: uselikeMutation clean up --- components/feed-card/index.tsx | 19 +++++++------ screens/strategy-detail/index.tsx | 2 +- services/comments/apis.ts | 6 ++++- services/feeds/apis.ts | 8 ++---- services/feeds/queries.ts | 45 ++++++++++++++++++++++++++++--- 5 files changed, 60 insertions(+), 20 deletions(-) diff --git a/components/feed-card/index.tsx b/components/feed-card/index.tsx index 56e6918..33a5b1f 100644 --- a/components/feed-card/index.tsx +++ b/components/feed-card/index.tsx @@ -6,23 +6,26 @@ import { CommentIcon, FlashIcon, MoreIcon, ReTweetIcon, ShareIcon } from '@/asse import { adjustFontSizeForIOS, formatTimestamp, truncate } from '@/utils/helpers'; import FeedStep from './feed-step'; import useSystemFunctions from '@/hooks/useSystemFunctions'; +import { useLikeMutation } from '@/services/feeds/queries'; const maxDescriptionLength = 40; const LQDFeedCard = ({ feed, isDetailPage, handleCommentPress }: FeedCard) => { const { router } = useSystemFunctions(); + + const { steps, curator, createdAt, name, description, metrics, userInteraction, id } = feed; + const { commentCount, repostCount, apy, likeCount } = metrics; + const { address: curatorAddress, avatarUrl, username } = curator; + const truncatedDescription = description.substring(0, maxDescriptionLength); + + const likeMutation = useLikeMutation(id); + const [isExpanded, setIsExpanded] = useState(false); const handleToggle = () => { setIsExpanded(!isExpanded); }; - const { steps, curator, createdAt, name, description, metrics, userInteraction, id } = feed; - const { commentCount, likeCount, repostCount, apy } = metrics; - const { address: curatorAddress, avatarUrl, username } = curator; - - const truncatedDescription = description.substring(0, maxDescriptionLength); - const handleInvestPress = () => { console.log('Invest'); }; @@ -32,7 +35,7 @@ const LQDFeedCard = ({ feed, isDetailPage, handleCommentPress }: FeedCard) => { }; const handleLikePress = () => { - console.log('Like'); + likeMutation.mutate(); }; const handleSharePress = () => { @@ -128,7 +131,7 @@ const LQDFeedCard = ({ feed, isDetailPage, handleCommentPress }: FeedCard) => { - {userInteraction?.hasLiked ? : } + {userInteraction.hasLiked ? : } {likeCount} diff --git a/screens/strategy-detail/index.tsx b/screens/strategy-detail/index.tsx index 8537538..0a0f2f1 100644 --- a/screens/strategy-detail/index.tsx +++ b/screens/strategy-detail/index.tsx @@ -3,7 +3,7 @@ import { StyleSheet, Text, View } from 'react-native'; import { LQDButton, LQDFeedCard, LQDScrollView } from '@/components'; import { DiscoverUSDIcon } from '@/assets/icons'; import { adjustFontSizeForIOS, formatNumberWithSuffix } from '@/utils/helpers'; -import { useFeed } from '@/services/feeds/queries'; +import { useFeed, useLikeMutation } from '@/services/feeds/queries'; import StatsCard from './stats-card'; import Comments from './comments'; import Loader from '../home/loader'; diff --git a/services/comments/apis.ts b/services/comments/apis.ts index 3125cb0..9637db3 100644 --- a/services/comments/apis.ts +++ b/services/comments/apis.ts @@ -15,4 +15,8 @@ const commentOnAStrategy = async (strategyId: string, data: PostCommentBody) => return (await strategyAxiosInstance.post(`${strategyId}/comments`, data)).data; }; -export { fetchComments, commentOnAStrategy }; +const likeCommentOnAStrategy = async (comment: string) => { + return (await strategyAxiosInstance.post(`comments/${comment}/like`)).data; +}; + +export { fetchComments, commentOnAStrategy, likeCommentOnAStrategy }; diff --git a/services/feeds/apis.ts b/services/feeds/apis.ts index 29b038e..49fe340 100644 --- a/services/feeds/apis.ts +++ b/services/feeds/apis.ts @@ -20,11 +20,7 @@ const fetchFeed = async (strategyId: string) => { }; const likeAStrategy = async (strategyId: string) => { - return (await strategyAxiosInstance.post(`${strategyId}/likes`)).data; + return (await strategyAxiosInstance.post(`${strategyId}/like`)).data; }; -const unLikeAStrategy = async (strategyId: string) => { - return (await strategyAxiosInstance.delete(`${strategyId}/likes`)).data; -}; - -export { fetchFeeds, fetchFeed, likeAStrategy, unLikeAStrategy }; +export { fetchFeeds, fetchFeed, likeAStrategy }; diff --git a/services/feeds/queries.ts b/services/feeds/queries.ts index 38c1da2..04689f4 100644 --- a/services/feeds/queries.ts +++ b/services/feeds/queries.ts @@ -1,6 +1,5 @@ -import { useInfiniteQuery, useQuery, useMutation } from '@tanstack/react-query'; - -import { fetchFeed, fetchFeeds } from './apis'; +import { QueryKey, useInfiniteQuery, useQuery, useMutation, useQueryClient } from '@tanstack/react-query'; +import { fetchFeed, fetchFeeds, likeAStrategy } from './apis'; import { useLiquidity } from '@/hooks/useLiquid'; import { publicClient } from '@/init/client'; import { PublicClient } from 'viem'; @@ -75,4 +74,42 @@ const useWriteFeed = () => { return { postStrategy, loading }; }; -export { useFeeds, useFeed, useWriteFeed }; +const useLikeMutation = (strategyId: string) => { + const queryClient = useQueryClient(); + + return useMutation({ + mutationFn: () => likeAStrategy(strategyId), + onMutate: async () => { + const queryKey: any = ['feedDetail', strategyId]; + + await queryClient.cancelQueries(queryKey); + + const previousFeed = queryClient.getQueryData(queryKey); + + queryClient.setQueryData(queryKey, (oldData: any) => { + if (!oldData) return oldData; + return { + ...oldData, + isLiked: true, + likesCount: oldData.likesCount + 1, + }; + }); + + return { previousFeed }; + }, + onError: (err, _, context) => { + const queryKey = ['feedDetail', strategyId]; + if (context?.previousFeed) { + queryClient.setQueryData(queryKey, context.previousFeed); + } + + console.log('Error liking strategy:', err); + }, + onSettled: () => { + const queryKey: any = ['feedDetail', strategyId]; + queryClient.invalidateQueries(queryKey); + }, + }); +}; + +export { useFeeds, useFeed, useWriteFeed, useLikeMutation }; From a89fab405050c86b0d87ba76d12445b5c7e89a32 Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Tue, 17 Dec 2024 15:42:09 +0100 Subject: [PATCH 90/95] Create / Like & UnLike Comment (#107) * feature: like comment * feature: add comment to feed --- screens/strategy-detail/comment-card.tsx | 11 +- screens/strategy-detail/comment-input.tsx | 22 +++- screens/strategy-detail/comments.tsx | 2 +- services/comments/queries.ts | 117 +++++++++++++++++++++- services/comments/types.ts | 2 +- 5 files changed, 142 insertions(+), 12 deletions(-) diff --git a/screens/strategy-detail/comment-card.tsx b/screens/strategy-detail/comment-card.tsx index 791d3b2..88c3540 100644 --- a/screens/strategy-detail/comment-card.tsx +++ b/screens/strategy-detail/comment-card.tsx @@ -3,8 +3,15 @@ import React from 'react'; import { FlashIcon } from '@/assets/icons'; import { adjustFontSizeForIOS, formatTimestamp } from '@/utils/helpers'; import { LQDImage } from '@/components'; +import { useLikeCommentMutation } from '@/services/comments/queries'; + +const CommentCard = ({ author, content, createdAt, isLiked, likeCount, id, strategyId }: CommentItem) => { + const likeCommentMutation = useLikeCommentMutation(strategyId, id); + + const handleLikeComment = () => { + likeCommentMutation.mutate(); + }; -const CommentCard = ({ author, content, createdAt, isLiked, likeCount, id }: CommentItem) => { return ( @@ -17,7 +24,7 @@ const CommentCard = ({ author, content, createdAt, isLiked, likeCount, id }: Com {content} - + {isLiked ? : } {likeCount} diff --git a/screens/strategy-detail/comment-input.tsx b/screens/strategy-detail/comment-input.tsx index f49b3cd..14ac89b 100644 --- a/screens/strategy-detail/comment-input.tsx +++ b/screens/strategy-detail/comment-input.tsx @@ -2,8 +2,9 @@ import { useRef, useState } from 'react'; import { FlatList, StyleSheet, TextInput, TouchableOpacity, View } from 'react-native'; import { LQDImage } from '@/components'; import { ArrowUpCircleIcon, SmileEmojiIcon } from '@/assets/icons'; +import { useAddCommentMutation } from '@/services/comments/queries'; -const CommentInput = () => { +const CommentInput = ({ strategyId }: { strategyId: string }) => { const flatListRef = useRef(null); const [comment, setComment] = useState(''); const [isInputFocused, setIsInputFocused] = useState(false); @@ -11,10 +12,20 @@ const CommentInput = () => { const inputheight = Math.min(Math.max(44, dynamicHeight), 80); - const handleComment = () => { - setComment(''); + const addCommentMutation = useAddCommentMutation(strategyId); - flatListRef.current?.scrollToEnd({ animated: true }); + const handleAddComment = () => { + if (comment.trim()) { + addCommentMutation.mutate( + { content: comment.trim() }, + { + onSuccess: () => { + setComment(''); + flatListRef.current?.scrollToEnd({ animated: true }); + }, + } + ); + } }; return ( @@ -31,8 +42,9 @@ const CommentInput = () => { onFocus={() => setIsInputFocused(true)} onBlur={() => setIsInputFocused(false)} /> + {comment.length > 0 ? ( - + ) : ( diff --git a/screens/strategy-detail/comments.tsx b/screens/strategy-detail/comments.tsx index 3104076..813003f 100644 --- a/screens/strategy-detail/comments.tsx +++ b/screens/strategy-detail/comments.tsx @@ -61,7 +61,7 @@ const Comments = ({ )} - + diff --git a/services/comments/queries.ts b/services/comments/queries.ts index a8b87ed..f5154c7 100644 --- a/services/comments/queries.ts +++ b/services/comments/queries.ts @@ -1,6 +1,6 @@ -import { useInfiniteQuery } from '@tanstack/react-query'; +import { useInfiniteQuery, useMutation, useQueryClient } from '@tanstack/react-query'; -import { fetchComments } from './apis'; +import { commentOnAStrategy, fetchComments, likeCommentOnAStrategy } from './apis'; const useComments = (strategyId: string) => { return useInfiniteQuery({ @@ -11,4 +11,115 @@ const useComments = (strategyId: string) => { }); }; -export { useComments }; +const useLikeCommentMutation = (strategyId: string, commentId: string) => { + const queryClient = useQueryClient(); + + return useMutation({ + mutationFn: () => likeCommentOnAStrategy(commentId), + onMutate: async () => { + const queryKey: any = ['feedDetail', strategyId]; + + await queryClient.cancelQueries(queryKey); + + const previousFeed = queryClient.getQueryData(queryKey); + + queryClient.setQueryData(queryKey, (oldData: any) => { + if (!oldData) return oldData; + + return { + ...oldData, + comments: oldData.comments?.map((comment: any) => + comment.id === commentId + ? { + ...comment, + isLiked: true, + likesCount: comment.likesCount + 1, + } + : comment + ), + }; + }); + + return { previousFeed }; + }, + onError: (err, _, context) => { + const queryKey = ['feedDetail', strategyId]; + + if (context?.previousFeed) { + queryClient.setQueryData(queryKey, context.previousFeed); + } + + console.log('Error liking comment:', err); + }, + onSettled: () => { + const queryKey: any = ['feedDetail', strategyId]; + + queryClient.invalidateQueries(queryKey); + }, + }); +}; + +const useAddCommentMutation = (strategyId: string) => { + const queryClient = useQueryClient(); + + return useMutation({ + mutationFn: (data: PostCommentBody) => commentOnAStrategy(strategyId, data), + + onMutate: async (newComment) => { + const queryKey: any = ['feedDetail', strategyId]; + + await queryClient.cancelQueries(queryKey); + + const previousFeed = queryClient.getQueryData(queryKey); + + queryClient.setQueryData(queryKey, (oldData: any) => { + if (!oldData || !oldData.comments) return oldData; + + return { + ...oldData, + comments: [ + ...oldData.comments, + { + ...newComment, + id: `temp-${Date.now()}`, + isTemporary: true, + }, + ], + }; + }); + + return { previousFeed }; + }, + + onError: (err, _, context) => { + const queryKey = ['feedDetail', strategyId]; + + if (context?.previousFeed) { + queryClient.setQueryData(queryKey, context.previousFeed); + } + + console.log('Error adding comment:', err); + }, + + onSuccess: (newComment) => { + const queryKey = ['feedDetail', strategyId]; + + queryClient.setQueryData(queryKey, (oldData: any) => { + if (!oldData || !oldData.comments) return oldData; + + return { + ...oldData, + comments: oldData.comments.map((comment: any) => (comment.isTemporary ? newComment : comment)), + }; + }); + }, + + onSettled: () => { + const queryKey: any = ['feedDetail', strategyId]; + + queryClient.invalidateQueries(queryKey); + }, + }); +}; + +export { useComments, useLikeCommentMutation, useAddCommentMutation }; diff --git a/services/comments/types.ts b/services/comments/types.ts index 87b169d..efbeece 100644 --- a/services/comments/types.ts +++ b/services/comments/types.ts @@ -15,7 +15,7 @@ type CommentItem = { }; likeCount: number; isLiked: boolean; - stategyId: string; + strategyId: string; replyToId: string; replies: string[]; }; From 04dbc950a27931aad99359794af06dbb80b4aa02 Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Wed, 18 Dec 2024 13:14:10 +0100 Subject: [PATCH 91/95] Discover Page Search And Filter (#108) * feature: like comment * Discover Search and Filter * feature: search filter on assests tvl protocals and query * fix: clean up --- app/(tabs)/_layout.tsx | 2 +- components/feed-card/index.tsx | 3 +- components/scrollview/index.tsx | 10 +- screens/discover/filters.tsx | 54 +++++-- screens/discover/index.tsx | 72 ++++++--- screens/discover/types.ts | 8 + screens/home/header.tsx | 23 ++- screens/home/index.tsx | 1 + .../remove/percentage-setter.tsx | 152 +++++++++++++----- screens/strategy-detail/comment-card.tsx | 2 +- screens/strategy-detail/comment-input.tsx | 2 +- services/discover/apis.ts | 26 +++ services/discover/queries.ts | 13 ++ store/account/types.ts | 4 +- 14 files changed, 281 insertions(+), 91 deletions(-) create mode 100644 screens/discover/types.ts create mode 100644 services/discover/apis.ts create mode 100644 services/discover/queries.ts diff --git a/app/(tabs)/_layout.tsx b/app/(tabs)/_layout.tsx index e3041c2..ae5a6ba 100644 --- a/app/(tabs)/_layout.tsx +++ b/app/(tabs)/_layout.tsx @@ -47,7 +47,7 @@ export default function TabLayout() { screenOptions={{ tabBarActiveTintColor: Colors[colorScheme ?? 'light'].tint, headerShown: true, - header: () =>
, + header: () =>
, }} > { - = ({ children, onRefresh, refreshing, style, contentStyle }) => { return ( - } + refreshControl={} style={[style, { flex: 1 }]} showsVerticalScrollIndicator={false} contentContainerStyle={[ diff --git a/screens/discover/filters.tsx b/screens/discover/filters.tsx index 04bdfae..c5e9a55 100644 --- a/screens/discover/filters.tsx +++ b/screens/discover/filters.tsx @@ -6,19 +6,36 @@ import { ArrowCircleDownIcon, DiscoverTVLIcon, SearchIcon, DiscoverUSDIcon, Aero import { adjustFontSizeForIOS } from '@/utils/helpers'; import { protocolList } from '@/constants/addresses'; import PercentageSetter from '../liquidity-actions/remove/percentage-setter'; +import { useDebouncedEffect } from '@/hooks/useDebouncedEffect'; -const DiscoverFilters = () => { +const DiscoverFilters = ({ setSearchQuery, setMinTvl, setMaxTvl, setCursor, setAssets, setProtocols }: DiscoverFiltersProps) => { + const { control, watch, reset } = useForm(); + const searchValue = watch('search'); const [search, setSearch] = useState(false); const [showTvl, setShowTvl] = useState(false); const [protocal, setProtocal] = useState(false); - const [_, setPercentage] = useState(25); - const [selectedToken, setSelecteToken] = useState(''); + const [percentage, setPercentage] = useState(0); + const [selectedProtocol, setSelecteProtocol] = useState(''); const [selectedAssets, setSelectedAssets] = useState([]); const stableSetPercentage = useCallback((value: number) => setPercentage(value), []); - const { control, watch } = useForm(); const [showAssets, setShowAssets] = useState(false); + useDebouncedEffect( + function setSearchValue() { + if (setSearchQuery && searchValue !== undefined) { + setSearchQuery(searchValue); + } + }, + [searchValue, setSearchQuery], + 300 + ); + + const hanldeFilterTVL = () => { + setMaxTvl(String(percentage)); + setShowTvl((prev) => !prev); + }; + const animationValue = useRef(new Animated.Value(0)).current; const discoverStyle = { @@ -52,6 +69,8 @@ const DiscoverFilters = () => { }; const closeInput = () => { + setSearchQuery(''); + reset({ search: '' }); setSearch((prev) => !prev); }; @@ -60,6 +79,7 @@ const DiscoverFilters = () => { }; const openProtocal = () => { + setSelecteProtocol(''); setProtocal((prev) => !prev); }; @@ -71,6 +91,7 @@ const DiscoverFilters = () => { const newAssets = [...selectedAssets]; newAssets[0] = data; setSelectedAssets(newAssets); + setAssets([newAssets[0].address]); }; useEffect(() => { @@ -124,20 +145,29 @@ const DiscoverFilters = () => { placeholder: '', }} variant="close" - iconAction={() => setSearch(false)} + iconAction={closeInput} /> )} - + { + setMaxTvl(''); + openTvl(); + }} + > - + + { renderItem={({ item }: any) => ( setSelecteToken(item.id)} + onSelect={() => { + setSelecteProtocol(item.address); + setProtocols([item.address]); + openProtocal(); + }} /> )} keyExtractor={(_, index) => index.toString()} @@ -155,6 +189,7 @@ const DiscoverFilters = () => { contentContainerStyle={styles.protocalContainerStyle} /> + { - const { data, fetchNextPage, hasNextPage, isFetchingNextPage, isLoading, isFetching, isError, error, refetch } = useFeeds(); + const [searchQuery, setSearchQuery] = useState(''); + const [minTvl, setMinTvl] = useState(''); + const [maxTvl, setMaxTvl] = useState(''); + const [cursor, setCursor] = useState(''); + const [assets, setAssets] = useState([]); + const [protocols, setProtocols] = useState([]); - const strategies = data?.pages.flatMap((page) => page.data) || []; + const { data, fetchNextPage, hasNextPage, isFetching, isFetchingNextPage, isLoading, refetch } = useSearchFeeds( + searchQuery, + cursor, + minTvl, + maxTvl, + assets, + protocols + ); + + const feeds = data?.pages.flatMap((page) => page.data) || []; const loadMoreStrategies = () => { if (hasNextPage && !isFetchingNextPage) { @@ -16,25 +31,34 @@ const Discover = () => { } }; - if (isLoading) { - return ; - } - return ( - - - } - keyExtractor={(_, index) => index.toString()} - contentContainerStyle={styles.strategyContainerStyle} - onEndReached={loadMoreStrategies} - ListFooterComponent={isFetchingNextPage ? : null} + + + {isLoading && } + + {feeds.length > 0 && !isLoading && ( + } + keyExtractor={(_, index) => index.toString()} + contentContainerStyle={styles.strategyContainerStyle} + onEndReached={loadMoreStrategies} + ListFooterComponent={isFetchingNextPage ? : null} + /> + )} + + {!feeds.length && !isLoading && No strategies found} ); }; @@ -53,4 +77,12 @@ const styles = StyleSheet.create({ paddingHorizontal: 12, paddingTop: 15, }, + noStrategiesText: { + fontSize: 16, + fontWeight: '500', + textAlign: 'center', + fontFamily: 'AeonikMedium', + marginTop: 50, + }, + topGainerLoaderOne: { height: 45, width: 45, borderRadius: 100 }, }); diff --git a/screens/discover/types.ts b/screens/discover/types.ts new file mode 100644 index 0000000..e0683a7 --- /dev/null +++ b/screens/discover/types.ts @@ -0,0 +1,8 @@ +interface DiscoverFiltersProps { + setMinTvl: (value: string) => void; + setMaxTvl: (value: string) => void; + setAssets: (assets: any[]) => void; + setProtocols: (protocols: string[]) => void; + setSearchQuery: (query: string) => void; + setCursor: (cursor: string) => void; +} diff --git a/screens/home/header.tsx b/screens/home/header.tsx index 80dd567..11a5df5 100644 --- a/screens/home/header.tsx +++ b/screens/home/header.tsx @@ -6,13 +6,22 @@ import { adjustFontSizeForIOS } from '@/utils/helpers'; const Header = ({ amount, actionLeft, actionRight }: IHeader) => { return ( - - - - - ${amount} - - + + {actionLeft && ( + + + + )} + + + + {actionRight && ( + + ${amount} + + + )} + ); }; diff --git a/screens/home/index.tsx b/screens/home/index.tsx index 56e60fc..ccf3135 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -38,6 +38,7 @@ const Home = () => { keyExtractor={(_, index) => index.toString()} showsHorizontalScrollIndicator={false} contentContainerStyle={styles.listContainer} + style={{ backgroundColor: '#fff' }} onRefresh={refetch} onEndReached={loadMoreFeeds} ListFooterComponent={isFetchingNextPage ? : null} diff --git a/screens/liquidity-actions/remove/percentage-setter.tsx b/screens/liquidity-actions/remove/percentage-setter.tsx index 36da00d..f41e5bc 100644 --- a/screens/liquidity-actions/remove/percentage-setter.tsx +++ b/screens/liquidity-actions/remove/percentage-setter.tsx @@ -1,54 +1,108 @@ -import React, { useState, useEffect } from 'react'; -import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; -import Slider from '@react-native-community/slider'; - +import React, { useState, useEffect, useRef } from 'react'; +import { View, Text, StyleSheet, TouchableOpacity, PanResponder, Animated } from 'react-native'; import { adjustFontSizeForIOS } from '@/utils/helpers'; -const icon = require('../../../assets/images/slider-dot-icon.png'); + +interface IPercentageSetter { + setPercentage: (value: number) => void; +} const PercentageSetter = ({ setPercentage }: IPercentageSetter) => { - const [percentage, setInternalPercentage] = useState(25); + const [percentage, setInternalPercentage] = useState(10); + const [label, setInternalLabel] = useState('$10k'); + const [sliderWidth, setSliderWidth] = useState(1); + const [startValue, setStartValue] = useState(0); const percentages = [ - { value: 10, label: '10%' }, - { value: 25, label: '25%' }, - { value: 50, label: '50%' }, - { value: 75, label: '75%' }, - { value: 100, label: 'MAX' }, + { value: 50000, label: '$50k' }, + { value: 1000000, label: '$1m' }, + { value: 5000000, label: '$5m' }, + { value: 10000000, label: '$10m' }, + { value: 100000000, label: '$100m' }, ]; + const pan = useRef(new Animated.Value(0)).current; + + const calculatePercentageFromValue = (value: number) => { + const index = percentages.findIndex((p) => p.value === value); + if (index === -1) return 0; + return (index / (percentages.length - 1)) * 100; + }; + + const calculateValueFromPercentage = (percent: number) => { + const index = Math.round((percent / 100) * (percentages.length - 1)); + return percentages[Math.min(Math.max(0, index), percentages.length - 1)].value; + }; + + const formatLabel = (value: number) => { + if (value < 1000000) { + return `$${Math.round(value / 1000)}k`; + } + return `$${(value / 1000000).toFixed(1)}m`; + }; + useEffect(() => { if (setPercentage) { setPercentage(percentage); } }, [percentage, setPercentage]); - const handleSliderChange = (value: number) => { - setInternalPercentage(Math.round(value)); - }; + const panResponder = PanResponder.create({ + onStartShouldSetPanResponder: () => true, + onMoveShouldSetPanResponder: () => true, + onPanResponderGrant: (_, gestureState) => { + pan.setOffset(pan.getValue()); + }, + onPanResponderMove: (_, gestureState) => { + const percentageMove = (gestureState.dx / sliderWidth) * 100; + const newPercentage = Math.max(0, Math.min(100, pan.getOffset() + percentageMove)); + + pan.setValue(newPercentage); - const setPredefinedPercentage = (value: number) => { + const newValue = calculateValueFromPercentage(newPercentage); + setInternalPercentage(newValue); + setInternalLabel(formatLabel(newValue)); + }, + onPanResponderRelease: () => { + pan.flattenOffset(); + }, + }); + + const setPredefinedValues = (value: number, label: string) => { setInternalPercentage(value); + setInternalLabel(label); + const newPercentage = calculatePercentageFromValue(value); + pan.setValue(newPercentage); }; return ( - {percentage}% - - - + {label} + setSliderWidth(event.nativeEvent.layout.width)} + > + {/* ignore this i need to fix this pan animation */} + {/* + + + */} + @@ -56,7 +110,7 @@ const PercentageSetter = ({ setPercentage }: IPercentageSetter) => { setPredefinedPercentage(value)} + onPress={() => setPredefinedValues(value, label)} > {label} @@ -82,22 +136,41 @@ const styles = StyleSheet.create({ label: { color: '#475569', fontSize: adjustFontSizeForIOS(18, 2), - lineHeight: 23.76, + lineHeight: 24, fontWeight: '500', fontFamily: 'AeonikMedium', }, sliderContainer: { width: '100%', + height: 20, + justifyContent: 'center', + }, + track: { + width: '100%', + height: 4, + backgroundColor: '#CBD5E1', + borderRadius: 2, + position: 'relative', + }, + progress: { + height: '100%', + backgroundColor: '#4691FE', + borderRadius: 2, + }, + thumb: { + position: 'absolute', + width: 16, + height: 16, + borderRadius: 8, + backgroundColor: '#4691FE', + top: -6, + marginLeft: -8, }, - partitions: { - alignSelf: 'stretch', flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', - gap: 18, }, - partition: { paddingVertical: 6, paddingHorizontal: 10, @@ -109,15 +182,14 @@ const styles = StyleSheet.create({ borderWidth: 1, borderColor: '#E2E8F0', }, - activePartition: { backgroundColor: '#F1F5F9', + borderColor: '#4691FE', }, - partitionText: { color: '#334155', fontSize: adjustFontSizeForIOS(13, 2), - lineHeight: 16.12, + lineHeight: 16, fontWeight: '500', fontFamily: 'AeonikMedium', }, diff --git a/screens/strategy-detail/comment-card.tsx b/screens/strategy-detail/comment-card.tsx index 88c3540..bb412c5 100644 --- a/screens/strategy-detail/comment-card.tsx +++ b/screens/strategy-detail/comment-card.tsx @@ -1,5 +1,5 @@ import { StyleSheet, Text, TouchableOpacity, View } from 'react-native'; -import React from 'react'; +import React, { useState } from 'react'; import { FlashIcon } from '@/assets/icons'; import { adjustFontSizeForIOS, formatTimestamp } from '@/utils/helpers'; import { LQDImage } from '@/components'; diff --git a/screens/strategy-detail/comment-input.tsx b/screens/strategy-detail/comment-input.tsx index 14ac89b..e04470d 100644 --- a/screens/strategy-detail/comment-input.tsx +++ b/screens/strategy-detail/comment-input.tsx @@ -21,7 +21,7 @@ const CommentInput = ({ strategyId }: { strategyId: string }) => { { onSuccess: () => { setComment(''); - flatListRef.current?.scrollToEnd({ animated: true }); + flatListRef.current?.scrollToOffset({ offset: 0, animated: true }); }, } ); diff --git a/services/discover/apis.ts b/services/discover/apis.ts new file mode 100644 index 0000000..06f2150 --- /dev/null +++ b/services/discover/apis.ts @@ -0,0 +1,26 @@ +import { strategyAxiosInstance } from '@/init/axios'; + +const searchFeed = async ( + query?: string, + pageParam?: string, + minTvl?: string, + maxTvl?: string, + assets?: string[], + protocols?: string[] +) => { + const params = new URLSearchParams(); + if (query) params.append('q', query); + if (pageParam) params.append('cursor', pageParam); + if (minTvl) params.append('minTvl', minTvl); + if (maxTvl) params.append('maxTvl', maxTvl); + if (assets) assets.forEach((asset) => params.append('assets[]', asset)); + if (protocols) protocols.forEach((protocol) => params.append('protocols[]', protocol)); + + return ( + await strategyAxiosInstance.get(`search`, { + params: params, + }) + ).data; +}; + +export { searchFeed }; diff --git a/services/discover/queries.ts b/services/discover/queries.ts new file mode 100644 index 0000000..af14b61 --- /dev/null +++ b/services/discover/queries.ts @@ -0,0 +1,13 @@ +import { QueryKey, useInfiniteQuery, useQuery, useMutation, useQueryClient } from '@tanstack/react-query'; +import { searchFeed } from './apis'; + +const useSearchFeeds = (query?: string, pageParam?: string, minTvl?: string, maxTvl?: string, assets?: string[], protocols?: string[]) => { + return useInfiniteQuery({ + queryKey: ['searchFeeds', query, pageParam, minTvl, maxTvl, assets, protocols], + queryFn: () => searchFeed(query, pageParam, minTvl, maxTvl, assets, protocols), + getNextPageParam: (lastPage) => (lastPage.pagination.hasMore ? lastPage.pagination.nextCursor : undefined), + initialPageParam: '', + }); +}; + +export { useSearchFeeds }; diff --git a/store/account/types.ts b/store/account/types.ts index 2341536..42a788c 100644 --- a/store/account/types.ts +++ b/store/account/types.ts @@ -10,8 +10,8 @@ export type TokenResponse = { }; export type TokenItem = { - formattedBalance: string; - usdBalance: string; + formattedBalance?: string; + usdBalance?: string; address: Address; symbol: string; decimals: number; From eee6fbea59a6b6d74fe8d60d0b3f0c935bf8da30 Mon Sep 17 00:00:00 2001 From: meisterjustice Date: Thu, 19 Dec 2024 08:49:12 +0100 Subject: [PATCH 92/95] add swap icon --- components/feed-card/feed-step.tsx | 5 +++-- services/feeds/types.ts | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/components/feed-card/feed-step.tsx b/components/feed-card/feed-step.tsx index 267ebb4..1b4c676 100644 --- a/components/feed-card/feed-step.tsx +++ b/components/feed-card/feed-step.tsx @@ -2,7 +2,7 @@ import React, { useState } from 'react'; import { View, Text, StyleSheet } from 'react-native'; import FastImage from 'react-native-fast-image'; import Animated from 'react-native-reanimated'; -import { AerodromeIcon, BorrowIcon, DepositIcon, MoonWellIcon, MorphoIcon, StakeIcon, SupplyIcon } from '@/assets/icons'; +import { AerodromeIcon, BorrowIcon, CuratorIcon, DepositIcon, MoonWellIcon, MorphoIcon, StakeIcon, SupplyIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import LQDPoolImages from '../pool-images'; import LQDTokenImage from '../pool-images/token-image'; @@ -17,6 +17,7 @@ const icons = { aerodrome: , moonwell: , morpho: , + swap: , }; const FeedStep = ({ step, isLast }: { step: StrategyStep; isLast: boolean }) => { @@ -85,7 +86,6 @@ const styles = StyleSheet.create({ connectorWrap: { alignItems: 'center', width: 32, - paddingTop: 6, }, iconContainer: { @@ -108,6 +108,7 @@ const styles = StyleSheet.create({ alignItems: 'center', flexWrap: 'wrap', gap: 4, + paddingTop: 2, }, variantText: { diff --git a/services/feeds/types.ts b/services/feeds/types.ts index 8cece65..4b90503 100644 --- a/services/feeds/types.ts +++ b/services/feeds/types.ts @@ -43,7 +43,7 @@ type StrategyStep = { id: string; stepIndex: number; protocolAddress: `0x${string}`; - actionType: 'supply' | 'borrow' | 'stake' | 'deposit'; + actionType: 'supply' | 'borrow' | 'stake' | 'deposit' | 'swap'; assetInToken: { address: `0x${string}`; symbol: string; From 7645be06ca5eba47d306bea1f8b863eaf12c3917 Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Fri, 20 Dec 2024 13:13:54 +0100 Subject: [PATCH 93/95] feature: connect disconnect wallet modal (#111) * feature: connect disconnect wallet modal * fix: add money / coming soon ui update * chore: crypto wallet withdraw screen * chore: code clean up * chore: code clean up --- app/(tabs)/_layout.tsx | 14 --- app/_layout.tsx | 8 -- app/deposit/_layout.tsx | 1 + app/deposit/crypto-wallet.tsx | 5 + app/withdraw/_layout.tsx | 32 +++++ app/withdraw/recepient-address.tsx | 7 ++ app/{ => withdraw}/withdraw.tsx | 0 assets/icons/caution-icon.tsx | 11 ++ assets/icons/coin-base-icon.tsx | 8 +- assets/icons/disconnect-wallet-icon.tsx | 54 ++++++++ assets/icons/face-id-icon.tsx | 49 ++++++++ assets/icons/index.ts | 8 ++ assets/icons/soon-icon.tsx | 17 +++ components/action-card/index.tsx | 22 ++-- components/action-card/types.ts | 5 +- components/bottom-sheet/index.tsx | 20 ++- components/image/index.tsx | 4 +- components/image/types.ts | 1 + components/input/index.tsx | 9 +- components/input/types.ts | 3 +- components/scrollview/index.tsx | 12 +- components/scrollview/types.ts | 4 +- components/strategy-card/index.tsx | 6 +- constants/icons.tsx | 2 + screens/deposit/crypto/connect-wallet.tsx | 101 +++++++++++++++ screens/deposit/crypto/crypto-wallet.tsx | 142 ++++++++++++++++++++++ screens/deposit/crypto/index.tsx | 16 ++- screens/deposit/dummy.ts | 18 +++ screens/deposit/styles.ts | 15 +++ screens/deposit/types.ts | 18 ++- screens/discover/dummy.ts | 11 +- screens/index.ts | 4 + screens/portfolio/index.tsx | 31 ++--- screens/portfolio/types.ts | 1 + screens/strategy-detail/comment-input.tsx | 1 - screens/withdraw/index.tsx | 8 +- screens/withdraw/recepient-address.tsx | 94 ++++++++++++++ 37 files changed, 683 insertions(+), 79 deletions(-) create mode 100644 app/deposit/crypto-wallet.tsx create mode 100644 app/withdraw/_layout.tsx create mode 100644 app/withdraw/recepient-address.tsx rename app/{ => withdraw}/withdraw.tsx (100%) create mode 100644 assets/icons/caution-icon.tsx create mode 100644 assets/icons/disconnect-wallet-icon.tsx create mode 100644 assets/icons/face-id-icon.tsx create mode 100644 assets/icons/soon-icon.tsx create mode 100644 screens/deposit/crypto/connect-wallet.tsx create mode 100644 screens/deposit/crypto/crypto-wallet.tsx create mode 100644 screens/deposit/dummy.ts create mode 100644 screens/withdraw/recepient-address.tsx diff --git a/app/(tabs)/_layout.tsx b/app/(tabs)/_layout.tsx index ae5a6ba..393e40d 100644 --- a/app/(tabs)/_layout.tsx +++ b/app/(tabs)/_layout.tsx @@ -28,20 +28,6 @@ export default function TabLayout() { <> - - - {sortList.map((action, index) => ( - setSelectedAction(action.id)} - /> - ))} - - - } screenOptions={{ diff --git a/app/_layout.tsx b/app/_layout.tsx index f979201..9966779 100644 --- a/app/_layout.tsx +++ b/app/_layout.tsx @@ -48,14 +48,6 @@ function RootStack() { animation: 'slide_from_bottom', }} /> - , - headerTitle: 'Withdraw', - headerShown: true, - }} - /> { + ); }; diff --git a/app/deposit/crypto-wallet.tsx b/app/deposit/crypto-wallet.tsx new file mode 100644 index 0000000..870c7f4 --- /dev/null +++ b/app/deposit/crypto-wallet.tsx @@ -0,0 +1,5 @@ +import { CryptoWalletDeposit } from '@/screens'; + +const CryptoWalletDepositScreen = () => ; + +export default CryptoWalletDepositScreen; diff --git a/app/withdraw/_layout.tsx b/app/withdraw/_layout.tsx new file mode 100644 index 0000000..869d6b9 --- /dev/null +++ b/app/withdraw/_layout.tsx @@ -0,0 +1,32 @@ +import { Stack } from 'expo-router'; +import { LQDStackHeader } from '@/components'; + +const WithdrawStack = () => { + return ( + , + headerTitle: 'Withdraw', + }} + > + , + headerTitle: 'Withdraw', + headerShown: true, + }} + /> + , + headerTitle: 'Withdraw', + headerShown: true, + }} + /> + + ); +}; + +export default WithdrawStack; diff --git a/app/withdraw/recepient-address.tsx b/app/withdraw/recepient-address.tsx new file mode 100644 index 0000000..92acc56 --- /dev/null +++ b/app/withdraw/recepient-address.tsx @@ -0,0 +1,7 @@ +import { RecepientAddress } from '@/screens'; + +const RecepientAddressScreen = () => { + return ; +}; + +export default RecepientAddressScreen; diff --git a/app/withdraw.tsx b/app/withdraw/withdraw.tsx similarity index 100% rename from app/withdraw.tsx rename to app/withdraw/withdraw.tsx diff --git a/assets/icons/caution-icon.tsx b/assets/icons/caution-icon.tsx new file mode 100644 index 0000000..6b7d0f6 --- /dev/null +++ b/assets/icons/caution-icon.tsx @@ -0,0 +1,11 @@ +import Svg, { Path } from 'react-native-svg'; + +const CautionIcon = ({ fill = '#375DFB', height = 20, width = 20 }: IconProps) => ( + + + +); +export default CautionIcon; diff --git a/assets/icons/coin-base-icon.tsx b/assets/icons/coin-base-icon.tsx index 9a61fa2..4a6eb47 100644 --- a/assets/icons/coin-base-icon.tsx +++ b/assets/icons/coin-base-icon.tsx @@ -1,10 +1,10 @@ import Svg, { G, Path, Rect, Defs, ClipPath } from 'react-native-svg'; -const CoinbaseWalletIcon = ({ height = 18, width = 19, fill = '#0F172A' }: IconProps) => ( - - +const CoinbaseWalletIcon = ({ height = 30, width = 30, fill = '#1E293B' }: IconProps) => ( + + - + ( + + + + + + + + + + +); +export default DisconnectWalletIcon; diff --git a/assets/icons/face-id-icon.tsx b/assets/icons/face-id-icon.tsx new file mode 100644 index 0000000..511e686 --- /dev/null +++ b/assets/icons/face-id-icon.tsx @@ -0,0 +1,49 @@ +import Svg, { Path } from 'react-native-svg'; + +const FaceIDIcon = ({ fill = '#fff', height = 32, width = 32 }: IconProps) => ( + + + + + + + + + + + +); +export default FaceIDIcon; diff --git a/assets/icons/index.ts b/assets/icons/index.ts index 398f6aa..27e8807 100644 --- a/assets/icons/index.ts +++ b/assets/icons/index.ts @@ -89,9 +89,17 @@ import StatsDepositIcon from './stats-deposit-icon'; import RiskIcon from './risk-icon'; import CoinbaseWalletIcon from './coin-base-icon'; import DebitCardIcon from './debit-card-icon'; +import SoonIcon from './soon-icon'; +import DisconnectWalletIcon from './disconnect-wallet-icon'; +import CautionIcon from './caution-icon'; +import FaceIDIcon from './face-id-icon'; export { LampIcon, + FaceIDIcon, + CautionIcon, + SoonIcon, + DisconnectWalletIcon, DebitCardIcon, RiskIcon, CoinbaseWalletIcon, diff --git a/assets/icons/soon-icon.tsx b/assets/icons/soon-icon.tsx new file mode 100644 index 0000000..e805057 --- /dev/null +++ b/assets/icons/soon-icon.tsx @@ -0,0 +1,17 @@ +import Svg, { Path, Rect } from 'react-native-svg'; + +const SoonIcon = ({ fill = '#94A3B8', height = 24, width = 61 }: IconProps) => ( + + + + + +); + +export default SoonIcon; diff --git a/components/action-card/index.tsx b/components/action-card/index.tsx index 195cc35..9510221 100644 --- a/components/action-card/index.tsx +++ b/components/action-card/index.tsx @@ -1,21 +1,30 @@ import React from 'react'; import { StyleSheet, View, Text, TouchableOpacity } from 'react-native'; -import { FillCheckIcon } from '@/assets/icons'; +import { CoinbaseWalletIcon, DebitCardIcon, FillCheckIcon, SoonIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import { IActionCard } from './types'; import ICONS from '@/constants/icons'; -const LQDActionCard = ({ selected, onSelect, actions, variant }: IActionCard) => { +const LQDActionCard = ({ selected, onSelect, actions, variant, comingSoon }: IActionCard) => { const { title } = actions; + const colorType = variant === 'disconnect' ? '#AF1D38' : comingSoon ? '#94A3B8' : '#1E293B'; + + const icons = { + ...ICONS, + debitCard: , + coinBase: , + }; + return ( - + - {ICONS[variant]} - {title} + {icons[variant]} + {title} - {selected && } + {comingSoon && } + {!comingSoon && {selected && }} ); }; @@ -41,7 +50,6 @@ const styles = StyleSheet.create({ alignItems: 'flex-end', gap: 8, }, - title: { color: '#1E293B', fontSize: adjustFontSizeForIOS(16, 2), diff --git a/components/action-card/types.ts b/components/action-card/types.ts index 9a3041e..d653b50 100644 --- a/components/action-card/types.ts +++ b/components/action-card/types.ts @@ -1,8 +1,9 @@ -export type ActionIconVariant = 'deposit' | 'stake' | 'borrow' | 'supply' | 'sort' | 'debitCard' | 'crypto' | 'coinBase'; +export type ActionIconVariant = 'deposit' | 'stake' | 'borrow' | 'supply' | 'sort' | 'debitCard' | 'crypto' | 'coinBase' | 'disconnect'; export interface IActionCard { actions: any; navigationVariant?: 'primary' | 'secondary'; variant: ActionIconVariant; - selected: boolean | null; + comingSoon?: boolean; + selected?: boolean | null; onSelect?: () => void; } diff --git a/components/bottom-sheet/index.tsx b/components/bottom-sheet/index.tsx index 2a913d6..08d55ff 100644 --- a/components/bottom-sheet/index.tsx +++ b/components/bottom-sheet/index.tsx @@ -1,4 +1,4 @@ -import { View, Text, StyleSheet, TouchableOpacity, Dimensions, Pressable } from 'react-native'; +import { View, Text, StyleSheet, TouchableOpacity, Dimensions, Pressable, StyleProp, ViewStyle } from 'react-native'; import Modal from 'react-native-modal'; import { adjustFontSizeForIOS } from '@/utils/helpers'; @@ -12,22 +12,32 @@ interface ILQDBottomSheet { show: boolean; onClose: () => void; children?: React.ReactNode; + sizeMode?: 'cover' | 'contain'; } -const LQDBottomSheet = ({ title = '', variant = 'primary', show, onClose, children }: ILQDBottomSheet) => { +const LQDBottomSheet = ({ title = '', variant = 'primary', show, onClose, children, sizeMode = 'cover' }: ILQDBottomSheet) => { const bottomSheetMaxHeights = { primary: height * 0.6, secondary: height * 0.83, }; + const isCoverMode = sizeMode === 'cover'; + return ( - + @@ -44,6 +54,7 @@ const LQDBottomSheet = ({ title = '', variant = 'primary', show, onClose, childr }; const styles = StyleSheet.create({ + container: { padding: 0, margin: 20 }, overlay: { flex: 1, justifyContent: 'flex-end', @@ -55,7 +66,6 @@ const styles = StyleSheet.create({ bottom: 0, zIndex: 30, width: '100%', - paddingTop: 17, paddingHorizontal: 16, backgroundColor: '#fff', @@ -72,7 +82,7 @@ const styles = StyleSheet.create({ title: { color: '#0F172A', - fontSize: adjustFontSizeForIOS(17, 3), + fontSize: adjustFontSizeForIOS(15, 3), lineHeight: 23.2, fontWeight: '500', fontFamily: 'AeonikMedium', diff --git a/components/image/index.tsx b/components/image/index.tsx index 62ce57b..a0c5d6f 100644 --- a/components/image/index.tsx +++ b/components/image/index.tsx @@ -12,13 +12,13 @@ const LQDImage = ({ src, height = 40, width = 40, + borderRadius = Math.min(height, width) / 2, edit, action, onError, ...rest }: LQDImageProps) => { const [isError, setIsError] = useState(false); - const borderRadius = Math.min(height, width) / 2; const handleError = () => { setIsError(true); @@ -28,7 +28,7 @@ const LQDImage = ({ if (isError) { return ( diff --git a/components/image/types.ts b/components/image/types.ts index 73d482f..b8b559c 100644 --- a/components/image/types.ts +++ b/components/image/types.ts @@ -5,6 +5,7 @@ export interface LQDImageProps extends Omit { src?: string; height?: number; width?: number; + borderRadius?: number; edit?: boolean; onError?: () => void; action?: () => void; diff --git a/components/input/index.tsx b/components/input/index.tsx index f4c353e..be076b4 100644 --- a/components/input/index.tsx +++ b/components/input/index.tsx @@ -2,7 +2,7 @@ import React from 'react'; import { Controller, FieldValues } from 'react-hook-form'; import { TextInput, Text, View, StyleSheet, Pressable } from 'react-native'; -import { CloseIcon, SearchIcon } from '@/assets/icons'; +import { CloseIcon, SearchIcon, WalletIcon } from '@/assets/icons'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import { ILQDInput } from './types'; @@ -17,10 +17,12 @@ const LQDInput = ({ iconAction, isTextarea = false, numberOfLines = 4, + iconPosition = 'left', }: ILQDInput) => { const iconsMap = { search: , close: , + wallet: , primary: null, secondary: null, }; @@ -31,7 +33,7 @@ const LQDInput = ({ {label && {label}} - {icon} + {iconPosition === 'left' && {icon}} ({ /> )} /> + + {iconPosition === 'right' && {icon}} ); @@ -93,7 +97,6 @@ const styles = StyleSheet.create({ color: '#94A3B8', fontWeight: 400, fontFamily: 'Aeonik', - marginLeft: 10, }, textarea: { textAlignVertical: 'top', diff --git a/components/input/types.ts b/components/input/types.ts index 3308eab..130499b 100644 --- a/components/input/types.ts +++ b/components/input/types.ts @@ -9,7 +9,8 @@ interface ILQDInput { isTextarea?: boolean; numberOfLines?: number; placeholder?: string; - variant?: 'primary' | 'secondary' | 'search' | 'close'; + variant?: 'primary' | 'secondary' | 'search' | 'close' | 'wallet'; + iconPosition?: 'left' | 'right'; inputProps?: TextInputProps; iconAction?: () => void; } diff --git a/components/scrollview/index.tsx b/components/scrollview/index.tsx index 9e130cd..fd071ee 100644 --- a/components/scrollview/index.tsx +++ b/components/scrollview/index.tsx @@ -2,10 +2,17 @@ import React from 'react'; import { RefreshControl, ScrollView } from 'react-native'; import { ILQDScrollView } from './types'; -const LQDScrollView: React.FC = ({ children, onRefresh, refreshing, style, contentStyle }) => { +const LQDScrollView: React.FC = ({ children, onRefresh, refreshing = false, style, contentStyle }) => { + const Refresh = () => { + if (onRefresh) { + return ; + } + + return null; + }; + return ( } style={[style, { flex: 1 }]} showsVerticalScrollIndicator={false} contentContainerStyle={[ @@ -14,6 +21,7 @@ const LQDScrollView: React.FC = ({ children, onRefresh, refreshi }, contentStyle, ]} + refreshControl={} > {children} diff --git a/components/scrollview/types.ts b/components/scrollview/types.ts index 0837370..41b4432 100644 --- a/components/scrollview/types.ts +++ b/components/scrollview/types.ts @@ -2,8 +2,8 @@ import { StyleProp, ViewStyle } from 'react-native'; interface ILQDScrollView { children?: React.ReactNode; - refreshing: boolean; - onRefresh: () => void; + refreshing?: boolean; + onRefresh?: () => void; style?: StyleProp; contentStyle?: StyleProp; } diff --git a/components/strategy-card/index.tsx b/components/strategy-card/index.tsx index cc9bebd..9619c97 100644 --- a/components/strategy-card/index.tsx +++ b/components/strategy-card/index.tsx @@ -18,8 +18,8 @@ const LQDStrategyCard = (strategy: Strategy) => { }; const username = 'Meister'; - const tvl = metrics.tvl; - const apy = metrics.apy; + const tvl = metrics?.tvl; + const apy = metrics?.apy; return ( onPress(strategy.id)} style={styles.container}> @@ -33,7 +33,7 @@ const LQDStrategyCard = (strategy: Strategy) => { - {steps.length} action{steps.length > 1 ? 's' : ''}... + {steps?.length} action{steps?.length > 1 ? 's' : ''}... diff --git a/constants/icons.tsx b/constants/icons.tsx index de860c2..08e9792 100644 --- a/constants/icons.tsx +++ b/constants/icons.tsx @@ -9,6 +9,7 @@ import { MorphoIcon, StakeIcon, SupplyIcon, + DisconnectWalletIcon, } from '@/assets/icons'; const ICONS = { @@ -23,6 +24,7 @@ const ICONS = { debitCard: , crypto: , coinBase: , + disconnect: , }; export default ICONS; diff --git a/screens/deposit/crypto/connect-wallet.tsx b/screens/deposit/crypto/connect-wallet.tsx new file mode 100644 index 0000000..d474eac --- /dev/null +++ b/screens/deposit/crypto/connect-wallet.tsx @@ -0,0 +1,101 @@ +import { Pressable, StyleSheet, Text, View } from 'react-native'; +import { LQDBottomSheet, LQDImage, LQDScrollView, LQShrimeLoader } from '@/components'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { ConncetWalletProps } from '../types'; +import useSystemFunctions from '@/hooks/useSystemFunctions'; + +const ConncetWallet = ({ openCloseComment, showCommentSection, data }: ConncetWalletProps) => { + const { router } = useSystemFunctions(); + + const handleNavigate = () => { + router.push('/deposit/crypto-wallet'); + openCloseComment(); + }; + + return ( + + + + + {data.map((item, index) => ( + + {item.title} + {item.children.map((child) => ( + + + {child.title} + + ))} + + ))} + + + + + New to ethereum wallets? + + Learn More + + + + + ); +}; + +export default ConncetWallet; + +const styles = StyleSheet.create({ + bottomTitle: { + color: '#475569', + fontSize: adjustFontSizeForIOS(14, 2), + lineHeight: 18.48, + textAlign: 'left', + fontFamily: 'AeonikRegular', + }, + bottomSubTitle: { + color: '#4691FE', + fontSize: adjustFontSizeForIOS(14, 2), + lineHeight: 18.48, + textAlign: 'left', + fontWeight: '600', + fontFamily: 'AeonikBold', + }, + bottomWrapper: { + height: 60, + + flexDirection: 'row', + justifyContent: 'space-between', + alignItems: 'center', + borderTopWidth: 1, + borderTopColor: '#F1F5F9', + }, + + cardContainer: { + alignSelf: 'stretch', + flex: 1, + height: 320, + maxHeight: 450, + }, + itemContainer: { + gap: 10, + marginBottom: 10, + }, + itemTitle: { + color: '#64748B', + fontSize: adjustFontSizeForIOS(15, 2), + fontWeight: '600', + fontFamily: 'AeonikMedium', + }, + childContainer: { + flexDirection: 'row', + alignItems: 'center', + gap: 10, + marginTop: 10, + }, + childText: { + color: '#020617', + fontSize: adjustFontSizeForIOS(14, 2), + fontWeight: '400', + fontFamily: 'AeonikBold', + }, +}); diff --git a/screens/deposit/crypto/crypto-wallet.tsx b/screens/deposit/crypto/crypto-wallet.tsx new file mode 100644 index 0000000..abe06ab --- /dev/null +++ b/screens/deposit/crypto/crypto-wallet.tsx @@ -0,0 +1,142 @@ +import { useEffect, useState } from 'react'; +import { View, Text, TouchableOpacity, TextInput, Platform } from 'react-native'; + +import { LQDActionCard, LQDBottomSheet, LQDButton, LQDNumericKeyboard } from '@/components'; +import { formatAmount, formatWithThousandSeparator, removeCommasFromNumber } from '@/utils/helpers'; +import { CaretDownIcon, UserOctagonIcon } from '@/assets/icons'; +import styles from '../styles'; + +const getMaxWidth = (amount: string) => { + const baseWidth = 27; + const maxDigitsBeforeAuto = 4; + + if (!amount) return 106; + + const plainAmount = amount.replace(/,/g, ''); + const amountLength = plainAmount.length; + + if (amountLength > maxDigitsBeforeAuto) return undefined; + + const commaWidth = amountLength === 4 ? baseWidth / 3 : 0; + + const totalWidth = baseWidth * amountLength + commaWidth; + + return totalWidth; +}; + +const CryptoWalletDeposit = () => { + const [amount, setAmount] = useState(''); + const [showCursor, setShowCursor] = useState(true); + const [address, setAddress] = useState('0x8db6...aEA8'); + const [showBottomSheet, setShowBottomSheet] = useState(false); + + const walletBalance = 100; + + const disableButton = + !parseFloat(removeCommasFromNumber(amount)) || parseFloat(removeCommasFromNumber(amount)) > Number(walletBalance || 0)!; + + const balancePartitions = [ + { text: '$10', action: () => setAmount('10') }, + { text: '$50', action: () => setAmount('50') }, + { text: '$100', action: () => setAmount('100') }, + { text: 'Max', action: () => setAmount('500') }, + ]; + + const handleAmountChange = (key: string) => { + if (key === '⌫') { + return setAmount((prev) => formatWithThousandSeparator(prev.slice(0, -1))); + } + if (key === '.' && amount.includes('.')) { + return; + } + setAmount((prev) => formatWithThousandSeparator(prev + key)); + }; + + const onSubmit = () => { + const amountNumber = parseFloat(removeCommasFromNumber(amount)); + console.log('submit', { amount: amountNumber }); + }; + + useEffect(() => { + const cursorInterval = setInterval(() => { + setShowCursor((prev) => !prev); + }, 500); + return () => clearInterval(cursorInterval); + }, []); + + return ( + <> + + + + + + + {amount && ( + + $ + + )} + + {showCursor && } + + + + setShowBottomSheet(true)}> + + {address} + + + + Bal: {formatAmount(walletBalance).toLocaleString()} USDC + + + + {balancePartitions.map(({ text, action }) => ( + + {text} + + ))} + + + + + + Fees: + $5 + + + + + + + + + setShowBottomSheet(false)}> + + {}} /> + + + + ); +}; + +export default CryptoWalletDeposit; diff --git a/screens/deposit/crypto/index.tsx b/screens/deposit/crypto/index.tsx index b87bcb1..d6ad08d 100644 --- a/screens/deposit/crypto/index.tsx +++ b/screens/deposit/crypto/index.tsx @@ -1,5 +1,5 @@ import { useState } from 'react'; -import { View, Text, StyleSheet, Image, TouchableOpacity } from 'react-native'; +import { View, Text, StyleSheet, Image, TouchableOpacity, ScrollView, Pressable } from 'react-native'; import QRCode from 'react-native-qrcode-svg'; import useTruncateText from '@/hooks/useTruncateText'; @@ -9,16 +9,23 @@ import { CaretDownIcon, CoinsIcon, CopyIcon } from '@/assets/icons'; import PaymentMethodSelection from '../method-selection'; import sharedStyles from '../styles'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { LQDButton } from '@/components'; +import { LQDActionCard, LQDBottomSheet, LQDButton, LQDImage, LQDScrollView } from '@/components'; +import { popularList } from '../dummy'; +import ConncetWallet from './connect-wallet'; const CryptoDeposit = () => { const { smartAccountState } = useSystemFunctions(); const [showBottomSheet, setShowBottomSheet] = useState(false); + const [showConnectWalletSheet, setShowConnectWalletSheet] = useState(false); const { handleCopy, hasCopied } = useCopy(); const address = truncate(smartAccountState?.address || ''); const tokensImage = require('../../../assets/images/tokens.png'); + const handleOpenWallet = () => { + setShowConnectWalletSheet((prev) => !prev); + }; + return ( <> @@ -41,15 +48,18 @@ const CryptoDeposit = () => { + Deposit from external wallet Send USDC, ETH or any ERC20 token on Base - + + + setShowBottomSheet(false)} show={showBottomSheet} /> ); diff --git a/screens/deposit/dummy.ts b/screens/deposit/dummy.ts new file mode 100644 index 0000000..118c969 --- /dev/null +++ b/screens/deposit/dummy.ts @@ -0,0 +1,18 @@ +export const popularList = [ + { + title: 'Popular', + children: [ + { id: '1', title: 'Rainbow' }, + { id: '2', title: 'Coinbase wallet' }, + { id: '3', title: 'Meta Mask' }, + { id: '4', title: 'WalletConnect' }, + ], + }, + { + title: 'More', + children: [ + { id: '1', title: 'Agent' }, + { id: '2', title: 'Trsut Wallet' }, + ], + }, +]; diff --git a/screens/deposit/styles.ts b/screens/deposit/styles.ts index c242cd4..bd9134a 100644 --- a/screens/deposit/styles.ts +++ b/screens/deposit/styles.ts @@ -111,6 +111,16 @@ const styles = StyleSheet.create({ backgroundColor: '#F8FAFC', }, + fee: { + color: '#64748B', + fontWeight: '400', + fontFamily: 'AeonikRegular', + }, + + feeAmount: { + color: '#475569', + }, + balanceSelectorText: { color: '#334155', }, @@ -120,6 +130,11 @@ const styles = StyleSheet.create({ paddingVertical: 12, alignItems: 'stretch', }, + + feeWrapper: { + flexDirection: 'row', + gap: 10, + }, }); export default styles; diff --git a/screens/deposit/types.ts b/screens/deposit/types.ts index c270a14..6b7a076 100644 --- a/screens/deposit/types.ts +++ b/screens/deposit/types.ts @@ -11,4 +11,20 @@ interface IMethod { path: Href; } -export type { IPaymentMethodSelection, IMethod }; +interface Wallet { + id: string; + title: string; +} + +interface WalletCategory { + title: string; + children: Wallet[]; +} + +interface ConncetWalletProps { + openCloseComment: () => void; + showCommentSection: boolean; + data: WalletCategory[]; +} + +export type { IPaymentMethodSelection, IMethod, ConncetWalletProps }; diff --git a/screens/discover/dummy.ts b/screens/discover/dummy.ts index 48a2e1d..dede40f 100644 --- a/screens/discover/dummy.ts +++ b/screens/discover/dummy.ts @@ -21,18 +21,21 @@ export const actionList: IActionsListItem[] = [ export const addMoney: AddMoneyActionItem[] = [ { id: '1', - icon: 'debitCard', - title: 'Debit card', + icon: 'crypto', + title: 'Crypto', + comingSoon: false, }, { id: '2', - icon: 'crypto', - title: 'crypto', + icon: 'debitCard', + title: 'Debit card', + comingSoon: true, }, { id: '3', icon: 'coinBase', title: 'Coinbase Wallet', + comingSoon: true, }, ]; diff --git a/screens/index.ts b/screens/index.ts index c8e4804..36473ad 100644 --- a/screens/index.ts +++ b/screens/index.ts @@ -14,11 +14,13 @@ import EditProfile from './profile/edit-profile.tsx'; import Setup from './setup'; import CryptoDeposit from './deposit/crypto'; +import CryptoWalletDeposit from './deposit/crypto/crypto-wallet'; import DebitDeposit from './deposit/debit'; import LiquidityManagement from './liquidity-management'; import Withdraw from './withdraw'; +import RecepientAddress from './withdraw/recepient-address'; import PoolDetail from './pool-detail'; import AddLiquidty from './liquidity-actions/add'; @@ -38,8 +40,10 @@ export { Setup, LiquidityManagement, CryptoDeposit, + CryptoWalletDeposit, DebitDeposit, Withdraw, + RecepientAddress, PoolDetail, AddLiquidty, RemoveLiquidity, diff --git a/screens/portfolio/index.tsx b/screens/portfolio/index.tsx index b350b80..1b4f080 100644 --- a/screens/portfolio/index.tsx +++ b/screens/portfolio/index.tsx @@ -13,29 +13,29 @@ const Portfolio = () => { const openModal = () => { setShowModal((prev) => !prev); + setSelectedAction(''); }; const navigateToWithdrawal = () => { - router.push('/withdraw'); + router.push('/withdraw/withdraw'); }; const handleSelectAction = () => { openModal(); - if (selectedAction === '1') { - setSelectedAction(''); - router.push('/deposit/debit'); - } + setTimeout(() => { + if (selectedAction === '1') { + router.push('/deposit/crypto'); + } - if (selectedAction === '2') { - setSelectedAction(''); - router.push('/deposit/crypto'); - } + if (selectedAction === '2') { + router.push('/deposit/debit'); + } - if (selectedAction === '3') { - // handle coinbase - setSelectedAction(''); - } + if (selectedAction === '3') { + // handle coinbase + } + }, 200); }; return ( @@ -109,17 +109,18 @@ const Portfolio = () => { {addMoney.map((action, index) => ( setSelectedAction(action.id)} + onSelect={() => !action.comingSoon && setSelectedAction(action.id)} /> ))} - + diff --git a/screens/portfolio/types.ts b/screens/portfolio/types.ts index f089c09..a4c8065 100644 --- a/screens/portfolio/types.ts +++ b/screens/portfolio/types.ts @@ -7,5 +7,6 @@ interface IAssetItem { interface AddMoneyActionItem { title: string; id: string; + comingSoon: boolean; icon: 'debitCard' | 'crypto' | 'coinBase' | 'supply'; } diff --git a/screens/strategy-detail/comment-input.tsx b/screens/strategy-detail/comment-input.tsx index e04470d..22edf33 100644 --- a/screens/strategy-detail/comment-input.tsx +++ b/screens/strategy-detail/comment-input.tsx @@ -67,7 +67,6 @@ const styles = StyleSheet.create({ alignItems: 'center', backgroundColor: '#FFFFFF', paddingVertical: 8, - borderTopColor: '#EAEEF4', zIndex: 10, }, diff --git a/screens/withdraw/index.tsx b/screens/withdraw/index.tsx index e1cfe58..1747717 100644 --- a/screens/withdraw/index.tsx +++ b/screens/withdraw/index.tsx @@ -29,6 +29,7 @@ const getMaxWidth = (amount: string) => { const Withdraw = () => { const { accountState } = useSystemFunctions(); + const { router, dispatch } = useSystemFunctions(); const [amount, setAmount] = useState(''); const [asset, setAsset] = useState(); const [showCursor, setShowCursor] = useState(true); @@ -41,7 +42,8 @@ const Withdraw = () => { { text: '$500', action: () => setAmount('500') }, ]; - const disableButton = !parseFloat(removeCommasFromNumber(amount)) || parseFloat(removeCommasFromNumber(amount)) > Number(asset?.balance)!; + const disableButton = + !parseFloat(removeCommasFromNumber(amount)) || parseFloat(removeCommasFromNumber(amount)) > Number(asset?.balance || 0)!; const handleAmountChange = (key: string) => { if (key === '⌫') { @@ -56,6 +58,7 @@ const Withdraw = () => { const onSubmit = () => { const amountNumber = parseFloat(removeCommasFromNumber(amount)); console.log('submit', { amount: amountNumber }); + router.push('/withdraw/recepient-address'); }; useEffect(() => { @@ -84,13 +87,14 @@ const Withdraw = () => { - {amount && $} + {amount && $} { + const { control, watch, reset } = useForm(); + const searchValue = watch('search'); + + const onSubmit = () => {}; + return ( + + + + + + + Make sure the address supports USDC + + + + + {searchValue && ( + + + Authenticate Using Face ID + + )} + + + + ); +}; + +export default RecepientAddress; + +const styles = StyleSheet.create({ + container: { + backgroundColor: '#fff', + paddingVertical: 20, + paddingHorizontal: 16, + flex: 1, + }, + action: { + paddingHorizontal: 8, + paddingVertical: 12, + alignItems: 'stretch', + gap: 50, + }, + toastWrapper: { + height: 36, + borderRadius: 8, + backgroundColor: '#EBF1FF', + flexDirection: 'row', + paddingHorizontal: 10, + alignItems: 'center', + gap: 8, + marginTop: 20, + }, + toastTitle: { + fontSize: adjustFontSizeForIOS(14, 1), + fontFamily: 'AeonikRegular', + fontWeight: '400', + }, + faceIDBtn: { + backgroundColor: '#007AFF', + height: 60, + justifyContent: 'center', + flexDirection: 'row', + alignItems: 'center', + gap: 10, + borderRadius: 12, + }, + faceIDText: { + fontSize: adjustFontSizeForIOS(17, 1), + lineHeight: 22, + fontFamily: 'AeonikMedium', + fontWeight: '400', + color: '#fff', + }, +}); From 9cc81696811a318acd047c38772b7918fb3260f8 Mon Sep 17 00:00:00 2001 From: Iyiola Osuagwu Date: Mon, 23 Dec 2024 11:38:19 +0100 Subject: [PATCH 94/95] Invest / Withdraw From Strategy (#112) * Invest / Withdraw From Strategy * chore: deposit modal * chore: invest modal * chore: withdraw modal * fix: slider amount calculation * fix: code clean up --- assets/images/Dot.png | Bin 0 -> 2051 bytes assets/images/slider-3.png | Bin 0 -> 8739 bytes components/bottom-sheet/index.tsx | 2 +- components/feed-card/index.tsx | 6 +- components/feed-card/types.ts | 1 + screens/deposit/crypto/index.tsx | 2 +- screens/discover/index.tsx | 9 +- screens/home/deposit-toast.tsx | 103 +++++++++ screens/home/index.tsx | 28 ++- screens/home/types.ts | 7 + .../remove/percentage-setter.tsx | 161 ++++--------- screens/liquidity-actions/remove/types.ts | 1 + screens/strategy-detail/index.tsx | 28 ++- screens/strategy-detail/invest.tsx | 174 ++++++++++++++ screens/strategy-detail/percentage.tsx | 216 ++++++++++++++++++ screens/strategy-detail/types.ts | 6 + screens/strategy-detail/withdraw.tsx | 176 ++++++++++++++ screens/withdraw/recepient-address.tsx | 5 + 18 files changed, 797 insertions(+), 128 deletions(-) create mode 100644 assets/images/Dot.png create mode 100644 assets/images/slider-3.png create mode 100644 screens/home/deposit-toast.tsx create mode 100644 screens/strategy-detail/invest.tsx create mode 100644 screens/strategy-detail/percentage.tsx create mode 100644 screens/strategy-detail/withdraw.tsx diff --git a/assets/images/Dot.png b/assets/images/Dot.png new file mode 100644 index 0000000000000000000000000000000000000000..9531331cf5285c0a87522d3bf6381fb52086a3a4 GIT binary patch literal 2051 zcmV+e2>kbnP)@~0drDELIAGL9O(c600d`2O+f$vv5yPXjb4wAy@{%GE6>SI*9<5L?#sqCed@L{|go-4XXao~Xb>V`z;3Xt3Ok7}HNMuDM zSQb7L4WO+;h!IL`8=6>S!$WJJl-^L-P zqtVic8Bib`uwA=$nccg0X9a>WzKVHPGj~TxNnE68R9nK=qf*8)0|~Ez0pBCl!muWJ zdv}uDxpU_L(TN7mojYfa964fnT)%#Nd&vVlzQuP!FeX$Cn#7N83j^9Y#bi(dFc=Zw z0JVPodVqJ+FonPSt+i;;A}eEM`4|(j=a3wJSUw=2QAY_7#_tHJ13c;;bOas@d8Q&# z449ac56drdYCz0JGa(E}8^G&10u~Ht;ALfHrm(QkN*hcFbD6LocU0YIa#v$NCiw?#jg5JnYnzl|N18D(QYjyj`F zCr*$UKmt67ft!MY0t>);9NL6IVU{)Iz{UJxfKOy&B&P<{LQd*lwFyzbNZ*4pD=W`V zolvx76OSq3)#orAMiA7KP1pBywf@}oWyN`ng*Jo%VM4Sjr9SCK%mDs)3G_1?s9z)x zsY2p2HvY2R=H*rLtf_;nmo%yLM^_I$zDF9oW<&!~sZEKp_`#qI#Pb?)F72?8K7bdL zeKKYI>}ALKOe>L9C*4IfYjRlr*+$fLvk!(1Y<*8#{p#+co0DKbd_rr1ls{z4qsHZ8 z%*Kx)4;-b~`S{sOe_(ctv3yY>(Hl?l#{+$fVAqDfh(0`K>GE}lq~z|xlH(`p>Pn$K ztOq6_B+&w!kL*v`PNR%*z;hgBV}9WQ<6y_rH=NqeTNGpTss)Djy<}+d{aB;#hd#6& zc*W4u3&L;AS^dGS9q=0wiVk`vqzKPosYXTyCNb^+R(bD5LrZ3}M7VBPET7j|`l=zEziK|w>rWU8z#M-!ULxA@jZ*^!soroXb4Mg1W1bzMkxY$3N52ingr6=VREtpA^PVr1CBEto|#F+bD_3!p^D3?KNSXe=in4I=DBHsGQ{NCVP`ghbVD93_fT zJ~TZ99{z}aY#zAgw~ZKMTz@KUsqmhtYmOYHDyBpd&y|%9>cmi;o-Fx`l-N|Z>bhw? zun=U%H7Nv+aWJL3^TS3682wweY)L>ktbstxM<;gb=GTwLWda|oJ9qQPo6)(=v>>=Z zi3GKEhUUXnH|JSCX})OazwXMSa16j>p^NPzLHk?UkAVhQ)2?1!T^-0=xqoDe0|PW5 zYQrR7ci=@T5;a54QuSD}o9(>mAM1U<(Avd@R?oN2&hcBjglOY3ilpDvYN@L?bYhcE zH9#26&CO9nMnHoJD=dRX;zR}w$mK+ms^~bwElbX7m{9NEO$T{&65oe@Wq>>`l?vEY z()99DLm#grs#<4h%|dQx^l3Jsz{1IqWVwr1vbXo@PZEtK{njx@9jh5lD3b=P#~npM zedB_fMN-|THYXFottyriUA)GD>STDbK+-|+E zjsz#!XeJZNl}_t))~M^EJMN(RqM{kxbT>vykf~6 zCXOe1a2ji=m#DofEIkqjK0n#=%-kFMt~WL|Iv@60g&7&`z}diqat1O5yk9hiy&{!H zK$~)5Z*uyXjVs9B+RGwOVrX}-VW}Is)Sb5`M40jKEf|rT3W2so0^&kfc2P6 zw(s|_`uT=(Xd#ygS$&LxV4v8~H@f3*+qP{10O2@YHDhN^73-0>8)G0x^!8jF7_@A4D}^K(~w@~R8}YpMuAPFD4=|-a4!}} z%-Cm)Bxzi?`jnA0#S3ZJ&x#R{;ZUYe`b?h`5N7r6LkT`%wX8WQ*slYS!4RwwnW zPX4()KGu%%d405uP#n0t`77Z4KGE3Fy habq+_V>CvN{sm+t(+Jb*RmK1S002ovPDHLkV1hA2%j^IE literal 0 HcmV?d00001 diff --git a/assets/images/slider-3.png b/assets/images/slider-3.png new file mode 100644 index 0000000000000000000000000000000000000000..6a2bcafd93a6eb8a07f47e6726644a0143767329 GIT binary patch literal 8739 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 { const bottomSheetMaxHeights = { - primary: height * 0.6, + primary: height, secondary: height * 0.83, }; diff --git a/components/feed-card/index.tsx b/components/feed-card/index.tsx index 45da69c..cf06483 100644 --- a/components/feed-card/index.tsx +++ b/components/feed-card/index.tsx @@ -11,7 +11,7 @@ import LQDImage from '../image'; const maxDescriptionLength = 40; -const LQDFeedCard = ({ feed, isDetailPage, handleCommentPress }: FeedCard) => { +const LQDFeedCard = ({ feed, isDetailPage, handleCommentPress, handleInvestPress }: FeedCard) => { const { router } = useSystemFunctions(); const { steps, curator, createdAt, name, description, metrics, userInteraction, id } = feed; @@ -27,10 +27,6 @@ const LQDFeedCard = ({ feed, isDetailPage, handleCommentPress }: FeedCard) => { setIsExpanded(!isExpanded); }; - const handleInvestPress = () => { - console.log('Invest'); - }; - const handleRepostPress = () => { console.log('Repost'); }; diff --git a/components/feed-card/types.ts b/components/feed-card/types.ts index f6f3cee..cc6b258 100644 --- a/components/feed-card/types.ts +++ b/components/feed-card/types.ts @@ -2,6 +2,7 @@ interface FeedCard { feed: Strategy; onNavigate?: () => void; handleCommentPress?: () => void; + handleInvestPress?: () => void; isDetailPage?: boolean; } diff --git a/screens/deposit/crypto/index.tsx b/screens/deposit/crypto/index.tsx index d6ad08d..1ff96c8 100644 --- a/screens/deposit/crypto/index.tsx +++ b/screens/deposit/crypto/index.tsx @@ -9,7 +9,7 @@ import { CaretDownIcon, CoinsIcon, CopyIcon } from '@/assets/icons'; import PaymentMethodSelection from '../method-selection'; import sharedStyles from '../styles'; import useSystemFunctions from '@/hooks/useSystemFunctions'; -import { LQDActionCard, LQDBottomSheet, LQDButton, LQDImage, LQDScrollView } from '@/components'; +import { LQDButton } from '@/components'; import { popularList } from '../dummy'; import ConncetWallet from './connect-wallet'; diff --git a/screens/discover/index.tsx b/screens/discover/index.tsx index 81f53a1..fc70eeb 100644 --- a/screens/discover/index.tsx +++ b/screens/discover/index.tsx @@ -71,12 +71,14 @@ const styles = StyleSheet.create({ backgroundColor: '#FFF', paddingTop: 20, }, + strategyContainerStyle: { gap: 20, paddingBottom: 120, paddingHorizontal: 12, paddingTop: 15, }, + noStrategiesText: { fontSize: 16, fontWeight: '500', @@ -84,5 +86,10 @@ const styles = StyleSheet.create({ fontFamily: 'AeonikMedium', marginTop: 50, }, - topGainerLoaderOne: { height: 45, width: 45, borderRadius: 100 }, + + topGainerLoaderOne: { + height: 45, + width: 45, + borderRadius: 100, + }, }); diff --git a/screens/home/deposit-toast.tsx b/screens/home/deposit-toast.tsx new file mode 100644 index 0000000..2af5e2f --- /dev/null +++ b/screens/home/deposit-toast.tsx @@ -0,0 +1,103 @@ +import { View, Text, Image, StyleSheet, Pressable } from 'react-native'; +import React from 'react'; +import { adjustFontSizeForIOS } from '@/utils/helpers'; +import { CloseIcon } from '@/assets/icons'; +const slider3 = require('../../assets/images/slider-3.png'); + +const DepositToast = ({ title, subTitle, onPress, onClose }: DepositToast) => { + return ( + + + {title} + {subTitle} + + Deposit + + + + + + + + + + ); +}; + +export default DepositToast; + +const styles = StyleSheet.create({ + slideContainer: { + width: 'auto', + justifyContent: 'center', + paddingHorizontal: 20, + position: 'relative', + borderWidth: 1, + borderRadius: 12, + overflow: 'hidden', + gap: 20, + paddingVertical: 16, + backgroundColor: '#EFFAF6', + borderColor: '#CBF5E5', + }, + + textContainer: { + width: '65%', + gap: 6, + }, + + image: { + position: 'absolute', + right: -10, + height: 50, + width: 130, + zIndex: 0, + bottom: 0, + }, + + btn: { + width: 80, + height: 26, + backgroundColor: '#156146', + borderRadius: 10, + alignItems: 'center', + justifyContent: 'center', + marginTop: 15, + }, + + btnText: { + color: '#fff', + fontSize: adjustFontSizeForIOS(13, 1), + lineHeight: 17.92, + fontWeight: '500', + fontFamily: 'AeonikMedium', + }, + + title: { + color: '#156146', + fontSize: adjustFontSizeForIOS(16, 1), + lineHeight: 17.92, + fontWeight: '700', + fontFamily: 'QuantaGroteskProBold', + }, + + subTitle: { + color: '#156146', + fontSize: adjustFontSizeForIOS(12, 1), + lineHeight: 17.64, + fontWeight: '400', + fontFamily: 'AeonikRegular', + }, + + contentContainerStyle: { + overflow: 'hidden', + gap: 20, + paddingHorizontal: 17, + }, + + closeIcon: { + position: 'absolute', + top: 10, + right: 10, + }, +}); diff --git a/screens/home/index.tsx b/screens/home/index.tsx index ccf3135..9161036 100644 --- a/screens/home/index.tsx +++ b/screens/home/index.tsx @@ -1,5 +1,4 @@ -import { StyleSheet, Platform, StatusBar as RNStatusBar, Pressable, FlatList } from 'react-native'; - +import { StyleSheet, Platform, StatusBar as RNStatusBar, Pressable, FlatList, View } from 'react-native'; import useSystemFunctions from '@/hooks/useSystemFunctions'; import { adjustFontSizeForIOS } from '@/utils/helpers'; import { LQDFeedCard } from '@/components'; @@ -7,10 +6,13 @@ import { PlusIcon } from '@/assets/icons'; import Loader from './loader'; import { useFeeds } from '@/services/feeds/queries'; import DefaultFooterLoader from '@/components/flatlist/footer-loader'; +import DepositToast from './deposit-toast'; +import { useState } from 'react'; const Home = () => { const { router } = useSystemFunctions(); const { data, fetchNextPage, hasNextPage, isFetchingNextPage, isLoading, isFetching, isError, error, refetch } = useFeeds(); + const [showDepositToast, setShowDepositToast] = useState(true); const feeds = data?.pages.flatMap((page) => page.data) || []; @@ -24,6 +26,21 @@ const Home = () => { return ; } + const renderToast = () => ( + <> + {showDepositToast && ( + + setShowDepositToast(false)} + onPress={() => router.push('/deposit/crypto')} + title="Make a new deposit" + subTitle="add funds to your liquid wallet and start earning" + /> + + )} + + ); + return ( <> router.navigate('/(strategy)/create-strategy')} style={styles.addIcon}> @@ -42,6 +59,7 @@ const Home = () => { onRefresh={refetch} onEndReached={loadMoreFeeds} ListFooterComponent={isFetchingNextPage ? : null} + ListHeaderComponent={renderToast()} /> ); @@ -56,6 +74,12 @@ const styles = StyleSheet.create({ backgroundColor: '#fff', }, + toastWrapper: { + paddingHorizontal: 16, + backgroundColor: '#fff', + paddingTop: 20, + }, + contentContainer: { flexGrow: 1, justifyContent: 'space-between', diff --git a/screens/home/types.ts b/screens/home/types.ts index e361813..ad959d6 100644 --- a/screens/home/types.ts +++ b/screens/home/types.ts @@ -12,3 +12,10 @@ interface IHeader { actionLeft?: () => void; actionRight?: () => void; } + +interface DepositToast { + title: string; + subTitle: string; + onPress: () => void; + onClose: () => void; +} diff --git a/screens/liquidity-actions/remove/percentage-setter.tsx b/screens/liquidity-actions/remove/percentage-setter.tsx index f41e5bc..a74c236 100644 --- a/screens/liquidity-actions/remove/percentage-setter.tsx +++ b/screens/liquidity-actions/remove/percentage-setter.tsx @@ -1,108 +1,52 @@ -import React, { useState, useEffect, useRef } from 'react'; -import { View, Text, StyleSheet, TouchableOpacity, PanResponder, Animated } from 'react-native'; -import { adjustFontSizeForIOS } from '@/utils/helpers'; - -interface IPercentageSetter { - setPercentage: (value: number) => void; -} +import React, { useState, useEffect } from 'react'; +import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; +import Slider from '@react-native-community/slider'; const PercentageSetter = ({ setPercentage }: IPercentageSetter) => { - const [percentage, setInternalPercentage] = useState(10); - const [label, setInternalLabel] = useState('$10k'); - const [sliderWidth, setSliderWidth] = useState(1); - const [startValue, setStartValue] = useState(0); + const [percentage, setInternalPercentage] = useState(25); const percentages = [ - { value: 50000, label: '$50k' }, - { value: 1000000, label: '$1m' }, - { value: 5000000, label: '$5m' }, - { value: 10000000, label: '$10m' }, - { value: 100000000, label: '$100m' }, + { value: 10, label: '10%' }, + { value: 25, label: '25%' }, + { value: 50, label: '50%' }, + { value: 75, label: '75%' }, + { value: 100, label: 'MAX' }, ]; - const pan = useRef(new Animated.Value(0)).current; - - const calculatePercentageFromValue = (value: number) => { - const index = percentages.findIndex((p) => p.value === value); - if (index === -1) return 0; - return (index / (percentages.length - 1)) * 100; - }; - - const calculateValueFromPercentage = (percent: number) => { - const index = Math.round((percent / 100) * (percentages.length - 1)); - return percentages[Math.min(Math.max(0, index), percentages.length - 1)].value; - }; - - const formatLabel = (value: number) => { - if (value < 1000000) { - return `$${Math.round(value / 1000)}k`; - } - return `$${(value / 1000000).toFixed(1)}m`; - }; - useEffect(() => { if (setPercentage) { setPercentage(percentage); } }, [percentage, setPercentage]); - const panResponder = PanResponder.create({ - onStartShouldSetPanResponder: () => true, - onMoveShouldSetPanResponder: () => true, - onPanResponderGrant: (_, gestureState) => { - pan.setOffset(pan.getValue()); - }, - onPanResponderMove: (_, gestureState) => { - const percentageMove = (gestureState.dx / sliderWidth) * 100; - const newPercentage = Math.max(0, Math.min(100, pan.getOffset() + percentageMove)); - - pan.setValue(newPercentage); - - const newValue = calculateValueFromPercentage(newPercentage); - setInternalPercentage(newValue); - setInternalLabel(formatLabel(newValue)); - }, - onPanResponderRelease: () => { - pan.flattenOffset(); - }, - }); - - const setPredefinedValues = (value: number, label: string) => { + const handleSliderChange = (value: number) => { + setInternalPercentage(Math.round(value)); + }; + + const setPredefinedPercentage = (value: number) => { setInternalPercentage(value); - setInternalLabel(label); - const newPercentage = calculatePercentageFromValue(value); - pan.setValue(newPercentage); }; return ( - {label} - setSliderWidth(event.nativeEvent.layout.width)} - > - {/* ignore this i need to fix this pan animation */} - {/* - - - */} - + {percentage}% + + + + @@ -110,7 +54,7 @@ const PercentageSetter = ({ setPercentage }: IPercentageSetter) => { setPredefinedValues(value, label)} + onPress={() => setPredefinedPercentage(value)} > {label} @@ -130,47 +74,31 @@ const styles = StyleSheet.create({ paddingHorizontal: 11, gap: 16, }, + top: { gap: 4, }, + label: { color: '#475569', - fontSize: adjustFontSizeForIOS(18, 2), - lineHeight: 24, + fontSize: 18, + lineHeight: 23.76, fontWeight: '500', fontFamily: 'AeonikMedium', }, + sliderContainer: { width: '100%', - height: 20, - justifyContent: 'center', - }, - track: { - width: '100%', - height: 4, - backgroundColor: '#CBD5E1', - borderRadius: 2, - position: 'relative', - }, - progress: { - height: '100%', - backgroundColor: '#4691FE', - borderRadius: 2, - }, - thumb: { - position: 'absolute', - width: 16, - height: 16, - borderRadius: 8, - backgroundColor: '#4691FE', - top: -6, - marginLeft: -8, }, + partitions: { + alignSelf: 'stretch', flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', + gap: 18, }, + partition: { paddingVertical: 6, paddingHorizontal: 10, @@ -182,14 +110,15 @@ const styles = StyleSheet.create({ borderWidth: 1, borderColor: '#E2E8F0', }, + activePartition: { backgroundColor: '#F1F5F9', - borderColor: '#4691FE', }, + partitionText: { color: '#334155', - fontSize: adjustFontSizeForIOS(13, 2), - lineHeight: 16, + fontSize: 13, + lineHeight: 16.12, fontWeight: '500', fontFamily: 'AeonikMedium', }, diff --git a/screens/liquidity-actions/remove/types.ts b/screens/liquidity-actions/remove/types.ts index 41f64e1..ea33c9c 100644 --- a/screens/liquidity-actions/remove/types.ts +++ b/screens/liquidity-actions/remove/types.ts @@ -1,3 +1,4 @@ interface IPercentageSetter { setPercentage?: (percentage: number) => void; + amount?: number; } diff --git a/screens/strategy-detail/index.tsx b/screens/strategy-detail/index.tsx index 0a0f2f1..b0c4d99 100644 --- a/screens/strategy-detail/index.tsx +++ b/screens/strategy-detail/index.tsx @@ -7,16 +7,28 @@ import { useFeed, useLikeMutation } from '@/services/feeds/queries'; import StatsCard from './stats-card'; import Comments from './comments'; import Loader from '../home/loader'; +import Invest from './invest'; +import Withdraw from './withdraw'; const StrategyDetail = ({ strategyId }: { strategyId: string }) => { const { data, isLoading, isFetching, isError, refetch } = useFeed(strategyId); const [showCommentSection, setShowCommentSection] = useState(false); + const [showInvestModal, setShowInvestModal] = useState(false); + const [showWithdrawModal, setShowWithdrawModal] = useState(false); const openCloseComment = () => { setShowCommentSection((prev) => !prev); }; + const openCloseInvest = () => { + setShowInvestModal((prev) => !prev); + }; + + const openCloseWithdraw = () => { + setShowWithdrawModal((prev) => !prev); + }; + const strategyInfo = [ { id: '1', @@ -58,7 +70,7 @@ const StrategyDetail = ({ strategyId }: { strategyId: string }) => { return ( - + Strategy Info @@ -81,10 +93,12 @@ const StrategyDetail = ({ strategyId }: { strategyId: string }) => { - + + + ); @@ -132,6 +146,7 @@ const styles = StyleSheet.create({ fontWeight: '400', lineHeight: 16.8, }, + comment: { color: '#64748B', fontSize: adjustFontSizeForIOS(11, 3), @@ -139,6 +154,7 @@ const styles = StyleSheet.create({ fontWeight: '400', lineHeight: 16.8, }, + time: { color: '#64748B', fontSize: adjustFontSizeForIOS(11, 3), @@ -146,12 +162,14 @@ const styles = StyleSheet.create({ fontWeight: '400', lineHeight: 15.84, }, + sectionTitle: { fontSize: 16, fontWeight: '600', color: '#1E293B', marginBottom: 12, }, + token: { fontSize: adjustFontSizeForIOS(14, 2), fontWeight: '500', @@ -159,6 +177,7 @@ const styles = StyleSheet.create({ lineHeight: 18.48, fontFamily: 'AeonikMedium', }, + invested: { fontSize: adjustFontSizeForIOS(14, 2), fontWeight: '500', @@ -166,6 +185,7 @@ const styles = StyleSheet.create({ lineHeight: 18.48, fontFamily: 'AeonikMedium', }, + investedAmount: { fontSize: adjustFontSizeForIOS(16, 2), fontWeight: '500', @@ -173,6 +193,7 @@ const styles = StyleSheet.create({ lineHeight: 19.84, fontFamily: 'AeonikMedium', }, + tokenContainer: { flexDirection: 'row', justifyContent: 'space-between', @@ -180,11 +201,13 @@ const styles = StyleSheet.create({ paddingVertical: 20, paddingHorizontal: 5, }, + tokenWrapper: { flexDirection: 'row', gap: 5, alignItems: 'center', }, + buttonWrapper: { marginTop: 20, }, @@ -192,6 +215,7 @@ const styles = StyleSheet.create({ textInput: { flex: 1, }, + focusedInput: { borderColor: '#4691FE', borderWidth: 1.2, diff --git a/screens/strategy-detail/invest.tsx b/screens/strategy-detail/invest.tsx new file mode 100644 index 0000000..8ac1e86 --- /dev/null +++ b/screens/strategy-detail/invest.tsx @@ -0,0 +1,174 @@ +import { StyleSheet, Text, View } from 'react-native'; +import React, { useEffect, useState } from 'react'; +import { LQDBottomSheet, LQDButton, LQDNumericKeyboard } from '@/components'; +import { adjustFontSizeForIOS, formatWithThousandSeparator, removeCommasFromNumber } from '@/utils/helpers'; +import { ArrowDownIcon, ArrowDropdownDownIcon, DiscoverUSDIcon, MoonWellIcon } from '@/assets/icons'; + +const Invest = ({ + openCloseComment, + showCommentSection, + strategyId, +}: { + openCloseComment: () => void; + showCommentSection: boolean; + strategyId: string; +}) => { + const [amount, setAmount] = useState(''); + const walletBalance = 50; + + const handleAmountChange = (key: string) => { + if (key === '⌫') { + return setAmount((prev) => formatWithThousandSeparator(prev.slice(0, -1))); + } + + if (key === '.' && amount.includes('.')) { + return; + } + setAmount((prev) => formatWithThousandSeparator(prev + key)); + }; + + const onSubmit = () => { + console.log('submit'); + }; + + const disableButton = + !parseFloat(removeCommasFromNumber(amount)) || parseFloat(removeCommasFromNumber(amount)) > Number(walletBalance || 0)!; + + return ( + + + + + + {amount || 0} + Max + + + + + USDC + + + + Available: + 3,600 USDC + + + + + + + Fees: + $5 + + + + + + + + ); +}; + +export default Invest; + +const styles = StyleSheet.create({ + action: { + paddingHorizontal: 8, + paddingVertical: 12, + alignItems: 'stretch', + marginBottom: 10, + }, + + token: { + color: '#0F172A', + fontWeight: '500', + fontFamily: 'AeonikMedium', + fontSize: adjustFontSizeForIOS(14, 2), + }, + + amount: { + color: '#0F172A', + fontWeight: '500', + fontFamily: 'AeonikMedium', + fontSize: adjustFontSizeForIOS(24, 2), + }, + + max: { + color: '#375DFB', + fontWeight: '400', + fontFamily: 'AeonikRegular', + fontSize: adjustFontSizeForIOS(12, 2), + }, + + availableText: { + color: '#64748B', + fontWeight: '400', + fontFamily: 'AeonikRegular', + fontSize: adjustFontSizeForIOS(12, 2), + }, + + amountWrapper: { flex: 1, gap: 5 }, + + balance: { + color: '#334155', + fontWeight: '400', + fontFamily: 'AeonikRegular', + fontSize: adjustFontSizeForIOS(13, 2), + }, + + fee: { + color: '#64748B', + fontWeight: '400', + fontFamily: 'AeonikRegular', + }, + + feeAmount: { + color: '#475569', + }, + + feeWrapper: { + flexDirection: 'row', + gap: 10, + marginTop: 20, + marginBottom: 40, + }, + + selectorText: { + fontSize: adjustFontSizeForIOS(13, 2), + lineHeight: 16.12, + fontWeight: '500', + textAlign: 'center', + fontFamily: 'AeonikMedium', + }, + + availableBalanceWrapper: { + flexDirection: 'row', + gap: 6, + }, + card: { + borderWidth: 1, + borderColor: '#EAEEF4', + borderRadius: 12, + flex: 1, + paddingVertical: 20, + width: '100%', + flexDirection: 'row', + paddingHorizontal: 16, + marginBottom: 30, + alignItems: 'center', + }, + + dropDown: { + flexDirection: 'row', + paddingHorizontal: 10, + paddingVertical: 5, + backgroundColor: '#F8FAFC', + width: 114, + justifyContent: 'space-between', + alignItems: 'center', + borderRadius: 400, + alignSelf: 'flex-end', + marginBottom: 8, + }, +}); diff --git a/screens/strategy-detail/percentage.tsx b/screens/strategy-detail/percentage.tsx new file mode 100644 index 0000000..acb830d --- /dev/null +++ b/screens/strategy-detail/percentage.tsx @@ -0,0 +1,216 @@ +import React, { useState, useEffect } from 'react'; +import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; +import Slider from '@react-native-community/slider'; +import { adjustFontSizeForIOS, formatWithThousandSeparator, formatAmount } from '@/utils/helpers'; +import { DiscoverUSDIcon } from '@/assets/icons'; + +const PercentageSetter = ({ setPercentage, amount = 0, balance = 0 }: Percentage) => { + const [percentage, setInternalPercentage] = useState(0); + const [adjustedAmount, setAdjustedAmount] = useState(0); + + const percentages = [ + { value: 10, label: '10%' }, + { value: 25, label: '25%' }, + { value: 50, label: '50%' }, + { value: 75, label: '75%' }, + { value: 100, label: 'MAX' }, + ]; + + const clampAmount = (inputAmount: number) => { + return Math.min(Math.max(inputAmount, 0), balance); + }; + + useEffect(() => { + if (amount && balance) { + const validAmount = clampAmount(amount); + + const calculatedPercentage = (validAmount / balance) * 100; + const clampedPercentage = Math.min(Math.max(calculatedPercentage, 0), 100); + + setInternalPercentage(Math.round(clampedPercentage)); + } + }, [amount, balance]); + + useEffect(() => { + if (balance) { + setAdjustedAmount((balance * percentage) / 100); + } + }, [percentage, balance]); + + const handleSliderChange = (value: number) => { + const clampedValue = Math.min(Math.max(value, 0), 100); + + setInternalPercentage(clampedValue); + }; + + const setPredefinedPercentage = (value: number) => { + const clampedValue = Math.min(Math.max(value, 0), 100); + + setInternalPercentage(clampedValue); + }; + + useEffect(() => { + const validAmount = clampAmount((balance * percentage) / 100); + setAdjustedAmount(validAmount); + + if (setPercentage) { + setPercentage(percentage); + } + }, [percentage, setPercentage, balance]); + + return ( + + + + {percentage}% + + + {formatAmount(adjustedAmount).toLocaleString()} + USDC + + + + + + + + + + + USDC + + + + Invested: + {formatWithThousandSeparator(String(balance))} + + + + + + {percentages.map(({ label, value }) => ( + setPredefinedPercentage(value)} + > + {label} + + ))} + + + ); +}; + +export default PercentageSetter; + +const styles = StyleSheet.create({ + container: { + width: '100%', + alignSelf: 'stretch', + paddingVertical: 16, + paddingHorizontal: 11, + gap: 16, + borderWidth: 1, + borderColor: '#EAEEF4', + borderRadius: 12, + }, + + top: { + gap: 4, + }, + + label: { + color: '#475569', + fontSize: 18, + lineHeight: 23.76, + fontWeight: '500', + fontFamily: 'AeonikMedium', + }, + + sliderContainer: { + width: '100%', + }, + + partitions: { + alignSelf: 'stretch', + flexDirection: 'row', + justifyContent: 'space-between', + alignItems: 'center', + gap: 18, + }, + + token: { + color: '#0F172A', + fontWeight: '500', + fontFamily: 'AeonikMedium', + fontSize: adjustFontSizeForIOS(14, 2), + }, + + amount: { + color: '#475569', + fontWeight: '400', + fontFamily: 'AeonikMedium', + fontSize: adjustFontSizeForIOS(15, 2), + }, + + investedText: { + color: '#64748B', + fontWeight: '400', + fontFamily: 'AeonikRegular', + fontSize: adjustFontSizeForIOS(12, 2), + }, + + investedAmount: { + color: '#334155', + fontWeight: '400', + fontFamily: 'AeonikRegular', + fontSize: adjustFontSizeForIOS(13, 2), + }, + + partition: { + paddingVertical: 6, + paddingHorizontal: 10, + maxHeight: 40, + alignItems: 'center', + justifyContent: 'center', + backgroundColor: '#F8FAFC', + borderRadius: 10, + borderWidth: 1, + borderColor: '#E2E8F0', + }, + + activePartition: { + backgroundColor: '#F1F5F9', + }, + + partitionText: { + color: '#334155', + fontSize: 13, + lineHeight: 16.12, + fontWeight: '500', + fontFamily: 'AeonikMedium', + }, + + percentageWrapper: { + flexDirection: 'row', + justifyContent: 'space-between', + }, + + itemsFlex: { + flexDirection: 'row', + alignItems: 'center', + gap: 5, + }, +}); diff --git a/screens/strategy-detail/types.ts b/screens/strategy-detail/types.ts index 7299a09..ecd661f 100644 --- a/screens/strategy-detail/types.ts +++ b/screens/strategy-detail/types.ts @@ -4,3 +4,9 @@ interface IStatCard { value: string; isActive: boolean; } + +interface Percentage { + setPercentage?: (percentage: number) => void; + amount: number; + balance: number; +} diff --git a/screens/strategy-detail/withdraw.tsx b/screens/strategy-detail/withdraw.tsx new file mode 100644 index 0000000..7df5904 --- /dev/null +++ b/screens/strategy-detail/withdraw.tsx @@ -0,0 +1,176 @@ +import { StyleSheet, Text, View } from 'react-native'; +import React, { useState } from 'react'; +import { LQDBottomSheet, LQDButton, LQDNumericKeyboard } from '@/components'; +import { adjustFontSizeForIOS, formatWithThousandSeparator, removeCommasFromNumber } from '@/utils/helpers'; +import { DiscoverUSDIcon } from '@/assets/icons'; +import PercentageSetter from './percentage'; + +const Withdraw = ({ + openCloseComment, + showCommentSection, + strategyId, +}: { + openCloseComment: () => void; + showCommentSection: boolean; + strategyId: string; +}) => { + const [amount, setAmount] = useState(''); + const [percentage, setPercentage] = useState(0); + const walletBalance = 1000; + + const handleAmountChange = (key: string) => { + if (key === '⌫') { + return setAmount((prev) => formatWithThousandSeparator(prev.slice(0, -1))); + } + + if (key === '.' && amount.includes('.')) { + return; + } + setAmount((prev) => formatWithThousandSeparator(prev + key)); + }; + + const onSubmit = () => { + console.log('submit'); + }; + + const disableButton = + !parseFloat(removeCommasFromNumber(amount)) || parseFloat(removeCommasFromNumber(amount)) > Number(walletBalance || 0)!; + + return ( + + + + + + + + + + + You’ll receive: + + + 3,600 USDC + + + + + Fees: + $5 + + + + + + + + + ); +}; + +export default Withdraw; + +const styles = StyleSheet.create({ + action: { + paddingHorizontal: 8, + paddingVertical: 12, + alignItems: 'stretch', + marginBottom: 10, + marginTop: 30, + }, + + token: { + color: '#0F172A', + fontWeight: '500', + fontFamily: 'AeonikMedium', + fontSize: adjustFontSizeForIOS(14, 2), + }, + + amount: { + color: '#0F172A', + fontWeight: '500', + fontFamily: 'AeonikMedium', + fontSize: adjustFontSizeForIOS(24, 2), + }, + + max: { + color: '#375DFB', + fontWeight: '400', + fontFamily: 'AeonikRegular', + fontSize: adjustFontSizeForIOS(12, 2), + }, + + availableText: { + color: '#64748B', + fontWeight: '400', + fontFamily: 'AeonikRegular', + fontSize: adjustFontSizeForIOS(12, 2), + }, + + amountWrapper: { flex: 1, gap: 5 }, + + fee: { + color: '#334155', + fontWeight: '400', + fontFamily: 'AeonikMedium', + fontSize: adjustFontSizeForIOS(13, 2), + }, + + feeAmount: { + color: '#475569', + }, + + balance: { + color: '#334155', + fontWeight: '400', + fontFamily: 'AeonikRegular', + fontSize: adjustFontSizeForIOS(13, 2), + }, + + itemsWrapper: { + flexDirection: 'row', + gap: 10, + marginTop: 10, + justifyContent: 'space-between', + width: '100%', + alignItems: 'center', + paddingHorizontal: 20, + }, + + selectorText: { + fontSize: adjustFontSizeForIOS(13, 2), + lineHeight: 16.12, + fontWeight: '500', + textAlign: 'center', + fontFamily: 'AeonikMedium', + }, + + investedAmountWrapper: { + flexDirection: 'row', + gap: 6, + }, + + percentage: { + marginBottom: 30, + width: '100%', + }, + + dropDown: { + flexDirection: 'row', + paddingHorizontal: 10, + paddingVertical: 5, + backgroundColor: '#F8FAFC', + width: 114, + justifyContent: 'space-between', + alignItems: 'center', + borderRadius: 400, + alignSelf: 'flex-end', + marginBottom: 8, + }, + + itemsFlex: { + flexDirection: 'row', + alignItems: 'center', + gap: 5, + }, +}); diff --git a/screens/withdraw/recepient-address.tsx b/screens/withdraw/recepient-address.tsx index 53f926a..c9b9ae4 100644 --- a/screens/withdraw/recepient-address.tsx +++ b/screens/withdraw/recepient-address.tsx @@ -54,12 +54,14 @@ const styles = StyleSheet.create({ paddingHorizontal: 16, flex: 1, }, + action: { paddingHorizontal: 8, paddingVertical: 12, alignItems: 'stretch', gap: 50, }, + toastWrapper: { height: 36, borderRadius: 8, @@ -70,11 +72,13 @@ const styles = StyleSheet.create({ gap: 8, marginTop: 20, }, + toastTitle: { fontSize: adjustFontSizeForIOS(14, 1), fontFamily: 'AeonikRegular', fontWeight: '400', }, + faceIDBtn: { backgroundColor: '#007AFF', height: 60, @@ -84,6 +88,7 @@ const styles = StyleSheet.create({ gap: 10, borderRadius: 12, }, + faceIDText: { fontSize: adjustFontSizeForIOS(17, 1), lineHeight: 22, From d862691c0c79f29a59c1ac8dde7ad11d5edc14aa Mon Sep 17 00:00:00 2001 From: Dmitry <98899785+mdqst@users.noreply.github.com> Date: Mon, 23 Dec 2024 13:41:01 +0300 Subject: [PATCH 95/95] docs: Clarified the Dependency Installation Command in Step 2 (#109) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a12fb01..3e5427e 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ This is an [Expo](https://expo.dev) project created with [`create-expo-app`](htt 2. Install dependencies: ```bash - yarn i + yarn install ``` 3. Setup your `.env` file based on `.env.example`. Make sure you have a valid Liquid API key.