From 75a1aacc91c507d0ecdac2e6f8c0df1c7f429153 Mon Sep 17 00:00:00 2001 From: AzizbekFayziyev Date: Mon, 2 Jun 2025 11:40:07 +0500 Subject: [PATCH] finish --- .env.example | 1 + .eslintignore | 1 + .eslintrc.json | 61 + .gitignore | 33 + .husky/pre-commit | 3 + .prettierignore | 8 + README.md | 38 + jsconfig.json | 8 + migrations/20240711121254-add-assets-info.cjs | 15 + ...0240824145239-update-order-money-types.cjs | 73 + ...3651-add-exchange-notifications-amount.cjs | 16 + ...0902095707-add-asset-whitelisted-field.cjs | 16 + .../20240920112346-update_notifications.cjs | 16 + .../20250125120630-add-isAdmin-to-user.cjs | 16 + .../20250125125455-add-featured-pairs.cjs | 16 + next-env.d.ts | 5 + next.config.js | 37 + package-lock.json | 14062 ++++++++++++++++ package.json | 75 + prettier.config.cjs | 12 + public/currencies/all.svg | 11 + public/currencies/btc.svg | 11 + public/currencies/cad.svg | 11 + public/currencies/ct.svg | 12 + public/currencies/eur.svg | 11 + public/currencies/firo.svg | 12 + public/currencies/jpy.svg | 11 + public/currencies/trade_tsds.svg | 12 + public/currencies/trade_wbtc.svg | 3 + public/currencies/trade_weth.svg | 15 + public/currencies/trade_zano.svg | 4 + public/currencies/tsds.svg | 12 + public/currencies/usd.svg | 11 + public/currencies/wbtc.svg | 11 + public/currencies/weth.svg | 16 + public/currencies/xmr.svg | 12 + public/currencies/zano.svg | 41 + public/favicon.ico | Bin 0 -> 197309 bytes public/social-banner.png | Bin 0 -> 122782 bytes public/ui/featured.svg | 16 + public/ui/whitelisted.svg | 11 + shared/utils.ts | 91 + src/assets/images/UI/arrow-outlined-right.svg | 11 + src/assets/images/UI/arrow.svg | 3 + src/assets/images/UI/arrow_blue_right.svg | 3 + src/assets/images/UI/arrow_right.svg | 3 + src/assets/images/UI/arrow_white.svg | 3 + src/assets/images/UI/burger_cross.svg | 4 + src/assets/images/UI/calendar_arrow.svg | 3 + src/assets/images/UI/callendar.svg | 4 + src/assets/images/UI/change_icon.svg | 3 + src/assets/images/UI/chart.svg | 3 + src/assets/images/UI/clock_icon.svg | 10 + src/assets/images/UI/connection.svg | 1 + src/assets/images/UI/cross_icon.svg | 6 + src/assets/images/UI/cross_icon_small.svg | 4 + src/assets/images/UI/delete.svg | 4 + src/assets/images/UI/deposit_sent.svg | 3 + src/assets/images/UI/dex_cross_icon.svg | 6 + src/assets/images/UI/down_icon.svg | 10 + src/assets/images/UI/dropdown_arrow.svg | 3 + src/assets/images/UI/dropdown_arrow_small.svg | 3 + src/assets/images/UI/edit.svg | 4 + src/assets/images/UI/error.svg | 4 + src/assets/images/UI/eye.svg | 4 + src/assets/images/UI/eye_close.svg | 4 + src/assets/images/UI/filter_icon.svg | 10 + src/assets/images/UI/funds_confirmed.svg | 3 + src/assets/images/UI/hamburger_icon.svg | 5 + src/assets/images/UI/history_icon.svg | 4 + src/assets/images/UI/info.svg | 3 + src/assets/images/UI/info_alert_icon.svg | 17 + src/assets/images/UI/info_blue.svg | 3 + src/assets/images/UI/info_outlined.svg | 12 + src/assets/images/UI/info_small.svg | 10 + src/assets/images/UI/lightning.png | Bin 0 -> 1853 bytes src/assets/images/UI/lock.svg | 3 + src/assets/images/UI/logo_block.svg | 51 + src/assets/images/UI/logo_block_dark.svg | 51 + src/assets/images/UI/logout.svg | 5 + src/assets/images/UI/message.svg | 3 + src/assets/images/UI/moon_icon.svg | 5 + src/assets/images/UI/no_chats.svg | 5 + src/assets/images/UI/no_offers.svg | 3 + src/assets/images/UI/offer_canceled.svg | 4 + src/assets/images/UI/offers.svg | 3 + src/assets/images/UI/pagination_arrow.svg | 3 + src/assets/images/UI/persons_icon.svg | 10 + .../images/UI/persons_selected_icon.svg | 10 + src/assets/images/UI/plus.svg | 3 + src/assets/images/UI/refrash_small_icon.svg | 10 + src/assets/images/UI/refresh_icon.svg | 3 + src/assets/images/UI/rocket.png | Bin 0 -> 3054 bytes src/assets/images/UI/search_icon.svg | 10 + src/assets/images/UI/search_large.svg | 10 + src/assets/images/UI/send.svg | 3 + src/assets/images/UI/social/discord.svg | 3 + src/assets/images/UI/social/telegram.svg | 3 + src/assets/images/UI/social/twitter.svg | 3 + src/assets/images/UI/star_icon.svg | 3 + src/assets/images/UI/star_selected_icon.svg | 3 + src/assets/images/UI/success.svg | 3 + src/assets/images/UI/sun_icon.svg | 18 + src/assets/images/UI/sun_small.svg | 18 + src/assets/images/UI/swap_icon.svg | 11 + src/assets/images/UI/swap_selected_icon.svg | 11 + src/assets/images/UI/tick_icon.svg | 3 + src/assets/images/UI/time_icon.svg | 7 + src/assets/images/UI/trade_arrow.svg | 4 + src/assets/images/UI/trade_icon.svg | 13 + src/assets/images/UI/trade_selected_icon.svg | 15 + src/assets/images/UI/tsds.svg | 12 + src/assets/images/UI/up_icon.svg | 10 + src/assets/images/UI/volume_icon.svg | 10 + src/assets/images/UI/walletsettings_icon.svg | 5 + src/assets/images/UI/wbtc.svg | 11 + src/assets/images/UI/weth.svg | 16 + src/assets/images/UI/zano.svg | 41 + .../images/UI/zano_trade_logo_block.svg | 51 + .../images/UI/zano_trade_logo_block_dark.svg | 51 + src/assets/images/UI/zano_white.svg | 4 + src/assets/images/temp/chart.svg | 279 + src/assets/images/temp/logo_block.svg | 43 + src/components/UI/Alert/Alert.module.scss | 73 + src/components/UI/Alert/Alert.tsx | 89 + src/components/UI/Button/Button.module.scss | 33 + src/components/UI/Button/Button.tsx | 19 + .../UI/ConnectButton/ConnectButton.tsx | 144 + .../ContentPreloader.module.scss | 17 + .../UI/ContentPreloader/ContentPreloader.tsx | 15 + .../UI/CurrencyDropdown/CurrencyDropdown.tsx | 114 + .../currencyDropdown.module.scss | 88 + .../CurvePairChart/CurvePairChart.module.scss | 18 + .../UI/CurvePairChart/CurvePairChart.tsx | 97 + .../DateRangeSelector.module.scss | 235 + .../DateRangeSelector/DateRangeSelector.tsx | 269 + .../UI/DepositTitle/DepositTitle.module.scss | 5 + .../UI/DepositTitle/DepositTitle.tsx | 14 + .../UI/Dropdown/Dropdown.module.scss | 145 + src/components/UI/Dropdown/Dropdown.tsx | 201 + .../UI/EmptyLink/EmptyLink.module.scss | 10 + src/components/UI/EmptyLink/EmptyLink.tsx | 17 + src/components/UI/Filters/Filters.module.scss | 327 + src/components/UI/Filters/Filters.tsx | 117 + .../HorizontalSelect.module.scss | 61 + .../UI/HorizontalSelect/HorizontalSelect.tsx | 42 + .../UI/IconDropdown/IconDropdown.module.scss | 58 + .../UI/IconDropdown/IconDropdown.tsx | 67 + src/components/UI/Input/Input.module.scss | 30 + src/components/UI/Input/Input.tsx | 33 + .../NotificationIndicator.module.scss | 14 + .../NotificationIndicator.tsx | 14 + .../UI/PairText/PairText.module.scss | 13 + src/components/UI/PairText/PairText.tsx | 19 + src/components/UI/Popup/Popup.module.scss | 41 + src/components/UI/Popup/Popup.tsx | 52 + .../UI/Preloader/Preloader.module.scss | 56 + src/components/UI/Preloader/Preloader.tsx | 26 + .../ProfileWidget/ProfileWidget.module.scss | 56 + .../UI/ProfileWidget/ProfileWidget.tsx | 41 + .../UI/RangeInput/RangeInput.module.scss | 91 + src/components/UI/RangeInput/RangeInput.tsx | 71 + src/components/UI/Switch/Switch.tsx | 10 + src/components/UI/Tooltip/Tooltip.module.scss | 22 + src/components/UI/Tooltip/Tooltip.tsx | 15 + .../default/BackButton/BackButton.module.scss | 4 + .../default/BackButton/BackButton.tsx | 18 + .../CreateOfferPopup.module.scss | 206 + .../CreateOfferPopup/CreateOfferPopup.tsx | 318 + .../DetailedOfferPopup.module.scss | 298 + .../DetailedOfferPopup/DetailedOfferPopup.tsx | 248 + .../default/Footer/Footer.module.scss | 41 + src/components/default/Footer/Footer.tsx | 73 + .../default/Header/Header.module.scss | 382 + src/components/default/Header/Header.tsx | 373 + .../default/Header/NavBar/NavBar.module.scss | 76 + .../default/Header/NavBar/NavBar.tsx | 80 + .../MainPageTitle/MainPageTitle.module.scss | 80 + .../default/MainPageTitle/MainPageTitle.tsx | 38 + src/components/default/Offers/Offers.js | 612 + .../default/Offers/Offers.module.scss | 137 + src/components/default/Offers/Row.module.scss | 634 + .../OrderNotification.module.scss | 124 + .../OrderNotification/OrderNotification.tsx | 79 + .../default/PageTitle/PageTitle.module.scss | 24 + .../default/PageTitle/PageTitle.tsx | 14 + src/hook/useTheme.ts | 25 + src/hook/useUpdateUser.ts | 24 + src/interfaces/common/AlertType.ts | 3 + src/interfaces/common/ApplyTip.ts | 18 + src/interfaces/common/CandleRow.ts | 11 + src/interfaces/common/ContextValue.ts | 87 + src/interfaces/common/CurrencyContentRow.ts | 8 + src/interfaces/common/CurrencyRow.ts | 24 + src/interfaces/common/CurrencyType.ts | 3 + src/interfaces/common/DateState.ts | 6 + src/interfaces/common/DepositState.ts | 3 + src/interfaces/common/DropdownRow.ts | 7 + .../common/HorizontalSelectValue.ts | 7 + src/interfaces/common/OfferType.ts | 3 + src/interfaces/common/OrderRow.ts | 18 + src/interfaces/common/PairData.ts | 15 + src/interfaces/common/Period.ts | 3 + src/interfaces/common/Point.ts | 6 + src/interfaces/common/Side.ts | 3 + src/interfaces/common/UserData.ts | 8 + src/interfaces/common/UserRow.ts | 8 + src/interfaces/common/WalletCredentials.ts | 5 + src/interfaces/common/ZanoWindow.ts | 10 + src/interfaces/enum/pair.ts | 5 + .../fetch-data/apply-order/ApplyOrderData.ts | 7 + .../create-order/CreateOrderData.ts | 12 + .../fetch-data/get-page/GetPageData.ts | 12 + .../update-offer/UpdateOfferData.ts | 17 + .../props/components/UI/Alert/AlertProps.ts | 14 + .../props/components/UI/Button/ButtonProps.ts | 15 + .../UI/ConnectButton/ConnectButtonProps.ts | 7 + .../CurrencyDropdown/CurrencyDropdownProps.ts | 13 + .../UI/CurvePairChart/CurvePairChartProps.ts | 10 + .../DateRangeSelectorProps.ts | 10 + .../components/UI/Dropdown/DropdownProps.ts | 18 + .../UI/Dropdown/DropdownRowProps.ts | 13 + .../UI/EmptyLink/EmptyLinkProps.tsx | 8 + .../components/UI/Filters/FiltersProps.ts | 20 + .../HorizontalSelect/HorizontalSelectProps.ts | 13 + .../props/components/UI/Input/InputProps.tsx | 20 + .../props/components/UI/PairText/PairText.tsx | 12 + .../props/components/UI/Popup/PopupProps.ts | 13 + .../UI/Preloader/PreloaderProps.tsx | 6 + .../UI/ProfileWidget/ProfileWidget.ts | 10 + .../UI/RangeInput/RangeInputProps.tsx | 12 + .../components/UI/Tooltip/TooltipProps.ts | 11 + .../CreateOfferPopup/CreateOfferPopupProps.ts | 10 + .../CreateOfferPopup/WindowedInputsProps.ts | 22 + .../DetailedOfferPopupProps.ts | 9 + .../default/Header/CurrencyCheckRowProps.ts | 8 + .../default/Header/NavBar/NavBarProps.ts | 5 + .../default/Header/NavBar/NavItemProps.ts | 12 + .../MainPageTitle/MainPageTitleProps.ts | 11 + .../orders/OrdersTable/OrdersTableProps.ts | 13 + .../props/pages/dex/orders/PairValue.ts | 8 + .../CandleChartProps/CandleChartProps.ts | 9 + .../InputPanelItem/InputPanelItemProps.ts | 28 + .../InputPanelItem/LabeledInputProps.ts | 12 + .../props/pages/dex/trading/StatItemProps.ts | 10 + src/interfaces/props/pages/p2p/HomeProps.ts | 7 + .../components/HomeTable/HomeTableProps.ts | 11 + .../Marketplace/MarketplaceProps.ts | 9 + .../components/Pagination/PaginationProps.ts | 9 + .../components/Messenger/MessageProps.ts | 16 + .../components/Messenger/MessengerProps.ts | 16 + .../profile/ProfileTable/ProfileTableProps.ts | 10 + .../props/pages/swap/SwapItemProps.ts | 10 + src/interfaces/responses/ErrorRes.ts | 6 + .../responses/candles/GetCandlesRes.ts | 8 + .../responses/chats/GetAllChatsRes.ts | 8 + .../responses/chats/GetChatChunkRes.ts | 8 + src/interfaces/responses/chats/GetChatRes.ts | 58 + .../responses/config/GetConfigRes.ts | 16 + src/interfaces/responses/dex/GetPairRes.ts | 8 + .../responses/dex/GetPairsPageRes.ts | 8 + .../responses/dex/GetPairsPagesAmountRes.ts | 4 + src/interfaces/responses/offers/GetPageRes.ts | 11 + .../responses/offers/GetStatsRes.ts | 15 + src/interfaces/responses/offers/OfferData.ts | 23 + .../responses/orders/GetChartOrdersRes.ts | 8 + .../responses/orders/GetOrdersPageRes.ts | 20 + .../responses/orders/GetPairStatsRes.ts | 16 + .../responses/orders/GetUserOrdersPageRes.ts | 12 + .../responses/orders/GetUserOrdersRes.ts | 27 + src/interfaces/responses/user/GetUserRes.ts | 51 + src/interfaces/states/FiltersState.ts | 10 + .../dex/trading/CandleChart/CandlesData.ts | 11 + .../dex/trading/InputPanelItem/PeriodState.ts | 8 + .../dex/trading/InputPanelItem/SelectValue.ts | 5 + .../pages/p2p/profile/CategoriesState.ts | 13 + .../states/pages/p2p/profile/FiltersState.ts | 12 + .../states/pages/p2p/profile/OffersState.ts | 6 + src/interfaces/wallet/IonicSwap.ts | 9 + src/pages/404.tsx | 11 + src/pages/NotificationPopups.tsx | 75 + src/pages/PageHandler.tsx | 91 + src/pages/_app.tsx | 85 + src/pages/_document.js | 15 + src/pages/admin/Admins.tsx | 80 + src/pages/admin/FeaturedPairs.tsx | 77 + src/pages/admin/PairStats.tsx | 101 + src/pages/admin/index.tsx | 352 + src/pages/admin/styles.module.scss | 136 + src/pages/dex/DexHeader/DexHeader.tsx | 181 + src/pages/dex/index.tsx | 165 + .../OrdersTable/OrdersTable.module.scss | 247 + .../dex/orders/OrdersTable/OrdersTable.tsx | 209 + src/pages/dex/orders/index.tsx | 269 + .../dex/pairs/PairsCard/PairsCard.module.scss | 131 + src/pages/dex/pairs/PairsCard/PairsCard.tsx | 108 + .../dex/pairs/PairsList/PairsList.module.scss | 10 + src/pages/dex/pairs/PairsList/PairsList.tsx | 18 + .../pairs/PairsTable/PairsTable.module.scss | 142 + src/pages/dex/pairs/PairsTable/PairsTable.tsx | 226 + .../CandleChart/CandleChart.module.scss | 32 + .../dex/trading/CandleChart/CandleChart.tsx | 235 + .../dex/trading/CandleChart/testCandles.json | 618 + .../InputPanelItem/InputPanelItem.module.scss | 218 + .../trading/InputPanelItem/InputPanelItem.tsx | 272 + .../OrdersBuySellSwitch.module.scss | 31 + .../OrdersBuySellSwitch.tsx | 33 + src/pages/dex/trading/TimeLeft/TimeLeft.tsx | 22 + src/pages/dex/trading/[id].tsx | 1411 ++ src/pages/dex/trading/find-pair/index.tsx | 44 + src/pages/index.tsx | 10 + src/pages/maintenance/index.tsx | 53 + src/pages/maintenance/styles.module.scss | 106 + .../HomeTable/HomeTable.module.scss | 166 + .../p2p/components/HomeTable/HomeTable.tsx | 140 + .../Marketplace/Marketplace.module.scss | 59 + .../components/Marketplace/Marketplace.tsx | 150 + .../Pagination/Pagination.module.scss | 70 + .../p2p/components/Pagination/Pagination.tsx | 104 + src/pages/p2p/index.tsx | 116 + src/pages/p2p/process/[id].tsx | 18 + .../Messenger/Messenger.module.scss | 211 + .../components/Messenger/Messenger.tsx | 288 + .../ProcessContent/ProcessContent.module.scss | 253 + .../ProcessContent/ProcessContent.tsx | 394 + .../ProfileTable/ProfileTable.module.scss | 291 + .../p2p/profile/ProfileTable/ProfileTable.tsx | 245 + src/pages/p2p/profile/index.tsx | 222 + src/pages/policy/index.tsx | 86 + src/pages/swap/index.tsx | 264 + src/pages/user/index.js | 123 + src/store/actions.ts | 33 + src/store/store-reducer.tsx | 46 + src/store/triggers.ts | 7 + src/styles/404.module.scss | 6 + src/styles/Dex.module.scss | 505 + src/styles/Home.module.scss | 146 + src/styles/NotificationPopups.module.scss | 9 + src/styles/Orders.module.scss | 96 + src/styles/Policy.module.scss | 38 + src/styles/Process.module.scss | 3 + src/styles/Profile.module.scss | 126 + src/styles/Swap.module.scss | 398 + src/styles/Trading.module.scss | 1107 ++ src/styles/User.module.scss | 111 + src/styles/globals.scss | 279 + src/styles/themes/light.scss | 99 + src/svg.d.ts | 7 + src/utils/font.ts | 5 + src/utils/methods.ts | 329 + src/utils/socket.ts | 5 + src/utils/utils.ts | 145 + src/utils/wallet.ts | 16 + tsconfig.json | 121 + 354 files changed, 36463 insertions(+) create mode 100644 .env.example create mode 100644 .eslintignore create mode 100644 .eslintrc.json create mode 100644 .gitignore create mode 100644 .husky/pre-commit create mode 100644 .prettierignore create mode 100644 README.md create mode 100644 jsconfig.json create mode 100644 migrations/20240711121254-add-assets-info.cjs create mode 100644 migrations/20240824145239-update-order-money-types.cjs create mode 100644 migrations/20240826043651-add-exchange-notifications-amount.cjs create mode 100644 migrations/20240902095707-add-asset-whitelisted-field.cjs create mode 100644 migrations/20240920112346-update_notifications.cjs create mode 100644 migrations/20250125120630-add-isAdmin-to-user.cjs create mode 100644 migrations/20250125125455-add-featured-pairs.cjs create mode 100644 next-env.d.ts create mode 100644 next.config.js create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 prettier.config.cjs create mode 100644 public/currencies/all.svg create mode 100644 public/currencies/btc.svg create mode 100644 public/currencies/cad.svg create mode 100644 public/currencies/ct.svg create mode 100644 public/currencies/eur.svg create mode 100644 public/currencies/firo.svg create mode 100644 public/currencies/jpy.svg create mode 100644 public/currencies/trade_tsds.svg create mode 100644 public/currencies/trade_wbtc.svg create mode 100644 public/currencies/trade_weth.svg create mode 100644 public/currencies/trade_zano.svg create mode 100644 public/currencies/tsds.svg create mode 100644 public/currencies/usd.svg create mode 100644 public/currencies/wbtc.svg create mode 100644 public/currencies/weth.svg create mode 100644 public/currencies/xmr.svg create mode 100644 public/currencies/zano.svg create mode 100644 public/favicon.ico create mode 100644 public/social-banner.png create mode 100644 public/ui/featured.svg create mode 100644 public/ui/whitelisted.svg create mode 100644 shared/utils.ts create mode 100644 src/assets/images/UI/arrow-outlined-right.svg create mode 100644 src/assets/images/UI/arrow.svg create mode 100644 src/assets/images/UI/arrow_blue_right.svg create mode 100644 src/assets/images/UI/arrow_right.svg create mode 100644 src/assets/images/UI/arrow_white.svg create mode 100644 src/assets/images/UI/burger_cross.svg create mode 100644 src/assets/images/UI/calendar_arrow.svg create mode 100644 src/assets/images/UI/callendar.svg create mode 100644 src/assets/images/UI/change_icon.svg create mode 100644 src/assets/images/UI/chart.svg create mode 100644 src/assets/images/UI/clock_icon.svg create mode 100644 src/assets/images/UI/connection.svg create mode 100644 src/assets/images/UI/cross_icon.svg create mode 100644 src/assets/images/UI/cross_icon_small.svg create mode 100644 src/assets/images/UI/delete.svg create mode 100644 src/assets/images/UI/deposit_sent.svg create mode 100644 src/assets/images/UI/dex_cross_icon.svg create mode 100644 src/assets/images/UI/down_icon.svg create mode 100644 src/assets/images/UI/dropdown_arrow.svg create mode 100644 src/assets/images/UI/dropdown_arrow_small.svg create mode 100644 src/assets/images/UI/edit.svg create mode 100644 src/assets/images/UI/error.svg create mode 100644 src/assets/images/UI/eye.svg create mode 100644 src/assets/images/UI/eye_close.svg create mode 100644 src/assets/images/UI/filter_icon.svg create mode 100644 src/assets/images/UI/funds_confirmed.svg create mode 100644 src/assets/images/UI/hamburger_icon.svg create mode 100644 src/assets/images/UI/history_icon.svg create mode 100644 src/assets/images/UI/info.svg create mode 100644 src/assets/images/UI/info_alert_icon.svg create mode 100644 src/assets/images/UI/info_blue.svg create mode 100644 src/assets/images/UI/info_outlined.svg create mode 100644 src/assets/images/UI/info_small.svg create mode 100644 src/assets/images/UI/lightning.png create mode 100644 src/assets/images/UI/lock.svg create mode 100644 src/assets/images/UI/logo_block.svg create mode 100644 src/assets/images/UI/logo_block_dark.svg create mode 100644 src/assets/images/UI/logout.svg create mode 100644 src/assets/images/UI/message.svg create mode 100644 src/assets/images/UI/moon_icon.svg create mode 100644 src/assets/images/UI/no_chats.svg create mode 100644 src/assets/images/UI/no_offers.svg create mode 100644 src/assets/images/UI/offer_canceled.svg create mode 100644 src/assets/images/UI/offers.svg create mode 100644 src/assets/images/UI/pagination_arrow.svg create mode 100644 src/assets/images/UI/persons_icon.svg create mode 100644 src/assets/images/UI/persons_selected_icon.svg create mode 100644 src/assets/images/UI/plus.svg create mode 100644 src/assets/images/UI/refrash_small_icon.svg create mode 100644 src/assets/images/UI/refresh_icon.svg create mode 100644 src/assets/images/UI/rocket.png create mode 100644 src/assets/images/UI/search_icon.svg create mode 100644 src/assets/images/UI/search_large.svg create mode 100644 src/assets/images/UI/send.svg create mode 100644 src/assets/images/UI/social/discord.svg create mode 100644 src/assets/images/UI/social/telegram.svg create mode 100644 src/assets/images/UI/social/twitter.svg create mode 100644 src/assets/images/UI/star_icon.svg create mode 100644 src/assets/images/UI/star_selected_icon.svg create mode 100644 src/assets/images/UI/success.svg create mode 100644 src/assets/images/UI/sun_icon.svg create mode 100644 src/assets/images/UI/sun_small.svg create mode 100644 src/assets/images/UI/swap_icon.svg create mode 100644 src/assets/images/UI/swap_selected_icon.svg create mode 100644 src/assets/images/UI/tick_icon.svg create mode 100644 src/assets/images/UI/time_icon.svg create mode 100644 src/assets/images/UI/trade_arrow.svg create mode 100644 src/assets/images/UI/trade_icon.svg create mode 100644 src/assets/images/UI/trade_selected_icon.svg create mode 100644 src/assets/images/UI/tsds.svg create mode 100644 src/assets/images/UI/up_icon.svg create mode 100644 src/assets/images/UI/volume_icon.svg create mode 100644 src/assets/images/UI/walletsettings_icon.svg create mode 100644 src/assets/images/UI/wbtc.svg create mode 100644 src/assets/images/UI/weth.svg create mode 100644 src/assets/images/UI/zano.svg create mode 100644 src/assets/images/UI/zano_trade_logo_block.svg create mode 100644 src/assets/images/UI/zano_trade_logo_block_dark.svg create mode 100644 src/assets/images/UI/zano_white.svg create mode 100644 src/assets/images/temp/chart.svg create mode 100644 src/assets/images/temp/logo_block.svg create mode 100644 src/components/UI/Alert/Alert.module.scss create mode 100644 src/components/UI/Alert/Alert.tsx create mode 100644 src/components/UI/Button/Button.module.scss create mode 100644 src/components/UI/Button/Button.tsx create mode 100644 src/components/UI/ConnectButton/ConnectButton.tsx create mode 100644 src/components/UI/ContentPreloader/ContentPreloader.module.scss create mode 100644 src/components/UI/ContentPreloader/ContentPreloader.tsx create mode 100644 src/components/UI/CurrencyDropdown/CurrencyDropdown.tsx create mode 100644 src/components/UI/CurrencyDropdown/currencyDropdown.module.scss create mode 100644 src/components/UI/CurvePairChart/CurvePairChart.module.scss create mode 100644 src/components/UI/CurvePairChart/CurvePairChart.tsx create mode 100644 src/components/UI/DateRangeSelector/DateRangeSelector.module.scss create mode 100644 src/components/UI/DateRangeSelector/DateRangeSelector.tsx create mode 100644 src/components/UI/DepositTitle/DepositTitle.module.scss create mode 100644 src/components/UI/DepositTitle/DepositTitle.tsx create mode 100644 src/components/UI/Dropdown/Dropdown.module.scss create mode 100644 src/components/UI/Dropdown/Dropdown.tsx create mode 100644 src/components/UI/EmptyLink/EmptyLink.module.scss create mode 100644 src/components/UI/EmptyLink/EmptyLink.tsx create mode 100644 src/components/UI/Filters/Filters.module.scss create mode 100644 src/components/UI/Filters/Filters.tsx create mode 100644 src/components/UI/HorizontalSelect/HorizontalSelect.module.scss create mode 100644 src/components/UI/HorizontalSelect/HorizontalSelect.tsx create mode 100644 src/components/UI/IconDropdown/IconDropdown.module.scss create mode 100644 src/components/UI/IconDropdown/IconDropdown.tsx create mode 100644 src/components/UI/Input/Input.module.scss create mode 100644 src/components/UI/Input/Input.tsx create mode 100644 src/components/UI/NotificationIndicator/NotificationIndicator.module.scss create mode 100644 src/components/UI/NotificationIndicator/NotificationIndicator.tsx create mode 100644 src/components/UI/PairText/PairText.module.scss create mode 100644 src/components/UI/PairText/PairText.tsx create mode 100644 src/components/UI/Popup/Popup.module.scss create mode 100644 src/components/UI/Popup/Popup.tsx create mode 100644 src/components/UI/Preloader/Preloader.module.scss create mode 100644 src/components/UI/Preloader/Preloader.tsx create mode 100644 src/components/UI/ProfileWidget/ProfileWidget.module.scss create mode 100644 src/components/UI/ProfileWidget/ProfileWidget.tsx create mode 100644 src/components/UI/RangeInput/RangeInput.module.scss create mode 100644 src/components/UI/RangeInput/RangeInput.tsx create mode 100644 src/components/UI/Switch/Switch.tsx create mode 100644 src/components/UI/Tooltip/Tooltip.module.scss create mode 100644 src/components/UI/Tooltip/Tooltip.tsx create mode 100644 src/components/default/BackButton/BackButton.module.scss create mode 100644 src/components/default/BackButton/BackButton.tsx create mode 100644 src/components/default/CreateOfferPopup/CreateOfferPopup.module.scss create mode 100644 src/components/default/CreateOfferPopup/CreateOfferPopup.tsx create mode 100644 src/components/default/DetailedOfferPopup/DetailedOfferPopup.module.scss create mode 100644 src/components/default/DetailedOfferPopup/DetailedOfferPopup.tsx create mode 100644 src/components/default/Footer/Footer.module.scss create mode 100644 src/components/default/Footer/Footer.tsx create mode 100644 src/components/default/Header/Header.module.scss create mode 100644 src/components/default/Header/Header.tsx create mode 100644 src/components/default/Header/NavBar/NavBar.module.scss create mode 100644 src/components/default/Header/NavBar/NavBar.tsx create mode 100644 src/components/default/MainPageTitle/MainPageTitle.module.scss create mode 100644 src/components/default/MainPageTitle/MainPageTitle.tsx create mode 100644 src/components/default/Offers/Offers.js create mode 100644 src/components/default/Offers/Offers.module.scss create mode 100644 src/components/default/Offers/Row.module.scss create mode 100644 src/components/default/OrderNotification/OrderNotification.module.scss create mode 100644 src/components/default/OrderNotification/OrderNotification.tsx create mode 100644 src/components/default/PageTitle/PageTitle.module.scss create mode 100644 src/components/default/PageTitle/PageTitle.tsx create mode 100644 src/hook/useTheme.ts create mode 100644 src/hook/useUpdateUser.ts create mode 100644 src/interfaces/common/AlertType.ts create mode 100644 src/interfaces/common/ApplyTip.ts create mode 100644 src/interfaces/common/CandleRow.ts create mode 100644 src/interfaces/common/ContextValue.ts create mode 100644 src/interfaces/common/CurrencyContentRow.ts create mode 100644 src/interfaces/common/CurrencyRow.ts create mode 100644 src/interfaces/common/CurrencyType.ts create mode 100644 src/interfaces/common/DateState.ts create mode 100644 src/interfaces/common/DepositState.ts create mode 100644 src/interfaces/common/DropdownRow.ts create mode 100644 src/interfaces/common/HorizontalSelectValue.ts create mode 100644 src/interfaces/common/OfferType.ts create mode 100644 src/interfaces/common/OrderRow.ts create mode 100644 src/interfaces/common/PairData.ts create mode 100644 src/interfaces/common/Period.ts create mode 100644 src/interfaces/common/Point.ts create mode 100644 src/interfaces/common/Side.ts create mode 100644 src/interfaces/common/UserData.ts create mode 100644 src/interfaces/common/UserRow.ts create mode 100644 src/interfaces/common/WalletCredentials.ts create mode 100644 src/interfaces/common/ZanoWindow.ts create mode 100644 src/interfaces/enum/pair.ts create mode 100644 src/interfaces/fetch-data/apply-order/ApplyOrderData.ts create mode 100644 src/interfaces/fetch-data/create-order/CreateOrderData.ts create mode 100644 src/interfaces/fetch-data/get-page/GetPageData.ts create mode 100644 src/interfaces/fetch-data/update-offer/UpdateOfferData.ts create mode 100644 src/interfaces/props/components/UI/Alert/AlertProps.ts create mode 100644 src/interfaces/props/components/UI/Button/ButtonProps.ts create mode 100644 src/interfaces/props/components/UI/ConnectButton/ConnectButtonProps.ts create mode 100644 src/interfaces/props/components/UI/CurrencyDropdown/CurrencyDropdownProps.ts create mode 100644 src/interfaces/props/components/UI/CurvePairChart/CurvePairChartProps.ts create mode 100644 src/interfaces/props/components/UI/DateRangeSelector/DateRangeSelectorProps.ts create mode 100644 src/interfaces/props/components/UI/Dropdown/DropdownProps.ts create mode 100644 src/interfaces/props/components/UI/Dropdown/DropdownRowProps.ts create mode 100644 src/interfaces/props/components/UI/EmptyLink/EmptyLinkProps.tsx create mode 100644 src/interfaces/props/components/UI/Filters/FiltersProps.ts create mode 100644 src/interfaces/props/components/UI/HorizontalSelect/HorizontalSelectProps.ts create mode 100644 src/interfaces/props/components/UI/Input/InputProps.tsx create mode 100644 src/interfaces/props/components/UI/PairText/PairText.tsx create mode 100644 src/interfaces/props/components/UI/Popup/PopupProps.ts create mode 100644 src/interfaces/props/components/UI/Preloader/PreloaderProps.tsx create mode 100644 src/interfaces/props/components/UI/ProfileWidget/ProfileWidget.ts create mode 100644 src/interfaces/props/components/UI/RangeInput/RangeInputProps.tsx create mode 100644 src/interfaces/props/components/UI/Tooltip/TooltipProps.ts create mode 100644 src/interfaces/props/components/default/CreateOfferPopup/CreateOfferPopupProps.ts create mode 100644 src/interfaces/props/components/default/CreateOfferPopup/WindowedInputsProps.ts create mode 100644 src/interfaces/props/components/default/DetailedOfferPopup/DetailedOfferPopupProps.ts create mode 100644 src/interfaces/props/components/default/Header/CurrencyCheckRowProps.ts create mode 100644 src/interfaces/props/components/default/Header/NavBar/NavBarProps.ts create mode 100644 src/interfaces/props/components/default/Header/NavBar/NavItemProps.ts create mode 100644 src/interfaces/props/components/default/MainPageTitle/MainPageTitleProps.ts create mode 100644 src/interfaces/props/pages/dex/orders/OrdersTable/OrdersTableProps.ts create mode 100644 src/interfaces/props/pages/dex/orders/PairValue.ts create mode 100644 src/interfaces/props/pages/dex/trading/CandleChartProps/CandleChartProps.ts create mode 100644 src/interfaces/props/pages/dex/trading/InputPanelItem/InputPanelItemProps.ts create mode 100644 src/interfaces/props/pages/dex/trading/InputPanelItem/LabeledInputProps.ts create mode 100644 src/interfaces/props/pages/dex/trading/StatItemProps.ts create mode 100644 src/interfaces/props/pages/p2p/HomeProps.ts create mode 100644 src/interfaces/props/pages/p2p/components/HomeTable/HomeTableProps.ts create mode 100644 src/interfaces/props/pages/p2p/components/Marketplace/MarketplaceProps.ts create mode 100644 src/interfaces/props/pages/p2p/components/Pagination/PaginationProps.ts create mode 100644 src/interfaces/props/pages/p2p/process/components/Messenger/MessageProps.ts create mode 100644 src/interfaces/props/pages/p2p/process/components/Messenger/MessengerProps.ts create mode 100644 src/interfaces/props/pages/p2p/profile/ProfileTable/ProfileTableProps.ts create mode 100644 src/interfaces/props/pages/swap/SwapItemProps.ts create mode 100644 src/interfaces/responses/ErrorRes.ts create mode 100644 src/interfaces/responses/candles/GetCandlesRes.ts create mode 100644 src/interfaces/responses/chats/GetAllChatsRes.ts create mode 100644 src/interfaces/responses/chats/GetChatChunkRes.ts create mode 100644 src/interfaces/responses/chats/GetChatRes.ts create mode 100644 src/interfaces/responses/config/GetConfigRes.ts create mode 100644 src/interfaces/responses/dex/GetPairRes.ts create mode 100644 src/interfaces/responses/dex/GetPairsPageRes.ts create mode 100644 src/interfaces/responses/dex/GetPairsPagesAmountRes.ts create mode 100644 src/interfaces/responses/offers/GetPageRes.ts create mode 100644 src/interfaces/responses/offers/GetStatsRes.ts create mode 100644 src/interfaces/responses/offers/OfferData.ts create mode 100644 src/interfaces/responses/orders/GetChartOrdersRes.ts create mode 100644 src/interfaces/responses/orders/GetOrdersPageRes.ts create mode 100644 src/interfaces/responses/orders/GetPairStatsRes.ts create mode 100644 src/interfaces/responses/orders/GetUserOrdersPageRes.ts create mode 100644 src/interfaces/responses/orders/GetUserOrdersRes.ts create mode 100644 src/interfaces/responses/user/GetUserRes.ts create mode 100644 src/interfaces/states/FiltersState.ts create mode 100644 src/interfaces/states/pages/dex/trading/CandleChart/CandlesData.ts create mode 100644 src/interfaces/states/pages/dex/trading/InputPanelItem/PeriodState.ts create mode 100644 src/interfaces/states/pages/dex/trading/InputPanelItem/SelectValue.ts create mode 100644 src/interfaces/states/pages/p2p/profile/CategoriesState.ts create mode 100644 src/interfaces/states/pages/p2p/profile/FiltersState.ts create mode 100644 src/interfaces/states/pages/p2p/profile/OffersState.ts create mode 100644 src/interfaces/wallet/IonicSwap.ts create mode 100644 src/pages/404.tsx create mode 100644 src/pages/NotificationPopups.tsx create mode 100644 src/pages/PageHandler.tsx create mode 100644 src/pages/_app.tsx create mode 100644 src/pages/_document.js create mode 100644 src/pages/admin/Admins.tsx create mode 100644 src/pages/admin/FeaturedPairs.tsx create mode 100644 src/pages/admin/PairStats.tsx create mode 100644 src/pages/admin/index.tsx create mode 100644 src/pages/admin/styles.module.scss create mode 100644 src/pages/dex/DexHeader/DexHeader.tsx create mode 100644 src/pages/dex/index.tsx create mode 100644 src/pages/dex/orders/OrdersTable/OrdersTable.module.scss create mode 100644 src/pages/dex/orders/OrdersTable/OrdersTable.tsx create mode 100644 src/pages/dex/orders/index.tsx create mode 100644 src/pages/dex/pairs/PairsCard/PairsCard.module.scss create mode 100644 src/pages/dex/pairs/PairsCard/PairsCard.tsx create mode 100644 src/pages/dex/pairs/PairsList/PairsList.module.scss create mode 100644 src/pages/dex/pairs/PairsList/PairsList.tsx create mode 100644 src/pages/dex/pairs/PairsTable/PairsTable.module.scss create mode 100644 src/pages/dex/pairs/PairsTable/PairsTable.tsx create mode 100644 src/pages/dex/trading/CandleChart/CandleChart.module.scss create mode 100644 src/pages/dex/trading/CandleChart/CandleChart.tsx create mode 100644 src/pages/dex/trading/CandleChart/testCandles.json create mode 100644 src/pages/dex/trading/InputPanelItem/InputPanelItem.module.scss create mode 100644 src/pages/dex/trading/InputPanelItem/InputPanelItem.tsx create mode 100644 src/pages/dex/trading/OrdersBuySellSwitch/OrdersBuySellSwitch.module.scss create mode 100644 src/pages/dex/trading/OrdersBuySellSwitch/OrdersBuySellSwitch.tsx create mode 100644 src/pages/dex/trading/TimeLeft/TimeLeft.tsx create mode 100644 src/pages/dex/trading/[id].tsx create mode 100644 src/pages/dex/trading/find-pair/index.tsx create mode 100644 src/pages/index.tsx create mode 100644 src/pages/maintenance/index.tsx create mode 100644 src/pages/maintenance/styles.module.scss create mode 100644 src/pages/p2p/components/HomeTable/HomeTable.module.scss create mode 100644 src/pages/p2p/components/HomeTable/HomeTable.tsx create mode 100644 src/pages/p2p/components/Marketplace/Marketplace.module.scss create mode 100644 src/pages/p2p/components/Marketplace/Marketplace.tsx create mode 100644 src/pages/p2p/components/Pagination/Pagination.module.scss create mode 100644 src/pages/p2p/components/Pagination/Pagination.tsx create mode 100644 src/pages/p2p/index.tsx create mode 100644 src/pages/p2p/process/[id].tsx create mode 100644 src/pages/p2p/process/components/Messenger/Messenger.module.scss create mode 100644 src/pages/p2p/process/components/Messenger/Messenger.tsx create mode 100644 src/pages/p2p/process/components/ProcessContent/ProcessContent.module.scss create mode 100644 src/pages/p2p/process/components/ProcessContent/ProcessContent.tsx create mode 100644 src/pages/p2p/profile/ProfileTable/ProfileTable.module.scss create mode 100644 src/pages/p2p/profile/ProfileTable/ProfileTable.tsx create mode 100644 src/pages/p2p/profile/index.tsx create mode 100644 src/pages/policy/index.tsx create mode 100644 src/pages/swap/index.tsx create mode 100644 src/pages/user/index.js create mode 100644 src/store/actions.ts create mode 100644 src/store/store-reducer.tsx create mode 100644 src/store/triggers.ts create mode 100644 src/styles/404.module.scss create mode 100644 src/styles/Dex.module.scss create mode 100644 src/styles/Home.module.scss create mode 100644 src/styles/NotificationPopups.module.scss create mode 100644 src/styles/Orders.module.scss create mode 100644 src/styles/Policy.module.scss create mode 100644 src/styles/Process.module.scss create mode 100644 src/styles/Profile.module.scss create mode 100644 src/styles/Swap.module.scss create mode 100644 src/styles/Trading.module.scss create mode 100644 src/styles/User.module.scss create mode 100644 src/styles/globals.scss create mode 100644 src/styles/themes/light.scss create mode 100644 src/svg.d.ts create mode 100644 src/utils/font.ts create mode 100644 src/utils/methods.ts create mode 100644 src/utils/socket.ts create mode 100644 src/utils/utils.ts create mode 100644 src/utils/wallet.ts create mode 100644 tsconfig.json diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..4b9fccf --- /dev/null +++ b/.env.example @@ -0,0 +1 @@ +API_URL="http://localhost:3000" \ No newline at end of file diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..5efe132 --- /dev/null +++ b/.eslintignore @@ -0,0 +1 @@ +submodules/ \ No newline at end of file diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..ca32e3a --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,61 @@ +{ + "env": { + "es2021": true, + "node": true + }, + "extends": [ + "airbnb-base", + "plugin:@typescript-eslint/recommended", + "next/core-web-vitals", + "prettier" + ], + "parser": "@typescript-eslint/parser", + "plugins": ["@typescript-eslint", "import"], + "parserOptions": { + "ecmaVersion": "latest", + "sourceType": "module", + "project": "./tsconfig.json" + }, + "rules": { + "no-console": "off", + "no-void": "off", + "import/extensions": "off", + "no-unused-vars": [ + "warn", + { + "argsIgnorePattern": "^_" + } + ], + "func-names": "off", + "consistent-return": "off", + "no-restricted-syntax": "off", + "indent": ["error", "tab"], + "class-methods-use-this": "off", + "@typescript-eslint/no-unused-vars": [ + "warn", + { + "argsIgnorePattern": "^_" + } + ], + "@typescript-eslint/explicit-member-accessibility": "off", + "@typescript-eslint/no-explicit-any": "error", + "lines-between-class-members": "off", + "camelcase": "off", + "no-underscore-dangle": "off", + "no-shadow": "off", + "no-await-in-loop": "off", + "radix": "off", + "no-plusplus": "off", + "no-promise-executor-return": "off", + "import/no-duplicates": "off", + "import/prefer-default-export": "off", + "import/no-cycle": "off" + }, + "settings": { + "import/resolver": { + "node": { + "extensions": [".js", ".ts"] + } + } + } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..56f72c6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* + +# local env files +.env*.local +.env + +# vercel +.vercel diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100644 index 0000000..210877e --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1,3 @@ +#!/bin/sh + +npx lint-staged \ No newline at end of file diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..c5bfd5b --- /dev/null +++ b/.prettierignore @@ -0,0 +1,8 @@ +node_modules +build +dist +coverage +.next +.env +*.lock +submodules/ \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..ca8a3a2 --- /dev/null +++ b/README.md @@ -0,0 +1,38 @@ +This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). + +## Getting Started + +First, run the development server: + +```bash +npm run dev +# or +yarn dev +# or +pnpm dev +``` + +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. + +You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file. + +[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`. + +The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages. + +This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. + +## Learn More + +To learn more about Next.js, take a look at the following resources: + +- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. +- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. + +You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! + +## Deploy on Vercel + +The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. + +Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..b05513b --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"] + } + } +} diff --git a/migrations/20240711121254-add-assets-info.cjs b/migrations/20240711121254-add-assets-info.cjs new file mode 100644 index 0000000..9c9de27 --- /dev/null +++ b/migrations/20240711121254-add-assets-info.cjs @@ -0,0 +1,15 @@ +'use strict'; + +/** @type {import('sequelize-cli').Migration} */ +module.exports = { + async up(queryInterface, Sequelize) { + queryInterface.addColumn('Currencies', 'asset_info', { + type: Sequelize.JSONB, + allowNull: true, + }); + }, + + async down(queryInterface, Sequelize) { + queryInterface.removeColumn('Currencies', 'asset_info'); + }, +}; diff --git a/migrations/20240824145239-update-order-money-types.cjs b/migrations/20240824145239-update-order-money-types.cjs new file mode 100644 index 0000000..8ce949f --- /dev/null +++ b/migrations/20240824145239-update-order-money-types.cjs @@ -0,0 +1,73 @@ +'use strict'; + +async function updateColumnType(queryInterface, table, column, type, transaction) { + await queryInterface.changeColumn( + table, + column, + { + type: `${type} USING CAST("${column}" as ${type})`, + }, + { transaction }, + ); +} + +/** @type {import('sequelize-cli').Migration} */ +module.exports = { + async up(queryInterface, Sequelize) { + await queryInterface.sequelize.transaction(async (transaction) => { + await updateColumnType(queryInterface, 'Orders', 'price', 'VARCHAR', transaction); + await updateColumnType(queryInterface, 'Orders', 'amount', 'VARCHAR', transaction); + await updateColumnType(queryInterface, 'Orders', 'total', 'VARCHAR', transaction); + await updateColumnType(queryInterface, 'Orders', 'left', 'VARCHAR', transaction); + + await updateColumnType( + queryInterface, + 'Transactions', + 'amount', + 'VARCHAR', + transaction, + ); + }); + }, + + async down(queryInterface, Sequelize) { + queryInterface.sequelize.transaction(async (transaction) => { + await updateColumnType( + queryInterface, + 'Orders', + 'price', + 'DOUBLE PRECISION', + transaction, + ); + await updateColumnType( + queryInterface, + 'Orders', + 'amount', + 'DOUBLE PRECISION', + transaction, + ); + await updateColumnType( + queryInterface, + 'Orders', + 'total', + 'DOUBLE PRECISION', + transaction, + ); + await updateColumnType( + queryInterface, + 'Orders', + 'left', + 'DOUBLE PRECISION', + transaction, + ); + + await updateColumnType( + queryInterface, + 'Transactions', + 'amount', + 'DOUBLE PRECISION', + transaction, + ); + }); + }, +}; diff --git a/migrations/20240826043651-add-exchange-notifications-amount.cjs b/migrations/20240826043651-add-exchange-notifications-amount.cjs new file mode 100644 index 0000000..a3b6dde --- /dev/null +++ b/migrations/20240826043651-add-exchange-notifications-amount.cjs @@ -0,0 +1,16 @@ +'use strict'; + +/** @type {import('sequelize-cli').Migration} */ +module.exports = { + async up(queryInterface, Sequelize) { + queryInterface.addColumn('Users', 'exchange_notifications_amount', { + type: Sequelize.INTEGER, + allowNull: false, + defaultValue: 0, + }); + }, + + async down(queryInterface) { + queryInterface.removeColumn('Users', 'exchange_notifications_amount'); + }, +}; diff --git a/migrations/20240902095707-add-asset-whitelisted-field.cjs b/migrations/20240902095707-add-asset-whitelisted-field.cjs new file mode 100644 index 0000000..68458c7 --- /dev/null +++ b/migrations/20240902095707-add-asset-whitelisted-field.cjs @@ -0,0 +1,16 @@ +'use strict'; + +/** @type {import('sequelize-cli').Migration} */ +module.exports = { + async up(queryInterface, Sequelize) { + queryInterface.addColumn('Currencies', 'whitelisted', { + type: Sequelize.BOOLEAN, + defaultValue: false, + allowNull: false, + }); + }, + + async down(queryInterface, Sequelize) { + queryInterface.removeColumn('Currencies', 'whitelisted'); + }, +}; diff --git a/migrations/20240920112346-update_notifications.cjs b/migrations/20240920112346-update_notifications.cjs new file mode 100644 index 0000000..dab345a --- /dev/null +++ b/migrations/20240920112346-update_notifications.cjs @@ -0,0 +1,16 @@ +'use strict'; + +/** @type {import('sequelize-cli').Migration} */ +module.exports = { + async up(queryInterface, Sequelize) { + queryInterface.addColumn('Orders', 'hasNotification', { + type: Sequelize.BOOLEAN, + defaultValue: false, + allowNull: false, + }); + }, + + async down(queryInterface, Sequelize) { + queryInterface.removeColumn('Users', 'exchange_notifications_amount'); + }, +}; diff --git a/migrations/20250125120630-add-isAdmin-to-user.cjs b/migrations/20250125120630-add-isAdmin-to-user.cjs new file mode 100644 index 0000000..ba20ffb --- /dev/null +++ b/migrations/20250125120630-add-isAdmin-to-user.cjs @@ -0,0 +1,16 @@ +'use strict'; + +/** @type {import('sequelize-cli').Migration} */ +module.exports = { + async up(queryInterface, Sequelize) { + await queryInterface.addColumn('Users', 'isAdmin', { + type: Sequelize.BOOLEAN, + allowNull: false, + defaultValue: false, + }); + }, + + async down(queryInterface, Sequelize) { + await queryInterface.removeColumn('Users', 'isAdmin'); + }, +}; diff --git a/migrations/20250125125455-add-featured-pairs.cjs b/migrations/20250125125455-add-featured-pairs.cjs new file mode 100644 index 0000000..d271112 --- /dev/null +++ b/migrations/20250125125455-add-featured-pairs.cjs @@ -0,0 +1,16 @@ +'use strict'; + +/** @type {import('sequelize-cli').Migration} */ +module.exports = { + up: async (queryInterface, Sequelize) => { + await queryInterface.addColumn('Pairs', 'featured', { + type: Sequelize.BOOLEAN, + defaultValue: false, + allowNull: false, + }); + }, + + down: async (queryInterface, Sequelize) => { + await queryInterface.removeColumn('Pairs', 'featured'); + }, +}; diff --git a/next-env.d.ts b/next-env.d.ts new file mode 100644 index 0000000..4f11a03 --- /dev/null +++ b/next-env.d.ts @@ -0,0 +1,5 @@ +/// +/// + +// NOTE: This file should not be edited +// see https://nextjs.org/docs/basic-features/typescript for more information. diff --git a/next.config.js b/next.config.js new file mode 100644 index 0000000..4ad1365 --- /dev/null +++ b/next.config.js @@ -0,0 +1,37 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + reactStrictMode: true, + async redirects() { + return [ + { + source: '/', + destination: '/dex', + permanent: false, + }, + // { + // source: '/((?!maintenance).*)', // Match everything except "/maintenance" + // destination: '/maintenance', + // permanent: false, + // }, + ]; + }, + webpack: (config) => { + config.module.rules.push({ + test: /\.svg$/, + use: ['@svgr/webpack', 'url-loader'], + }); + + return config; + }, + async rewrites() { + return [ + { + source: '/api/:path*', + destination: `${process.env.API_URL}/api/:path*` + } + ] + }, + +}; + +export default nextConfig; diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..a28addf --- /dev/null +++ b/package-lock.json @@ -0,0 +1,14062 @@ +{ + "name": "zano-p2p", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "zano-p2p", + "version": "0.1.0", + "dependencies": { + "@react-hook/window-size": "^3.1.1", + "@tanstack/react-table": "^8.21.3", + "@types/jsonwebtoken": "^9.0.2", + "antd": "^5.23.2", + "apexcharts": "^3.41.0", + "axios": "^1.4.0", + "big.js": "^6.2.1", + "crypto-js": "^4.1.1", + "decimal.js": "^10.4.3", + "echarts": "^5.5.1", + "echarts-for-react": "^3.0.2", + "eslint-config-next": "13.2.4", + "express": "^4.18.2", + "jimp": "^0.22.8", + "jsonwebtoken": "^9.0.0", + "nanoid": "^4.0.1", + "next": "^13.2.4", + "next-themes": "^0.2.1", + "node-fetch": "^3.3.1", + "react": "18.2.0", + "react-apexcharts": "^1.4.0", + "react-dom": "18.2.0", + "react-intersection-observer": "^9.10.3", + "sequelize": "^6.37.3", + "sha256": "^0.2.0", + "socket.io": "^4.6.1", + "socket.io-client": "^4.6.1", + "ts-node": "^10.9.1", + "tsc": "^2.0.4", + "tsx": "^4.15.7", + "uuidv4": "^6.2.13" + }, + "devDependencies": { + "@svgr/webpack": "^8.0.1", + "@types/big.js": "^6.2.0", + "@types/crypto-js": "^4.1.1", + "@types/express": "^4.17.17", + "@types/pg": "^8.10.2", + "@types/react": "18.2.16", + "@types/react-dom": "^18.2.7", + "@types/sha256": "^0.2.0", + "@typescript-eslint/eslint-plugin": "^5.55.0", + "cross-env": "^7.0.3", + "eslint": "^8.57.1", + "eslint-config-airbnb-base": "^15.0.0", + "eslint-config-prettier": "^10.1.5", + "eslint-plugin-import": "^2.31.0", + "husky": "^9.1.7", + "lint-staged": "^15.5.2", + "prettier": "3.5.3", + "sass": "^1.59.2", + "url-loader": "^4.1.1" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@ant-design/colors": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/@ant-design/colors/-/colors-7.2.1.tgz", + "integrity": "sha512-lCHDcEzieu4GA3n8ELeZ5VQ8pKQAWcGGLRTQ50aQM2iqPpq2evTxER84jfdPvsPAtEcZ7m44NI45edFMo8oOYQ==", + "license": "MIT", + "dependencies": { + "@ant-design/fast-color": "^2.0.6" + } + }, + "node_modules/@ant-design/cssinjs": { + "version": "1.23.0", + "resolved": "https://registry.npmjs.org/@ant-design/cssinjs/-/cssinjs-1.23.0.tgz", + "integrity": "sha512-7GAg9bD/iC9ikWatU9ym+P9ugJhi/WbsTWzcKN6T4gU0aehsprtke1UAaaSxxkjjmkJb3llet/rbUSLPgwlY4w==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.11.1", + "@emotion/hash": "^0.8.0", + "@emotion/unitless": "^0.7.5", + "classnames": "^2.3.1", + "csstype": "^3.1.3", + "rc-util": "^5.35.0", + "stylis": "^4.3.4" + }, + "peerDependencies": { + "react": ">=16.0.0", + "react-dom": ">=16.0.0" + } + }, + "node_modules/@ant-design/cssinjs-utils": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@ant-design/cssinjs-utils/-/cssinjs-utils-1.1.3.tgz", + "integrity": "sha512-nOoQMLW1l+xR1Co8NFVYiP8pZp3VjIIzqV6D6ShYF2ljtdwWJn5WSsH+7kvCktXL/yhEtWURKOfH5Xz/gzlwsg==", + "license": "MIT", + "dependencies": { + "@ant-design/cssinjs": "^1.21.0", + "@babel/runtime": "^7.23.2", + "rc-util": "^5.38.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@ant-design/fast-color": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@ant-design/fast-color/-/fast-color-2.0.6.tgz", + "integrity": "sha512-y2217gk4NqL35giHl72o6Zzqji9O7vHh9YmhUVkPtAOpoTCH4uWxo/pr4VE8t0+ChEPs0qo4eJRC5Q1eXWo3vA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.24.7" + }, + "engines": { + "node": ">=8.x" + } + }, + "node_modules/@ant-design/icons": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/@ant-design/icons/-/icons-5.6.1.tgz", + "integrity": "sha512-0/xS39c91WjPAZOWsvi1//zjx6kAp4kxWwctR6kuU6p133w8RU0D2dSCvZC19uQyharg/sAvYxGYWl01BbZZfg==", + "license": "MIT", + "dependencies": { + "@ant-design/colors": "^7.0.0", + "@ant-design/icons-svg": "^4.4.0", + "@babel/runtime": "^7.24.8", + "classnames": "^2.2.6", + "rc-util": "^5.31.1" + }, + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "react": ">=16.0.0", + "react-dom": ">=16.0.0" + } + }, + "node_modules/@ant-design/icons-svg": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/@ant-design/icons-svg/-/icons-svg-4.4.2.tgz", + "integrity": "sha512-vHbT+zJEVzllwP+CM+ul7reTEfBR0vgxFe7+lREAsAA7YGsYpboiq2sQNeQeRvh09GfQgs/GyFEvZpJ9cLXpXA==", + "license": "MIT" + }, + "node_modules/@ant-design/react-slick": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@ant-design/react-slick/-/react-slick-1.1.2.tgz", + "integrity": "sha512-EzlvzE6xQUBrZuuhSAFTdsr4P2bBBHGZwKFemEfq8gIGyIQCxalYfZW/T2ORbtQx5rU69o+WycP3exY/7T1hGA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.4", + "classnames": "^2.2.5", + "json2mq": "^0.2.0", + "resize-observer-polyfill": "^1.5.1", + "throttle-debounce": "^5.0.0" + }, + "peerDependencies": { + "react": ">=16.9.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.27.3.tgz", + "integrity": "sha512-V42wFfx1ymFte+ecf6iXghnnP8kWTO+ZLXIyZq+1LAXHHvTZdVxicn4yiVYdYMGaCO3tmqub11AorKkv+iodqw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.27.4", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.27.4.tgz", + "integrity": "sha512-bXYxrXFubeYdvB0NhD/NBB3Qi6aZeV20GOWVI47t2dkecCEoneR4NPVcb7abpXDEvejgrUfFtG6vG/zxAKmg+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.27.3", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.27.3", + "@babel/helpers": "^7.27.4", + "@babel/parser": "^7.27.4", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.27.4", + "@babel/types": "^7.27.3", + "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/generator": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.27.3.tgz", + "integrity": "sha512-xnlJYj5zepml8NXtjkG0WquFUv8RskFqyFcVgTBp5k+NaA/8uw/K+OSVf8AMGw5e9HKP2ETd5xpK5MLZQD6b4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.27.3", + "@babel/types": "^7.27.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.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.27.1.tgz", + "integrity": "sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-member-expression-to-functions": "^7.27.1", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/traverse": "^7.27.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.27.1.tgz", + "integrity": "sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "regexpu-core": "^6.2.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.4.tgz", + "integrity": "sha512-jljfR1rGnXXNWnmQg2K3+bvhkxB51Rl32QRaOTuwwjviGrHzIbSc8+x9CpraDtbT7mfyjXObULP4w/adunNwAw==", + "dev": true, + "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-member-expression-to-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.27.1.tgz", + "integrity": "sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz", + "integrity": "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.27.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", + "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz", + "integrity": "sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-wrap-function": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz", + "integrity": "sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.27.1", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", + "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", + "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.27.1.tgz", + "integrity": "sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.27.1", + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.27.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.27.4.tgz", + "integrity": "sha512-Y+bO6U+I7ZKaM5G5rDUZiYfUvQPUibYmAFe7EnKdnKBbVXDZxvp+MWOH5gYciY0EPk4EScsuFMQBbEfpdRKSCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.27.2", + "@babel/types": "^7.27.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.27.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.4.tgz", + "integrity": "sha512-BRmLHGwpUqLFR2jzx9orBuX/ABDkj2jLKOXrHDTN2aOKL+jFDDKaRNo9nyYsIl9h/UE/7lMKdDjKQQyxKKDZ7g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.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.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.27.1.tgz", + "integrity": "sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz", + "integrity": "sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "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.27.1", + "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.27.1.tgz", + "integrity": "sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz", + "integrity": "sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-transform-optional-chaining": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.27.1.tgz", + "integrity": "sha512-6BpaYGDavZqkI6yT+KSPdpZFfpnd68UKXbcjI9pJ13pvHhPrCKWOOLp+ysvMeA+DxnhuPpgIaRpxRxo5A9t5jw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.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==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.27.1.tgz", + "integrity": "sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz", + "integrity": "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz", + "integrity": "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz", + "integrity": "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "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==", + "dev": true, + "license": "MIT", + "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.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz", + "integrity": "sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.27.1.tgz", + "integrity": "sha512-eST9RrwlpaoJBDHShc+DS2SG4ATTi2MYNb4OxYkf3n+7eb49LWpnS+HSpVfW4x927qQwgk8A2hGNVaajAEw0EA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-remap-async-to-generator": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz", + "integrity": "sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-remap-async-to-generator": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz", + "integrity": "sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.27.3.tgz", + "integrity": "sha512-+F8CnfhuLhwUACIJMLWnjz6zvzYM2r0yeIHKlbgfw7ml8rOMJsXNXV/hyRcb3nb493gRs4WvYpQAndWj/qQmkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz", + "integrity": "sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.27.1.tgz", + "integrity": "sha512-s734HmYU78MVzZ++joYM+NkJusItbdRcbm+AGRgJCt3iA+yux0QpD9cBVdz3tKyrjVYWRl7j0mHSmv4lhV0aoA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.27.1.tgz", + "integrity": "sha512-7iLhfFAubmpeJe/Wo2TVuDrykh/zlWXLzPNdL0Jqn/Xu8R3QQ8h9ff8FQoISZOsw74/HFqFI7NX63HN7QFIHKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-compilation-targets": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1", + "@babel/traverse": "^7.27.1", + "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.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz", + "integrity": "sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/template": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.27.3.tgz", + "integrity": "sha512-s4Jrok82JpiaIprtY2nHsYmrThKvvwgHwjgd7UMiYhZaN0asdXNLr0y+NjTfkA7SyQE5i2Fb7eawUOZmLvyqOA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz", + "integrity": "sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz", + "integrity": "sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz", + "integrity": "sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz", + "integrity": "sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.27.1.tgz", + "integrity": "sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz", + "integrity": "sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz", + "integrity": "sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz", + "integrity": "sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.27.1.tgz", + "integrity": "sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz", + "integrity": "sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.27.1.tgz", + "integrity": "sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz", + "integrity": "sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz", + "integrity": "sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz", + "integrity": "sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.27.1.tgz", + "integrity": "sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz", + "integrity": "sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz", + "integrity": "sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz", + "integrity": "sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz", + "integrity": "sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz", + "integrity": "sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.27.3.tgz", + "integrity": "sha512-7ZZtznF9g4l2JCImCo5LNKFHB5eXnN39lLtLY5Tg+VkR0jwOt7TBciMckuiQIOIW7L5tkQOCh3bVGYeXgMx52Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-transform-destructuring": "^7.27.3", + "@babel/plugin-transform-parameters": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz", + "integrity": "sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz", + "integrity": "sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.27.1.tgz", + "integrity": "sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.1.tgz", + "integrity": "sha512-018KRk76HWKeZ5l4oTj2zPpSh+NbGdt0st5S6x0pga6HgrjBOJb24mMDHorFopOOd6YHkLgOZ+zaCjZGPO4aKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz", + "integrity": "sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz", + "integrity": "sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz", + "integrity": "sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.27.1.tgz", + "integrity": "sha512-edoidOjl/ZxvYo4lSBOQGDSyToYVkTAwyVoa2tkuYTSmjrB1+uAedoL5iROVLXkxH+vRgA7uP4tMg2pUJpZ3Ug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.27.1.tgz", + "integrity": "sha512-p9+Vl3yuHPmkirRrg021XiP+EETmPMQTLr6Ayjj85RLNEbb3Eya/4VI0vAdzQG9SEAl2Lnt7fy5lZyMzjYoZQQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.27.1.tgz", + "integrity": "sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-syntax-jsx": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.27.1.tgz", + "integrity": "sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.27.1.tgz", + "integrity": "sha512-JfuinvDOsD9FVMTHpzA/pBLisxpv1aSf+OIV8lgH3MuWrks19R27e6a6DipIg4aX1Zm9Wpb04p8wljfKrVSnPA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.27.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.27.4.tgz", + "integrity": "sha512-Glp/0n8xuj+E1588otw5rjJkTXfzW7FjH3IIUrfqiZOPQCd2vbg8e+DQE8jK9g4V5/zrxFW+D9WM9gboRPELpQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regexp-modifiers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.27.1.tgz", + "integrity": "sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz", + "integrity": "sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz", + "integrity": "sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz", + "integrity": "sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz", + "integrity": "sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz", + "integrity": "sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz", + "integrity": "sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.27.1.tgz", + "integrity": "sha512-Q5sT5+O4QUebHdbwKedFBEwRLb02zJ7r4A5Gg2hUoLuU3FjdMcyqcywqUrLCaDsFCxzokf7u9kuy7qz51YUuAg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-syntax-typescript": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz", + "integrity": "sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.27.1.tgz", + "integrity": "sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz", + "integrity": "sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.27.1.tgz", + "integrity": "sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.27.2.tgz", + "integrity": "sha512-Ma4zSuYSlGNRlCLO+EAzLnCmJK2vdstgv+n7aUP+/IKZrOfWHOJVdSJtuub8RzHTj3ahD37k5OKJWvzf16TQyQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.27.2", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.27.1", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.27.1", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.27.1", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.27.1", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.27.1", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-import-assertions": "^7.27.1", + "@babel/plugin-syntax-import-attributes": "^7.27.1", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.27.1", + "@babel/plugin-transform-async-generator-functions": "^7.27.1", + "@babel/plugin-transform-async-to-generator": "^7.27.1", + "@babel/plugin-transform-block-scoped-functions": "^7.27.1", + "@babel/plugin-transform-block-scoping": "^7.27.1", + "@babel/plugin-transform-class-properties": "^7.27.1", + "@babel/plugin-transform-class-static-block": "^7.27.1", + "@babel/plugin-transform-classes": "^7.27.1", + "@babel/plugin-transform-computed-properties": "^7.27.1", + "@babel/plugin-transform-destructuring": "^7.27.1", + "@babel/plugin-transform-dotall-regex": "^7.27.1", + "@babel/plugin-transform-duplicate-keys": "^7.27.1", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.27.1", + "@babel/plugin-transform-dynamic-import": "^7.27.1", + "@babel/plugin-transform-exponentiation-operator": "^7.27.1", + "@babel/plugin-transform-export-namespace-from": "^7.27.1", + "@babel/plugin-transform-for-of": "^7.27.1", + "@babel/plugin-transform-function-name": "^7.27.1", + "@babel/plugin-transform-json-strings": "^7.27.1", + "@babel/plugin-transform-literals": "^7.27.1", + "@babel/plugin-transform-logical-assignment-operators": "^7.27.1", + "@babel/plugin-transform-member-expression-literals": "^7.27.1", + "@babel/plugin-transform-modules-amd": "^7.27.1", + "@babel/plugin-transform-modules-commonjs": "^7.27.1", + "@babel/plugin-transform-modules-systemjs": "^7.27.1", + "@babel/plugin-transform-modules-umd": "^7.27.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.27.1", + "@babel/plugin-transform-new-target": "^7.27.1", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.27.1", + "@babel/plugin-transform-numeric-separator": "^7.27.1", + "@babel/plugin-transform-object-rest-spread": "^7.27.2", + "@babel/plugin-transform-object-super": "^7.27.1", + "@babel/plugin-transform-optional-catch-binding": "^7.27.1", + "@babel/plugin-transform-optional-chaining": "^7.27.1", + "@babel/plugin-transform-parameters": "^7.27.1", + "@babel/plugin-transform-private-methods": "^7.27.1", + "@babel/plugin-transform-private-property-in-object": "^7.27.1", + "@babel/plugin-transform-property-literals": "^7.27.1", + "@babel/plugin-transform-regenerator": "^7.27.1", + "@babel/plugin-transform-regexp-modifiers": "^7.27.1", + "@babel/plugin-transform-reserved-words": "^7.27.1", + "@babel/plugin-transform-shorthand-properties": "^7.27.1", + "@babel/plugin-transform-spread": "^7.27.1", + "@babel/plugin-transform-sticky-regex": "^7.27.1", + "@babel/plugin-transform-template-literals": "^7.27.1", + "@babel/plugin-transform-typeof-symbol": "^7.27.1", + "@babel/plugin-transform-unicode-escapes": "^7.27.1", + "@babel/plugin-transform-unicode-property-regex": "^7.27.1", + "@babel/plugin-transform-unicode-regex": "^7.27.1", + "@babel/plugin-transform-unicode-sets-regex": "^7.27.1", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.11.0", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.40.0", + "semver": "^6.3.1" + }, + "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==", + "dev": true, + "license": "MIT", + "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.27.1", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.27.1.tgz", + "integrity": "sha512-oJHWh2gLhU9dW9HHr42q0cI0/iHHXTLGe39qvpAZZzagHy0MzYLCnCVV0symeRvzmjHyVU7mw2K06E6u/JwbhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-transform-react-display-name": "^7.27.1", + "@babel/plugin-transform-react-jsx": "^7.27.1", + "@babel/plugin-transform-react-jsx-development": "^7.27.1", + "@babel/plugin-transform-react-pure-annotations": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.27.1.tgz", + "integrity": "sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-syntax-jsx": "^7.27.1", + "@babel/plugin-transform-modules-commonjs": "^7.27.1", + "@babel/plugin-transform-typescript": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.27.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.4.tgz", + "integrity": "sha512-t3yaEOuGu9NlIZ+hIeGbBjFtZT7j2cb2tg0fuaJKeGotchRjjLfrBA9Kwf8quhpP1EUuxModQg04q/mBwyg8uA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.27.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.27.4.tgz", + "integrity": "sha512-oNcu2QbHqts9BtOWJosOVJapWjBDSxGCpFvikNR5TGDYDQf3JwpIoMzIKrvfoti93cLfPJEG4tH9SPVeyCGgdA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.27.3", + "@babel/parser": "^7.27.4", + "@babel/template": "^7.27.2", + "@babel/types": "^7.27.3", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.3.tgz", + "integrity": "sha512-Y1GkI4ktrtvmawoSq+4FCVHNryea6uR+qUQy0AGxLSsjCX0nVmkYQMBLHDkXZuo5hGx7eYdnIaslsdBFm7zbUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@emnapi/core": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.4.3.tgz", + "integrity": "sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==", + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/wasi-threads": "1.0.2", + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/core/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD", + "optional": true + }, + "node_modules/@emnapi/runtime": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.4.3.tgz", + "integrity": "sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==", + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/runtime/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD", + "optional": true + }, + "node_modules/@emnapi/wasi-threads": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.0.2.tgz", + "integrity": "sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==", + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/wasi-threads/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD", + "optional": true + }, + "node_modules/@emotion/hash": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", + "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==", + "license": "MIT" + }, + "node_modules/@emotion/unitless": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", + "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==", + "license": "MIT" + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.5.tgz", + "integrity": "sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.5.tgz", + "integrity": "sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.5.tgz", + "integrity": "sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.5.tgz", + "integrity": "sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.5.tgz", + "integrity": "sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.5.tgz", + "integrity": "sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.5.tgz", + "integrity": "sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.5.tgz", + "integrity": "sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.5.tgz", + "integrity": "sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.5.tgz", + "integrity": "sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.5.tgz", + "integrity": "sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.5.tgz", + "integrity": "sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==", + "cpu": [ + "loong64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.5.tgz", + "integrity": "sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==", + "cpu": [ + "mips64el" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.5.tgz", + "integrity": "sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.5.tgz", + "integrity": "sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.5.tgz", + "integrity": "sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==", + "cpu": [ + "s390x" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.5.tgz", + "integrity": "sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.5.tgz", + "integrity": "sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.5.tgz", + "integrity": "sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.5.tgz", + "integrity": "sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.5.tgz", + "integrity": "sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.5.tgz", + "integrity": "sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.5.tgz", + "integrity": "sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.5.tgz", + "integrity": "sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.5.tgz", + "integrity": "sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", + "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", + "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", + "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", + "deprecated": "Use @eslint/config-array instead", + "license": "Apache-2.0", + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.3", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "deprecated": "Use @eslint/object-schema instead", + "license": "BSD-3-Clause" + }, + "node_modules/@jimp/bmp": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/bmp/-/bmp-0.22.12.tgz", + "integrity": "sha512-aeI64HD0npropd+AR76MCcvvRaa+Qck6loCOS03CkkxGHN5/r336qTM5HPUdHKMDOGzqknuVPA8+kK1t03z12g==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12", + "bmp-js": "^0.1.0" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/core": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/core/-/core-0.22.12.tgz", + "integrity": "sha512-l0RR0dOPyzMKfjUW1uebzueFEDtCOj9fN6pyTYWWOM/VS4BciXQ1VVrJs8pO3kycGYZxncRKhCoygbNr8eEZQA==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12", + "any-base": "^1.1.0", + "buffer": "^5.2.0", + "exif-parser": "^0.1.12", + "file-type": "^16.5.4", + "isomorphic-fetch": "^3.0.0", + "pixelmatch": "^4.0.2", + "tinycolor2": "^1.6.0" + } + }, + "node_modules/@jimp/custom": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/custom/-/custom-0.22.12.tgz", + "integrity": "sha512-xcmww1O/JFP2MrlGUMd3Q78S3Qu6W3mYTXYuIqFq33EorgYHV/HqymHfXy9GjiCJ7OI+7lWx6nYFOzU7M4rd1Q==", + "license": "MIT", + "dependencies": { + "@jimp/core": "^0.22.12" + } + }, + "node_modules/@jimp/gif": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/gif/-/gif-0.22.12.tgz", + "integrity": "sha512-y6BFTJgch9mbor2H234VSjd9iwAhaNf/t3US5qpYIs0TSbAvM02Fbc28IaDETj9+4YB4676sz4RcN/zwhfu1pg==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12", + "gifwrap": "^0.10.1", + "omggif": "^1.0.9" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/jpeg": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/jpeg/-/jpeg-0.22.12.tgz", + "integrity": "sha512-Rq26XC/uQWaQKyb/5lksCTCxXhtY01NJeBN+dQv5yNYedN0i7iYu+fXEoRsfaJ8xZzjoANH8sns7rVP4GE7d/Q==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12", + "jpeg-js": "^0.4.4" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-blit": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-blit/-/plugin-blit-0.22.12.tgz", + "integrity": "sha512-xslz2ZoFZOPLY8EZ4dC29m168BtDx95D6K80TzgUi8gqT7LY6CsajWO0FAxDwHz6h0eomHMfyGX0stspBrTKnQ==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-blur": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-blur/-/plugin-blur-0.22.12.tgz", + "integrity": "sha512-S0vJADTuh1Q9F+cXAwFPlrKWzDj2F9t/9JAbUvaaDuivpyWuImEKXVz5PUZw2NbpuSHjwssbTpOZ8F13iJX4uw==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-circle": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-circle/-/plugin-circle-0.22.12.tgz", + "integrity": "sha512-SWVXx1yiuj5jZtMijqUfvVOJBwOifFn0918ou4ftoHgegc5aHWW5dZbYPjvC9fLpvz7oSlptNl2Sxr1zwofjTg==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-color": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-color/-/plugin-color-0.22.12.tgz", + "integrity": "sha512-xImhTE5BpS8xa+mAN6j4sMRWaUgUDLoaGHhJhpC+r7SKKErYDR0WQV4yCE4gP+N0gozD0F3Ka1LUSaMXrn7ZIA==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12", + "tinycolor2": "^1.6.0" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-contain": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-contain/-/plugin-contain-0.22.12.tgz", + "integrity": "sha512-Eo3DmfixJw3N79lWk8q/0SDYbqmKt1xSTJ69yy8XLYQj9svoBbyRpSnHR+n9hOw5pKXytHwUW6nU4u1wegHNoQ==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-blit": ">=0.3.5", + "@jimp/plugin-resize": ">=0.3.5", + "@jimp/plugin-scale": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-cover": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-cover/-/plugin-cover-0.22.12.tgz", + "integrity": "sha512-z0w/1xH/v/knZkpTNx+E8a7fnasQ2wHG5ze6y5oL2dhH1UufNua8gLQXlv8/W56+4nJ1brhSd233HBJCo01BXA==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-crop": ">=0.3.5", + "@jimp/plugin-resize": ">=0.3.5", + "@jimp/plugin-scale": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-crop": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-crop/-/plugin-crop-0.22.12.tgz", + "integrity": "sha512-FNuUN0OVzRCozx8XSgP9MyLGMxNHHJMFt+LJuFjn1mu3k0VQxrzqbN06yIl46TVejhyAhcq5gLzqmSCHvlcBVw==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-displace": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-displace/-/plugin-displace-0.22.12.tgz", + "integrity": "sha512-qpRM8JRicxfK6aPPqKZA6+GzBwUIitiHaZw0QrJ64Ygd3+AsTc7BXr+37k2x7QcyCvmKXY4haUrSIsBug4S3CA==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-dither": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-dither/-/plugin-dither-0.22.12.tgz", + "integrity": "sha512-jYgGdSdSKl1UUEanX8A85v4+QUm+PE8vHFwlamaKk89s+PXQe7eVE3eNeSZX4inCq63EHL7cX580dMqkoC3ZLw==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-fisheye": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-fisheye/-/plugin-fisheye-0.22.12.tgz", + "integrity": "sha512-LGuUTsFg+fOp6KBKrmLkX4LfyCy8IIsROwoUvsUPKzutSqMJnsm3JGDW2eOmWIS/jJpPaeaishjlxvczjgII+Q==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-flip": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-flip/-/plugin-flip-0.22.12.tgz", + "integrity": "sha512-m251Rop7GN8W0Yo/rF9LWk6kNclngyjIJs/VXHToGQ6EGveOSTSQaX2Isi9f9lCDLxt+inBIb7nlaLLxnvHX8Q==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-rotate": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-gaussian": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-gaussian/-/plugin-gaussian-0.22.12.tgz", + "integrity": "sha512-sBfbzoOmJ6FczfG2PquiK84NtVGeScw97JsCC3rpQv1PHVWyW+uqWFF53+n3c8Y0P2HWlUjflEla2h/vWShvhg==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-invert": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-invert/-/plugin-invert-0.22.12.tgz", + "integrity": "sha512-N+6rwxdB+7OCR6PYijaA/iizXXodpxOGvT/smd/lxeXsZ/empHmFFFJ/FaXcYh19Tm04dGDaXcNF/dN5nm6+xQ==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-mask": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-mask/-/plugin-mask-0.22.12.tgz", + "integrity": "sha512-4AWZg+DomtpUA099jRV8IEZUfn1wLv6+nem4NRJC7L/82vxzLCgXKTxvNvBcNmJjT9yS1LAAmiJGdWKXG63/NA==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-normalize": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-normalize/-/plugin-normalize-0.22.12.tgz", + "integrity": "sha512-0So0rexQivnWgnhacX4cfkM2223YdExnJTTy6d06WbkfZk5alHUx8MM3yEzwoCN0ErO7oyqEWRnEkGC+As1FtA==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-print": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-print/-/plugin-print-0.22.12.tgz", + "integrity": "sha512-c7TnhHlxm87DJeSnwr/XOLjJU/whoiKYY7r21SbuJ5nuH+7a78EW1teOaj5gEr2wYEd7QtkFqGlmyGXY/YclyQ==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12", + "load-bmfont": "^1.4.1" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-blit": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-resize": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-resize/-/plugin-resize-0.22.12.tgz", + "integrity": "sha512-3NyTPlPbTnGKDIbaBgQ3HbE6wXbAlFfxHVERmrbqAi8R3r6fQPxpCauA8UVDnieg5eo04D0T8nnnNIX//i/sXg==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-rotate": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-rotate/-/plugin-rotate-0.22.12.tgz", + "integrity": "sha512-9YNEt7BPAFfTls2FGfKBVgwwLUuKqy+E8bDGGEsOqHtbuhbshVGxN2WMZaD4gh5IDWvR+emmmPPWGgaYNYt1gA==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-blit": ">=0.3.5", + "@jimp/plugin-crop": ">=0.3.5", + "@jimp/plugin-resize": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-scale": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-scale/-/plugin-scale-0.22.12.tgz", + "integrity": "sha512-dghs92qM6MhHj0HrV2qAwKPMklQtjNpoYgAB94ysYpsXslhRTiPisueSIELRwZGEr0J0VUxpUY7HgJwlSIgGZw==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-resize": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-shadow": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-shadow/-/plugin-shadow-0.22.12.tgz", + "integrity": "sha512-FX8mTJuCt7/3zXVoeD/qHlm4YH2bVqBuWQHXSuBK054e7wFRnRnbSLPUqAwSeYP3lWqpuQzJtgiiBxV3+WWwTg==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-blur": ">=0.3.5", + "@jimp/plugin-resize": ">=0.3.5" + } + }, + "node_modules/@jimp/plugin-threshold": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugin-threshold/-/plugin-threshold-0.22.12.tgz", + "integrity": "sha512-4x5GrQr1a/9L0paBC/MZZJjjgjxLYrqSmWd+e+QfAEPvmRxdRoQ5uKEuNgXnm9/weHQBTnQBQsOY2iFja+XGAw==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5", + "@jimp/plugin-color": ">=0.8.0", + "@jimp/plugin-resize": ">=0.8.0" + } + }, + "node_modules/@jimp/plugins": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/plugins/-/plugins-0.22.12.tgz", + "integrity": "sha512-yBJ8vQrDkBbTgQZLty9k4+KtUQdRjsIDJSPjuI21YdVeqZxYywifHl4/XWILoTZsjTUASQcGoH0TuC0N7xm3ww==", + "license": "MIT", + "dependencies": { + "@jimp/plugin-blit": "^0.22.12", + "@jimp/plugin-blur": "^0.22.12", + "@jimp/plugin-circle": "^0.22.12", + "@jimp/plugin-color": "^0.22.12", + "@jimp/plugin-contain": "^0.22.12", + "@jimp/plugin-cover": "^0.22.12", + "@jimp/plugin-crop": "^0.22.12", + "@jimp/plugin-displace": "^0.22.12", + "@jimp/plugin-dither": "^0.22.12", + "@jimp/plugin-fisheye": "^0.22.12", + "@jimp/plugin-flip": "^0.22.12", + "@jimp/plugin-gaussian": "^0.22.12", + "@jimp/plugin-invert": "^0.22.12", + "@jimp/plugin-mask": "^0.22.12", + "@jimp/plugin-normalize": "^0.22.12", + "@jimp/plugin-print": "^0.22.12", + "@jimp/plugin-resize": "^0.22.12", + "@jimp/plugin-rotate": "^0.22.12", + "@jimp/plugin-scale": "^0.22.12", + "@jimp/plugin-shadow": "^0.22.12", + "@jimp/plugin-threshold": "^0.22.12", + "timm": "^1.6.1" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/png": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/png/-/png-0.22.12.tgz", + "integrity": "sha512-Mrp6dr3UTn+aLK8ty/dSKELz+Otdz1v4aAXzV5q53UDD2rbB5joKVJ/ChY310B+eRzNxIovbUF1KVrUsYdE8Hg==", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12", + "pngjs": "^6.0.0" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/tiff": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/tiff/-/tiff-0.22.12.tgz", + "integrity": "sha512-E1LtMh4RyJsoCAfAkBRVSYyZDTtLq9p9LUiiYP0vPtXyxX4BiYBUYihTLSBlCQg5nF2e4OpQg7SPrLdJ66u7jg==", + "license": "MIT", + "dependencies": { + "utif2": "^4.0.1" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/types": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/types/-/types-0.22.12.tgz", + "integrity": "sha512-wwKYzRdElE1MBXFREvCto5s699izFHNVvALUv79GXNbsOVqlwlOxlWJ8DuyOGIXoLP4JW/m30YyuTtfUJgMRMA==", + "license": "MIT", + "dependencies": { + "@jimp/bmp": "^0.22.12", + "@jimp/gif": "^0.22.12", + "@jimp/jpeg": "^0.22.12", + "@jimp/png": "^0.22.12", + "@jimp/tiff": "^0.22.12", + "timm": "^1.6.1" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "node_modules/@jimp/utils": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/@jimp/utils/-/utils-0.22.12.tgz", + "integrity": "sha512-yJ5cWUknGnilBq97ZXOyOS0HhsHOyAyjHwYfHxGbSyMTohgQI6sVyE8KPgDwH8HHW/nMKXk8TrSwAE71zt716Q==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.13.3" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", + "dev": true, + "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==", + "dev": true, + "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==", + "dev": true, + "license": "MIT", + "peer": true, + "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==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@napi-rs/wasm-runtime": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.10.tgz", + "integrity": "sha512-bCsCyeZEwVErsGmyPNSzwfwFn4OdxBj0mmv6hOFucB/k81Ojdu68RbZdxYsRQUPc9l6SU5F/cG+bXgWs3oUgsQ==", + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/core": "^1.4.3", + "@emnapi/runtime": "^1.4.3", + "@tybys/wasm-util": "^0.9.0" + } + }, + "node_modules/@next/env": { + "version": "13.5.11", + "resolved": "https://registry.npmjs.org/@next/env/-/env-13.5.11.tgz", + "integrity": "sha512-fbb2C7HChgM7CemdCY+y3N1n8pcTKdqtQLbC7/EQtPdLvlMUT9JX/dBYl8MMZAtYG4uVMyPFHXckb68q/NRwqg==", + "license": "MIT" + }, + "node_modules/@next/eslint-plugin-next": { + "version": "13.2.4", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.2.4.tgz", + "integrity": "sha512-ck1lI+7r1mMJpqLNa3LJ5pxCfOB1lfJncKmRJeJxcJqcngaFwylreLP7da6Rrjr6u2gVRTfmnkSkjc80IiQCwQ==", + "license": "MIT", + "dependencies": { + "glob": "7.1.7" + } + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "13.5.9", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.5.9.tgz", + "integrity": "sha512-pVyd8/1y1l5atQRvOaLOvfbmRwefxLhqQOzYo/M7FQ5eaRwA1+wuCn7t39VwEgDd7Aw1+AIWwd+MURXUeXhwDw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-darwin-x64": { + "version": "13.5.9", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.5.9.tgz", + "integrity": "sha512-DwdeJqP7v8wmoyTWPbPVodTwCybBZa02xjSJ6YQFIFZFZ7dFgrieKW4Eo0GoIcOJq5+JxkQyejmI+8zwDp3pwA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "13.5.9", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.5.9.tgz", + "integrity": "sha512-wdQsKsIsGSNdFojvjW3Ozrh8Q00+GqL3wTaMjDkQxVtRbAqfFBtrLPO0IuWChVUP2UeuQcHpVeUvu0YgOP00+g==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "13.5.9", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.5.9.tgz", + "integrity": "sha512-6VpS+bodQqzOeCwGxoimlRoosiWlSc0C224I7SQWJZoyJuT1ChNCo+45QQH+/GtbR/s7nhaUqmiHdzZC9TXnXA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "13.5.9", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.5.9.tgz", + "integrity": "sha512-XxG3yj61WDd28NA8gFASIR+2viQaYZEFQagEodhI/R49gXWnYhiflTeeEmCn7Vgnxa/OfK81h1gvhUZ66lozpw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "13.5.9", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.5.9.tgz", + "integrity": "sha512-/dnscWqfO3+U8asd+Fc6dwL2l9AZDl7eKtPNKW8mKLh4Y4wOpjJiamhe8Dx+D+Oq0GYVjuW0WwjIxYWVozt2bA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "13.5.9", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.5.9.tgz", + "integrity": "sha512-T/iPnyurOK5a4HRUcxAlss8uzoEf5h9tkd+W2dSWAfzxv8WLKlUgbfk+DH43JY3Gc2xK5URLuXrxDZ2mGfk/jw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-ia32-msvc": { + "version": "13.5.9", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.5.9.tgz", + "integrity": "sha512-BLiPKJomaPrTAb7ykjA0LPcuuNMLDVK177Z1xe0nAem33+9FIayU4k/OWrtSn9SAJW/U60+1hoey5z+KCHdRLQ==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "13.5.9", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.5.9.tgz", + "integrity": "sha512-/72/dZfjXXNY/u+n8gqZDjI6rxKMpYsgBBYNZKWOQw0BpBF7WCnPflRy3ZtvQ2+IYI3ZH2bPyj7K+6a6wNk90Q==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "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/@nolyfill/is-core-module": { + "version": "1.0.39", + "resolved": "https://registry.npmjs.org/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz", + "integrity": "sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==", + "license": "MIT", + "engines": { + "node": ">=12.4.0" + } + }, + "node_modules/@parcel/watcher": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz", + "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "dependencies": { + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.5.1", + "@parcel/watcher-darwin-arm64": "2.5.1", + "@parcel/watcher-darwin-x64": "2.5.1", + "@parcel/watcher-freebsd-x64": "2.5.1", + "@parcel/watcher-linux-arm-glibc": "2.5.1", + "@parcel/watcher-linux-arm-musl": "2.5.1", + "@parcel/watcher-linux-arm64-glibc": "2.5.1", + "@parcel/watcher-linux-arm64-musl": "2.5.1", + "@parcel/watcher-linux-x64-glibc": "2.5.1", + "@parcel/watcher-linux-x64-musl": "2.5.1", + "@parcel/watcher-win32-arm64": "2.5.1", + "@parcel/watcher-win32-ia32": "2.5.1", + "@parcel/watcher-win32-x64": "2.5.1" + } + }, + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz", + "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz", + "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz", + "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz", + "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz", + "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-musl": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz", + "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz", + "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz", + "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz", + "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz", + "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz", + "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz", + "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz", + "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@rc-component/async-validator": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@rc-component/async-validator/-/async-validator-5.0.4.tgz", + "integrity": "sha512-qgGdcVIF604M9EqjNF0hbUTz42bz/RDtxWdWuU5EQe3hi7M8ob54B6B35rOsvX5eSvIHIzT9iH1R3n+hk3CGfg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.24.4" + }, + "engines": { + "node": ">=14.x" + } + }, + "node_modules/@rc-component/color-picker": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@rc-component/color-picker/-/color-picker-2.0.1.tgz", + "integrity": "sha512-WcZYwAThV/b2GISQ8F+7650r5ZZJ043E57aVBFkQ+kSY4C6wdofXgB0hBx+GPGpIU0Z81eETNoDUJMr7oy/P8Q==", + "license": "MIT", + "dependencies": { + "@ant-design/fast-color": "^2.0.6", + "@babel/runtime": "^7.23.6", + "classnames": "^2.2.6", + "rc-util": "^5.38.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/context": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@rc-component/context/-/context-1.4.0.tgz", + "integrity": "sha512-kFcNxg9oLRMoL3qki0OMxK+7g5mypjgaaJp/pkOis/6rVxma9nJBF/8kCIuTYHUQNr0ii7MxqE33wirPZLJQ2w==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.1", + "rc-util": "^5.27.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/mini-decimal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rc-component/mini-decimal/-/mini-decimal-1.1.0.tgz", + "integrity": "sha512-jS4E7T9Li2GuYwI6PyiVXmxTiM6b07rlD9Ge8uGZSCz3WlzcG5ZK7g5bbuKNeZ9pgUuPK/5guV781ujdVpm4HQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.0" + }, + "engines": { + "node": ">=8.x" + } + }, + "node_modules/@rc-component/mutate-observer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rc-component/mutate-observer/-/mutate-observer-1.1.0.tgz", + "integrity": "sha512-QjrOsDXQusNwGZPf4/qRQasg7UFEj06XiCJ8iuiq/Io7CrHrgVi6Uuetw60WAMG1799v+aM8kyc+1L/GBbHSlw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.0", + "classnames": "^2.3.2", + "rc-util": "^5.24.4" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/portal": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@rc-component/portal/-/portal-1.1.2.tgz", + "integrity": "sha512-6f813C0IsasTZms08kfA8kPAGxbbkYToa8ALaiDIGGECU4i9hj8Plgbx0sNJDrey3EtHO30hmdaxtT0138xZcg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.0", + "classnames": "^2.3.2", + "rc-util": "^5.24.4" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/qrcode": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@rc-component/qrcode/-/qrcode-1.0.0.tgz", + "integrity": "sha512-L+rZ4HXP2sJ1gHMGHjsg9jlYBX/SLN2D6OxP9Zn3qgtpMWtO2vUfxVFwiogHpAIqs54FnALxraUy/BCO1yRIgg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.24.7", + "classnames": "^2.3.2", + "rc-util": "^5.38.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/tour": { + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/@rc-component/tour/-/tour-1.15.1.tgz", + "integrity": "sha512-Tr2t7J1DKZUpfJuDZWHxyxWpfmj8EZrqSgyMZ+BCdvKZ6r1UDsfU46M/iWAAFBy961Ssfom2kv5f3UcjIL2CmQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.0", + "@rc-component/portal": "^1.0.0-9", + "@rc-component/trigger": "^2.0.0", + "classnames": "^2.3.2", + "rc-util": "^5.24.4" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@rc-component/trigger": { + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@rc-component/trigger/-/trigger-2.2.6.tgz", + "integrity": "sha512-/9zuTnWwhQ3S3WT1T8BubuFTT46kvnXgaERR9f4BTKyn61/wpf/BvbImzYBubzJibU707FxwbKszLlHjcLiv1Q==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.23.2", + "@rc-component/portal": "^1.1.0", + "classnames": "^2.3.2", + "rc-motion": "^2.0.0", + "rc-resize-observer": "^1.3.1", + "rc-util": "^5.44.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/@react-hook/debounce": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@react-hook/debounce/-/debounce-3.0.0.tgz", + "integrity": "sha512-ir/kPrSfAzY12Gre0sOHkZ2rkEmM4fS5M5zFxCi4BnCeXh2nvx9Ujd+U4IGpKCuPA+EQD0pg1eK2NGLvfWejag==", + "license": "MIT", + "dependencies": { + "@react-hook/latest": "^1.0.2" + }, + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/@react-hook/event": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@react-hook/event/-/event-1.2.6.tgz", + "integrity": "sha512-JUL5IluaOdn5w5Afpe/puPa1rj8X6udMlQ9dt4hvMuKmTrBS1Ya6sb4sVgvfe2eU4yDuOfAhik8xhbcCekbg9Q==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/@react-hook/latest": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@react-hook/latest/-/latest-1.0.3.tgz", + "integrity": "sha512-dy6duzl+JnAZcDbNTfmaP3xHiKtbXYOaz3G51MGVljh548Y8MWzTr+PHLOfvpypEVW9zwvl+VyKjbWKEVbV1Rg==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/@react-hook/throttle": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@react-hook/throttle/-/throttle-2.2.0.tgz", + "integrity": "sha512-LJ5eg+yMV8lXtqK3lR+OtOZ2WH/EfWvuiEEu0M3bhR7dZRfTyEJKxH1oK9uyBxiXPtWXiQggWbZirMCXam51tg==", + "license": "MIT", + "dependencies": { + "@react-hook/latest": "^1.0.2" + }, + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/@react-hook/window-size": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@react-hook/window-size/-/window-size-3.1.1.tgz", + "integrity": "sha512-yWnVS5LKnOUIrEsI44oz3bIIUYqflamPL27n+k/PC//PsX/YeWBky09oPeAoc9As6jSH16Wgo8plI+ECZaHk3g==", + "license": "MIT", + "dependencies": { + "@react-hook/debounce": "^3.0.0", + "@react-hook/event": "^1.2.1", + "@react-hook/throttle": "^2.2.0" + }, + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/@rtsao/scc": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz", + "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==", + "license": "MIT" + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.11.0.tgz", + "integrity": "sha512-zxnHvoMQVqewTJr/W4pKjF0bMGiKJv1WX7bSrkl46Hg0QjESbzBROWK0Wg4RphzSOS5Jiy7eFimmM3UgMrMZbQ==", + "license": "MIT" + }, + "node_modules/@socket.io/component-emitter": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.2.tgz", + "integrity": "sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==", + "license": "MIT" + }, + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz", + "integrity": "sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz", + "integrity": "sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz", + "integrity": "sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz", + "integrity": "sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-8.0.0.tgz", + "integrity": "sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-8.0.0.tgz", + "integrity": "sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-8.1.0.tgz", + "integrity": "sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-8.0.0.tgz", + "integrity": "sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-preset": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-8.1.0.tgz", + "integrity": "sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "8.0.0", + "@svgr/babel-plugin-remove-jsx-attribute": "8.0.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "8.0.0", + "@svgr/babel-plugin-replace-jsx-attribute-value": "8.0.0", + "@svgr/babel-plugin-svg-dynamic-title": "8.0.0", + "@svgr/babel-plugin-svg-em-dimensions": "8.0.0", + "@svgr/babel-plugin-transform-react-native-svg": "8.1.0", + "@svgr/babel-plugin-transform-svg-component": "8.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/core": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-8.1.0.tgz", + "integrity": "sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.21.3", + "@svgr/babel-preset": "8.1.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^8.1.3", + "snake-case": "^3.0.4" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-8.0.0.tgz", + "integrity": "sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.21.3", + "entities": "^4.4.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-jsx": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-8.1.0.tgz", + "integrity": "sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.21.3", + "@svgr/babel-preset": "8.1.0", + "@svgr/hast-util-to-babel-ast": "8.0.0", + "svg-parser": "^2.0.4" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@svgr/core": "*" + } + }, + "node_modules/@svgr/plugin-svgo": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-8.1.0.tgz", + "integrity": "sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==", + "dev": true, + "license": "MIT", + "dependencies": { + "cosmiconfig": "^8.1.3", + "deepmerge": "^4.3.1", + "svgo": "^3.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@svgr/core": "*" + } + }, + "node_modules/@svgr/webpack": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-8.1.0.tgz", + "integrity": "sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.21.3", + "@babel/plugin-transform-react-constant-elements": "^7.21.3", + "@babel/preset-env": "^7.20.2", + "@babel/preset-react": "^7.18.6", + "@babel/preset-typescript": "^7.21.0", + "@svgr/core": "8.1.0", + "@svgr/plugin-jsx": "8.1.0", + "@svgr/plugin-svgo": "8.1.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@swc/helpers": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz", + "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@swc/helpers/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/@tanstack/react-table": { + "version": "8.21.3", + "resolved": "https://registry.npmjs.org/@tanstack/react-table/-/react-table-8.21.3.tgz", + "integrity": "sha512-5nNMTSETP4ykGegmVkhjcS8tTLW6Vl4axfEGQN3v0zdHYbK4UfoqfPChclTrJ4EoK9QynqAu9oUf8VEmrpZ5Ww==", + "license": "MIT", + "dependencies": { + "@tanstack/table-core": "8.21.3" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + }, + "peerDependencies": { + "react": ">=16.8", + "react-dom": ">=16.8" + } + }, + "node_modules/@tanstack/table-core": { + "version": "8.21.3", + "resolved": "https://registry.npmjs.org/@tanstack/table-core/-/table-core-8.21.3.tgz", + "integrity": "sha512-ldZXEhOBb8Is7xLs01fR3YEc3DERiz5silj8tnGkFZytt1abEvl/GhUmCE0PMLaMPTa3Jk4HbKmRlHmu+gCftg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + } + }, + "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/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", + "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", + "license": "MIT" + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "license": "MIT" + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "license": "MIT" + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "license": "MIT" + }, + "node_modules/@tybys/wasm-util": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.9.0.tgz", + "integrity": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==", + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@tybys/wasm-util/node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD", + "optional": true + }, + "node_modules/@types/big.js": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/@types/big.js/-/big.js-6.2.2.tgz", + "integrity": "sha512-e2cOW9YlVzFY2iScnGBBkplKsrn2CsObHQ2Hiw4V1sSyiGbgWL8IyqE3zFi1Pt5o1pdAtYkDAIsF3KKUPjdzaA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/body-parser": { + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/cors": { + "version": "2.8.18", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.18.tgz", + "integrity": "sha512-nX3d0sxJW41CqQvfOzVG1NCTXfFDrDWIghCZncpHeWlVFd81zxB/DLhg7avFg6eHLCRX7ckBmoIIcqa++upvJA==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/crypto-js": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@types/crypto-js/-/crypto-js-4.2.2.tgz", + "integrity": "sha512-sDOLlVbHhXpAUAL0YHDUUwDZf3iN4Bwi4W6a0W0b+QcAezUbRtH4FVb+9J4h+XFPW7l/gQ9F8qC7P+Ec4k8QVQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/debug": { + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", + "license": "MIT", + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/@types/eslint": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", + "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz", + "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/@types/express": { + "version": "4.17.22", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.22.tgz", + "integrity": "sha512-eZUmSnhRX9YRSkplpz0N+k6NljUUn5l3EWZIKZvYzhvMphEuNiyyy1viH/ejgt66JWgALwC/gtSUAeQKtSwW/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.19.6", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz", + "integrity": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/http-errors": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", + "dev": true, + "license": "MIT" + }, + "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==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "license": "MIT" + }, + "node_modules/@types/jsonwebtoken": { + "version": "9.0.9", + "resolved": "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-9.0.9.tgz", + "integrity": "sha512-uoe+GxEuHbvy12OUQct2X9JenKM3qAscquYymuQN4fMWG9DBQtykrQEFcAbVACF7qaLw9BePSodUL0kquqBJpQ==", + "license": "MIT", + "dependencies": { + "@types/ms": "*", + "@types/node": "*" + } + }, + "node_modules/@types/mime": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", + "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "22.15.29", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.29.tgz", + "integrity": "sha512-LNdjOkUDlU1RZb8e1kOIUpN1qQUlzGkEtbVNo53vbrwDg5om6oduhm4SiUaPW5ASTXhAiP0jInWG8Qx9fVlOeQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/@types/pg": { + "version": "8.15.4", + "resolved": "https://registry.npmjs.org/@types/pg/-/pg-8.15.4.tgz", + "integrity": "sha512-I6UNVBAoYbvuWkkU3oosC8yxqH21f4/Jc4DK71JLG3dT2mdlGe1z+ep/LQGXaKaOgcvUrsQoPRqfgtMcvZiJhg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "pg-protocol": "*", + "pg-types": "^2.2.0" + } + }, + "node_modules/@types/prop-types": { + "version": "15.7.14", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz", + "integrity": "sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/qs": { + "version": "6.14.0", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.14.0.tgz", + "integrity": "sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/range-parser": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.2.16", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.16.tgz", + "integrity": "sha512-LLFWr12ZhBJ4YVw7neWLe6Pk7Ey5R9OCydfuMsz1L8bZxzaawJj2p06Q8/EFEHDeTBQNFLF62X+CG7B2zIyu0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.3.7", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.7.tgz", + "integrity": "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^18.0.0" + } + }, + "node_modules/@types/scheduler": { + "version": "0.26.0", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.26.0.tgz", + "integrity": "sha512-WFHp9YUJQ6CKshqoC37iOlHnQSmxNc795UhB26CyBBttrN9svdIrUjl/NjnNmfcwtncN0h/0PPAFWv9ovP8mLA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/semver": { + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.7.0.tgz", + "integrity": "sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/send": { + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.15.7", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", + "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/http-errors": "*", + "@types/node": "*", + "@types/send": "*" + } + }, + "node_modules/@types/sha256": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@types/sha256/-/sha256-0.2.2.tgz", + "integrity": "sha512-uKMaDzyzfcDYGEwTgLh+hmgDMxXWyIVodY8T+qt7A+NYvikW0lmGLMGbQ7BipCB8dzXHa55C9g+Ii/3Lgt1KmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/uuid": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-8.3.4.tgz", + "integrity": "sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==", + "license": "MIT" + }, + "node_modules/@types/validator": { + "version": "13.15.1", + "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.15.1.tgz", + "integrity": "sha512-9gG6ogYcoI2mCMLdcO0NYI0AYrbxIjv0MDmy/5Ywo6CpWWrqYayc+mmgxRsCgtcGJm9BSbXkMsmxGah1iGHAAQ==", + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/semver": { + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", + "license": "ISC" + }, + "node_modules/@unrs/resolver-binding-darwin-arm64": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.7.8.tgz", + "integrity": "sha512-rsRK8T7yxraNRDmpFLZCWqpea6OlXPNRRCjWMx24O1V86KFol7u2gj9zJCv6zB1oJjtnzWceuqdnCgOipFcJPA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-x64": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.7.8.tgz", + "integrity": "sha512-16yEMWa+Olqkk8Kl6Bu0ltT5OgEedkSAsxcz1B3yEctrDYp3EMBu/5PPAGhWVGnwhtf3hNe3y15gfYBAjOv5tQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-freebsd-x64": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.7.8.tgz", + "integrity": "sha512-ST4uqF6FmdZQgv+Q73FU1uHzppeT4mhX3IIEmHlLObrv5Ep50olWRz0iQ4PWovadjHMTAmpuJAGaAuCZYb7UAQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.7.8.tgz", + "integrity": "sha512-Z/A/4Rm2VWku2g25C3tVb986fY6unx5jaaCFpx1pbAj0OKkyuJ5wcQLHvNbIcJ9qhiYwXfrkB7JNlxrAbg7YFg==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.7.8.tgz", + "integrity": "sha512-HN0p7o38qKmDo3bZUiQa6gP7Qhf0sKgJZtRfSHi6JL2Gi4NaUVF0EO1sQ1RHbeQ4VvfjUGMh3QE5dxEh06BgQQ==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-gnu": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.7.8.tgz", + "integrity": "sha512-HsoVqDBt9G69AN0KWeDNJW+7i8KFlwxrbbnJffgTGpiZd6Jw+Q95sqkXp8y458KhKduKLmXfVZGnKBTNxAgPjw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm64-musl": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.7.8.tgz", + "integrity": "sha512-VfR2yTDUbUvn+e/Aw22CC9fQg9zdShHAfwWctNBdOk7w9CHWl2OtYlcMvjzMAns8QxoHQoqn3/CEnZ4Ts7hfrA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.7.8.tgz", + "integrity": "sha512-xUauVQNz4uDgs4UJJiUAwMe3N0PA0wvtImh7V0IFu++UKZJhssXbKHBRR4ecUJpUHCX2bc4Wc8sGsB6P+7BANg==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-riscv64-gnu": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.7.8.tgz", + "integrity": "sha512-GqyIB+CuSHGhhc8ph5RrurtNetYJjb6SctSHafqmdGcRuGi6uyTMR8l18hMEhZFsXdFMc/MpInPLvmNV22xn+A==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-riscv64-musl": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.7.8.tgz", + "integrity": "sha512-eEU3rWIFRv60xaAbtsgwHNWRZGD7cqkpCvNtio/f1TjEE3HfKLzPNB24fA9X/8ZXQrGldE65b7UKK3PmO4eWIQ==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-s390x-gnu": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.7.8.tgz", + "integrity": "sha512-GVLI0f4I4TlLqEUoOFvTWedLsJEdvsD0+sxhdvQ5s+N+m2DSynTs8h9jxR0qQbKlpHWpc2Ortz3z48NHRT4l+w==", + "cpu": [ + "s390x" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-gnu": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.7.8.tgz", + "integrity": "sha512-GX1pZ/4ncUreB0Rlp1l7bhKAZ8ZmvDIgXdeb5V2iK0eRRF332+6gRfR/r5LK88xfbtOpsmRHU6mQ4N8ZnwvGEA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-x64-musl": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.7.8.tgz", + "integrity": "sha512-n1N84MnsvDupzVuYqJGj+2pb9s8BI1A5RgXHvtVFHedGZVBCFjDpQVRlmsFMt6xZiKwDPaqsM16O/1isCUGt7w==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-wasm32-wasi": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.7.8.tgz", + "integrity": "sha512-x94WnaU5g+pCPDVedfnXzoG6lCOF2xFGebNwhtbJCWfceE94Zj8aysSxdxotlrZrxnz5D3ijtyFUYtpz04n39Q==", + "cpu": [ + "wasm32" + ], + "license": "MIT", + "optional": true, + "dependencies": { + "@napi-rs/wasm-runtime": "^0.2.10" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@unrs/resolver-binding-win32-arm64-msvc": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.7.8.tgz", + "integrity": "sha512-vst2u8EJZ5L6jhJ6iLis3w9rg16aYqRxQuBAMYQRVrPMI43693hLP7DuqyOBRKgsQXy9/jgh204k0ViHkqQgdg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-ia32-msvc": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.7.8.tgz", + "integrity": "sha512-yb3LZOLMFqnA+/ShlE1E5bpYPGDsA590VHHJPB+efnyowT776GJXBoh82em6O9WmYBUq57YblGTcMYAFBm72HA==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@unrs/resolver-binding-win32-x64-msvc": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.7.8.tgz", + "integrity": "sha512-hHKFx+opG5BA3/owMXon8ypwSotBGTdblG6oda/iOu9+OEYnk0cxD2uIcGyGT8jCK578kV+xMrNxqbn8Zjlpgw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", + "dev": true, + "license": "Apache-2.0", + "peer": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true, + "license": "BSD-3-Clause", + "peer": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true, + "license": "Apache-2.0", + "peer": 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.14.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", + "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", + "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", + "license": "MIT", + "dependencies": { + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "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==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/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==", + "dev": true, + "license": "MIT", + "peer": true, + "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/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==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-escapes": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.0.0.tgz", + "integrity": "sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==", + "dev": true, + "license": "MIT", + "dependencies": { + "environment": "^1.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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/antd": { + "version": "5.25.4", + "resolved": "https://registry.npmjs.org/antd/-/antd-5.25.4.tgz", + "integrity": "sha512-yXdWqq1NJSZnD1HoPZWnWuQJGVYYnB3h0Ufsz4sbt3T0N9SdJ4G9GPpLMk8Gn9zWtwBekfR4THPVZ9uzAyhBHQ==", + "license": "MIT", + "dependencies": { + "@ant-design/colors": "^7.2.1", + "@ant-design/cssinjs": "^1.23.0", + "@ant-design/cssinjs-utils": "^1.1.3", + "@ant-design/fast-color": "^2.0.6", + "@ant-design/icons": "^5.6.1", + "@ant-design/react-slick": "~1.1.2", + "@babel/runtime": "^7.26.0", + "@rc-component/color-picker": "~2.0.1", + "@rc-component/mutate-observer": "^1.1.0", + "@rc-component/qrcode": "~1.0.0", + "@rc-component/tour": "~1.15.1", + "@rc-component/trigger": "^2.2.6", + "classnames": "^2.5.1", + "copy-to-clipboard": "^3.3.3", + "dayjs": "^1.11.11", + "rc-cascader": "~3.34.0", + "rc-checkbox": "~3.5.0", + "rc-collapse": "~3.9.0", + "rc-dialog": "~9.6.0", + "rc-drawer": "~7.3.0", + "rc-dropdown": "~4.2.1", + "rc-field-form": "~2.7.0", + "rc-image": "~7.12.0", + "rc-input": "~1.8.0", + "rc-input-number": "~9.5.0", + "rc-mentions": "~2.20.0", + "rc-menu": "~9.16.1", + "rc-motion": "^2.9.5", + "rc-notification": "~5.6.4", + "rc-pagination": "~5.1.0", + "rc-picker": "~4.11.3", + "rc-progress": "~4.0.0", + "rc-rate": "~2.13.1", + "rc-resize-observer": "^1.4.3", + "rc-segmented": "~2.7.0", + "rc-select": "~14.16.8", + "rc-slider": "~11.1.8", + "rc-steps": "~6.0.1", + "rc-switch": "~4.1.0", + "rc-table": "~7.50.5", + "rc-tabs": "~15.6.1", + "rc-textarea": "~1.10.0", + "rc-tooltip": "~6.4.0", + "rc-tree": "~5.13.1", + "rc-tree-select": "~5.27.0", + "rc-upload": "~4.9.2", + "rc-util": "^5.44.4", + "scroll-into-view-if-needed": "^3.1.0", + "throttle-debounce": "^5.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/ant-design" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "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/apexcharts": { + "version": "3.41.0", + "resolved": "https://registry.npmjs.org/apexcharts/-/apexcharts-3.41.0.tgz", + "integrity": "sha512-FJXA7NVjxs1q+ptR3b1I+pN8K/gWuXn+qLZjFz8EHvJOokdgcuwa/HSe5aC465HW/LWnrjWLSTsOQejQbQ42hQ==", + "license": "MIT", + "dependencies": { + "svg.draggable.js": "^2.2.2", + "svg.easing.js": "^2.0.0", + "svg.filter.js": "^2.0.2", + "svg.pathmorphing.js": "^0.1.3", + "svg.resize.js": "^1.4.3", + "svg.select.js": "^3.0.1" + } + }, + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "license": "MIT" + }, + "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/aria-query": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", + "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "is-array-buffer": "^3.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "license": "MIT" + }, + "node_modules/array-includes": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", + "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "is-string": "^1.0.7" + }, + "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/array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz", + "integrity": "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-shim-unscopables": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", + "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", + "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", + "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", + "license": "MIT" + }, + "node_modules/async-function": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", + "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "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/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/axe-core": { + "version": "4.10.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.10.3.tgz", + "integrity": "sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==", + "license": "MPL-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/axios": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.9.0.tgz", + "integrity": "sha512-re4CqKTJaURpzbLHtIi6XpDv20/CnpXOtjRY5/CU32L8gU8ek9UIivcfvSWvmKEngmVbrUtPpdDwWDWL7DNHvg==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/axobject-query": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.13", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.13.tgz", + "integrity": "sha512-3sX/eOms8kd3q2KZ6DAhKPc0dgm525Gqq5NtWKZ7QYYZEv57OQ54KtblzJzH1lQF/eQxO8KjWGIK9IPUJNus5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.4", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.11.1.tgz", + "integrity": "sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.3", + "core-js-compat": "^3.40.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.4.tgz", + "integrity": "sha512-7gD3pRadPrbjhjLyxebmx/WrFYcuSjZ0XbdUujQMZ/fcE9oeewk2U/7PCvez84UeuK3oSjmPZ0Ch0dlupQvGzw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.4" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.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/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/base64id": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz", + "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==", + "license": "MIT", + "engines": { + "node": "^4.5.0 || >= 5.9" + } + }, + "node_modules/big.js": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-6.2.2.tgz", + "integrity": "sha512-y/ie+Faknx7sZA5MfGA2xKlu0GDv8RWrXGsmlteyJQ2lvoKv9GBK/fpRMc2qlSoBAgNxrixICFCBefIq8WCQpQ==", + "license": "MIT", + "engines": { + "node": "*" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/bigjs" + } + }, + "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/body-parser": { + "version": "1.20.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", + "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.13.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/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/body-parser/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/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true, + "license": "ISC" + }, + "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/browserslist": { + "version": "4.25.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.0.tgz", + "integrity": "sha512-PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA==", + "dev": true, + "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.30001718", + "electron-to-chromium": "^1.5.160", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "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-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-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==", + "license": "BSD-3-Clause" + }, + "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==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.0", + "es-define-property": "^1.0.0", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001720", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001720.tgz", + "integrity": "sha512-Ec/2yV2nNPwb4DnTANEV99ZWwm3ZWfdlfkQbWSDDt+PsXEVYwlhPH8tdMaPunYTKKmz7AnHi2oNEi1GcmKCD8g==", + "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/chokidar": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/classnames": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", + "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==", + "license": "MIT" + }, + "node_modules/cli-cursor": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz", + "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==", + "dev": true, + "license": "MIT", + "dependencies": { + "restore-cursor": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-4.0.0.tgz", + "integrity": "sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==", + "dev": true, + "license": "MIT", + "dependencies": { + "slice-ansi": "^5.0.0", + "string-width": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", + "license": "MIT" + }, + "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/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true, + "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/commander": { + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-13.1.0.tgz", + "integrity": "sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/compute-scroll-into-view": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-3.1.1.tgz", + "integrity": "sha512-VRhuHOLoKYOy4UbilLbUzbYg93XLjv2PncJC50EuTWPA3gaja1UjBsUP/D/9/juV3vQFr6XBEzn9KCAHdUvOHw==", + "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/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", + "dev": true, + "license": "MIT" + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-hex": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/convert-hex/-/convert-hex-0.1.0.tgz", + "integrity": "sha512-w20BOb1PiR/sEJdS6wNrUjF5CSfscZFUp7R9NSlXH8h2wynzXVEPFPJECAnkNylZ+cvf3p7TyRUHggDmrwXT9A==" + }, + "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==", + "dev": true, + "license": "MIT" + }, + "node_modules/convert-string": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/convert-string/-/convert-string-0.1.0.tgz", + "integrity": "sha512-1KX9ESmtl8xpT2LN2tFnKSbV4NiarbVi8DVb39ZriijvtTklyrT+4dT1wsGMHKD3CJUjXgvJzstm9qL9ICojGA==" + }, + "node_modules/cookie": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", + "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "license": "MIT" + }, + "node_modules/copy-to-clipboard": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", + "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==", + "license": "MIT", + "dependencies": { + "toggle-selection": "^1.0.6" + } + }, + "node_modules/core-js-compat": { + "version": "3.42.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.42.0.tgz", + "integrity": "sha512-bQasjMfyDGyaeWKBIu33lHh9qlSR0MFE/Nmc6nMjf/iU9b3rSMdAYz1Baxrv4lPdGUsTqZudHA4jIGSJy0SWZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "browserslist": "^4.24.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "license": "MIT", + "dependencies": { + "object-assign": "^4", + "vary": "^1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "dev": true, + "license": "MIT", + "dependencies": { + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "license": "MIT" + }, + "node_modules/cross-env": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", + "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.1" + }, + "bin": { + "cross-env": "src/bin/cross-env.js", + "cross-env-shell": "src/bin/cross-env-shell.js" + }, + "engines": { + "node": ">=10.14", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz", + "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==", + "license": "MIT" + }, + "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==", + "dev": true, + "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": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.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==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "css-tree": "~2.2.0" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "dev": true, + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "license": "MIT" + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "license": "BSD-2-Clause" + }, + "node_modules/data-uri-to-buffer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", + "license": "MIT", + "engines": { + "node": ">= 12" + } + }, + "node_modules/data-view-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", + "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", + "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/inspect-js" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", + "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "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.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decimal.js": { + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.5.0.tgz", + "integrity": "sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==", + "license": "MIT" + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "license": "MIT" + }, + "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==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "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-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/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/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==", + "dev": true, + "license": "Apache-2.0", + "optional": true, + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "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/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "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==", + "dev": true, + "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==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dev": true, + "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.2.2", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", + "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", + "dev": true, + "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/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dottie": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/dottie/-/dottie-2.0.6.tgz", + "integrity": "sha512-iGCHkfUc5kFekGiqhe8B/mdaurD+lakO9txNnTvKtA6PISrw86LgqHvRzWYPyoE2Ph5aMIrCw9/uko6XHTKCwA==", + "license": "MIT" + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ecdsa-sig-formatter": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "license": "Apache-2.0", + "dependencies": { + "safe-buffer": "^5.0.1" + } + }, + "node_modules/echarts": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/echarts/-/echarts-5.6.0.tgz", + "integrity": "sha512-oTbVTsXfKuEhxftHqL5xprgLoc0k7uScAwtryCgWF6hPYFLRwOUHiFmHGCBKP5NPFNkDVopOieyUqYGH8Fa3kA==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "2.3.0", + "zrender": "5.6.1" + } + }, + "node_modules/echarts-for-react": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/echarts-for-react/-/echarts-for-react-3.0.2.tgz", + "integrity": "sha512-DRwIiTzx8JfwPOVgGttDytBqdp5VzCSyMRIxubgU/g2n9y3VLUmF2FK7Icmg/sNVkv4+rktmrLN9w22U2yy3fA==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "size-sensor": "^1.0.1" + }, + "peerDependencies": { + "echarts": "^3.0.0 || ^4.0.0 || ^5.0.0", + "react": "^15.0.0 || >=16.0.0" + } + }, + "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.161", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.161.tgz", + "integrity": "sha512-hwtetwfKNZo/UlwHIVBlKZVdy7o8bIZxxKs0Mv/ROPiQQQmDgdm5a+KvKtBsxM8ZjFzTaCeLoodZ8jiBE3o9rA==", + "dev": true, + "license": "ISC" + }, + "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/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "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/engine.io": { + "version": "6.6.4", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.6.4.tgz", + "integrity": "sha512-ZCkIjSYNDyGn0R6ewHDtXgns/Zre/NT6Agvq1/WobF7JXgFff4SeDroKiCO3fNJreU9YG429Sc81o4w5ok/W5g==", + "license": "MIT", + "dependencies": { + "@types/cors": "^2.8.12", + "@types/node": ">=10.0.0", + "accepts": "~1.3.4", + "base64id": "2.0.0", + "cookie": "~0.7.2", + "cors": "~2.8.5", + "debug": "~4.3.1", + "engine.io-parser": "~5.2.1", + "ws": "~8.17.1" + }, + "engines": { + "node": ">=10.2.0" + } + }, + "node_modules/engine.io-client": { + "version": "6.6.3", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.6.3.tgz", + "integrity": "sha512-T0iLjnyNWahNyv/lcjS2y4oE358tVS/SYQNxYXGAJ9/GLgH4VCvOQ/mhTjqU88mLZCQgiG8RIegFHYCdVC+j5w==", + "license": "MIT", + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.1", + "engine.io-parser": "~5.2.1", + "ws": "~8.17.1", + "xmlhttprequest-ssl": "~2.1.1" + } + }, + "node_modules/engine.io-client/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/engine.io-parser": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.3.tgz", + "integrity": "sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/engine.io/node_modules/cookie": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", + "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/engine.io/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/enhanced-resolve": { + "version": "5.18.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz", + "integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/environment": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/environment/-/environment-1.1.0.tgz", + "integrity": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.24.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.0.tgz", + "integrity": "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.2", + "arraybuffer.prototype.slice": "^1.0.4", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "data-view-buffer": "^1.0.2", + "data-view-byte-length": "^1.0.2", + "data-view-byte-offset": "^1.0.1", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-set-tostringtag": "^2.1.0", + "es-to-primitive": "^1.3.0", + "function.prototype.name": "^1.1.8", + "get-intrinsic": "^1.3.0", + "get-proto": "^1.0.1", + "get-symbol-description": "^1.1.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "internal-slot": "^1.1.0", + "is-array-buffer": "^3.0.5", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.2", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.2.1", + "is-set": "^2.0.3", + "is-shared-array-buffer": "^1.0.4", + "is-string": "^1.1.1", + "is-typed-array": "^1.1.15", + "is-weakref": "^1.1.1", + "math-intrinsics": "^1.1.0", + "object-inspect": "^1.13.4", + "object-keys": "^1.1.1", + "object.assign": "^4.1.7", + "own-keys": "^1.0.1", + "regexp.prototype.flags": "^1.5.4", + "safe-array-concat": "^1.1.3", + "safe-push-apply": "^1.0.0", + "safe-regex-test": "^1.1.0", + "set-proto": "^1.0.0", + "stop-iteration-iterator": "^1.1.0", + "string.prototype.trim": "^1.2.10", + "string.prototype.trimend": "^1.0.9", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.3", + "typed-array-byte-length": "^1.0.3", + "typed-array-byte-offset": "^1.0.4", + "typed-array-length": "^1.0.7", + "unbox-primitive": "^1.1.0", + "which-typed-array": "^1.1.19" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "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-iterator-helpers": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.1.tgz", + "integrity": "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.6", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.3", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.6", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "iterator.prototype": "^1.1.4", + "safe-array-concat": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-module-lexer": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", + "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", + "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", + "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7", + "is-date-object": "^1.0.5", + "is-symbol": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/esbuild": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.5.tgz", + "integrity": "sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.5", + "@esbuild/android-arm": "0.25.5", + "@esbuild/android-arm64": "0.25.5", + "@esbuild/android-x64": "0.25.5", + "@esbuild/darwin-arm64": "0.25.5", + "@esbuild/darwin-x64": "0.25.5", + "@esbuild/freebsd-arm64": "0.25.5", + "@esbuild/freebsd-x64": "0.25.5", + "@esbuild/linux-arm": "0.25.5", + "@esbuild/linux-arm64": "0.25.5", + "@esbuild/linux-ia32": "0.25.5", + "@esbuild/linux-loong64": "0.25.5", + "@esbuild/linux-mips64el": "0.25.5", + "@esbuild/linux-ppc64": "0.25.5", + "@esbuild/linux-riscv64": "0.25.5", + "@esbuild/linux-s390x": "0.25.5", + "@esbuild/linux-x64": "0.25.5", + "@esbuild/netbsd-arm64": "0.25.5", + "@esbuild/netbsd-x64": "0.25.5", + "@esbuild/openbsd-arm64": "0.25.5", + "@esbuild/openbsd-x64": "0.25.5", + "@esbuild/sunos-x64": "0.25.5", + "@esbuild/win32-arm64": "0.25.5", + "@esbuild/win32-ia32": "0.25.5", + "@esbuild/win32-x64": "0.25.5" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "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/eslint": { + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", + "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", + "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.1", + "@humanwhocodes/config-array": "^0.13.0", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-airbnb-base": { + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz", + "integrity": "sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==", + "dev": true, + "license": "MIT", + "dependencies": { + "confusing-browser-globals": "^1.0.10", + "object.assign": "^4.1.2", + "object.entries": "^1.1.5", + "semver": "^6.3.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "peerDependencies": { + "eslint": "^7.32.0 || ^8.2.0", + "eslint-plugin-import": "^2.25.2" + } + }, + "node_modules/eslint-config-next": { + "version": "13.2.4", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.2.4.tgz", + "integrity": "sha512-lunIBhsoeqw6/Lfkd6zPt25w1bn0znLA/JCL+au1HoEpSb4/PpsOYsYtgV/q+YPsoKIOzFyU5xnb04iZnXjUvg==", + "license": "MIT", + "dependencies": { + "@next/eslint-plugin-next": "13.2.4", + "@rushstack/eslint-patch": "^1.1.3", + "@typescript-eslint/parser": "^5.42.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.26.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.31.7", + "eslint-plugin-react-hooks": "^4.5.0" + }, + "peerDependencies": { + "eslint": "^7.23.0 || ^8.0.0", + "typescript": ">=3.3.1" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-config-prettier": { + "version": "10.1.5", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.5.tgz", + "integrity": "sha512-zc1UmCpNltmVY34vuLRV61r1K27sWuX39E+uyUnY8xS2Bex88VV9cugG+UZbRSRGtGyFboj+D8JODyme1plMpw==", + "dev": true, + "license": "MIT", + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "funding": { + "url": "https://opencollective.com/eslint-config-prettier" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/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/eslint-import-resolver-typescript": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.10.1.tgz", + "integrity": "sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==", + "license": "ISC", + "dependencies": { + "@nolyfill/is-core-module": "1.0.39", + "debug": "^4.4.0", + "get-tsconfig": "^4.10.0", + "is-bun-module": "^2.0.0", + "stable-hash": "^0.0.5", + "tinyglobby": "^0.2.13", + "unrs-resolver": "^1.6.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-import-resolver-typescript" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*", + "eslint-plugin-import-x": "*" + }, + "peerDependenciesMeta": { + "eslint-plugin-import": { + "optional": true + }, + "eslint-plugin-import-x": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz", + "integrity": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==", + "license": "MIT", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/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/eslint-plugin-import": { + "version": "2.31.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz", + "integrity": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==", + "license": "MIT", + "dependencies": { + "@rtsao/scc": "^1.1.0", + "array-includes": "^3.1.8", + "array.prototype.findlastindex": "^1.2.5", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.12.0", + "hasown": "^2.0.2", + "is-core-module": "^2.15.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "object.groupby": "^1.0.3", + "object.values": "^1.2.0", + "semver": "^6.3.1", + "string.prototype.trimend": "^1.0.8", + "tsconfig-paths": "^3.15.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-import/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/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz", + "integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==", + "license": "MIT", + "dependencies": { + "aria-query": "^5.3.2", + "array-includes": "^3.1.8", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "^4.10.0", + "axobject-query": "^4.1.0", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "hasown": "^2.0.2", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.8", + "safe-regex-test": "^1.0.3", + "string.prototype.includes": "^2.0.1" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.37.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz", + "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==", + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.3", + "array.prototype.tosorted": "^1.1.4", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.2.1", + "estraverse": "^5.3.0", + "hasown": "^2.0.2", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.9", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.1", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.12", + "string.prototype.repeat": "^1.0.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz", + "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "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/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "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/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==", + "dev": true, + "license": "MIT" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "license": "MIT", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": ">=16.17" + }, + "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/express": { + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz", + "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.3", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.7.1", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.3.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.3", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.12", + "proxy-addr": "~2.0.7", + "qs": "6.13.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.19.0", + "serve-static": "1.16.2", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/express/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/express/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/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.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "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.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/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/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==", + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "license": "MIT" + }, + "node_modules/fast-uri": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz", + "integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "BSD-3-Clause", + "peer": true + }, + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fdir": { + "version": "6.4.5", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.5.tgz", + "integrity": "sha512-4BG7puHpVsIYxZUbiUE3RqGloLaSSwzYie5jvasC4LWuBWzZawynvYouhjbQKw2JuIGYdm0DzIxl8iVidKlUEw==", + "license": "MIT", + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "paypal", + "url": "https://paypal.me/jimmywarting" + } + ], + "license": "MIT", + "dependencies": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + }, + "engines": { + "node": "^12.20 || >= 14.13" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "license": "MIT", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "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/finalhandler": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", + "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "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/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/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "license": "ISC" + }, + "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/for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/form-data": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.2.tgz", + "integrity": "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "license": "MIT", + "dependencies": { + "fetch-blob": "^3.1.2" + }, + "engines": { + "node": ">=12.20.0" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "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.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==", + "hasInstallScript": true, + "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.8", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", + "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "functions-have-names": "^1.2.3", + "hasown": "^2.0.2", + "is-callable": "^1.2.7" + }, + "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==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-east-asian-width": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.3.0.tgz", + "integrity": "sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", + "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-tsconfig": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.10.1.tgz", + "integrity": "sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==", + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/gifwrap": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/gifwrap/-/gifwrap-0.10.1.tgz", + "integrity": "sha512-2760b1vpJHNmLzZ/ubTtNnEx5WApN/PYWJvXvgS+tL1egTTthayFYIQQNi136FLEDcN/IyEY2EcGpIITD6eYUw==", + "license": "MIT", + "dependencies": { + "image-q": "^4.0.0", + "omggif": "^1.0.10" + } + }, + "node_modules/glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "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/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "license": "BSD-2-Clause" + }, + "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==", + "dev": true, + "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.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "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/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "license": "MIT" + }, + "node_modules/has-bigints": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "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.2.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "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/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/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/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=16.17.0" + } + }, + "node_modules/husky": { + "version": "9.1.7", + "resolved": "https://registry.npmjs.org/husky/-/husky-9.1.7.tgz", + "integrity": "sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==", + "dev": true, + "license": "MIT", + "bin": { + "husky": "bin.js" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/typicode" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "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/immutable": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.2.tgz", + "integrity": "sha512-qHKXW1q6liAk1Oys6umoaZbDRqjcjgSrbnrifHsfsttza7zcvRAsL7mMV6xWcyhwQy7Xj5v4hhbr6b+iDYwlmQ==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "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/inflection": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.13.4.tgz", + "integrity": "sha512-6I/HUDeYFfuNCVS3td055BaXBwKYuzw7K3ExVMStBowKo9oOAMJIXIHvdyR3iboTCp1b+1i5DSkIZTcwIktuDw==", + "engines": [ + "node >= 0.4.0" + ], + "license": "MIT" + }, + "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==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "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/internal-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.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-array-buffer": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-async-function": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", + "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", + "license": "MIT", + "dependencies": { + "async-function": "^1.0.0", + "call-bound": "^1.0.3", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-boolean-object": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", + "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bun-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-2.0.0.tgz", + "integrity": "sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==", + "license": "MIT", + "dependencies": { + "semver": "^7.7.1" + } + }, + "node_modules/is-bun-module/node_modules/semver": { + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "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.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "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.2", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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-finalizationregistry": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", + "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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-function": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz", + "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "get-proto": "^1.0.0", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.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-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", + "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/isomorphic-fetch": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz", + "integrity": "sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==", + "license": "MIT", + "dependencies": { + "node-fetch": "^2.6.1", + "whatwg-fetch": "^3.4.1" + } + }, + "node_modules/isomorphic-fetch/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/iterator.prototype": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz", + "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "get-proto": "^1.0.0", + "has-symbols": "^1.1.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.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==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jimp": { + "version": "0.22.12", + "resolved": "https://registry.npmjs.org/jimp/-/jimp-0.22.12.tgz", + "integrity": "sha512-R5jZaYDnfkxKJy1dwLpj/7cvyjxiclxU3F4TrI/J4j2rS0niq6YDUMoPn5hs8GDpO+OZGo7Ky057CRtWesyhfg==", + "license": "MIT", + "dependencies": { + "@jimp/custom": "^0.22.12", + "@jimp/plugins": "^0.22.12", + "@jimp/types": "^0.22.12", + "regenerator-runtime": "^0.13.3" + } + }, + "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-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": "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/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "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-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "license": "MIT" + }, + "node_modules/json2mq": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/json2mq/-/json2mq-0.2.0.tgz", + "integrity": "sha512-SzoRg7ux5DWTII9J2qkrZrqV1gt+rTaoufMxEzXbS26Uid0NwaJd123HcoB80TgubEppxxIGdNxCx50fEoEWQA==", + "license": "MIT", + "dependencies": { + "string-convert": "^0.2.0" + } + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonwebtoken": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz", + "integrity": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==", + "license": "MIT", + "dependencies": { + "jws": "^3.2.2", + "lodash.includes": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isinteger": "^4.0.4", + "lodash.isnumber": "^3.0.3", + "lodash.isplainobject": "^4.0.6", + "lodash.isstring": "^4.0.1", + "lodash.once": "^4.0.0", + "ms": "^2.1.1", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=12", + "npm": ">=6" + } + }, + "node_modules/jsonwebtoken/node_modules/semver": { + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/jwa": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.2.tgz", + "integrity": "sha512-eeH5JO+21J78qMvTIDdBXidBd6nG2kZjg5Ohz/1fpa28Z4CcsWUzJ1ZZyFq/3z3N17aZy+ZuBoHljASbL1WfOw==", + "license": "MIT", + "dependencies": { + "buffer-equal-constant-time": "^1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/jws": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", + "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", + "license": "MIT", + "dependencies": { + "jwa": "^1.4.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.23", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", + "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==", + "license": "CC0-1.0" + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "license": "MIT", + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "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==", + "dev": true, + "license": "MIT" + }, + "node_modules/lint-staged": { + "version": "15.5.2", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-15.5.2.tgz", + "integrity": "sha512-YUSOLq9VeRNAo/CTaVmhGDKG+LBtA8KF1X4K5+ykMSwWST1vDxJRB2kv2COgLb1fvpCo+A/y9A0G0znNVmdx4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^5.4.1", + "commander": "^13.1.0", + "debug": "^4.4.0", + "execa": "^8.0.1", + "lilconfig": "^3.1.3", + "listr2": "^8.2.5", + "micromatch": "^4.0.8", + "pidtree": "^0.6.0", + "string-argv": "^0.3.2", + "yaml": "^2.7.0" + }, + "bin": { + "lint-staged": "bin/lint-staged.js" + }, + "engines": { + "node": ">=18.12.0" + }, + "funding": { + "url": "https://opencollective.com/lint-staged" + } + }, + "node_modules/lint-staged/node_modules/chalk": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", + "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/listr2": { + "version": "8.3.3", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-8.3.3.tgz", + "integrity": "sha512-LWzX2KsqcB1wqQ4AHgYb4RsDXauQiqhjLk+6hjbaeHG4zpjjVAB6wC/gz6X0l+Du1cN3pUB5ZlrvTbhGSNnUQQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "cli-truncate": "^4.0.0", + "colorette": "^2.0.20", + "eventemitter3": "^5.0.1", + "log-update": "^6.1.0", + "rfdc": "^1.4.1", + "wrap-ansi": "^9.0.0" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "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/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/loader-utils/node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + } + }, + "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==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.includes": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", + "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==", + "license": "MIT" + }, + "node_modules/lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==", + "license": "MIT" + }, + "node_modules/lodash.isinteger": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", + "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==", + "license": "MIT" + }, + "node_modules/lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==", + "license": "MIT" + }, + "node_modules/lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", + "license": "MIT" + }, + "node_modules/lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", + "license": "MIT" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "license": "MIT" + }, + "node_modules/lodash.once": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", + "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", + "license": "MIT" + }, + "node_modules/log-update": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-6.1.0.tgz", + "integrity": "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^7.0.0", + "cli-cursor": "^5.0.0", + "slice-ansi": "^7.1.0", + "strip-ansi": "^7.1.0", + "wrap-ansi": "^9.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/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/log-update/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==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/log-update/node_modules/is-fullwidth-code-point": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz", + "integrity": "sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-east-asian-width": "^1.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/slice-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.0.tgz", + "integrity": "sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.2.1", + "is-fullwidth-code-point": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/log-update/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/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/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "license": "MIT", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "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==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "license": "ISC" + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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==", + "dev": true, + "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/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "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/micromatch/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/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": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mimic-function": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz", + "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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/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/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/moment-timezone": { + "version": "0.5.48", + "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.48.tgz", + "integrity": "sha512-f22b8LV1gbTO2ms2j2z13MuPogNoh5UzxL3nzNAYKGraILnbGc9NEE6dyiiiLv46DGRb8A4kg8UKWLjPthxBHw==", + "license": "MIT", + "dependencies": { + "moment": "^2.29.4" + }, + "engines": { + "node": "*" + } + }, + "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/nanoid": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-4.0.2.tgz", + "integrity": "sha512-7ZtY5KTCNheRGfEFxnedV5zFiORN1+Y1N6zvPTnHQd8ENUvfaDBeuJDZb2bN/oXwXxu3qkTXDzy57W5vAmDTBw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^14 || ^16 || >=18" + } + }, + "node_modules/napi-postinstall": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.2.4.tgz", + "integrity": "sha512-ZEzHJwBhZ8qQSbknHqYcdtQVr8zUgGyM/q6h6qAyhtyVMNrSgDhrC4disf03dYW0e+czXyLnZINnCTEkWy0eJg==", + "license": "MIT", + "bin": { + "napi-postinstall": "lib/cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/napi-postinstall" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "license": "MIT" + }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "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==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/next": { + "version": "13.5.11", + "resolved": "https://registry.npmjs.org/next/-/next-13.5.11.tgz", + "integrity": "sha512-WUPJ6WbAX9tdC86kGTu92qkrRdgRqVrY++nwM+shmWQwmyxt4zhZfR59moXSI4N8GDYCBY3lIAqhzjDd4rTC8Q==", + "license": "MIT", + "dependencies": { + "@next/env": "13.5.11", + "@swc/helpers": "0.5.2", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001406", + "postcss": "8.4.31", + "styled-jsx": "5.1.1", + "watchpack": "2.4.0" + }, + "bin": { + "next": "dist/bin/next" + }, + "engines": { + "node": ">=16.14.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "13.5.9", + "@next/swc-darwin-x64": "13.5.9", + "@next/swc-linux-arm64-gnu": "13.5.9", + "@next/swc-linux-arm64-musl": "13.5.9", + "@next/swc-linux-x64-gnu": "13.5.9", + "@next/swc-linux-x64-musl": "13.5.9", + "@next/swc-win32-arm64-msvc": "13.5.9", + "@next/swc-win32-ia32-msvc": "13.5.9", + "@next/swc-win32-x64-msvc": "13.5.9" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/next-themes": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/next-themes/-/next-themes-0.2.1.tgz", + "integrity": "sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==", + "license": "MIT", + "peerDependencies": { + "next": "*", + "react": "*", + "react-dom": "*" + } + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "license": "MIT", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "deprecated": "Use your platform's native DOMException instead", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "license": "MIT", + "engines": { + "node": ">=10.5.0" + } + }, + "node_modules/node-fetch": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", + "license": "MIT", + "dependencies": { + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/node-fetch" + } + }, + "node_modules/node-releases": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "dev": true, + "license": "MIT" + }, + "node_modules/npm-run-path": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "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.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "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.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0", + "has-symbols": "^1.1.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz", + "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.values": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", + "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "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/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": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/own-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", + "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.6", + "object-keys": "^1.1.1", + "safe-push-apply": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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/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/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "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-headers": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.6.tgz", + "integrity": "sha512-Tz11t3uKztEW5FEVZnj1ox8GKblWn+PvHY9TmJV5Mll2uHEwRdR/5Li1OlXoECjLYkApdhWy44ocONwXLiKO5A==", + "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/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/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": "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/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-to-regexp": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", + "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==", + "license": "MIT" + }, + "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/pg-connection-string": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.9.0.tgz", + "integrity": "sha512-P2DEBKuvh5RClafLngkAuGe9OUlFV7ebu8w1kmaaOgPcpJd1RIFh7otETfI6hAR8YupOLFTY7nuvvIn7PLciUQ==", + "license": "MIT" + }, + "node_modules/pg-int8": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", + "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/pg-protocol": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.10.0.tgz", + "integrity": "sha512-IpdytjudNuLv8nhlHs/UrVBhU0e78J0oIS/0AVdTbWxSOkFUVdsHC/NrorO6nXsQNDTT1kzDSOMJubBQviX18Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/pg-types": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", + "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pg-int8": "1.0.1", + "postgres-array": "~2.0.0", + "postgres-bytea": "~1.0.0", + "postgres-date": "~1.0.4", + "postgres-interval": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "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/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pidtree": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "dev": true, + "license": "MIT", + "bin": { + "pidtree": "bin/pidtree.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "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/pixelmatch/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/pngjs": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-6.0.0.tgz", + "integrity": "sha512-TRzzuFRRmEoSW/p1KVAmiOgPco2Irlah+bGFCeNfJXxxYGwSw7YwAOAcd7X28K/m5bjBWKsC29KyoMfHbypayg==", + "license": "MIT", + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "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.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss/node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "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/postgres-array": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", + "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/postgres-bytea": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", + "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postgres-date": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", + "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postgres-interval": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", + "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "xtend": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", + "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "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/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/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "license": "MIT" + }, + "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/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/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/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "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/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/rc-cascader": { + "version": "3.34.0", + "resolved": "https://registry.npmjs.org/rc-cascader/-/rc-cascader-3.34.0.tgz", + "integrity": "sha512-KpXypcvju9ptjW9FaN2NFcA2QH9E9LHKq169Y0eWtH4e/wHQ5Wh5qZakAgvb8EKZ736WZ3B0zLLOBsrsja5Dag==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.25.7", + "classnames": "^2.3.1", + "rc-select": "~14.16.2", + "rc-tree": "~5.13.0", + "rc-util": "^5.43.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-checkbox": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/rc-checkbox/-/rc-checkbox-3.5.0.tgz", + "integrity": "sha512-aOAQc3E98HteIIsSqm6Xk2FPKIER6+5vyEFMZfo73TqM+VVAIqOkHoPjgKLqSNtVLWScoaM7vY2ZrGEheI79yg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.3.2", + "rc-util": "^5.25.2" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-collapse": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/rc-collapse/-/rc-collapse-3.9.0.tgz", + "integrity": "sha512-swDdz4QZ4dFTo4RAUMLL50qP0EY62N2kvmk2We5xYdRwcRn8WcYtuetCJpwpaCbUfUt5+huLpVxhvmnK+PHrkA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.3.4", + "rc-util": "^5.27.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-dialog": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/rc-dialog/-/rc-dialog-9.6.0.tgz", + "integrity": "sha512-ApoVi9Z8PaCQg6FsUzS8yvBEQy0ZL2PkuvAgrmohPkN3okps5WZ5WQWPc1RNuiOKaAYv8B97ACdsFU5LizzCqg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.1", + "@rc-component/portal": "^1.0.0-8", + "classnames": "^2.2.6", + "rc-motion": "^2.3.0", + "rc-util": "^5.21.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-drawer": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/rc-drawer/-/rc-drawer-7.3.0.tgz", + "integrity": "sha512-DX6CIgiBWNpJIMGFO8BAISFkxiuKitoizooj4BDyee8/SnBn0zwO2FHrNDpqqepj0E/TFTDpmEBCyFuTgC7MOg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.23.9", + "@rc-component/portal": "^1.1.1", + "classnames": "^2.2.6", + "rc-motion": "^2.6.1", + "rc-util": "^5.38.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-dropdown": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/rc-dropdown/-/rc-dropdown-4.2.1.tgz", + "integrity": "sha512-YDAlXsPv3I1n42dv1JpdM7wJ+gSUBfeyPK59ZpBD9jQhK9jVuxpjj3NmWQHOBceA1zEPVX84T2wbdb2SD0UjmA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@rc-component/trigger": "^2.0.0", + "classnames": "^2.2.6", + "rc-util": "^5.44.1" + }, + "peerDependencies": { + "react": ">=16.11.0", + "react-dom": ">=16.11.0" + } + }, + "node_modules/rc-field-form": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/rc-field-form/-/rc-field-form-2.7.0.tgz", + "integrity": "sha512-hgKsCay2taxzVnBPZl+1n4ZondsV78G++XVsMIJCAoioMjlMQR9YwAp7JZDIECzIu2Z66R+f4SFIRrO2DjDNAA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.0", + "@rc-component/async-validator": "^5.0.3", + "rc-util": "^5.32.2" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-image": { + "version": "7.12.0", + "resolved": "https://registry.npmjs.org/rc-image/-/rc-image-7.12.0.tgz", + "integrity": "sha512-cZ3HTyyckPnNnUb9/DRqduqzLfrQRyi+CdHjdqgsyDpI3Ln5UX1kXnAhPBSJj9pVRzwRFgqkN7p9b6HBDjmu/Q==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.11.2", + "@rc-component/portal": "^1.0.2", + "classnames": "^2.2.6", + "rc-dialog": "~9.6.0", + "rc-motion": "^2.6.2", + "rc-util": "^5.34.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-input": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/rc-input/-/rc-input-1.8.0.tgz", + "integrity": "sha512-KXvaTbX+7ha8a/k+eg6SYRVERK0NddX8QX7a7AnRvUa/rEH0CNMlpcBzBkhI0wp2C8C4HlMoYl8TImSN+fuHKA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-util": "^5.18.1" + }, + "peerDependencies": { + "react": ">=16.0.0", + "react-dom": ">=16.0.0" + } + }, + "node_modules/rc-input-number": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/rc-input-number/-/rc-input-number-9.5.0.tgz", + "integrity": "sha512-bKaEvB5tHebUURAEXw35LDcnRZLq3x1k7GxfAqBMzmpHkDGzjAtnUL8y4y5N15rIFIg5IJgwr211jInl3cipag==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.1", + "@rc-component/mini-decimal": "^1.0.1", + "classnames": "^2.2.5", + "rc-input": "~1.8.0", + "rc-util": "^5.40.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-mentions": { + "version": "2.20.0", + "resolved": "https://registry.npmjs.org/rc-mentions/-/rc-mentions-2.20.0.tgz", + "integrity": "sha512-w8HCMZEh3f0nR8ZEd466ATqmXFCMGMN5UFCzEUL0bM/nGw/wOS2GgRzKBcm19K++jDyuWCOJOdgcKGXU3fXfbQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.22.5", + "@rc-component/trigger": "^2.0.0", + "classnames": "^2.2.6", + "rc-input": "~1.8.0", + "rc-menu": "~9.16.0", + "rc-textarea": "~1.10.0", + "rc-util": "^5.34.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-menu": { + "version": "9.16.1", + "resolved": "https://registry.npmjs.org/rc-menu/-/rc-menu-9.16.1.tgz", + "integrity": "sha512-ghHx6/6Dvp+fw8CJhDUHFHDJ84hJE3BXNCzSgLdmNiFErWSOaZNsihDAsKq9ByTALo/xkNIwtDFGIl6r+RPXBg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.1", + "@rc-component/trigger": "^2.0.0", + "classnames": "2.x", + "rc-motion": "^2.4.3", + "rc-overflow": "^1.3.1", + "rc-util": "^5.27.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-motion": { + "version": "2.9.5", + "resolved": "https://registry.npmjs.org/rc-motion/-/rc-motion-2.9.5.tgz", + "integrity": "sha512-w+XTUrfh7ArbYEd2582uDrEhmBHwK1ZENJiSJVb7uRxdE7qJSYjbO2eksRXmndqyKqKoYPc9ClpPh5242mV1vA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-util": "^5.44.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-notification": { + "version": "5.6.4", + "resolved": "https://registry.npmjs.org/rc-notification/-/rc-notification-5.6.4.tgz", + "integrity": "sha512-KcS4O6B4qzM3KH7lkwOB7ooLPZ4b6J+VMmQgT51VZCeEcmghdeR4IrMcFq0LG+RPdnbe/ArT086tGM8Snimgiw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.9.0", + "rc-util": "^5.20.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-overflow": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/rc-overflow/-/rc-overflow-1.4.1.tgz", + "integrity": "sha512-3MoPQQPV1uKyOMVNd6SZfONi+f3st0r8PksexIdBTeIYbMX0Jr+k7pHEDvsXtR4BpCv90/Pv2MovVNhktKrwvw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.37.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-pagination": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/rc-pagination/-/rc-pagination-5.1.0.tgz", + "integrity": "sha512-8416Yip/+eclTFdHXLKTxZvn70duYVGTvUUWbckCCZoIl3jagqke3GLsFrMs0bsQBikiYpZLD9206Ej4SOdOXQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.3.2", + "rc-util": "^5.38.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-picker": { + "version": "4.11.3", + "resolved": "https://registry.npmjs.org/rc-picker/-/rc-picker-4.11.3.tgz", + "integrity": "sha512-MJ5teb7FlNE0NFHTncxXQ62Y5lytq6sh5nUw0iH8OkHL/TjARSEvSHpr940pWgjGANpjCwyMdvsEV55l5tYNSg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.24.7", + "@rc-component/trigger": "^2.0.0", + "classnames": "^2.2.1", + "rc-overflow": "^1.3.2", + "rc-resize-observer": "^1.4.0", + "rc-util": "^5.43.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "date-fns": ">= 2.x", + "dayjs": ">= 1.x", + "luxon": ">= 3.x", + "moment": ">= 2.x", + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + }, + "peerDependenciesMeta": { + "date-fns": { + "optional": true + }, + "dayjs": { + "optional": true + }, + "luxon": { + "optional": true + }, + "moment": { + "optional": true + } + } + }, + "node_modules/rc-progress": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/rc-progress/-/rc-progress-4.0.0.tgz", + "integrity": "sha512-oofVMMafOCokIUIBnZLNcOZFsABaUw8PPrf1/y0ZBvKZNpOiu5h4AO9vv11Sw0p4Hb3D0yGWuEattcQGtNJ/aw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-util": "^5.16.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-rate": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/rc-rate/-/rc-rate-2.13.1.tgz", + "integrity": "sha512-QUhQ9ivQ8Gy7mtMZPAjLbxBt5y9GRp65VcUyGUMF3N3fhiftivPHdpuDIaWIMOTEprAjZPC08bls1dQB+I1F2Q==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.0.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-resize-observer": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/rc-resize-observer/-/rc-resize-observer-1.4.3.tgz", + "integrity": "sha512-YZLjUbyIWox8E9i9C3Tm7ia+W7euPItNWSPX5sCcQTYbnwDb5uNpnLHQCG1f22oZWUhLw4Mv2tFmeWe68CDQRQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.20.7", + "classnames": "^2.2.1", + "rc-util": "^5.44.1", + "resize-observer-polyfill": "^1.5.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-segmented": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/rc-segmented/-/rc-segmented-2.7.0.tgz", + "integrity": "sha512-liijAjXz+KnTRVnxxXG2sYDGd6iLL7VpGGdR8gwoxAXy2KglviKCxLWZdjKYJzYzGSUwKDSTdYk8brj54Bn5BA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-motion": "^2.4.4", + "rc-util": "^5.17.0" + }, + "peerDependencies": { + "react": ">=16.0.0", + "react-dom": ">=16.0.0" + } + }, + "node_modules/rc-select": { + "version": "14.16.8", + "resolved": "https://registry.npmjs.org/rc-select/-/rc-select-14.16.8.tgz", + "integrity": "sha512-NOV5BZa1wZrsdkKaiK7LHRuo5ZjZYMDxPP6/1+09+FB4KoNi8jcG1ZqLE3AVCxEsYMBe65OBx71wFoHRTP3LRg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.1", + "@rc-component/trigger": "^2.1.1", + "classnames": "2.x", + "rc-motion": "^2.0.1", + "rc-overflow": "^1.3.1", + "rc-util": "^5.16.1", + "rc-virtual-list": "^3.5.2" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/rc-slider": { + "version": "11.1.8", + "resolved": "https://registry.npmjs.org/rc-slider/-/rc-slider-11.1.8.tgz", + "integrity": "sha512-2gg/72YFSpKP+Ja5AjC5DPL1YnV8DEITDQrcc1eASrUYjl0esptaBVJBh5nLTXCCp15eD8EuGjwezVGSHhs9tQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.36.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-steps": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/rc-steps/-/rc-steps-6.0.1.tgz", + "integrity": "sha512-lKHL+Sny0SeHkQKKDJlAjV5oZ8DwCdS2hFhAkIjuQt1/pB81M0cA0ErVFdHq9+jmPmFw1vJB2F5NBzFXLJxV+g==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.16.7", + "classnames": "^2.2.3", + "rc-util": "^5.16.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-switch": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/rc-switch/-/rc-switch-4.1.0.tgz", + "integrity": "sha512-TI8ufP2Az9oEbvyCeVE4+90PDSljGyuwix3fV58p7HV2o4wBnVToEyomJRVyTaZeqNPAp+vqeo4Wnj5u0ZZQBg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.21.0", + "classnames": "^2.2.1", + "rc-util": "^5.30.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-table": { + "version": "7.50.5", + "resolved": "https://registry.npmjs.org/rc-table/-/rc-table-7.50.5.tgz", + "integrity": "sha512-FDZu8aolhSYd3v9KOc3lZOVAU77wmRRu44R0Wfb8Oj1dXRUsloFaXMSl6f7yuWZUxArJTli7k8TEOX2mvhDl4A==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.1", + "@rc-component/context": "^1.4.0", + "classnames": "^2.2.5", + "rc-resize-observer": "^1.1.0", + "rc-util": "^5.44.3", + "rc-virtual-list": "^3.14.2" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-tabs": { + "version": "15.6.1", + "resolved": "https://registry.npmjs.org/rc-tabs/-/rc-tabs-15.6.1.tgz", + "integrity": "sha512-/HzDV1VqOsUWyuC0c6AkxVYFjvx9+rFPKZ32ejxX0Uc7QCzcEjTA9/xMgv4HemPKwzBNX8KhGVbbumDjnj92aA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.11.2", + "classnames": "2.x", + "rc-dropdown": "~4.2.0", + "rc-menu": "~9.16.0", + "rc-motion": "^2.6.2", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.34.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-textarea": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/rc-textarea/-/rc-textarea-1.10.0.tgz", + "integrity": "sha512-ai9IkanNuyBS4x6sOL8qu/Ld40e6cEs6pgk93R+XLYg0mDSjNBGey6/ZpDs5+gNLD7urQ14po3V6Ck2dJLt9SA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-input": "~1.8.0", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.27.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-tooltip": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/rc-tooltip/-/rc-tooltip-6.4.0.tgz", + "integrity": "sha512-kqyivim5cp8I5RkHmpsp1Nn/Wk+1oeloMv9c7LXNgDxUpGm+RbXJGL+OPvDlcRnx9DBeOe4wyOIl4OKUERyH1g==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.11.2", + "@rc-component/trigger": "^2.0.0", + "classnames": "^2.3.1", + "rc-util": "^5.44.3" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-tree": { + "version": "5.13.1", + "resolved": "https://registry.npmjs.org/rc-tree/-/rc-tree-5.13.1.tgz", + "integrity": "sha512-FNhIefhftobCdUJshO7M8uZTA9F4OPGVXqGfZkkD/5soDeOhwO06T/aKTrg0WD8gRg/pyfq+ql3aMymLHCTC4A==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.0.1", + "rc-util": "^5.16.1", + "rc-virtual-list": "^3.5.1" + }, + "engines": { + "node": ">=10.x" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/rc-tree-select": { + "version": "5.27.0", + "resolved": "https://registry.npmjs.org/rc-tree-select/-/rc-tree-select-5.27.0.tgz", + "integrity": "sha512-2qTBTzwIT7LRI1o7zLyrCzmo5tQanmyGbSaGTIf7sYimCklAToVVfpMC6OAldSKolcnjorBYPNSKQqJmN3TCww==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.25.7", + "classnames": "2.x", + "rc-select": "~14.16.2", + "rc-tree": "~5.13.0", + "rc-util": "^5.43.0" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/rc-upload": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/rc-upload/-/rc-upload-4.9.2.tgz", + "integrity": "sha512-nHx+9rbd1FKMiMRYsqQ3NkXUv7COHPBo3X1Obwq9SWS6/diF/A0aJ5OHubvwUAIDs+4RMleljV0pcrNUc823GQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.3", + "classnames": "^2.2.5", + "rc-util": "^5.2.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-util": { + "version": "5.44.4", + "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.44.4.tgz", + "integrity": "sha512-resueRJzmHG9Q6rI/DfK6Kdv9/Lfls05vzMs1Sk3M2P+3cJa+MakaZyWY8IPfehVuhPJFKrIY1IK4GqbiaiY5w==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.3", + "react-is": "^18.2.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-util/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/rc-virtual-list": { + "version": "3.18.6", + "resolved": "https://registry.npmjs.org/rc-virtual-list/-/rc-virtual-list-3.18.6.tgz", + "integrity": "sha512-TQ5SsutL3McvWmmxqQtMIbfeoE3dGjJrRSfKekgby7WQMpPIFvv4ghytp5Z0s3D8Nik9i9YNOCqHBfk86AwgAA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.20.0", + "classnames": "^2.2.6", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.36.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.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-apexcharts": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/react-apexcharts/-/react-apexcharts-1.4.0.tgz", + "integrity": "sha512-DrcMV4aAMrUG+n6412yzyATWEyCDWlpPBBhVbpzBC4PDeuYU6iF84SmExbck+jx5MUm4U5PM3/T307Mc3kzc9Q==", + "license": "MIT", + "dependencies": { + "prop-types": "^15.5.7" + }, + "peerDependencies": { + "apexcharts": "^3.18.0", + "react": ">=0.13" + } + }, + "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-intersection-observer": { + "version": "9.16.0", + "resolved": "https://registry.npmjs.org/react-intersection-observer/-/react-intersection-observer-9.16.0.tgz", + "integrity": "sha512-w9nJSEp+DrW9KmQmeWHQyfaP6b03v+TdXynaoA964Wxt7mdR3An11z4NNCQgL4gKSK7y1ver2Fq+JKH6CWEzUA==", + "license": "MIT", + "peerDependencies": { + "react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + } + } + }, + "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/readable-stream": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.7.0.tgz", + "integrity": "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==", + "license": "MIT", + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/readable-stream/node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "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.2.1" + } + }, + "node_modules/readable-web-to-node-stream": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.4.tgz", + "integrity": "sha512-9nX56alTf5bwXQ3ZDipHJhusu9NTQJ/CVPtb/XHAJCXihZeitfJvIRS4GqQ/mfIoOE3IelHMrpayVrosdHBuLw==", + "license": "MIT", + "dependencies": { + "readable-stream": "^4.7.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/readdirp": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", + "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.7", + "get-proto": "^1.0.1", + "which-builtin-type": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "dev": true, + "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==", + "dev": true, + "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/regexp.prototype.flags": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", + "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "get-proto": "^1.0.1", + "gopd": "^1.2.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==", + "dev": true, + "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==", + "dev": true, + "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==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "jsesc": "~3.0.2" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/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==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "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==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resize-observer-polyfill": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", + "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==", + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/restore-cursor": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz", + "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==", + "dev": true, + "license": "MIT", + "dependencies": { + "onetime": "^7.0.0", + "signal-exit": "^4.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/restore-cursor/node_modules/onetime": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz", + "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-function": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/retry-as-promised": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/retry-as-promised/-/retry-as-promised-7.1.1.tgz", + "integrity": "sha512-hMD7odLOt3LkTjcif8aRZqi/hybjpLNgSk5oF5FCowfCjok6LukpN2bDX7R5wDmbgBQFn7YoBxSagmtXHaJYJw==", + "license": "MIT" + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rfdc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", + "dev": true, + "license": "MIT" + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "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.3", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", + "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "has-symbols": "^1.1.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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/safe-push-apply": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", + "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" + }, + "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==", + "license": "MIT" + }, + "node_modules/sass": { + "version": "1.89.1", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.89.1.tgz", + "integrity": "sha512-eMLLkl+qz7tx/0cJ9wI+w09GQ2zodTkcE/aVfywwdlRcI3EO19xGnbmJwg/JMIm+5MxVJ6outddLZ4Von4E++Q==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "chokidar": "^4.0.0", + "immutable": "^5.0.2", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "@parcel/watcher": "^2.4.1" + } + }, + "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/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": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/scroll-into-view-if-needed": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.1.0.tgz", + "integrity": "sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==", + "license": "MIT", + "dependencies": { + "compute-scroll-into-view": "^3.0.2" + } + }, + "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/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/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/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/sequelize": { + "version": "6.37.7", + "resolved": "https://registry.npmjs.org/sequelize/-/sequelize-6.37.7.tgz", + "integrity": "sha512-mCnh83zuz7kQxxJirtFD7q6Huy6liPanI67BSlbzSYgVNl5eXVdE2CN1FuAeZwG1SNpGsNRCV+bJAVVnykZAFA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/sequelize" + } + ], + "license": "MIT", + "dependencies": { + "@types/debug": "^4.1.8", + "@types/validator": "^13.7.17", + "debug": "^4.3.4", + "dottie": "^2.0.6", + "inflection": "^1.13.4", + "lodash": "^4.17.21", + "moment": "^2.29.4", + "moment-timezone": "^0.5.43", + "pg-connection-string": "^2.6.1", + "retry-as-promised": "^7.0.4", + "semver": "^7.5.4", + "sequelize-pool": "^7.1.0", + "toposort-class": "^1.0.1", + "uuid": "^8.3.2", + "validator": "^13.9.0", + "wkx": "^0.5.0" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependenciesMeta": { + "ibm_db": { + "optional": true + }, + "mariadb": { + "optional": true + }, + "mysql2": { + "optional": true + }, + "oracledb": { + "optional": true + }, + "pg": { + "optional": true + }, + "pg-hstore": { + "optional": true + }, + "snowflake-sdk": { + "optional": true + }, + "sqlite3": { + "optional": true + }, + "tedious": { + "optional": true + } + } + }, + "node_modules/sequelize-pool": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/sequelize-pool/-/sequelize-pool-7.1.0.tgz", + "integrity": "sha512-G9c0qlIWQSK29pR/5U2JF5dDQeqqHRragoyahj/Nx4KOOQ3CPPfzxnfqFPCSB7x5UgjOgnZ61nSxz+fjDpRlJg==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/sequelize/node_modules/semver": { + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dev": true, + "license": "BSD-3-Clause", + "peer": true, + "dependencies": { + "randombytes": "^2.1.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/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/set-proto": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", + "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "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/sha256": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/sha256/-/sha256-0.2.0.tgz", + "integrity": "sha512-kTWMJUaez5iiT9CcMv8jSq6kMhw3ST0uRdcIWl3D77s6AsLXNXRp3heeqqfu5+Dyfu4hwpQnMzhqHh8iNQxw0w==", + "dependencies": { + "convert-hex": "~0.1.0", + "convert-string": "~0.1.0" + } + }, + "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/side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/size-sensor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/size-sensor/-/size-sensor-1.0.2.tgz", + "integrity": "sha512-2NCmWxY7A9pYKGXNBfteo4hy14gWu47rg5692peVMst6lQLPKrVjhY+UTEsPI5ceFRJSl3gVgMYaUi/hKuaiKw==", + "license": "ISC" + }, + "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": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.0.0", + "is-fullwidth-code-point": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/slice-ansi/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==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "dev": true, + "license": "MIT", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/socket.io": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.8.1.tgz", + "integrity": "sha512-oZ7iUCxph8WYRHHcjBEc9unw3adt5CmSNlppj/5Q4k2RIrhl8Z5yY2Xr4j9zj0+wzVZ0bxmYoGSzKJnRl6A4yg==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.4", + "base64id": "~2.0.0", + "cors": "~2.8.5", + "debug": "~4.3.2", + "engine.io": "~6.6.0", + "socket.io-adapter": "~2.5.2", + "socket.io-parser": "~4.2.4" + }, + "engines": { + "node": ">=10.2.0" + } + }, + "node_modules/socket.io-adapter": { + "version": "2.5.5", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.5.tgz", + "integrity": "sha512-eLDQas5dzPgOWCk9GuuJC2lBqItuhKI4uxGgo9aIV7MYbk2h9Q6uULEh8WBzThoI7l+qU9Ast9fVUmkqPP9wYg==", + "license": "MIT", + "dependencies": { + "debug": "~4.3.4", + "ws": "~8.17.1" + } + }, + "node_modules/socket.io-adapter/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/socket.io-client": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.8.1.tgz", + "integrity": "sha512-hJVXfu3E28NmzGk8o1sHhN3om52tRvwYeidbj7xKy2eIIse5IoKX3USlS6Tqt3BHAtflLIkCQBkzVrEEfWUyYQ==", + "license": "MIT", + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.2", + "engine.io-client": "~6.6.1", + "socket.io-parser": "~4.2.4" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/socket.io-client/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/socket.io-parser": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.4.tgz", + "integrity": "sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==", + "license": "MIT", + "dependencies": { + "@socket.io/component-emitter": "~3.1.0", + "debug": "~4.3.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/socket.io-parser/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/socket.io/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/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "license": "BSD-3-Clause", + "peer": true, + "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==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/stable-hash": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.5.tgz", + "integrity": "sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==", + "license": "MIT" + }, + "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/stop-iteration-iterator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", + "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "internal-slot": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "engines": { + "node": ">=10.0.0" + } + }, + "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-argv": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", + "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.6.19" + } + }, + "node_modules/string-convert": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/string-convert/-/string-convert-0.2.1.tgz", + "integrity": "sha512-u/1tdPl4yQnPBjnVrmdLo9gtuLvELKsAoRapekWggdiQNvvvum+jYF329d84NAa660KQw7pB2n36KrIKVoXa3A==", + "license": "MIT" + }, + "node_modules/string-width": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width/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/string-width/node_modules/emoji-regex": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", + "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==", + "dev": true, + "license": "MIT" + }, + "node_modules/string-width/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/string.prototype.includes": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", + "integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz", + "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.6", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "regexp.prototype.flags": "^1.5.3", + "set-function-name": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.10", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", + "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-data-property": "^1.1.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-object-atoms": "^1.0.0", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", + "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "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-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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/styled-jsx": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "license": "MIT", + "dependencies": { + "client-only": "0.0.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/stylis": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.6.tgz", + "integrity": "sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==", + "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-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/svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/svg.draggable.js": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/svg.draggable.js/-/svg.draggable.js-2.2.2.tgz", + "integrity": "sha512-JzNHBc2fLQMzYCZ90KZHN2ohXL0BQJGQimK1kGk6AvSeibuKcIdDX9Kr0dT9+UJ5O8nYA0RB839Lhvk4CY4MZw==", + "license": "MIT", + "dependencies": { + "svg.js": "^2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/svg.easing.js": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/svg.easing.js/-/svg.easing.js-2.0.0.tgz", + "integrity": "sha512-//ctPdJMGy22YoYGV+3HEfHbm6/69LJUTAqI2/5qBvaNHZ9uUFVC82B0Pl299HzgH13rKrBgi4+XyXXyVWWthA==", + "license": "MIT", + "dependencies": { + "svg.js": ">=2.3.x" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/svg.filter.js": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/svg.filter.js/-/svg.filter.js-2.0.2.tgz", + "integrity": "sha512-xkGBwU+dKBzqg5PtilaTb0EYPqPfJ9Q6saVldX+5vCRy31P6TlRCP3U9NxH3HEufkKkpNgdTLBJnmhDHeTqAkw==", + "license": "MIT", + "dependencies": { + "svg.js": "^2.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/svg.js": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/svg.js/-/svg.js-2.7.1.tgz", + "integrity": "sha512-ycbxpizEQktk3FYvn/8BH+6/EuWXg7ZpQREJvgacqn46gIddG24tNNe4Son6omdXCnSOaApnpZw6MPCBA1dODA==", + "license": "MIT" + }, + "node_modules/svg.pathmorphing.js": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/svg.pathmorphing.js/-/svg.pathmorphing.js-0.1.3.tgz", + "integrity": "sha512-49HWI9X4XQR/JG1qXkSDV8xViuTLIWm/B/7YuQELV5KMOPtXjiwH4XPJvr/ghEDibmLQ9Oc22dpWpG0vUDDNww==", + "license": "MIT", + "dependencies": { + "svg.js": "^2.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/svg.resize.js": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/svg.resize.js/-/svg.resize.js-1.4.3.tgz", + "integrity": "sha512-9k5sXJuPKp+mVzXNvxz7U0uC9oVMQrrf7cFsETznzUDDm0x8+77dtZkWdMfRlmbkEEYvUn9btKuZ3n41oNA+uw==", + "license": "MIT", + "dependencies": { + "svg.js": "^2.6.5", + "svg.select.js": "^2.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/svg.resize.js/node_modules/svg.select.js": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/svg.select.js/-/svg.select.js-2.1.2.tgz", + "integrity": "sha512-tH6ABEyJsAOVAhwcCjF8mw4crjXSI1aa7j2VQR8ZuJ37H2MBUbyeqYr5nEO7sSN3cy9AR9DUwNg0t/962HlDbQ==", + "license": "MIT", + "dependencies": { + "svg.js": "^2.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/svg.select.js": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/svg.select.js/-/svg.select.js-3.0.1.tgz", + "integrity": "sha512-h5IS/hKkuVCbKSieR9uQCj9w+zLHoPh+ce19bBYyqF53g6mnPB8sAtIbe1s9dh2S2fCmYX2xel1Ln3PJBbK4kw==", + "license": "MIT", + "dependencies": { + "svg.js": "^2.6.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/svgo": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz", + "integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^5.1.0", + "css-tree": "^2.3.1", + "css-what": "^6.1.0", + "csso": "^5.0.5", + "picocolors": "^1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/svgo" + } + }, + "node_modules/svgo/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==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/tapable": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.2.tgz", + "integrity": "sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/terser": { + "version": "5.40.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.40.0.tgz", + "integrity": "sha512-cfeKl/jjwSR5ar7d0FGmave9hFGJT8obyo0z+CrQOylLDbk7X81nPU6vq9VORa5jU30SkDnT2FXjLbR8HLP+xA==", + "dev": true, + "license": "BSD-2-Clause", + "peer": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.14.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.14", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", + "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.25", + "jest-worker": "^27.4.5", + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/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==", + "dev": true, + "license": "MIT", + "peer": true, + "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/terser-webpack-plugin/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==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/terser-webpack-plugin/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==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "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==", + "dev": true, + "license": "MIT", + "peer": true + }, + "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/throttle-debounce": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-5.0.2.tgz", + "integrity": "sha512-B71/4oyj61iNH0KeCamLuE2rmKuTO5byTOSVwECM5FA7TiAiAW+UqTKZ9ERueC4qvgSttUhdmq1mXC3kJqGX7A==", + "license": "MIT", + "engines": { + "node": ">=12.22" + } + }, + "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/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/tinyglobby": { + "version": "0.2.14", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz", + "integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==", + "license": "MIT", + "dependencies": { + "fdir": "^6.4.4", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "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/toggle-selection": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", + "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==", + "license": "MIT" + }, + "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-class": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toposort-class/-/toposort-class-1.0.1.tgz", + "integrity": "sha512-OsLcGGbYF3rMjPUf8oKktyvCiUxSbqMMS39m33MAjLTC1DVIH6x3WSt63/M77ihI09+Sdfk1AXvfhCEeUmC7mg==", + "license": "MIT" + }, + "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/ts-node": { + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", + "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", + "license": "MIT", + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/tsc": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/tsc/-/tsc-2.0.4.tgz", + "integrity": "sha512-fzoSieZI5KKJVBYGvwbVZs/J5za84f2lSTLPYf6AGiIf43tZ3GNrI1QzTLcjtyDDP4aLxd46RTZq1nQxe7+k5Q==", + "license": "MIT", + "bin": { + "tsc": "bin/tsc" + } + }, + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "license": "MIT", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tslib": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==", + "license": "0BSD" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "license": "MIT", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "license": "0BSD" + }, + "node_modules/tsx": { + "version": "4.19.4", + "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.19.4.tgz", + "integrity": "sha512-gK5GVzDkJK1SI1zwHf32Mqxf2tSJkNx+eYcNly5+nHvWqXUJYUkWBQtKauoESz3ymezAI++ZwT855x5p5eop+Q==", + "license": "MIT", + "dependencies": { + "esbuild": "~0.25.0", + "get-tsconfig": "^4.7.5" + }, + "bin": { + "tsx": "dist/cli.mjs" + }, + "engines": { + "node": ">=18.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", + "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", + "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", + "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.15", + "reflect.getprototypeof": "^1.0.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", + "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0", + "reflect.getprototypeof": "^1.0.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "license": "Apache-2.0", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unbox-primitive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", + "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-bigints": "^1.0.2", + "has-symbols": "^1.1.0", + "which-boxed-primitive": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "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==", + "dev": true, + "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==", + "dev": true, + "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==", + "dev": true, + "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==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "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/unrs-resolver": { + "version": "1.7.8", + "resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.7.8.tgz", + "integrity": "sha512-2zsXwyOXmCX9nGz4vhtZRYhe30V78heAv+KDc21A/KMdovGHbZcixeD5JHEF0DrFXzdytwuzYclcPbvp8A3Jlw==", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "napi-postinstall": "^0.2.2" + }, + "funding": { + "url": "https://opencollective.com/unrs-resolver" + }, + "optionalDependencies": { + "@unrs/resolver-binding-darwin-arm64": "1.7.8", + "@unrs/resolver-binding-darwin-x64": "1.7.8", + "@unrs/resolver-binding-freebsd-x64": "1.7.8", + "@unrs/resolver-binding-linux-arm-gnueabihf": "1.7.8", + "@unrs/resolver-binding-linux-arm-musleabihf": "1.7.8", + "@unrs/resolver-binding-linux-arm64-gnu": "1.7.8", + "@unrs/resolver-binding-linux-arm64-musl": "1.7.8", + "@unrs/resolver-binding-linux-ppc64-gnu": "1.7.8", + "@unrs/resolver-binding-linux-riscv64-gnu": "1.7.8", + "@unrs/resolver-binding-linux-riscv64-musl": "1.7.8", + "@unrs/resolver-binding-linux-s390x-gnu": "1.7.8", + "@unrs/resolver-binding-linux-x64-gnu": "1.7.8", + "@unrs/resolver-binding-linux-x64-musl": "1.7.8", + "@unrs/resolver-binding-wasm32-wasi": "1.7.8", + "@unrs/resolver-binding-win32-arm64-msvc": "1.7.8", + "@unrs/resolver-binding-win32-ia32-msvc": "1.7.8", + "@unrs/resolver-binding-win32-x64-msvc": "1.7.8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", + "dev": true, + "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.1" + }, + "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-loader": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", + "dev": true, + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "mime-types": "^2.1.27", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "file-loader": "*", + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "file-loader": { + "optional": true + } + } + }, + "node_modules/utif2": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/utif2/-/utif2-4.1.0.tgz", + "integrity": "sha512-+oknB9FHrJ7oW7A2WZYajOcv4FcDR4CfoGB0dPNfxbi4GO05RRnFmt5oa23+9w32EanrYcSJWspUiJkLMs+37w==", + "license": "MIT", + "dependencies": { + "pako": "^1.0.11" + } + }, + "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/uuidv4": { + "version": "6.2.13", + "resolved": "https://registry.npmjs.org/uuidv4/-/uuidv4-6.2.13.tgz", + "integrity": "sha512-AXyzMjazYB3ovL3q051VLH06Ixj//Knx7QnUSi1T//Ie3io6CpsPu9nVMOx5MoLWh6xV0B9J0hIaxungxXUbPQ==", + "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", + "license": "MIT", + "dependencies": { + "@types/uuid": "8.3.4", + "uuid": "8.3.2" + } + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "license": "MIT" + }, + "node_modules/validator": { + "version": "13.15.15", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.15.15.tgz", + "integrity": "sha512-BgWVbCI72aIQy937xbawcs+hrVaN/CZ2UwutgaJ36hGqRrLNM+f5LUT/YPRbo8IV/ASeFzXszezV+y2+rq3l8A==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "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/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "license": "MIT", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.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/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/webpack": { + "version": "5.99.9", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.99.9.tgz", + "integrity": "sha512-brOPwM3JnmOa+7kd3NsmOUOwbDAj8FT9xDsG3IW0MgbN9yZV7Oi/s/+MNQ/EcSMqw7qfoRyXPoeEWT8zLVdVGg==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@types/json-schema": "^7.0.15", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.17.1", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.11", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^4.3.2", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.11", + "watchpack": "^2.4.1", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-sources": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.3.0.tgz", + "integrity": "sha512-77R0RDmJfj9dyv5p3bM5pOHa+X8/ZkO9c7kpDstigkC4nIDobadsfSGCwB4bKhMVxqAok8tajaoR8rirM7+VFQ==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/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==", + "dev": true, + "license": "MIT", + "peer": true, + "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/webpack/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==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack/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==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack/node_modules/watchpack": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", + "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "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-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/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.1.1", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", + "license": "MIT", + "dependencies": { + "is-bigint": "^1.1.0", + "is-boolean-object": "^1.2.1", + "is-number-object": "^1.1.1", + "is-string": "^1.1.1", + "is-symbol": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", + "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.1.0", + "is-finalizationregistry": "^1.1.0", + "is-generator-function": "^1.0.10", + "is-regex": "^1.2.1", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.1.0", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "license": "MIT", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.19", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz", + "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "for-each": "^0.3.5", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wkx": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/wkx/-/wkx-0.5.0.tgz", + "integrity": "sha512-Xng/d4Ichh8uN4l0FToV/258EjMGU9MGcA0HV2d9B/ZpZB3lqQm7nkOdZdm5GhKtLLhAE7PiVQwN4eN+2YJJUg==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz", + "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/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/wrap-ansi/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==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/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/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/ws": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", + "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", + "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/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-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.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/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/xmlhttprequest-ssl": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.1.2.tgz", + "integrity": "sha512-TEU+nJVUUnA4CYJFLvK5X9AOeH4KvDvhIfm0vV1GaQRtchnG0hgK5p8hw/xjv8cunWYCsiPCSDzObPyhEwq3KQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "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/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/yaml": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.0.tgz", + "integrity": "sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==", + "dev": true, + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14.6" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "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/zrender": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/zrender/-/zrender-5.6.1.tgz", + "integrity": "sha512-OFXkDJKcrlx5su2XbzJvj/34Q3m6PvyCZkVPHGYpcCJ52ek4U/ymZyfuV1nKE23AyBJ51E/6Yr0mhZ7xGTO4ag==", + "license": "BSD-3-Clause", + "dependencies": { + "tslib": "2.3.0" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..709ccc2 --- /dev/null +++ b/package.json @@ -0,0 +1,75 @@ +{ + "name": "zano-p2p", + "version": "0.1.0", + "private": true, + "type": "module", + "scripts": { + "dev": "next dev", + "build": "next build", + "start": "next start -p 30289", + "lint": "next lint", + "format": "prettier --write .", + "format:check": "prettier --check .", + "prepare": "husky" + }, + "lint-staged": { + "*.{js,jsx,ts,tsx}": [ + "prettier --write", + "eslint --fix" + ] + }, + "dependencies": { + "@react-hook/window-size": "^3.1.1", + "@tanstack/react-table": "^8.21.3", + "@types/jsonwebtoken": "^9.0.2", + "antd": "^5.23.2", + "apexcharts": "^3.41.0", + "axios": "^1.4.0", + "big.js": "^6.2.1", + "crypto-js": "^4.1.1", + "decimal.js": "^10.4.3", + "echarts": "^5.5.1", + "echarts-for-react": "^3.0.2", + "eslint-config-next": "13.2.4", + "express": "^4.18.2", + "jimp": "^0.22.8", + "jsonwebtoken": "^9.0.0", + "nanoid": "^4.0.1", + "next": "^13.2.4", + "next-themes": "^0.2.1", + "node-fetch": "^3.3.1", + "react": "18.2.0", + "react-apexcharts": "^1.4.0", + "react-dom": "18.2.0", + "react-intersection-observer": "^9.10.3", + "sequelize": "^6.37.3", + "sha256": "^0.2.0", + "socket.io": "^4.6.1", + "socket.io-client": "^4.6.1", + "ts-node": "^10.9.1", + "tsc": "^2.0.4", + "tsx": "^4.15.7", + "uuidv4": "^6.2.13" + }, + "devDependencies": { + "@svgr/webpack": "^8.0.1", + "@types/big.js": "^6.2.0", + "@types/crypto-js": "^4.1.1", + "@types/express": "^4.17.17", + "@types/pg": "^8.10.2", + "@types/react": "18.2.16", + "@types/react-dom": "^18.2.7", + "@types/sha256": "^0.2.0", + "@typescript-eslint/eslint-plugin": "^5.55.0", + "cross-env": "^7.0.3", + "eslint": "^8.57.1", + "eslint-config-airbnb-base": "^15.0.0", + "eslint-config-prettier": "^10.1.5", + "eslint-plugin-import": "^2.31.0", + "husky": "^9.1.7", + "lint-staged": "^15.5.2", + "prettier": "3.5.3", + "sass": "^1.59.2", + "url-loader": "^4.1.1" + } +} diff --git a/prettier.config.cjs b/prettier.config.cjs new file mode 100644 index 0000000..bc5d4b9 --- /dev/null +++ b/prettier.config.cjs @@ -0,0 +1,12 @@ +/** @type {import("prettier").Config} */ +module.exports = { + semi: true, + singleQuote: true, + trailingComma: 'all', + printWidth: 100, + tabWidth: 4, + useTabs: true, + bracketSpacing: true, + arrowParens: 'always', + endOfLine: 'lf', +}; diff --git a/public/currencies/all.svg b/public/currencies/all.svg new file mode 100644 index 0000000..c13720e --- /dev/null +++ b/public/currencies/all.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/currencies/btc.svg b/public/currencies/btc.svg new file mode 100644 index 0000000..b845627 --- /dev/null +++ b/public/currencies/btc.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/currencies/cad.svg b/public/currencies/cad.svg new file mode 100644 index 0000000..8c32e68 --- /dev/null +++ b/public/currencies/cad.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/currencies/ct.svg b/public/currencies/ct.svg new file mode 100644 index 0000000..2175fef --- /dev/null +++ b/public/currencies/ct.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/currencies/eur.svg b/public/currencies/eur.svg new file mode 100644 index 0000000..d92b0c5 --- /dev/null +++ b/public/currencies/eur.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/currencies/firo.svg b/public/currencies/firo.svg new file mode 100644 index 0000000..fcd6e62 --- /dev/null +++ b/public/currencies/firo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/currencies/jpy.svg b/public/currencies/jpy.svg new file mode 100644 index 0000000..98e67b3 --- /dev/null +++ b/public/currencies/jpy.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/currencies/trade_tsds.svg b/public/currencies/trade_tsds.svg new file mode 100644 index 0000000..f3fbf75 --- /dev/null +++ b/public/currencies/trade_tsds.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/currencies/trade_wbtc.svg b/public/currencies/trade_wbtc.svg new file mode 100644 index 0000000..d3f67aa --- /dev/null +++ b/public/currencies/trade_wbtc.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/currencies/trade_weth.svg b/public/currencies/trade_weth.svg new file mode 100644 index 0000000..18e2f20 --- /dev/null +++ b/public/currencies/trade_weth.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/currencies/trade_zano.svg b/public/currencies/trade_zano.svg new file mode 100644 index 0000000..162dbf6 --- /dev/null +++ b/public/currencies/trade_zano.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/currencies/tsds.svg b/public/currencies/tsds.svg new file mode 100644 index 0000000..2175fef --- /dev/null +++ b/public/currencies/tsds.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/currencies/usd.svg b/public/currencies/usd.svg new file mode 100644 index 0000000..8c32e68 --- /dev/null +++ b/public/currencies/usd.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/currencies/wbtc.svg b/public/currencies/wbtc.svg new file mode 100644 index 0000000..bd5bf8a --- /dev/null +++ b/public/currencies/wbtc.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/currencies/weth.svg b/public/currencies/weth.svg new file mode 100644 index 0000000..c40e78e --- /dev/null +++ b/public/currencies/weth.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/currencies/xmr.svg b/public/currencies/xmr.svg new file mode 100644 index 0000000..4a578b1 --- /dev/null +++ b/public/currencies/xmr.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/currencies/zano.svg b/public/currencies/zano.svg new file mode 100644 index 0000000..bdeb771 --- /dev/null +++ b/public/currencies/zano.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..4ce2fbd9eec5a9120e7123c3ef1d550e165838ec GIT binary patch literal 197309 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

2A$4^UOHJ&ob5Oz1;prz~@s& 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� z7sH7n`DExpNGxhi`>hat6wAumfYFjL_V$qvr;5nQ*wJr^CUXAHBDhgVi-wG=R&>|M z5@!u)bA?wYzME6km^32k1>Ku{_3FERPS%(_%YlZ<95k_haH=8oIdW)vjpY_21=f#k ztr0g_(PUPK{u6g3PgBCkHi4x>GUiS#EGSH4w@?5AytdnPY7V{ic$2 z@bwdKDoBvt#F{0D)JpTk->O@dJIE`J>g>V_rAq7p8g+88OA&PKnuSqu7Ur=H8WqNm z+=I!94fbm^fb1p~IAJIJ8c7$8TX5VP9ZOs(p}^*U|E-3O`jr=YHq=IA(88}+d(uc< zt3vTBlFAXvD#nIQ(Nf=P$9&Sp8Me3{@oAOWHULi-V62<*9~;w~Icd2-slmj_Q!gic zOJS#jl)Z4X6Wh?w;@_1b2s7Al?0pKC1nG%iV#7;P@H685BI>G^K1Xynpoq#g5nzRa zC%J|YXpS=~bGVaG-*wA0MLunTJ;l|G#Z63L(Jh`iAY6+q4<&TonnnWa6pIEny-s5s zSk)VNF{>Ce3KnWvDA-_eem@i|Hi3nJu7r~A_m^~{EBOq;cC^=pE6P(ZqbTbbRsCa716emrZu%#c8#s3aL-9EdGo$p zL+XmR%Al6tYo#K>sPjvY?f@J_@aqZ)jeZ)f&cSb4MBarJYIf41rVpjAoTezJqblGS zI82D+P`P6)J)$~++!iF|S2`8AkIZI%4OSe95Ocvwt%kye7(|p#fK9!sCk0EBfWt~w zC{?&}8F@C*NWghu>b9?k6>?%8BUu@zVzfK}2gw_diWK5j?+w@$lgxw{$zbR=+M8sW^2*gZGN`1Ih(fu$v#}F+vG(1;r ztw;rchDw#)nNpf}FtAY~4!G9qbb5@4$n#+)FSTw0y^n-?ucdbe? z2$plUDcoADuC%{56#7|QW_fVcW{0nN#yXyN%^IG0*$k(Sb7cM{6 z;pbm`5>qUO{Uzg}?IqoDW`XzKw~Ke*vrC^kyDYs`{v9J5c1n`4=9=EmzDxr#B@%dBT-yIbCyNhA(>38eV$C zQQY>>KHm60&*QCkY-4MmbAU-f!X9p0hnwk0I0Vvy8gP;hT}qn)LJbQTZ79^eRh|kW zl;NA^WD9??b@63C=DBb&0!&ygC?p$=T?UyKLHXR0n;~2s9E(H>G2*p@6LP>y&+D8z zM);mD-@wbi@Z!BJWk$fWFQ4NdJ^uu5J~hWreefI}+FmLlV8Rz z>*`pO5|CCAk1BLgT(NI0?R&T*i0rKE4J#4qQWd(3-qu?37 zftAmO^_{QFz_B^uwO?@z-*M~FiBG@6R8VW(z;2h zC|2n}P?hv8JwPz~GL~!{ts3L36uWA%=Bf*UII}tRK82}xczrpc-wh}vS9s5WsAAQ8 zemmCqy*eXM$3oc_WdQib8`trz&pCSdZc4iO7+!Y$Q9V1^|5jIn%T)_n32CSJ5DkAk zF;(Hu@Iq2Rq59x@{@&%ZQ?PoDz)mn0f2%lqHJ1iS76=9_TlRoZe^*v2 zXniOAS*qGkhV2Q=pr@Xg;nlYuJ-jz1-Es_99h+fURwjyolC>%YVDuzr{kAfRu_Ba!bO*1o1PB1tnI6@VI(KE8(?>#^&kVR#Yu5j_CXTckR!Yu0y;eSu zwgk-h>jla$c*YuTx_pkqnx1`X4PX1T_2B5kVCX1J&q`(SYEeZRQ(;II{5Ie*Zj!da zTibk-_GbY(7lO<6a~}hspaPSsB|tFewnRRQ5&{kMDIu^*;vJ~|yc}z=xTEpR=zagM zc+%fNoL8h zwAN+SZ)IXxog}nMiQBIzW@tT+Qq3a@>x?XMb5JX(^8k1XVRHDrc=4l_zz85#$_Oxs z%FCy@;qzJ0GGVCf|%~ij|sy8xcNdi+!HRG$X3({w*PA zlUB`!DF446J-;F}LXBVU!o7xDq%x=*pn^C;)19xsy0*E|sD#BFUqWak&ujR>PyiTPF^gBhLcT`{w_Y4Idwk_;s2^Q(!k6(SJJ!&3NVo}nPKTte->*yEWSZ2&oI z&Ezi!)z3oR3k}A@jrjA(MA;A$E1jf8C8u`EZLlFsRti4B46zUb{U(7*{y9A8WK){ z1{iVRuo2z~BwFd)Z4fH>QggO!d=?`-?CQXHbSs_2y^0wKjVYZK zNYN$;*k`+TWW>!ptjQ_D%HoDe%YFzTAEmCoN6&IaElrwsHgV>>I+66th8-a5jAjXC zO&oTVRtB*FP*~}`h8gDPYsK#sNt3O4D-?(F9^y1=$FR~6?2bg^;gb0n9&oJr<#P@K zvicekt6f!CgN|H7H@*>8#m#rM5d83)cR7_+8~K1ocV&00)at;%jm`(AMyx|#ImQR3 z4N1-hP`Ng)MhD!?NQGlyMh&26$T6J=jfRd18R% zf}h5U${^%=+ps2EGZ~3?Qe77qP34Y#pKv@8PWmQo~eEY-TwvS|c@56gUeE ztE2Fg%9>!>+i9*9O2s~|=Wn#D*-AgP&Z9jTVrvomx~E>rjYp8tPh9; zPb`e!CobhKFqGdbL*OQnaD%EycW{icUZ#ImhwzIdq)k)}f}!Qnt4Swv`Mr&WXjNd9 zL%Q)PL$Dc{FYVX~`5Juh%%{dwRAXU*UF6C^Bk5yn8lyzLBPuO|G|!L8vt| zyxKAE0Njf3;{a<;s|J@mDJ9*$a_(Pz>8T;&RfCANh`g(ea?hiJi>x6nloI!Ou~YYr z^7Um0wFI$#(-wVm*HPTXh`7c6AvNArbOnS4S1}ib0BQ=)RRc$YfZ8$27V&JduObjo z>D>-j|0W>! zA;qR%_#`F?mBw@PyoWwTQ-8stvlij56f6`(GCgRuTch{nMS%9ZvqDYmr%zv-0Jl#1 zW$g_ILF0Ogp&iijQyt}#6Fe)JLS`nnY-%V3cK8#=8buGktqN92Nl@!G8!LeHP6&6= zdzBGMQpouM@@=scr^WrE4q{=?5E}HfUBio?Bz5$DCz@RDkfny1M#*=R29uAFf4)2a zcqc)SR%Z+bk1=W1@X#hU57H-A7IlBuVrW&1*@V14Cp-15+aOVAu{b)}NMBL7Y(-aQ z9r?k5=`K$P$RSQGm`L-VHEx`Xv|5U<4l0^LuFtG#tO8;7^HKWjX1-T3aoNHqqWy-Zl6cTz(v_kQmcmZp zpETxmc+5LOik|dIL1e1Qe+g8k2?-<)1Zhk{$Y4b-BrS!e`O;7C#d`x*3Yl?gDy`z` z<=8;k`@NbRZ-<|M6c;m*r4RygUU(&eqTSwnT8!WQn*6ni? zX)9Hi2;q`$f>a%T#?p0bxt0ag<(5j~l0?^4TW(YT7BFk>d^ z3WSzoFp;im=*zWMoYjK_S=n6x+cN>jpe@XloL}{o1I;H1zA@LiQc^yg?voK!3Q@Sy z7C^&nEd-z8lKzsRu~kobJw!bRi2T%X{w4#=&P5MH1jUi4_GV3;D>w{r(vf?baCjBL z9|dCixvE;P!azyke$c2$)oxY&zN$&>KJfyP1;MUtYS4U%zH{Z?N)xOnPEAx_yYqg* zkhbAv3?S^BJOL=~XtD9xL;{)&okjm@PXD{{hZ86H(X6lhi;$e~i@q_$`uD#GiKW2f z5*!pkch;HPa0&bdZhr#8+ku6g7!BO@cLY+7Y7Pz)iSdQW_ZI=dJo-jVv0z2T!BkxL zzOV~li|MVENSd$2G5ht@-}Vx`unyx|5jPdPiM)tYfy=_*{HED@6<3f!EPbtU%Ht~` zQJ8v5g9n>Cl!==UjVaJoBJiPP#vZ7d0v}q%MPhQKa^_7(*ZibkbWW(FnLN>#eh<-9 zvMg*6ke#m{SOISRI#+qcW*{7DK(n_X9?hXnf#4gAuFLeM-E7 z+ChwH#G+3p1(6YzathIv=`)n&=Z>yO@^Ked5V{1a0W%hTVF5>1jqB`KrMm#bq=KbQ zSZJuM64QrCAifa;D4{PRqdiuPUTRdo?v4ngL7o$+(|rmqW^P_Qm05%wM2P9ILzW_J zDwKt^K;TG7aOzk&ia?YrOIvL>Wvq9Vh+itLNV~~=@;k7S0n*SUrC@De34j@Gw_@66|Ks04wXhb-&2?dm?(J&>Vq@^GF^^=hm_+jw^nU!1x8OIe_%%Cl#5_(g0%gaqZEV05{$r+GLKK z?+yKO?6naH6$V0|ty-K|@RS+5A{itIakU}y1|l7ZA6Y;)FrA;)0g#?)Rh_boNil&o z0~l^+oZKrAZx%Y#$wpm8(1t{nQ|#5|pcyG-<^V zA`Xcd1YmCgJhZj^e2?NWr-!ze*jpN%EnV--&~6)`STX3JNXC#SgaPAc<+6C z*xGLd`rPz;`M*#HM`h&CY)o=pXu~1D_Q{0t z|8-_tMwUMQs_7&g>O@uHv-n*gWM-f$fCS}s0DkxGU3~O`{m=JsE;!wGdLQq;cPBC3 z0q|^g@aa!}euN5LH71(tzx6y8gYC9r6l{#?x-#a{4Uc^|H&3Q0>1UxN3pSXaRX_4pYhALoySjq=sdRe znThi8{WD1?<;z;&%#(CDSnxZ1c%5&R^CUAt)0%x z7{wew?v6(|GnlMXxDtsNAQEum9yi7}lC!=UzXGf)0~0ZaoN1X0oIvF)6r+rU#hU1s zsUzU@))N2h56|PH4=nKNFFuN!E}vs|k;#GmCGe4l_VDK0w(!< z3vrs_0QrQQV4&V2Sf!w-1PjbTKYnwhp`mOGkga2DAN=n>x`RKwXOCX+v^9LiQ`T_( zWiy;Q)?wa>dK#8yN5JLBx>3QgVBo>6KZjGsf0O^b97Lux4L3PYUPhKG`SUXiy!p%m|LL|J-drPEp9vYO zSDO^owq)R{%?>~R4VU1_8?DQ+`t;z|65sXqGr0f!GS{o4cgC~XT`F}4@ID()nI zl5m){g=2UlG6!W6WyFF4rW{G)JUc*=v6FHUEfeN)|Dote)>#1L^`&V>QV9WKe-fw} z+yvrq^P7h}DcnqTa)Qvw%B3IfiAOruMQQJ=M5Z`bZuZ+u#Em^+Nfn4h>xvoK~-WpK$woy zm;+2*Mc{}j9rY%! zZqF3EA`p>yj;4Uk2jZYykWKxuZLyk{(sL>t(BkAo6Z#ZP;k3(?2|?9LG?M($sTmqr>8gr65DQtFoAn@EfyB)dmNcxA=Ua4)ooG4q zN$Se@=yT3-K89ATgkZ)idbaOK{5w>~L>TM!^c1)0`=bTHfZ(9u%D+&!Su4s3(7=3> zRA?JvdpT&@rpv6CuDVr%0>;b+JU+Y$fp)WPNrVj;SRUea-Z?FnTsLS>*;i3MuwaFb?^KR3XU5{)rE8O1WFL9NYtkYVIsK^^*xOVUCh=kZKk;^RU)*N{c&Z{@mB zkVuA?;R#}{$FJ8b!nw3Vov$QMR!aB|f>IG|VAV;0q8_koAb9)8My=p18r zza0A-SylRXhCMqyvr5TYl0_xtn}HbGv35#5VCtgi)wv20F#?7?51v>G78$u#ot9=y zJ=d`C7h_=08%qW)9W5s&Q7Az5IE8TPR~ZrwC=|}yfy3Gq@P;)RO8^Dm)d0)LN+$sV z&Ta#ry#MeEfIA*o;@r+ioKKwuldsCsH{u?CNQ9#6@H@ z;t`s(^*x5(t0#_y`aqi*|A|YKCa)*Ju_;o2jJY+93Z#G)JY1X$_LqY~&BMf}{IHD) zMeR$O-(m2IlyA5aDU+K! zzq)?4BWC1vK`i}aRl?Vilc8O1lsZuV5uITG9U=?^cZ~|Qz$YT*<^+fDS4Af<79Jxw_YZ2x%N;MRA@B5d|T>1T*%XjND-F zK084YyDjlzrq;Lpj|Kki zd-f02G#E4RmOt6Y+dj0AuoM|Y&e&`X$#-><4=jfR4a|RYumyW{W6H~bSdF4bc@7L_ zj!LN@-{`nRG+zm+YD3qZQb7kPNkVgv#~3VFELSS^^lz*SphH(O;#s6r+b1Cr1+6we z6SYQU%M)R12l&}{?BkbyZ-Mi>2Sw2npSJgaH@;^NKmE>KZ0!j(#${HY1ne}@#Et+hT{es=D#-41snJYD>t(BO!mnKT$UTdkJ`4Q# z+jeo=y>qJGEvJsVGW+Ft@6`}7jO^4>kX?L+%Gzsu;lq~r4)4dOSMg<1+Z zgsjtA2PUpY^1i8sNL7TDzQm0ey){}5Z-0=muQiN3N2SL5%|b!9Yv{kof8~(N8zKDa zY8i^Q1*XPG|rHDq6&r7XT8nS5I+&H zwF~@*KibD1eqxEgd{c)nzoEl*PbQo?PMFUSBVKfK)&ZxE)2QHBEc?0p#e~@7lKZ^3 ze`bmI-Lb&$eSCrY9_f#G>WDZ+IVB1W{qBS)6c3M&CYM@>~%&ndYT z>AV1{DjS+T0a7c13IuBPA|ObBKI}u{kkKEEVy7l`-}{`OdT@zfea{lV_Q$~HQNr4+ zuUGD}%?gw#$CDUOK1ukw?>vGhT{4X5ht4rx^M)PV{|Kk8n^^?~fn^4E7r@ya#`a#? z?%5Rt*!5Cc2b9g3SqShDIj;=!=K-lvS#wlj(-zdw;4C!~xduz_YN=v@2~H@c_(4o8 z={sA|ZZna^d>*H^n#0|*P&P5e4FHg8yFdhkzN5B0%ErXGIF_0m(T5$a6kP=alHfBM zO&KKp2{~L)%?JdIX^r}W6sTV*xbtYaXfQ9elSiQ!+%MDLDO!E81nz%?@#%+`Vxa;L zLZ1kj7j!m(?sf@4Qu90SPZk5!N(3?eu*T2fc^FAQK+^ss8I`juOP$4|T8anhf1=acU z-Ky=xLagLXG4h^Nqc2t}2B3HOSSHAj5E_)5uqn03!a^rmdWd3g2Li2&$z<81Kl`|Y zDwSOw!G1+#S<9dn749OZQ#i^1@!KlPBsqGAA|G?9=fCTpRWt-p;oPDY8F91P(){Lf z={m{axeENpx{5FvzQRk*j$Wo=*Q;2vXrj%?wGkss?50B6A%zJk<4N#qL?|^#rxB4) zP2{TT%RAGnqEs@Cvw&qC_bS-{GDV>|pTsmQFMEmiJvHx?XxH+LNlN$)H6fNdr~^C;xOI2G*|v zRtuyTi62Co3}kn3;YqHCi0dN*8)eWaa0mc2#_Hl%a_S7KtxLS*v96x0-XT1af`qZLo zbdn*jnkBvNP^MC;`shZx$Agh?vi2g+46G62Of%U(F4Bwx#0wcFf^`*yAz&t@W`53b zh_OVmSxLn;P})B-fiF};9fG7HyTjHYoaU`)yoCF$rk zkXN`(Rq@^fBbAD)=458`H z41h#hDXi-?bsRKt^RaEZ1wkE4$q}rBYIrqnl5J9OQPMo0Jmz@Z(vc$ z;4=aE&D(eJ3m@3R`9KJ4?J@q<2eO%X-%V@cLWSK+ihOnY%J1*Z&S?yvdQdp9! zqxyB?611%Xy#Hl!ZeeLdhn2acsHg;{$_uS0erDynwa@sqkL~b(yJMG*ulF^c+gsx7 zE(7%wB#c#UNYQfwo!eua+pAR5SdAO^ zNht(M-9&Z@^4M!g%~_YGQ#nznH1kI_N@YJ9LrV(S%A7FWR;J&}}%{&oVzLBz>zU>sDo* zVNhfAC_a=Rp5M`@nBGP#lGN?ON^S5&BFXy*jgFPPQqc_ta_Sjy>3=46qZ)cvJ-&d% z6`n%#=ZL(pBjxy{T{+s%%K0YDpo9Q`b36U6!^58Ld}x7l(YX!<)&mnB_Je{u5T2tL zTE-+#XmsBP-9^f$?}TSv2K}ln^fsbunWCKT&9qgh@Ul<%#TmY`bqSj!mWDUWvXO?W ziBO_yW^odISTP5zMYY}RUq$uW9$rWczygshk&tT369KztFW~ArV#`*+TaFFnev$`i4hM; z4NmC}IYGy;GX<TbG*T>%Mg4?+SBEy&>RRt~fD#D(=A_^K z_&z@N>BB1lKK|JSe*cbrZ&s&YRmhs?7_((hEz*@PFD9GzUL}Ofi91x^6iDlHY&=6E zo$pT--`J8;Qlj=UwQBD;XEXDkMX8I*}J)2_T|3EK z^MOfMBCtopHV67ZnW&QTDmH|a`zW*&#F>J&26;95fwc{NY*&B@|j zfprl74w=pGWj>tT_qtp|NFNf^&m(kg+62{=d_7AQ4p+j?o(NdZ{SmiEk>ga|W*S?L zGw9Hx08K*2T)pPf*Zw#!L&zRZ$a9YMppr5PnL3^WUM&Pod3L^c8UiU(Os_iRX^uc$ z@KD;J0_mP9GnK?~C=#ug=V06uh@{%RmB=~(r_V9}KkwL~kKMP#xBsOz+<4{1c}VI< z?_c0o-oJ~t{m(s|-(z$HF2vqqNLVjiz#}s8!dfIr3r)~wlX9Ytpw-0p*~(;*6A;uD zBr1!OY#T1RAk0CE-~gC~QKg(!@uNnrTnSm47G;Tnxni7@iDbl6=sV^A3onT^@eAOO zoo^k9uLi11ugl9GQT22o#h}Y2u(OZRw6!aa4$C;#t3aGlV|peu1tT4J8W$VWPTC19 zsRL+x5BLv%vWGwXt?v_iVmkXfmt^KW&kq+PHj#&B$e|aspA&Zf`QZL z8Mi;MzUrG%D5Il%5S4Ixj8@%UFwX8Uw)T5-zmsGzJq+U$=jHEQ>Bqw{(#l+P=v3I3 zBFYlzi*jI0R`pFmeH8Li?nklpD z#SpIZE#(~HJZ9k==drT(YP_j#wdEv#PMijt?kNz_K_UQWw;6By9}9f>Gdmn>_|4~c zf&cP>17+&+iC*U6ksyr*6k%62I8Eg;Bp02h;=W4A;uvG8SMGp)9FwtmdQqMQmnqGIGWWONqLB{wafVV-(KL3`x$@jOJ}&@%D$PqKHFOdzxAO7 zws+Y#jp$j%nAqVXbam?QsxcW_Cd67&6wC`SNK2L$KeK3VltPB;&?7dOQEn@Xv#JML zjF^?%cYp^fXJYI1-cl#mw|i*x<@+)e948&i6*sV-whf5uSI z$5B`om*?CZ;L~7S?JH?-`>i2wLG;#Nl^0<|-H5KjQYH%=k>{O?<+F6uq(-HlvIxNT zF5|6#yudp@yujv>UI3iiVVvETls5#d4EyAdGK&931%cKqirk!92PU*B%k%<{H490j zR#HvFE53lFH)k`Hpp-OU(Idy~uBoc{7T3$sQ0FY&sdE;FiC-O!qaYGopA`s&;zmiP zk8ou>T*fXgfw65g>oD#fH207gwyIMbE+Nl4A<_fr%pAZ2ai{F13{|W2!oK>OvO7vg z=|-*J>pL3wfD(x$>QFp|VZq)JaBdqox6NVzV#Dzu1IlM9eX=vlB!z+~Q|z7rLQOow zG1Cg&D}_+0!q#giq5u!u(Nw@f&hM^ml6_IlfZ_*PtuBRwFx#Oi+X{W%D={^lgfIut zYbq0|F&bJqcVApr?eO#slB!P>76|&Sz|{P1-+s0O=>E9&pf$JD z()nd&jdOixyeUtJBdh#J4)`(E=LIEp+<9tBo^?=RrhT%ZcCr9grfc@!Y^9bVYdi!= zz>(5M5&W}BpZ!7WiwY&@JuJfLOl)(k-iEe8^&DKRK6-%5Xk5_<*yrc`q}nA&m$Z3k zRjbW>z4nMelyWN@EyXfUzZD%7e~{!4gMZh*n#bK@+<$UKEScFO<%eS>c7*qIVBF&? zi3(*B3mT|p)B&TF2!l?ud;y7SxjtF|NVFROGl8#KOpP)K7#7eh{$i9ehFDg1VJ-jy0iu|-xFV{6_|t;5ZKM(|OMyVWF-@5P zmB;6d9kXTEw#gROo{rT}3?2kt2bRR!_G)j@z^VoVDVnW8!6|3m88^7a_J30d02GBW;kSX*M z5OAb1m6<$}-*;Q$IJiK8?tCI*#s%X0gri%eUeZ9sJUF5H1UV{GcR1Ju(4$x0&siBynFz_C#uC4#N@1J@(i((bASnRi=D4((&MB{H=~ zg6aaaf8hCN%(?3)Ww(>h?!pj4U&dy#!#G!fM0l_o(O#HQBZciCv+h^qej1p>A$0+> z0YOX3dI%~AEl*Z)H);tU^Om6mTP!H1r=cEVfKsTOzt+MqD|?hhG|4@auuj~iYAw!-SPfY>$qvS{K8&@`oaxT3uQ7lR5MwtL zhh&UEjjTJwly3hwQ9}q%0z9<^D-iF@W{c=Mz`Y(U@w5K+=1k6%2LD^;CCn*3t|tZ zKWdpmVLoF>wKZ<=Hi{24aDj46oeCQdC{b%&P?JG<=$R;Q$7#UVUk~Qn*ahJO*uRSN z9+(dTctE#HBg_z)R=Hn-vaL60j4~w{5}*Q)EEt5f0X?u<5o32}Tiu*dd)Eq}X*13< zV}VsBM1S^S=t-wG1)dS6CRbG#EQ(_t%naa0Ig+r9oUYyt^0@Hg!N5ec=gsg4zkLF1)~fwysEEgT2{9t7k4 z0OwPI>CXUsxM&%bnYB@7ErF(4MXpu(OhdUN6Gj7uU4SW+()L+hAI)T?s5TjCu>QWE zT1W)MN`@gDnj-r)r2Mv)C7|G70j3#Q<^YRImD*oyj3G=;1L~d>52vKL<0q89FR@@d$u-Rs7UJQa-@bIQ7j2oypt)9+xhqM=N48g^7FO$Ar%To>>v_ zz*yWlZHjhBSCq*T`H-dRo~kxUw`2Ph2%G%W7^l`R2QUG=R@I>smDl=qp-Awsvojt| zT#S=YjsiWge{VH@7;zL4K$q6P7T|EaIWn{b? z9X$#rbW1R1=m5sM0X$eLVoCo&^pnlm=&`9LOufLebNTfVoSYiMq-6cKICvz@aJgJx z5v>(AL*tCvknet%hBj%c@rrUp|RvESu5F^CZ$kjXa>_G2r6)1e9K~}!-;B| zqCrbe=Q%mS0}S?CR?-vcVCbI>Lx;u%hc#s9*gJ>uT`5Xprnm#?BjpERQ;RA(J~@8HVdXMqr^@lQRJa69Hi`%e9qRoO(jGW;$EpR15bQ zGD6#~(Qgv9^C&alDSORdOdUpF{5Tcd1B;A;pMs{c1x0AWQL6FuTRBa>mkt($dV*0M zXXNo~#YP_h=zju)yIyl;9|M?yu|RhQz&juVQCSa2dq$dJ5pu2ObO;NAD}w3Mi~-|d zs|H1EB*!i4vd~Z|Xzxw1jDug?hp{yRVVVA)awtx40Y+`txEe7Wco;4O8CjhYmTv|q zeLsUfQA{7wo95om6VHW^n=LAHF>;Yi(1?wfsw^REAt9zMtNopOfdQJVZAg|L-n1lL z%zUpY4Zs@UI>W8Tr362lBEUP)b!Wi+L6{u?ECI~01c3hv(5Ix&3P%$Jzv8XkNn4f> zoAe^~WmvNgu3@6LAUfoC79mhv0ft`#HOgF8gQ@Yv%*pwBKVLPFKZ?!ilP^$o)+V)eFDI5<_45p*34x1n1&;{4yYc% zS@V->ME*-o&^rS?Viu7nUDsAfsS1Ij|EEP^9WuPop|(KmkBAp@AK49Qn%&Wi$CNlk zENys&5B9+KNnHr`3zXpA`uedwEa>~Gceb_{|{X3>vGT6^sw{WArbo?)vDXd*oDV+A$>000F1 z*8jJUfBo)VoDYP+)-LdizrTmy{>Z*MAvxaU)M``q%ib;Fhf+v`!wl5;Jz^~nH-6C!*FUL4*8z7u!1#?1 z?cujRyuj8TtHW(`^;#h{)K@spgbs6Dku)QVn@7+*FotUbw|b>(gQjZRCH7+v8db1& z?d7pZ*xOT%gA#%1sVHR9I63|vU2JCZGw>*YSAyu*d3y(U|G+in+g!I%R;<61fOj$Q zvJ6sEwM&6uL|x0S@!!J(AvyIz=CA%7xyq`oSSwI{s9q(B=P-pbjcT=Z;1YX5;c`%@ zfK43wRNa;4KjfjTwhkSfk)zXNG-Zf@?Oov4Kd{g5{K!6S9_`ycx6Ax!GW)yi0SU>g zOp>q<4IH-))03)}q6@5~r6yv6O(i6>1x5a!J_wW?u409+0*7RgEXso;(u6HhL}`%< z9FI%UY(PW$w-k0Jf5F{5z{~#*05qRLCO4v+Ua^C&zcK6^2zWCFx_C+(HFy8~5P`mh!T%lmguA}?3YEv*6i4Y* zhwhyK{m0ZO*>(zxt0fBR00dGwq+FA(jh$u*W(airgN+~6D@tq0yJ3}Wfa%Xb5T^vI z%!VKm_Z*3>pUP@=71b_eq735@lz<~X_H1Jh6=74oqG_^qdS|s*%Y=@IyY#z9a$}0B zfLAg{@t;{N0#XAm*zALYX|21#6j#GSS(mc1Y5u+ZYR1e0|Dp=EbqYHm#%h4O#%T*4 zSL()LY5h`ErbdLd3E=wNZZq}l*SPEc07SrS37bOMeciY2;>f%MfLjUp_aJ&^Gto2&7sCdt#T_s@X)g48k*fb zOS%O{V`2TXa-fL}hC?{m`X=@7P5^%c;1BWZo{YOb<+~Q%6?^j78agnxH)kIN@N;0^ zkF>IWVVtCcNo`b22!UrMsIE?P6sJCD4dXqOQmA1CL{d~(AeDA0-goVvIjEmnWs=&j zUKD4G$8Bd8`7`_lWylj{L+eBU&sfaaSTCq>aFW+pDepP*znieNx#aR$ZQYQEB+=l4 z8qU~@`B4v6w=$j-ze<|Za8$YVo3iUuN}&xi&L{4aI+xEwQJeb!Ja4p;)y{5S2N=QxLG zk91KE>OiEC1~iNEoios;X_qPRchAK?8_>*pHYi(s!DZTGeatv%ah$d|SaC^I=cpwh zM>zo|5v-#!*4ZG@Yi~*VBa0iBgrzHQX^zG!0N~fq;niR|10vk{J(nX&&D-KX`sOw4 z&O2bq4*>Yb0Pf6^rbzF5zb$2X!Wdw=A4MydJi_ARp_*MEg+${) z!~v~I_hK(dT^ztNb#zRtOO0EgN6kED6as*OwUgl+968Pwpk2xby zpB><&nE5V#v^_2Y=sZ9_cH-RLAMr9lDkv47LgTh137;10h8qBkkJ(t}a! zM;!L8zv!7Ue%Bm4O0=GlZ|2e#Y16+^0CV<75N#6m3C+*_9JQn}S6^V=6loDTj3w7d zJVkAg8jL#-5G}c2$4%A&fj!(x&G9JaC-2x!zU@r}p{%VC8uQb#9!W;D7H*WfMKO2BK-CBCy%FFyJ$if{{hI&F1|cwkM}Qmt z_8!){4n*`+F#l_SUmTX!o|bsm@ZI7b7@wUzX?hDtucvW7{|HX9+f`I-(&Pg^dsQIR zo2hO){Mb0F&lim|@Jg7d`a}{I4TWHsl4ER-uAKD70-9?%0(iG5EF3E%g~!}l9p5Ka zmP;0V3(HsCy9GTxI0`JTSjUt!$pQd?FL=csK#cvx8i@Es z0RIAjr%QKOMkejv0X?6|I)AGtO^ukDfSII~W+;Qob!^Qx8rp2MPqj7EFXyT{(rQ~b zleA^hfW4X%dWnob)6^~n_CjlpwF$xPxiQ0I7h(yF_E7+uw8E3ejZlWXr72lwWPuIN zV(I5H+A-L*ESnUiiY43t9MV{&x=6ev!ErZ;z7xEBCuSWOjJsZY1*W7)761Tz_?OqP zWI{(v{N5V91Hj)0aIf;gP&Xslu!(+WEdh9GSgWhwO&*f$=wL`<1)&Zuscc~^!bZ^B zR*t{x!pw^4{N^xAX=n(T3~CC>(J>NlYM90MID)IzdK}D`yJrr+Q>|gd5@__p_e(tL z+XfU9KpWSTVOgS;#*23SBOr3Mt?eMj86Ji{^jx%c5=zW8T1GvmR*gI}$J*Zu&<{N{ zKlM(~9K@K+{JFjZrDwl<2@qlD2xxtqzXjkQ2k?~060q9Pt?6(3rNccOnxlwsDIomIr{LIebl1wJ&KWp|%Em48mKBt*IPk0SP!4xU1a? z0MWewesK5P+FRB)_ZR@~{J!>--x$~@r(2Q`*k1?DcZ?92z|ea52PFO|h*R=-#7omn z`U>uz9<9240Bx*~YHTSS91+9NW+*j=L1HvSHDHbp;$w7N0uBR0L*TR@w{=G@AOM!% z1!e7un%M2id+#REmoUwXj%}LinkfUJBkR@S3s%sY3Ihq}8X~=EO)%cLVeTJKM+Ja&+x9 z6L3My4_u%C0Fn>@W46Qm^!4s70DmXI@9#TWeOs$+%DXmF)4x0n92cn9f;BpRoGn9h z&~7sohQ^R^%GWoUGYX>L&G<#bFO6UYeTr5suT+nX$*A~Cz?`i#LaZdJ4v%7=M&PXS zvlGshxs8lWzE}C}P7>y^c8x#Ct*jNs?nrt05XE!~+y(a!z}4-91$~ehf9H5z(^Opd49fQ8UEPb~3Zpw(JHGyr9hE1eorb(}e z&@vfOb0r-r49VC;wdR}YhcbEx`dWQwLEn*y8O#u57h>9)`|6id=%Wvvs}R>q?3Uow zI{H}%QD?TGtveu~Bw#h*rw^Lziq+y}Sj7biX^K^?Aq<2YFwh_EkB_)HA+A-M)?KVL zSl_-K;2&nf2SIZHj61*YGCY>_m<0d;-282Osj?0Lo(kYcK>R8I8vyzhEJ7!$Lm#ZK zUJ=mlrSqMu@mIWivH2pm;}NDUvQg+*A1?Kk^8t7h3Avo4X|3sIKyDzQW#8AMCMrne zFv$pj$W#dX&>Bku%RpSfk5%~0Q^us8d59q;(>DC=EKkKd*9R}8#Id(ZWVk80_R(F9 zF^v)5iUIpME0C+~& zl4Hmga0Ytoo(F`6cqgpq^5($j@Z}M-2|sU;F634{f4w1i(lc*}m3H6CiZZ1up4bl>#Q{Fjj}MRwnil5Q}BZ z(PF-gneGcTQoD~eE^XXB*=8*8Cbuyye;^2YS4g;D2Ws!&u&+Yl087JTS9l-5JDBJn zuP^wI_GSR_5{qt*yMExYnf*iEdR)>i-?r$h?v?=PB$!_f;QK&yof)KjQf7L6KOO1P z9Z;laR;_urLplqXz>v1h{L+_ap$zq{CxH-QfCsl zC@kY*A7hr@bfN9bP@{ZhKOgs)&|WyEY1U{F^33@_MjyW!93un3?ErobL~mMl{6M;) z8+ZQTV>kJy4E=FQH~%fh?8G*fTkD{+XTZl#eldXW1>>)SxP&c3qObs&q?PS&k1$1u z5VC@hclM?JkS`y#t4(!RMja<+7}~}^8ZLp>%&uRC0Ze_iZyW^^!*Ll%4ZBliGgNMi zbNo^WD+~KbPz>W!gQe}idpL{*A4B&~)_ouWkmW8{A27jG#QeQG(EmOS;6DQV(`%2M z{@~upQ`k6v1lvbMA|keVA|V2C!XI(5*_$Tn0SF!w z>u>^(+*ffj@09kW5U3G!ri$)NQxczE2#vXO2XFzXKpT?J2VKVg`B4Dx0_f+M@lGP% z;TeILamW90;ZuB5(&tfFk`o^s1b$}(pLrP(BC-2WgZo%;kat)8QSpm2V)AXLmPWA<=E10{eA|7-yz@) z#CYeD@F)Ou`@sHDdR%?|R(e7NKu*tk^)Akw+`_4cHq$gbA7{|>i1}{;_$vUO0lxs( z_~!}%Ilvn+xbcD0s{w6U=((EA7?t|Ae_~TWu2t6S+>e|~?C$XzGHTbvJM6flG7VV7 z0a1)FHDc-+fOlkBRjXhcgIOV;U`0Xy9R9r}kd_M{)lw3Hkk464dl%yJ)H25XOn~w#;6V`H58$_n@Ly<&Pb_D= zM-0rm4ol`Il<`}`dP399uV(ND&^@vM1L*b_;I-LFfS(P}3jw?Uz!z~Z4A#9%Ffxj^ zHu9#f(-gss!h!tYOk8TNK?yYZTwDNs7LK=Y!f_oy0Ho&}kRtSJ1$->TSp(X#=;3Mm z*Ki@Kkc+G#-A^4n92PvHQIHje6SvLE9uItP zz4LJgzzYE@h^l)qrHwkP62%j2kj_jICfI}mcn`o9fO8<62JisD_XBhf19uT{8^E8S q4iC)F@gsYiwUQ;ei;C%G`u_o96U&z}qVfI!0000DowDnt^~*eA@`WnYq#L1nU3mTZMmmZ7nXHOo}8 zFD-V;8rf2AEt30pUb^3(@9&R!=)TjuuDPyrJSuQ9I7@LC<}>^UyR)vb zE(=RZJooxV4i?srss<-?&4XDN{%}_*j9T@h>Md4kmO`J^{itmCqLmW=a@@OW+nq<@ zFUFNS_p>Qq-@o0}Rezh|a9+rR$M4>}D%Y*mlIqD!_8&Un#y@Q^)RW~9bjHfsQ)ytw zt?-siKen01UtYiK`@=eMg(@G;t>R+~Ed9D_`n3u^e8kOLhZd=QQJcwA-uUwSU%r{; z<@PH(5AunRM7?Q=YL2&W^sOEV33IAmR((<F2P;Nv)<%6;p}{sWuu8Zk2*YT9T1W6nPX&nT5Vh4b*jSp`q*Q>qwW_j z9Ns&?A+DD(%fZ%m`s|sgPusdq-8)TJ5kUo`xw=kOu4#-ltc1^~tiSNXe5l9h{XX_) zOZ-u;wqQ(dmg63cxC!M~K7vR4Ri2jfSs9J})J}99sATXzIC|%6)lZed1~Z3S5=7jj zY|GQCFgo!Dn{Y87>xsspsB3T)9Y!s1p5G6X&gQPxd{hI5#G1xr#F|;vUEP^Vnuz9#0PG#b6$v1;MY6 z>|)Hze6E`Y`fL~Rm-6LNfWH|yvX?_F^iD+FC{K3Q`3o~j7nXNUWNhW2<#32C9%M#c z8|a)^kUcjxEwFuvqkqP{hdFt_nWW~lK1^slo-t@s^ie6>C@)KOcWh2hMo|8%>GRuJ z+sy|{rYnoxDu`ntmyZRVWDa+x?kV_JC!%J1(&*JQ5~=2aOvU17BH2H$voSC)9bN3?e_WoTX%+~QE1!u>jFB0^yQr~;UsBzYE;=aLSTfW>qjolpI2Y0@#{R5 zpe1=@dD&?b9AXPEe80#4(~$WlQvY!K_Uwo*sg$JclOGSvaCiAX^JC>UsHHt`AIs1< z%}Om8EY~<@n$0VA}{WD{x=;V1f<-%eNwxoXGY;v380EY?s)tVW) zEG?FMi>Am9^G-X(3zv`gy`Q0!p7wsL*xX~1CzEoOkMsMnhkCMYgGR}#P3qtLH@=4y z35ra|i1@Eh^J;ht{<&>SxJ&8PG4GK`NuuxSs5A6OcYP1v;+m2apBdoRu`4n>ilS&y zR$4HqF*`w8j@?)oOg%Fsn)MljEv+AWVZ@Hr+A&WZJ)LZ+tbs3+Z11?bywgy(+3NuO zsUs&tp((sr^IEl;WcwLkdN8qu_E@G;G!93wR4nXmGCm6D*z2Lq%nD1`ka~ai9ggrB ztIE`gXpJD)dz_>xr5glo_!g0WyjfE@guLP7EXSiG+?qDvR- z*|x=KM|AS%(j2U62XihqJc`QZ;WKK{c`|!{9Z7yetRcGG@$~$m42q;&?Vp4;#XgbH z>=KK(@ue>N0`j|w@b>%qeIl(YWyos}>@i<+gh>+PEu0ow{N+A2;e9xQcHUi*`k|^% z#3p?lKOMW&$Tc)M*`!;O7JGKP{9s7IphKAJ4F-nx^~~>A^T%jP-}hURzw7m-NRU&{ zsihY%EPEG-m5m(pZt9ly@M-MMNLa>YXWrMxF-@zRmxo;I(M)Scy0it_^8Ur%8BL~7v-{_wP}-GyKL z;>cg@q06NixSvDp_Z_V2Z|3AFOR`g#Yub~3L%m0BTlMZznzjrPPjhMh8oN(Pnl5!v zAda();MIoBe|U^4M{3O$sWJOb~E&3Nbna|5uCb?-}< z+bbDwd*HaG;MBLLSX_leKc|b*4}EOG+D;>*xZh8W2HAF^rMUl;*L!EfU4V#*N8Vg& zp4*~K`rfUsvb%19;e!4Pr{EwQh5cda(w2QGw%+#gyu4*H7Y=RShrNo04hJ+*sZ+$< zvX0#%^l$hwpS`cI1##vtgwgB0b3bEfI)f?ETz}(5!#UMJO>2)a!9FtZ@7|w+AUocd z;>jWQd41YAW6{#I@h%3dZkn7bI34)1#P8r@X@PBHX?2=s?P?R(?k?uOd1~Im_k9qT zj$Ey_d-U?jDKE?Gw*{Itt?gSrR@$*3E#H1d^V(vLq3$WTug5IO8hZpQUNZa=VtlK% z1W%{RT9kc#t?oG(L#1S0rV|@95^U|$p0;AJCumB6NW8xbNZuv9*EFwaJHq7LJhc%8NHk;Gbt5prPW}zf z_0px{hV;yaU_1VccMp?FJGQklC$3k~VwfdoL2O<;X4@YMG=3V zTr&qHV=MbLSaA||o=OzCOCle23cC}5zEn|^v~68`;+H9G3#GIpMtJ%Fippo6_;ON) ztuL@D5N&o&@qA;Bo4NuTK(hScthHLL`+WOe7Y&q=dEoDCtZI4vP0tr59fk(I4&j!a zucLJFEk&J~4K~?vVrWb9aa;kxo?ZOrYLv8opP@!dwcpHX`%|yvwcx`Ig(RYo#k=a> zi|9h0wRPpKY2ypslm*RUBvZ`(X3sO8Z#Q+-L>c{uH|HhWc|?))t+0+ zvMBbY+-YIvCH3314^n;alKR9f`VHX|9wsM4=ndWy^#6t&F_-4#yLXcvZt9CylwTnr zb)--k?gyVEjcq` zRi8`qJHK;iOn9$wh~_maElH;ROpNawqbYOD`yOZagO%VU-e}lI)I_P=*5)o#akQ>QNUg$_PQoBz~qzg{A%Dm40+uhl;?EE(9vvtHmCt86{Hc z_>e=(?L8Rg)Q0lUIn1@+?q`{`<j%CV^0G4z9A-MoSds%N&GDrjrZ@dbY zno{R6(TMUlzaSi0C(qB#diOT)jrHwgZSOFZv+8-{{vd?TQ9DHpIAznbBc)dnPHf_` zH+E2BP!KkMx~EN%qskH8=YPrb#tXUA$*F(fHA+mn8^ikJ%R}0qBim`ocf2K+BWX%- zX#~n-q+vO5Sy$GKqR)a(tcD)5>UDo!|XO+RDhse55U6NC~Hh4L(Cw%EO zx;FS<<3qSS#~sI7B8AVF&KvpBrisQ+)VK)%<6?kQ`suwM*+*Is+zUlu93oV^n-u?{l7I%P)U z%0uUAf`o10Mw)PWHaRsU#qikC*lU45p3+NCH*$T-RXw7laDb@b1yRCDD(i^e){nvB zxV^GzZHiNm#{qE618bGbI$o{4plrgqTH#>T&253Y_pqv>%0)`S7?Q}L-+2yUJA(IG zk_Q*&)^mAvHT*XWlXuagD&o;(`epLji;-NKpMRYdMIxp==>Y0C*&X5WQ;ZsAhy44L_caV#eYH+U0qt6 z=<0zK72{6?3w`ySY<0i)T5T0G@}n0xr5Zq1Y#~Wtf@H>$ng>oJlm>B;@rEwIOx(ZbM3fP<1?b#Lht8HV$+(clhLF`uUn z{z|XlNXu;aDc*d|Z!0&8-bZ4~cMPr6k_;&x1qU^DvU3lIRz;r}gRos(-q-zV4bo3C+LsGr$>_B{K_WPL#6EQ$3Bt-n^%XO6v_S#6&`Uy#E zJ-G71!J&9Ry1xj%Ig_%FxEO98SWMbEep~ZeNg38%FF|GVIc2NBo!&gKz!46lCCknt%x-pPOuHQFu)z%b z4GeY%J#cSd%BTOpP7k4L@+gZkSDyrn&L>g2=OrqUPmoAbcY;T}(#P$fd*t%ze_d+@}Meg-mu zv_qKe);Nm;!an(Aqs=&Ix_X8?4Kn+I`zb>yq`trzCFkfg5_uwj#oz!jAIG(!HJaL# z`v1-#+!CGKaXe_RR`el+;XYZ_HxJa>jNH;V-rj|JEBok3kDX8xM&zsiXitPW)ODq7%61(Xpx4FhoNA;5bli2}?c zgQf%rz&$7h(HKr;e(kE5lvHqlTacRDY5NoS&N9OE{>B3*tnaO+55|=mi@aza{)TK zo@u(rm)=I+ycUnM?(Oly5%v+M8zEU9ALbbn@bZ_^EDI@OOLj^f?Czl{0lgl06De(D zT`-88GCBG#9Ki|LGvJ?|BK}a>OgQczHyq%Bgb;EyPpq|KhM3Bcd7LeIidX`m$U#h` zNS38!@PsudJb44hAblmKZAmqc`#ecxo|<{zk{ni)ICdbfyVv908elGhyMGD%gy}mD zvFDx{KZZtt&&bU_?q1b<@g0L*!w4(1!KL2QLb5p2?r}4*jp=JshZ8NH4>*x9FZaeh zTMPYX*!RVe2k|Ew+YBs|Y+E=#5l25j4Z;wdr%wN)fbi+Eg2B^!39E%^VqexEcNQTT zVKY;^w5>UKZMzFwCK@sD9-drmN%nLIMGM0R+^VO~t%i&!kLul!ShJW5RS3 zSo)gpMf|F0f8gpv=b{5_c$4L(eMz>ED}lNtBcxb;o@&{NmYZ&s2)fz3kWETm-GN{X zoa|Yf9$9i&w%d0nl{X=Hz1j6?08`$O&BwV=vUC0iWYf(JI;fd3lVu8j!O3S=_f`^< zIARDJowze6O|ltxw-Gq@{_lyx$NNOq!&~-}_B>gQa!sH9?>$o6yZ5j7 zZ^VRKupp(%+wBU|L=Lv(yoCw}yrIT6f?1~`nv~jFjF52=?Koea#mBT&{W0bftm@}= z#*HVX9Ue%)Xh)MaPmLmHN!~H{Ggkch1#Zm`E6wf|8tIK*$9PtgZ)>GJo4tx_j9J4KC{scGejW1TWu!f8sMqmqbx$feMg4)H`oh0F%aAI084M3{0Dfd)r#X7hb`F$7!QH=`^K? zBR5x@u0jBd2L^2H1NADz0BCtcjBjme$J*_nY_5GjCLfOe$q&$7I{hYR#0rgXKK>#B zsykATgVV?vkwZjpVS3NE;4iCvwM8nj<5m2ug?qmiE4>_5etgcVb(7vge$80!W!+3H zNsju-$MVVjTP*FD)kGH9A;nhI|8u<*N>a;?E_-Z_ljpXG%!c-9xiy}NYR=j@_TM`% z>!SSVJt{Z*be+nNQX~f)a|_LS45o-`^iMm!LAk?YKvk+?os4)E>+L_o%J)_7ao*;K z|NkAdd8f+DNfX`WVPBfJ&t8ej&YpneRMX6=EL9swZHbKfZL1Uq9WVCM!WEHb6V)kU z5j!WJl$?yr`|0m^%o@%76zw}17^)wFuSL_u@#7m-T~BRI^Rpds?PvN(IsGtoj=@#=mL89yARA@x9sYdb#MZm3H|U=B_l z_Fw?bDPh**`p_20$FCQ~AK~YdFax@PX0+Z1V#@}Gwzr+;a?T49l){vL<6JZxy~4?8 zHsKiz*7;TUFVphhrtCESgtjkUoE^Cm*UX~(6wP0y& zpFb6_0`P)y>U?Gc66qRz%*j|S12iM+9S{RKfZ^m!Q$=6Plq5AA0mE&Z9rZ3EdIA+S@^&K2L(SSHo>+QNV4m8QZ1aVXO#H2;oDDF6(EuR zF#FQM_cwsKafl%pB$*=g5<@f2Y;dlZo6~y!$rGM)qEW7Oak1!o0d+NZ*ZS~O)|(TX z=(@i!ZE?;mb3YC*j1H-Ppb+;U z{1DbF3OV2gR3twx;q$=R!^@Kl zf3ME|xn|`8WPRsZj!Yd`r!J~F_W7ndcV%yi&{Z_`0pD;7Q?3TzCinQU{&~fz0Grl= zX9xZ-^U*>(+yYH;CTN3NM6WB^quPE3O3c&f*3XPLR7z~pdg`Cky3JQ*+IfnU^yFuO;`5ZA9cIf<6U#^!_RtT6a<7R+D?2Vz z!Z~&D0mVXnlWm*!k{HR9sOHkKHAWZXZC`V%abw$O1h?3pa2UUeUvu4$lE04y@Gt=N zyghQn@IR7@++omOWX(GJE>;TP3PEHTL<)!s(w%1oax|{|iowA}fJz;y6+n_Y(0+UQ zS>kfAxAYoFyg^(9TmOwG$QJt8+zPi~Jx@w;yPyg+ioRSe!G4ZXFeoEKiW=#&?R;|G z#zO!}eG6Av5*%IjBNr67pL#gAfnY)Daj*FTvLB)?0dfTMpk#@%C2f!mF-BWh3kitK z^mDs&X!3TtS@z=E{U^TkAv<}JjtPJlZ0G;7P)WUcGmSj?Vz2y^Flv0-xA%05!e3Dg z`IsG08Ab=1^{u_wfoQpV3)76bDVsF~Z#2TI_uipQi+9l4nR4kQygI6VSH5y+4XU{2 zdA(To7Cw%9LfvYys^{ZHW|nTpyXHoqKM}Kc8u0GCXF21ZYdnxf0gTl59+w0P?6Mza z1R4Un1Vq}g|K&FOyz+7;r9`7*D|qJ;^N4C)5LSxjJw~OdxxQ0+WuOzNU&gj#Wd_Z#72g!NpSA?UQH4=WCVlOazh*UT# z?tlgF78UN-E5SYqOY2R|F-Z&c(*%p$vzBB%fX{_)rrcf96D`_%&F0KA0Z%O^E?FFH zE*2&1xKyij`lpMJdR(FEL%L3}c~5qx8?`uTtn1JnN|VrLuP0of)=mjm+sk5UPuG-r zf7b47uu$}UQu5O@+aJkA#tzg~{ejy^N&~2V(jH;*pv%4-Kkhiu12i897YNdStL_fi zg>#A$gigMso9{e+P!-ozx6>1nG@}(c33CDCS8U)^K(c$`E_pbK(xiX-%%hc>@YHa| zOC+uH_J{_y0Gn!+IvbqHBe5yoTXg~_je`Xi^B@Q9ZSE)>5qB*j-ZdsF0=nuM2KRLcFExJp37Ro#j-x2PK?h{5ZSxurZg$(Fe$OpPR(hyku8waTPY}oo( zS5SB3GVk}L6f}hcdnuQ=IYsE@eu`Di#*iT(f_?Wm)lImS>NLbyx9eRH?e0HtDWRg^7Ltu|naw_u92Hk(6BN#Y>UH>navU#G zUmx(J-`{r2)uRohoWhgKdZi6~kp6F~`_f@|$jO!uK&t0CFco-M9fVy2B!56#Q3?8| zMfe)((m($k_!Cx0G?y5*F!^rx+QdYvlPwjWNi2~WuEXg@mn$L{;Hkfla< zKQ#VM*TPWjb4BMgNMyds1hgkKDR0MPcJYpE7Y|l zyM*l+j)aI8k=;6Q3kX*<(n0`fA=I1xw3`Yysa3f=!LU!{I)}zn-DsK6XOW$kDoXJ}O4 zat&ino_ROi#&PkMXknQh+}|UJS33@C)d!(6mPcNC7MZt_ByohK z7GH#{az{rluZ zTlLdO`PY6NSeC>9%RwM)R>5i>k&f#`*K^16c%l5D4t|)uEfqUOB;_xBN-o-b&Y?Rb zsd8@dqirfs;lSf^EoG)ETD$C@^FDuoaB9mQu)j!y@COtpw}~Zg6w7PoUv%i`)gwB^ zWwPEz0YFZyoa*@C{*Nn5~J0#6oF{0wr6>tT+9glGr(En9fnqk}o&(){+j zn&1|TPMZI?sjRARGh;rPk9bcB-*kKC&GHB$X>z}e~?YfL~ z+j?(&=sfcDw_CqezT3>RYnj^dv2o-vWg&WkoMNFNj^JjJA1^u~n>qfyrWz-8Vcg;t zVJL=k=R_P=7W`whrG0db;ZKjvc>lzF!z@g^%RaCF*~U(p;unPtF-<0aS`MHJuOcB4;z!?X zkCdOPh5qbcx&=*dC8sbTp=ZvjzYzBMu^flabgF)LhT8MXw6xdRD5K0V9p)zxz!k`F`2mYk?jxm! zw6^jL7u~gXn&l8HOUr~dO0S2_-mwN8V1AXi@Iqva@6H-n+OlMlY>l+C zL8xVVPE%Vo<_d6>8_CgQ3>6oei3BYrWmYhdWE4Er#!Uxk7YIt z4Bi#;9S&5h<=k}cAPs1wIMj$kE2G*^{Z77<5;;m}KjnOf7$t^Z(rzepxpMh&Z3(`6 zxA63?Peg^x9T|1ciEn-lw?k`-CUsuyUF1q*-h2V8jpXejH(`2>pdCXzAe2))`h&gg zEF&y!_8hGH55YO?A{SDO9P3?>U+u*BKD5IULpDnL1Zn`3Hk(!*b{_32WdLUC+1N52 zf_(=@9{U6mX%5mma^tL?W)qrT)<8U8rOX5{J*D!$v$tdZ?5f{59C)Gg=(?u)#cyL( zKCD#mBHg8q`DULmm8u9x_oYL(T!9Pkekj0Rf%6$B(=ZIbj^W*3vKg{^Vp`CqRbFP~ zG|lz7RXo)pNPoQ%IDOmwS}f9Mfq*?)K}xk4lB<4ds_U#$;)l)cvga@I=qM?Oan%+0 z`qCsK#8nrB-?O&H^~H(4OyL-ElJ?Fd)2aPgn&4r7mYW==%c2~O?8 zM|FW5g@Ro!Z*Sf!mK|r@CMLa}-Hb)$AfA#JYj1a06bwFkSyi{=NTcaW@+vf~JOlzk z?S_Ce@hGc5jqcNgHF?ghOUg8GDO|6ZB3O`IfUrYDl~fTf5}eRp@1!h4z^&X$``FF6 zsjMj@;$_P&*o^1htP<$f+wNCA1CB#zI*KwXlKej7{iq&8WZ`lN7~b}5UTH0Krkh!K zu}J*d-JVYeA8-g<%2tQRmUAd_9UKX~pe8C`Z(Zr3HYA#Emeq>1YrgZN6yaFp6G`N# zRZz?N#=OE>hkqGGB}&8`CZ8*ghpGr^`^Iyt&~e_E|dw0q@v;=jFa6cjw6xWSR1woE|w@>4Nm0PkVKj z7|`>Je((DbtYKn88X*PdohHB9(oM5G%j&nyBP0Yu-nyNc_Jz-`QAIVeMrL;E^Lno5 ztIEI)^!=(V3hvNLg|b|mQgyRS@4r*?e_b{|fn&PGX ztlU0m^YJgYXMU%j|FQdRA~$C(J^9NOGtR)E#=)aJBbP5m_ewG4j0HGGOB$+fp^vAq zI)y>IFzll;ds9J0;h=l{x2+#uLb$=Uy#lWX5SIaR*c)kQRTOp5=_xlz(C!5*K`o{r z{G9_H%XzB|SW^l}ffr|lq%%^jP92gV8ld~U`h4k$EuSH;65fV$-)dZtYkbCksHEf# zq0r$_Niv3Za__v+$3UL!1VrElC04<_%=-WIf6$<*aH=PU4_)08j23?Tc(rL{`+-dp zM*hezEn<~(DrYTHr<5FN=c#>GQ^EUW*PcbSyA)D!QgNox2%9RakuTlwqB@ID_8kmu zH$i^3kG}crljY+#o4%3;alJ^)$keHcL_1iUE->4(mwz#xl3qJuA-omy;xh% zBLrIxyCTxcw0fGiDtT$__*|ir(-|qR041TtefMy6izb ztZ*!55I1^walhFp$Ec6@qnGW>x0J-)+JAcPzCCn+=u=kz&y%!KGqf-lL1SEC z0jz4@DcnlXPJ$cRRe@D?*Sv-@xd;2Yg5*?>E|ry}yvai4SA#Pa?}18K%v-e*o_XuS zi6*$QOt1yM^Le}!;kB2@i$%GATV@Bx^V-M553h_YROCz8(4drj&2a@hUPYTny9TCF zrw$%T_<)?GRM4CuAOc#}j&q37$d62u7!uq1yFO;04}uyRT)3Zyq1Jry30szA6Y zOSPsdqA*zNvX01|h%gC-2ZB9eOWv5UpUeL4YPFrbx{>S9WfG{lp{WmM03~(j)DV%m zk>EXq>o`J?_=l+KvJjN@l}`Ciu}k-@x`E{#grmK!$z5|jO_`3t+UHMqVek7h@;4^4 zZU}sTA}^^&BUdI-g#LE10am>Jrio8(6{1$`2b$Y-VxZh!2cEZ%0e>)DYc`$VpLHi0UOV+~Z9cRsBcvv7AOjdhV*259kLzHm{7o${wQgYR1l}uyG`WFUfB{DI zI9fR7)=sZl=-E+O1hubRzD#R2W17gcW4FuP@T4-5f^Q%`8KLyDj%4TlgCr^9^~+-E z4~C5Z&G1Ukh*zBL{~c!HqNa$`Q8fNI=f_-)c0apZX3h zig{^up6&RdUoYk`g)u+-TO9`?**sT@m5zg;jyNVNoKjc8nfr77RaBz?jFPYieLm>? z%rj3*@(axa2QDbIagOS)n8IpA(y6{1Y7L{EZ&E2=RbsuCfn#fZHH(#0T-yFC!k%e{ zgyaR?!-`=Jq8V$)^a}{_ewzNnZl|EDlj{Wa@YA%+(DuIU@Glo%Uigs67R#+<9Tc{M z4QwH!d!SMNN^0H+d?0g6>kNhVGlWxM5u-Glf@hY}+}(#&6}+VZV!Y~80|ZY4Co}Uy z-o3mx>l~zmXA`FD{rBvztxQGQX(7ixL&9NOIPYDC(D~o2z@k`GQH8P`HTh7N9zifx zroBUWo~pRL6WRj`I6|UR0n@$ zp}bNO)$YPFar~nn{Vp3`6Gc5Ie{s}5iK4F+owZ83bg4k=7}!6d^ww)DDKHcTHH`$e zK?%TAy$Viinv$mUMe!f0^BJw~c8klyn%C|eqZd3|=`YXX4CKe?2_E$>?Km25LbwqF z{!FqG&=|*aaUeP@ofz={ba#rl_&N=PEn~gO8P?6Tnr~FuWrptCS;yd=A)ZqkUeQ({ zW@fzFazPY_UmCYPq7f2&X4jg-d{)u_b3FshW!@uZN#7FVCfEjT41sh<1G@(taY|OY z1vnI5W7`I|g2(Purf3-0`~=;7>1Mpgu*Z~rwH>P^K0+(~R)m-DV^IQxF(L6!qaZBc;+Rdgtk)W;boN|5~OH}tNn zM(U=g00_-O8IQkwp{PM(M+*zzw1Qtta*UeT!u8E|k!aK>0#$2d01_q0%R_e7sVGSi zuY+xV&W?o*5pQJ{Y<1JXWcmjP`uB6tSf`0aUBwr#T;BO-q2qn~xnqqgg@d}&a=(1N z3dwuKmnyAf4KA&;S|k-wAi;yuQCy_-sP@?j>O}A4;n3e9MWUO!Or7aWfdV*tpqDxG zWzz*?JVUUELJ*sz^p8$jr}y|f4?#)~Pa^4cj*N6-1Xx-gFzyBw_w5g=B5ecz5ehI< zdqh0mpf|#cj7m0m2y+9q=ufRoSdXi97C4SM*fv51K$42OAkT((+dEOv)~5>*x($p^ z)q4Yf@Lhy%f#T+eE~|$o29(Yv=?B4l*!6L2q?{=IZO{X5EL0oU=IOSQ3Ns@Kf!0+B%89DDdvyR>I$N@qTgD-@m8&?*hOR`&}{=I?iw)q@gG0 zi2B)b;7;5JEr}8Yoq)$%$+vMbCdZFo#$<5+wt2pUc%J=E-eVIE*yyXqf9uT{8k||J z2Rgh2Y2Ho4Ev{AB=8>E3Ve7`-Fv1g*ZFg)xYJPTuv%?GjrW=UD*s7+US1lb1Dtz7D zBlRMni4O%Ahr#({;G_GRif6)FLWZ8?gGl-};l=oG_%;dNm5lE)f%zJuw4R*Zk0h`d z{m+hK290U$+GyEL3JRgI4dX{&CxybCNj{K(k}dMtF{@YC1bEKJMnW3CdOcL24|^Ie)?6C9F8!UtKvbatuy#U zWY9;0&I1Rot(0GWvj5MQsLN^2XNO&lZ-Wxjx~5W&p$R{b=bkq*O0`F}!xkv_bct*` zc2xZcPCKIZcYgaJaK-KVUxau?m)|=7u)40US1V#-hTigvKHp`}GY{*~p|>#&>o#`& zd1=--G392q($V`aC|uRTm#%)*s$7m-!7ne-m~6;{uF)?ToV*Zs5i_*yoM$uN$$J!` z>tX~?Yx}K9l-?J9x#&9evX0UO4DH)ryTB`h+B6^5QypC&jjpj8N$*U@AB;$fk1Exd zhk$WyTiaKD$_63J^1FJZOv1J{O&)6;vg?tp!MizLowv1_zrEiCj{V0h1}mASIsQcL z5k=NKRT5XVgtuod7H6s7pCXR0^@n~vAah^ki6Od=%*t({JX!X5xMn9e0Wyu{hXo?) zwmw-cG$2rnldx^6kxgM6VZire#VW}ZM^Mnd08>t_OgX+3NPpUiq)!EH3MtsKu|I-J z=nl8koJ9wWU8oGsWlF&kVQ_tbr4i5L6fGCn;a$%Vy@v#z2JpVK>G zb?t|OZ$}bHmRMr0AN}CdEe}{lU;$E>V34E+>?o$J5h2QM zNPSwtdr#A!ukPe(AE(&H?9n9rnwbOq9Yp)WLJ+s1J_ zxU~XkNkhkAgoUYza;L_6rxTON{#iQv_XKlz>HG>d=9AH@Va?+#fB9(+qs`;eP(wGQ z8=hB3xtEP6L!-fSFbzh>=-+PCFQ|O*u;=~fC)4}osFJDYC2HTI5u_$9n5R-`$8tkb zV5h?N@+Xp_XKq!n)8sN6iY@mJotOTSa+Wv?cSgzyJn!1k;1j;UJpz$9prZo%j1d;XGG<*Lg1GwkJbSP!$&00c zBOr96soicH-u24rm9d{!|MB~Pp%pz$RP>{FC|HA)6qNRRxth-hKdkN(rdxG@L~kUf z6+J~#5G`m{n1Cb`aEFu(3^J)%@Gi_;NtY8|YuA8y@m~>))4JAcFwCj21%x5j>o>U} zWk(zVNn+Y*n%Fw-M3ey)5Qi7045QT>1w;S~Clt>YLP=D4gpVRU|UN3kz-y>k9Sp zP7|bMI3H;+3=?yVn@~$MG1mY)rpI9nD-jicanzCwRj}+-h53vUxpSv9LEDuN+(!0i z+f?)2d`x_53Cki^G73 zBNSwtw*?R+uRi_oa#HKJsdPZmpCgiux0f0o)N&h9H7Zla#?#am=(|TlNC)-1R5(T# z+3+uM1oQtKLWXL!a#ssH8A-O%$AQgC=iu3CtpC4t_l_lyq|6_=C8vV-^;O4|Y-v~5 zM@EHfEAuTPUYPBmFR+(=h_LOEa^PTWA6EC7(}Ihp5$7Ng9^?CfKYHv?y|`lE1s)D8 zu+f`SL`Lw#vJ!sYnXx6~i~bsgxi97TV8zPyK{KW zoFWPxhXUCztnMZ|?KvbL5TjWdul4H>R(!61rw=|vrJt6ZK#5e!b}Xf9tY$vXY^a67 zrR1D&u(tR+b4FjNWL&h^0c8|8$Yt{4mc%RM2)X%wi}A)Bg;8=XnHY-J#~U17``@rK zbm><6C0%OX;b?1e#3Y&7rS(K}S4pq3G+UIsYD-#zw7_fI6K8s^JIz9&|vnkGM!t){8Hw8ufmAn_N+ekPVq}M_$OJl z){SxlhPT;x(8=kP{%M0CwfY<-=L z=)p~pVaPiFPNGg>U&-ezF^&rP8&=bJbOopxVIMLIU37yg!x@i~G|sA}3vboe^BR6K zjG^W7)3cyG&jrx*FM^$}^VQ#lkm)itnf8Tc@3YrD3&=_-g(ub7k&!48l+hJjn#cdV z8hil21ku%Ng!Hld3@t@@5CZ`4hEKyy`B(4wsH1(*_qe!uMjiaRr8Dk}9~#s&jU;N4>K{yUx#J~PkYiRY!-&x}PuH4HsU z3yRT<5(w!&dp~#Gg^3Rcxh$AcS@CO*dXk1YNXr~ne$BWxn$XVGe7=trXm-(^Ug7IByCaMpM6+l_r6`bpFI!`n~i zBnfrTBfe&ajhz6-{3#=xyUxq^^mX@Z>sQ{(n%`|Na6uew>LUIy%5Nh`q{{QYGIC~n zvUK@#Y@>xC7Jb|J#z=*63Xb6P|5kaVzv3^Ca0Bs+VE;3mx}`J_iiUR+V_lh9RCLto zC2nVknC9|&_ywW}cowYnaoKioqqIIV-af$;D)t+G`gEwAnGjTWT5xXOj@BR5+%q%) zH~O+kV?=b!_*EIY?-s3>S$J0YV5Jl}n5DsgA~C{+{BNIuM)(}IHzK%nPrgIt+@Fe? zS!bi*O5kc+KT_o+jaBn7wB!f!sCg=!6F5Ca^?E({4i&3 zd^SwIL&MBdXgcyTZ0rF50-1pvu>|W+mo8JX{~KUw=&vI@*s2-W|OA~vq4gC8LOGI+VB%FN>Qt(h#cj%aJ`_HBtWJLNbJ!A6W7qMcE<4G z`zc-j`029B*Uj&R8dt#!hKoegFx<5?+~XduUSJbs9ArU?bLUW z7@5I?+)YpTCr-i`w4l`)A|vy^{8?V_pGxWrf{ywvs4M2FLYCw$ZacbR%wC_4R7n}E zpNQkX@;u-h3-Yq`x*1Aj^LU}#;kHAG4Ze{;M9k8jy%rfC1Ie(jqRalk=8z$2KUo*i8YmXxl^o7p z3BGiV`Y#DJMGUBCLg-UOPl*}7fEDl)MUu>I*E|kC!eAZBKYs9QiW22VOnz=V_&BXz z{Wc(@@mqSFxoVAS_Q7mW3$K-Zf%n@ z;1-pZMy+M||GSZyr^WeiG_`|Dm2aHTd2ny}_pe{Mj0vIZqC66UvCxf>x?Iw=J(JS3 zeI{#AEv>>#nVmWwpob%j9CP=~gou^ZR9bzjPZ1BgI2~3Tb&_^M{%bhs-va>=hy(hA z_YWH0Ljd;fk}Rrl6wIdZ|JRJA&3U>+$LZO(?kV}00%dJ zJ4Pxc>4WlP*XVK!U+YwR;Fa?2SSoytfcQ*$Z)_?_sxPH;p{*n*VOTMcq*B&V)A6Vs zFtq5REpXpx0MvNTrg>W&9t>>8IJ`x6#5waGxF?1`vk!ip4TFpS^iT?gBZ}(lK4|JU zqW{m1f9^cz7>y7kyliEDdv>q)){~&jgV_th1&N0`6MzV)qPS6c6{Q`eE=US#Q+eqq z!-j{sWwg57=?BNFEXritY3Saq~CM@m{1GYFp(0-bna~i z1GSUq!2^KA$G#TC_8Y)#>eD5VRZlB|lkHhIGh0ne{KoYeqL3hc!Anw+?dtuG3X7mV zySNzFFjtC%XHrHgrT3T?7Bz2V-OYFgO=rEzdT`B^EA)U9I5L=tZDxT!)cR>|PwXx; zYA`EI<-r&e|F(ElxPF3OP3|!G7xa%IIILF=YaCWMz_yqD=nb%P-KVJO9J#$=_rsx1 z5j>_Z1;$=1rZ3Xs;m=>g#!d>PA3ujqe(6!%7s;sb&~3JV+&sQzIke_U`}rP)b(3B2 zj4Vwf|+zxC{$sUJiTjXFsf3aK$j_>r@}S7OG%0~hBT}WMb%+jk!Mtx zQwuThC_vCt|0rX3B8J8vzon_Lq9zK$B{YrR_gc&8Yz!x%zqMPc#_h6ET!fboB7SD^ z0?E9ztd0mnkm4ni>Wuzwj46-}bZu#bI?b4lYeU_&H3Ws|8NMXMt~z&E-oer`BEc#eXHm6TZ*dZxr30k zmqOisrX{+xV_Bn3xjg;}wI3RwQHiuJd$}C%FYD7WmOa_L(fB9fO*m8`htGZm!ual< zA2pf(LX7=*?^)E;eQ^-^riZ3(Mr3%Bo8(eSXEwC{=LTHc*Ho%7w21EB)GpTdk)2JL z{8sGH@&4K?oF7tayk4`s*eoG>XQ`_kn?vz14Ea2}9&mD(;X+vl0<6a z%kREu_Ju#Qkiva&HpGtKKOGT;%N@dYS)u#lW@-$;K)bZ3upRSa?rXX`1;@RaT3%Y~IZ1H++%oj5;_IZax3KHg@ay_4Bry<{gQ_dec+HG4?)5)}|a0}aI zj>gYb*My!LD_r@Z$dnU!zVTU)aAb|4#(cK;7w&fZUO zLkq_uUyDFKX98&V*ah8}fB@aIfSN2v;W?j@5BThQ8LITm!LUDG+4IDi-SSquRDbF&Q6K%W5~Rzt#5EQ;4xPUr!Y#CKrUO65P~ZS(1OI`8c0en9$z~ zj>8xZEvA8%xE_GOJzE?>_lc3sY4{qMiLcGY_N^sz!b8NHF!YU~sdKOD6Y8oWb1z?t z{c=gz?`?#|5dY0Dr9?SOqzeKY4C?v{WQ8vj|vax!L>AKGAIFIAKP7s_c7!^)Eufmh7d_kVa{hC?@I)(wKj zZn_$kU+lO=L@l;k_YOzV3o8ljJC8P$A+A6lz9p7=7?lI@X*M4Bm&T=7>bOrNkN+#3 zuvm%;kg3Jx0Pe#G4`=U;X(qj^3zK>AV)cFX3W6-d=d{KtDOGvNP4KDA+kCoz8*eiY zHs0f9LUuj`ktoI*e5Nn1!(7n_#abo7hRkb!1;NtJOsP0}fN-G*DK)NgC)c_p?$iE_ zvUvP@tIcbUqyP3(+K{aAuCnp%zmORGxkl6!^06@rP7m z$jfhnJzn{?#UVdevs^54*igy zagPhP=zqQo(3XzQjK?H&If&{|x^j(et~>V$d<%i~QDA3wj?=WWn; zKW+ze$wQa(4sgVA-_7Fi*cB}+AzOvybAM6)aC9ZvnJ<(jQX=AMRG^^!{`_-7ToHE# z^lo~l<3IbMZj%D*q#^iRAZ1OW=-1+nd~@YEZ3^dZf!<(PrYuf+Q3no)Y|UpKbn*4*~$2j}-@=E7})nLx8t_R zjhAi@zq_YJ2A&X{l<`0N>$8dvEJ4T9@yLiCJ6(sM97jkg(b&`g`ecD}%qN2_&cxDN zZ1~gjY!OXxo{qTRv2hPFYoOlf6YEgf`<8;HKvHE=rMJF#JWYd$A-wuagO0$RfFeA- zOFbI}Q5Q3I|1tVsO(U-r`1*elALzAfgOc3BY0(9w6=0wo3l?^CeBYrAQC+?iK>KMzkD{hg!>xm zFa|SN8!U3!{@NvnT|D#l>O;T{bO@byb6*;|xgb&Rcq+jRt@6>Pd&#d9WPZ@}kbe zU6oiY9gYox?V)f69d{ceYM<9fXXWKe~CiKEl_7iUv~d`sZ6$uN(ucMoe

JieuTfHUztA|_!Pe1aK{Ue~<)3?jKH(kDvrt`cSuHo(^j-P8S7 zDZuJqUt9~_-j7orluqI4z-_~8@U@D%Bc{BKCQlZxr@e4G?-Wn z86M*07-oc{&sNCAo3=(sIWAH1O~1efc6Uopdm;B7CLk7zRFnVv3{dRhJB*ahKpsMm z1e*h3P7i&TUa(p13#)isZNOl*0W4cqyoDII-6ZGy$C2x zdn>a%EK>o3`3?rX(@&Njc=PvtpFPu72D4~#MMI-I6ktnCLHZ2^sUr&$`%}M-L7x0y z@~*v|QZF@Fg4vSqUk?RF#I1^T5nMYE`)&`+-K}y*r0~QJc;owRNv#RsMi=u9$1#br zvTYA@IA^~S`nuux^MmK>SHap|N%~izIibTK3LB-iLK!v?m~=45$9t=xL&3g+ucRsh z6z8Cu5&}j26!^D1cj;wi{#0XDGo7IZk4#F5#y!bacaTK-t z^gv5bgHCH$tOQ+0~k_D|UDtLe7 z7V4c!1GXzD+%XRboWV`1ykd%qV6-<6`R_rtcUiUrUkp-Kw$@L-SL@imGnl1uCVLh|y2bS=I$OU1Ie$Xr=W1uyg2^wEh zXQ{Aihr}6bA>jL`2>)d|^a4fq1U5gh)#pzxre47a-7o#;zZ{(^-sfip?vrkrksrt#f2g8qhzpSwg7I}0UwAi^r#U-A!3p4kZ2TpN8*N|= z7=J{arCp+}ka0~fV2#&w&n0!Sml7h#U z7ORS8bDmhX?)deDWd{*ct=z(e3Wfi5i1khzluL+Bo57+krV;g`BCqy1yBwdBQT6yM zJPINaT!Myj>Yd7j;Lzpj#t+5jMnehdtgc8xoOc9pM%05H9=_uuTTldV;&ud_Rxn`{ ziTV*ve-UXB;>%gJNSv;X{MZ0+Fm*7T0c78>^q(uq8)>$ z68Q)Z)#sfp+P)B-NI{An58LzOVGi%X*FW{mCU<_%VF5?Uc--yrpPd z^jWU=+FmU33ef)i%y@SUUAvRsBzOK$F6E6MO3b;Ng*0bM z@~nCdrmflnRYdjfMsAG=EzB9|fhYRkD{|096+9lX1YDh{M}VvT|37&E)!xF01WO#o zHY>ics{R#e6iI^EJN2P%cpX7h2HOhZZqA3h2THte6ek69O2x%ygHzS+S#g*H&t~6! zx|kHaV%liG={CrZTT~EB?|g?N1{$U}sgG=|5BzlOa#;(iF4?h{w9lp(Y)VK(`g@`+ zSP;@&kXD84Z+Z7&$B#-Kr2DIIj86jTb?y6P zMJhE9$?W@17hea5rt8i|v#o#rYQ&TQy2H{x${2_X`BQGef1oJ!(zC(w%^~vnZ z$?Gm5OxayTAg@ap{DHhERGtzrx`)*F%7AEQ=XG}UsOmpqF1Ap?_(B}o-*MkDy9w}H zc_qQcA|=7+SE`$t34zIKTtR%#{v|@!Hft?$!O0*%fy>Im1t!ziDW=94B!V}upeoqQ zt)S@-Psv^bOo1_#iR7ij0&B+ee?Cm1?dpqvj~$UyqCe~lNBiJ_lqEq>zLKfiOl!wrh70m z7lZc!(?Ar%Pw;sU!#nwh=VKC|0{h2caFN|m*8OiWru)xJUY{(7BJ?E>vP1y_qPYTV zW!K|LE;0$7sRr(I%Iv25sP%>Dty_94{m8@%pO= zF}3Qn8yM4Zi`>AJ=i%U2zy)xcam9$kKgEPvu=510)dO^Xz@yv$8@pO8BHZ2~Xexd1 z#cJ8_i_b&w4!7Jd!R2ZmXk-rS7$-Oq4rhahr4QXK4xNdMtWU+p9r{{+zERrL0aZBj zq=>&MVqYmCaMN(BJ*$U(6hqH)SE}o-6OCua`KoJmkXFC&&IXq zf^&Tak;+*vNwgE`27&*eU#ssXKX5xU6lLlnS%{s6&dW8i%Xj^ptgOfg2^WZ6b#cJ zH8v@*{jqQ7f}htrp6}@e%-u5I>O=n247InvfH;}zI5>D5d${x`m8McZ=|0bVSl8Io zqkV%31CE+r+vXU%^2U5&aZkPX+MH`b{O4NVElN=LMDX<((1;ZvRZGl`XnjDawSjr6 zZoT6mTqQ2m>%Q(INEdI0*${%eN04f@YFhAMttEX8&DyC>2mX`chyV=4T#EVRaI?pr z45c^GLtbSD!(0S_U-T_ba{T(L4`b6 zDtqH?@kBS)`lCT{x8@t=2KQQ_Skmj;?T4!lXT7HRz1K9%c>PV3uTMy%H-WALLiAF< z+FPado&*IYid}twVI&Mu<$0K9czUNc94wgTY==)YRM>h9!-kF{To12h5Rfx?^;~1ZTg4k zGWq52?FA$lTh|6zxIPUiIRw>SWgGd__zZ~ZS?+3PP7I$BCcQK@`dIZCqDSS8bYv}K zsv~2^X%4JB&wg}g$@#oz$NH3j|Ujt|+?$6DAU{S1D^0T&zlr{iqS&|rW zA8FgTpKPQv8OdFoV~qzNc+T^(qHg~9z<38@okF5=m5T)3MHQ(27TfvSJeUt*8jyMS zc*<)NbKUugAQ$q zC%lVPtq^hg`F(-Bm;3Edp#)kuUfFtM05qiN60}4u1o@X<#nOQzwxq^M3w4Q~WlE)@ zSRRb}) zm-s=NX|UTCdiz(IUo8=MXE|AZ%QQ412Qeo^EL7KV3rGbHcKd4X-~vIGzX2XCE){m^ zA(;Lsk@F{nASd{$^2OdfUzD*r^s-0dIK>%ggbK1j*Y9}Y*v6-l1XmU5FEsIRMj*gp z3XxCH3GaB5wF6#~-yBXcpS>IMnn)@9vlCTCjQ@CQ_@qMFlFy)jAli|U7!pNwO-tn? zx(O^(%yOYNVx$&8_h8O0aPA$`SIZ_2%y9#H?h4piRdr+nU~OUFmiWtA=Im*rk*}C_ zr9WB&-eQ*3x#P&r0~WOpLkQrD4c>p5c+nVg9??q(o`L!fwBR%pz`5t>xu zhtdcKXF@f#B|MEWTTc+?6kWq4AHhrnih`TtPg3~vN(SasC@UJT6hmSY^m@<%2$E1= z`004NQis-J{O;qbeHy7tkxOEBSP_2CeON|@7)72BNgL7L38LrDh z?^cWWM<7*m-5on_zytiAzPkkrn0g)llh?siH14l?iyl?rTQE>p6zqF_H7Iz5E-M=_ zRXu8SOMGG5=EAdBagE%dxu>G>1CP8BO!f8<@Q^zXBT%}eUFD_do46mn%m(8b>3}DD z*|`*+*|op_du|C{5CcYut?U&;jK2MB(DJf0?7guY*Ci^9=r%tC-Mc%c@9drFQpTQA4;xGCqeTJ{`to z9_GBx9@uB?c=N-48KwJcn~TvVX;9uODP5q8uHXQv%4=9^lRDP8rVU}9s9w$4m6=oo zngAdatS7ph5G$l3w3qLXu)p0V@RcmBDjGtfCl*cKyWJl}`2yDPAwUGdusss_n zLaa@x)shS@*OY_TnPX5z-%p5{wgPNQ95w*0AC%jQ7WGuvEyv0oc|gTYYkY>*^IYuM z1jU3~WCQsiS9n5-zMPm(vyLP&6R*ivVMynHpJ#!^s%d7?gd7K&#(JG!D1cCO6;be1 z)JW1WvrnT-6$0Dgb%*Jh*5mHqvw6Dx#^!GgYj3gjHWz_Z zC?6KbJgBc`r?e*%_VQcEu&jmvk>TnI6?4rb{q%XP+l_Y;1^`7sUSMDA%_%sAs1B z*&DRcV9yAyLNa5(6d_rCE3mLSVIpz_>F}_NEN>Z2$wBaWY^CwCJ;i3Fa7*jkfR-Uc zU5sf0d7{Pg}XX@T*`C%&0bW z4Fp>rjJgodI3}Kn<@o`CzafXZs|j`BT7bVa-Ft#&ivI(_2+!h8K@EKw{-QXZfBf=Q z5D4Izn$GLNtK{r?zx9E{{ok7EgReiRnSuMf~pYr~bx?&-XySTle zM1j|N0($6&A9NO?!6f5*=P??515|Cr&TBobagdk!YQCEo*I6r&%-+eUu+V6D+!d1} zUk!cV#r2%*F2OOg6~K)xT6DVcQi&*pB(D>X)10p}-z$Axr1|!qfvJ6tZFKE_cyJ5? zRDGYRrgm-Kpx^Peya?{Pa+3ap{D4kNdH0tV*HsZde{8=G8!Bl(v*!Xj>s}F5FC$#~ zg?nXZwC_#vAhy1=RD9l_82>kh%H9}u^l)>d@F14M)N`suC_JF@X+OXjw-+P|IVy+lxbInSbFmmhC~A5k&mv%qaDWLx&V&A&r2znjLuaO6 zT4*QUvr3`jah;Ay3C``xgXkR(z_!SA2!m%t(TJ(nPSw$cqI&zEMf>t{z$HMRT>jD= z%wC^G^$;E!rK;qZ{R+)}RQWh_93!a*`8Q5I2gJ#VajnJ#&&af1`^jRu&!KivUbt_v*8h2270AH%X#cXqa8Jm??r{*EJW|fT(zI%OevgF4!}|NWZskp z6%$M~HcZNOV$auI8hx>3FrsrhF^|d!O>o?I3nzKXL*zJR@#thQme{lp{gP3jr`*nQ zP9G7geS2k=3z-xo1x9WuLj2MY2yY1y~hAt2xr(GO*B&+ zSjgt=@9A_=72oQ$lz*GvB!bo#yLmfvwF=#O&=J~rJtNh=3x2&1PB`hDx2#reQkz3{ z0aycl^>xMT%80~onP{8CySGdDN+wy61koDA<9W8fb91n{*?$`d^|O+V7r)tr_|zx} zi4?AAW_W;fRzhIBKub^kJ77HHc+6f&?s2P*#I+GU!1?!!zC~90*z{I+Uu5!Ir zmu5>o=)l5sO=Qk!!4Q;Rp#Y{)0kOKproB1)^7_(r>OTc)5NqP_nw1^8%&VyV)w53) zD+fJ+WAXvm6!4{Eng*hAs|tP0;UKV$G6RbG>|y2j>jM^L%d%8x{qo<%Hc&#Mpu()Z z+Gl?@H$(?~ZSti6o58`l4oXO^hxPBFEEszFVN&9rE9OtH?cvB5WXEhbV)c66d-~bN zfqG@SPoT|(4kRuw4exXn@{Mh>mJ9aU(-lS2(L!%H(DL~F_touI9o+vM+3W_zP6=Qh zUl5HLSM%uaLNLV{Ed8{;= zluAhIsU)MS$E!hIb@M;=AFy7;K4YVkb<`B1}bVa-Ysy4 zCy+(F_-C_+W?XhV7#YqE=w;~>3N-y7z?6qr4q13v-}J;hmDZJ*I*!XE6NejfJc0vV z`{tklUQ+@WVj``x>2biv?Fa1T(u8iO(W4^8_;}ah)+0y{6S^hveCU5$jJqkpf*Qe8 z4jwatmYA?EbE_0Vg?>>zNDyKlGQ-3wh?}9zT48VZ3D|u-F~^+eYdLVOQQ<10{EL8W z%R}5!#%K^96hU+(?pzv=!?0m#y&JJe^QK--qlhOQIY_hs&=i6E)qg7cY#MN8OQDM;T zrLXoMPsq{HUeSQ9r%%H(%u8lYl>BU`Z3qv*0|ax}bv0@XqIxY)%<{SlgyNVkBgNSc z#cN9K3})ZtaQu9dG8}fJQY61v6xQHDb#PmzRGIlbsEKH>5WJvf9lJ=8`;|@Sx->B20Xf_%wuWvnoWQO2rSZ@WF$vlS$0OYfU46myDqL;;jl6b zIB^_C+||$beDHcdqMK8IbF5!G<$>Us|6LEh-qB*#3roo7fO*{U;_Ce=$VJU!<#B(L zYuFxtUE+nLlz%a$>o*U0VCimBUZhC0`W?*Vg~KsdIa3cdtZ@3 zt}Ea&eQTe@MIz=10uf`*=rVNzxIRM!blu!Da%_;w?aCjcy7m-~g(melUNn8NyTTL0 ztmg2tS6-jNlGA9dSe^x&*iH6j@xYwW_`_5qofNSD9AHWh=n)RyfOa719~XMP&B5qZ zwy2)G)^CBgqB;pbC?B~^wR)MkHw^9EgrS{>+{Kr~$);EE&Kog}DW})*1$;@_LjO}< z;u5<5{-v(ydmF2K4UiS^^O8x>eD-$Xg&^a{U)V4OO0Xmz538QR?1%fqVs$v4Qrz+mBOXapLj^hVY4vXJ1_bT^I5y91kP3`fUaEvO z+_5r~@?-Whg&)I@>Iw=mM-{4-X;x!y9Bm@vm1Z#~7d1S34Hsoo8Pyt1wb#B09CH zs1i{Gh?P;lZn~uUj&pvt1(n%V{9!b&b#(VuDRmP0D+ibuqR5XnUfzLFi3g5 z8*!tH{4bNTxgu}R#XN<}#)hx<&9bv17R&?OKZm3kU>Qj~!<*eR5ul6u;Z|}9Rd+Fy z%kzNRgp0q~U4M%kEECkqnEn2;j@t4^2Vw{%M`=ghj*g znm`9pz4Ri?d4JVFkK|d`OJ2;*z!#g0Exc@IgH`Hq>_B}JIvjH+xDW-{drP>R!tihT zeL_6AyNZ7^_=P1tgVL~QhRO#VpS1n^YB=16u1Mz+l&|k)U>(v0YhQL@Y<#KA& zpMVRSHs}m-AkRO@^i~*DN-xTOB_%^s=bugg;*wjLYVt?uo;?_#XS0ldaTD096n!gW zz5kA;KREx>6R6@a&@0lR8Zq;sO$F_%nthr(#f4!ruU~RMbN?-~KUC>AssrwGV&LoV z$_j39{33(j8e!)g zlY~$ozl_-=JuZGG-kvSqwO^9Bz2cgKD+>>Pp~M-vE)q;?!tF9nn_AX=#-=ulNMO5R zY;>so#J@KC`T0z(@HYsn1pMG(`Ih9Pahl>J_kWoyJ-;A9jm`tKl2ECE4&OGHO9!Oh z1};3aA(ja91HC5r#UJ;xoEQuhKpkT)X7n!a>a12y?%jxVDY10^A*GE5u9K$I0@! z4x+HF7nF&0p22iUh0$>VPy$y+9Do-SvozQgAeRdRXIV5{=$O|b4Kh(2>6RQ|GT-Z; zK)(cDVZmfQV&f)p zb3+-Eq=SOnP3*sj>TPF;y_BRvf`Syn+{{`0Q()pyq#^}aW$crkQND8F(_Oa+h&TL@AfP>u}ri6tyT`=Ha@*c{|1BxydMJ%-efF!&gZQs=6X@J^P2^z#a=db znlv|L-b8P#VRiPk=tO(eJ3k+vnc4$+IDZp?u^9tp0Q>@QFCA2CNCSqfO#;lYp^`WQ zJlq!fq=#T?lxr;Tnz17_fRLaOE#Aa_Ea}0a49%lv=xvqC+u9++-S=X&n8JFqr)Lmr zD+%bxCYLWQ_^Sp9GH`{RnN`XbT&D;$A}CNOtPJG8E>j}05*gThv4OxIenKj$H!14u zORl@&%>ROUshY>I`y_}eA`gtR*9ON=ztSUla0%3^)8T3!+#&%#7#bBAFkVMXpfo}2 zB-GgTpmtG?4xXwT=BYYEYfps-*oofIFasc_0=j6#^N-rsJ0G?$G9#WU#$DSmJ~&md zot*|c8V$DzVIUXa*(5+?A66}@!fV;7H5Ewd0rML`3==jE&>7wqS z`ri5YUNvMvQ6jl}TcW%Oe{}xC&VHmquf6`IB^$2%1N`<~u%Ogr_|#;1JLs=Qc zZhz*CReJK1WOe?NYj&Q#ZOiX@5v|&`UV8OE;%BYH=Uo%}raI^2T@|Dv{=N+_qF3if z$_+~Sw%6<)A+au8A39N+Q}7Pm*BFwniBIHPTJUj_BtBbcCkf@9U+a3~y}H0Rc0Na3 z=H;JD{WE#k;n+#)qAA{oU7aHaIKO(-*?LI52p8_x%YT9cScNzYoF(Fom!A7OtA2R- z4eFWE`$03v?9h{k_yi(C2r9Ldch!DHF|d`YoQ24}G(m!n#naKB_d9tsO9#S_!37lp zaC$K*fk;X6dMW((z;1X_VQ!yb1K~Y(G366K$nenGg3fz@J>k_**nxaPkMn}n*E=n? zL4OuVUhE$`HLt~nU&!2xA}`v0fl^BhonKxHX{9`i2^zW55x!fN!FWoo_ThT9rg(YO zaxjM#PE+Lh*4np&%6XhU76!&g9zCH)ic*w0GrNrudqs!Yy*6g;H#G>!&8g**nKU-q zu43u_6l1r4#(1v18}PvI?@!GaY8-(Z!vy2UR!0BXAU0%O7L(pd`h_Fip@!OzOihgR zOfj+J4t`H-vu@rE)_((6oHpofe97E4bRpdPv@k1bV~l)wM{MzHy0zo&<)%lCrW;>c zS`TsXbzWPH(Wmeh5kaw2n|9ZCVXEP@XcW2Sk2$~IbSpInnvA8J2R1 zi;+5!pZ8xzjUC2cpby>3UYILj;@pmT=&6n4pwqeaRFIP}jJ3Q+n3o|+I#7MNcuv>b zZvsz_I}KYT9QS<~r82@@+&#$i0Wrb(Qagzbfsy|QWbO{Bc}Erv2{cFk;F^$|EF_+PCuT_`iUeHy+{_BHvS4ULegQI4OAyL6Wi>JjSIJePOB$5Ig{~0IqcIW|tRx zt3;4c1VN}{bygRP*qjPej#s;$8kj;4m(XaLQu64c9RgmYdnqxy=|#KWoqj^9gpMG) zOj?{)kABGlbHa+=d-d2%kM45YxLWoaV@%u(*kq^Fqg?A0m%yZgkyQ@Iga9^^HxGP$ z>)7VErt1o(zZSmKTa)WLWBuTuj!qk5e7pV*f9sj_#N$a(s_Ms24H2W%D>fR+1Twb> zLz$@;yuDxLcX9UgxGJ%`rhPHV$8)k?!5wd{mG6th7P+wRvtY4z(flfxKUKEsoqcU4 zvtHp45x(s`SFE-tw_eAZJin0RbpF;SR_b!i`QP~Ft$^bRxi8aLTeLwK*>sf}Jd-yi z!^@?7^umqzk&EkY#kHI+L>*l1SJg(Dcd$S4xM0B-k4ymd6WuQF=<}ccr+2Kl4|JLz z;{95Z6jYR0n);E2Dt+4#;oQ>_B~1ISSsP}yp7M8(Sbf+GVK&a-P99?oOA7AzfvN^w zVOv!PDf^RoR&7tK>N0`NR_Lk)Wq3koXc?($lCyf^?#_l%ts=;b^~`2;ciK+Re}yB? z|C~iom&arjip+I~E4>+>^E(lq`YrRGwO+#0rj9g3Bapi6h6h8IBRAg^4o;&BqqngX zb>^?R)2vJQ`F32VQ-?Py4xa9P`8ZIzd;R7xS8d!SckwvtjLNl@@Wr<-4Uw6Dk6c9W z8P7)gUzXZtjphy;woF?S$}`>95IGIp3H?#yCwXNGoFre;0vXI~K6LGCM7q4e7gMrG z2t|%`6B)=Ryq!47 z3ogy{+`Jf;oa#*eXRSFg^*~Pfw}a*73vgFYQIooNMtDHm;9f@ul|+F5<(*Ialo|K@ z@W8^sY*M8Jq#hB^Jvs!jPUfzOk%Dn>Bl!~t4rYWjE*`$v-;YC6izn|22li6OEb{9W z;Nb?r!-W!k-&nU~@=E`q0^kkQ2~H=Rljnm?bgYbjBg}9JLsIhfnJb3s%GodN9V$)o zhj5%Gf24k>arheDZmfHYe7NM=v&Xz1cb=)t>W+5n z0{R6~^;1GRcUnU;{a}IoC-%EZ1K0X)E=-1Y_-Mv`(;9x#C6QGX6gNbB_vucXUX-Zb znTLH&o2W@jc{l!JEXfswOS>6+G3e^EvuB>%eQ2+ATXZTooJ1|r+aq7D`2GjE@{RTN zYbKvW!WH8)e((`yBt0tHhTK2y%bT1%maB+^EA-(oDOR8O;Fbm)8zW&(A7 z`HeHd!RoF0dgQK(v-9onl-?ceyuT|bb2i^Xn`MouqHH%L;ceWar^pRk*qlx4!WVssl4VIGw?CrjgvBj{Urle-jlg#J{o+vg>zpYLRIdEbuO8@ zqbVzoCldDFD!s_w=02%$im*EQ{?uJjw6n<=rO7p>As^4zI9Hn*h4sCE;PyU&{9Ruj zr3-E&0Ri5O#Am-41CJR`s7YTBp`FB6Kg@p+cbWuTR{>60flv6Fne7lwF@0uBsZ}hdEuZBxqu7 zAYJzDHGb{JcWk_4H2$iC1HALy2{iS+>mAVq>4t16I=&I;T=CAdH%BvF^xW;HlQrGs zR4ZYmvFb{R-Jn09OEJshT16yYEV{(5XI8|eL!_#v=3cbXIEcazn>}TIdB76iW0KfM zUwm0Qb^a{#+>!RLTP6km?X0HfX7X&vIh^mx!xlmJul&p*W?_smVUJj5jrY71;}GDj zzg|0H{9rx6e>9PjK*4{~GB;qS#LMG{WAV^ma#OzQi;I2@fia25&APDfBzzm!zCV7s zR*RK`>fx_1$J*=9^%tn;rL9S+AN<1pAbyy%rBAg)&)yC3JJu9O@jU(#QY=}5^gYm@@=$|=7);)L|%;Fx8G4|t^r2)Enb|C6}(+QWFxH?~mkztGN)07Bp z>g*=U+M3%9slcL&aL_Zo%d?8;Z`|5gm{&X3a3(ptL?&;iu6pbAM&SKry789UKM&5+ z#oo0xiH4QjUV9wXP_sDqIGOU6K_-LL)Kg0-7H z)^wqRl==yh0WD4&hJ7tP)7yr+xTCjlam}?-P}TOi>3k!G)v7Tif_3VwMgk&X&&`tb zQPfmM>T+AT?+-p~mts+tS!vjKv+KxzmzL(z;ntM@N%>aidDl=l^Drl63l>>-d_(=O zlFQ$9N0V0+Yv>Q1Z~~%t$mR^)|IXKwMmqS{8k!B^ttfui4Ky5hpVd&8@$*Zz@ByK8Yv6F0y7#V^eYMXtH}KZ%d=GWcLkJKuP6A?^$% zg_k_Hk6!rgbasW1;gsGS`831WG~}efqUcE)H@0Cwd=*1BcO@4EzV7}pH~*eq^Fu%W zZx^G1{CC`AuyS2)UTTdrueh~0nX;Pwu#yozg}AR*-JfqT3L%eK&M4wM;G2?sb16e2&y z3&p?Eb2ld}uB4by&g+!iB~6XK$*b&Kfug0Ol?(|5;nW zKy958xf-x6jyS1ejCGnjx-PP-^a3A;MT%O>ydY98ZQgqBO91{Et(WGp8G+8silsZ- z)6boeAzaP8?2ikZHz)AzV;$Y~*?QKpBiI^B}U&)|}-dyo0v986-YEnK9doGNpJN`{)TSM~P zsK?BeYC6Q@>+<~4jBML_p~RqO$;915$!6n0j5i%ehVD}r=Zzwq*&lYzQDISJ9$C?> z3i-wN&_+&}%OhIw#4qFRw0@TwGEMxVO?%*F;(3_zjn9SQ%kk0p-t03%m2ybTD<~%w zsu5D$=si0#sr^zNAnw)Ik}WT_f|x?aKELWr$aImw8vkbHUjgnl=d|+%!RS=DMZH!J zBwYrEMkX`OB9zFUV$Bf8tZe#5n(Ei&nSb5|Ti&eg?6Qc+v>-!1p8vogj=S42oPG(q z6;BBlbANB_F2#+Km)_1!qxYjsMQ)&}oGVGr7Vw-e-67Y(Q6&Umz3^_qh{eR%FS~oT z?j*zM*sW1^XC__@b@Oyz57&&zJeZI7cK(LAQ^=-2_Gi~zSTRy;%F7#z!~UT3XLw@2 zEi&wq3;GQc?Xmw1Y8eNM#`_lXSYzT1$t{!6#hag-`s0e$ni}_{|@%u>m>T^t%rp8RO}{MFNe_-M2aIz zApa@BCsuiqdjAhO{wuhlXqOiB${*Cxd{OfBECcn?WFF?$5gO zYd4$l@^;QIYz7R_G#|AD?<(YsC}!I(Dq7QCOAc=OGrUXZ{;@OpXM*6RCD&nx5Q~Z( z+M1^lVe>+<-)=kVE_I@Xq&yf;R`W?;<##^$-k4cS;?sCPo_)rz{rMmM;@ypp{@0VF z3L4LT49YS<1g_}7nhmvsQwH2!*_e<5p;*i}UE-{Jb++Xn(1`x+j#=Sf7CVO%^}IN3 zo~BQ7QRd-T)ocAB(I&03iKnME*&CGa=>XI-#$nL(h3nGXf0qy4bCLe|ELl7G%{v7H=ob z@!O#V6SrPNyG*i0zG2|}s$zifxk_>@PlDsF&vXBE!PsTVzvpcMOX3T;25Z~_g&8<; zvGZ|EqoOykbQ;$7j8uBkZzCz;XxO2wu>duIgI~91f2W0N>zKl03w9c~wL-S{#enf> zV7RodVaCMP@83Fn_0A*yOEC)r$$xcNjQlt@IfkP`{7Jfm`KWWgWL!^YRO*ZOC%N#d z)`^mhFm2bBH&Uy+NnuGiov)R3e9b4$MHMTe>rZ~L2z~g$QE}H_J?HFRx#aMpv`Du$Q}E2v2Y=nS zk}OQ^rE)_iIbZgZi=OX9d#tGHgP3jLTw|t>1F`bsw4)rkX@FOzCSNx!kg{xImCg*8 zI1Vwv7&T5Wlu&R*kI?3;y&s3{ch0}d zbWQlH>?Rr%uTDsa$^+H0eXMq_2`GP95Gl`Jq)V!4@A@WOH05u%W)tD>i_x zmHKV#JBrV$dpnN;haSv?H4;e4Zo1wW`@Yh)=XGwkdm6Ccb*(DHIS)fY>lx1!?n#Ic ztp;TrZ`%q;27UH&_bz@Td-4{zy*`&*5{@N{31ssO*gBroZMQ#ws60l_n7Uq z#)S(~wjr_jSPQlER}@u87v#`ve*43vHw+S^98)`;cC#sTCwXv&mmY%3rs)g$^&e^) z(rx_Mf)QdL7rXG>nbIU`m`&cIK*g8p{}% z+H^GGo~&~f2+RYve;8+ta3nqVDYq;4+9b4r_4_rqwBFE(Lp}kQ-TwhX9^E!#esf;3 z(#}I|>1^uh9f4{jK1D3G;a-7sMTQ3pMH)tKqumJiFLnejX_LiBEY11lV5i;SU`YqR z7GbX(d>&Pw!}!Ha?a-N-bmW!oqQiyx=VvvDT3Yh<#8qUb%~sH@-?Z5Tcw)nr43ZDL zPLFyt5YNmPNUaU(R*mIq(Cvx4wUtD8e{M*Itu+;NE#tL zx|#)kX zzrwj+5!dJ_b0b=2D&0n7aU}Yx_C)%T!28b~f;3wG&dq~}bWmV|~?IF`+a9$RMye?PXU5jmO=( zJ(W&l%~kC0cq|`xcN(1{yk_sp-h0fQVp zQoQrXa`NnQ;x2>CPUQ=-AHr*uWaKI59>m7xO=f;-%BLhvuO`&!mqI9!`2 zewb)Eh?p~e^xi%vPudH2mWDU&dxsBkQZpka&8*hWq`vxTPy1PU4GDs_31)po&MSH@ z#5$B0dTxUcUBz~efy{4rhJA_eqdd)a#@OB2eZ~1qDcqgStKNJW_cd5e|7yJT?@zuY zS6w4Qom~Io#-`E3zAd7XUS%Hk#g+R4a~$;<93cxIqzt%4HfVPLdjHHIZ|pNZ>BEVj zn2o0{m$0a5ROkLF$yOn=j)NPiw2)kMj;39tl9QqQKusjp6djVMbYV zcVCq7cGeA8D1G=OviSjn&aF%-sjtz&AJt4bFK!4_1mxXOSP!uf;e^{9nR{9UymxBO zHk{A7q^OnetsY$t+m*GTN#~LIgHZQopn>* zM1AOZoPxIV-FRy9a^JQQ8BslKs!O*&Rg>61Fa6BSGGswKZqtX#YI8YjQg=E;p$NQx zE{ERZ16|PYQyOLmD*?@}p~__lzmP;EU9GV5dz+E0{`X>hMWZ=7LF!U-1{1G$yADcgJf;W+c{$q)I~OVhZGK`K+vrfS8Tw^El;@R0H43;l>7 z;_6XL)B$I2lOl+^i#37!ogA0^7;TBvOL@fK%eUB==g2iq0{pS#*U*raIu`QW_bmPX z_AaZ4#91ROqBF z|oVK6^6*z&h^ck`N@`#r*X zEth_syrNP3hf4_ zBN9D_4W|xrCX}zedcI-P2{q+RF-m1@6Hhmk->8=|h1*c7GgHG&`c*IDrv)C6%(o5g z-U%0C*CNX#e#@8qN&5{yh251^PD6?TmO4%yaHo<{Exzls2LG{%t`eZ`+Zb_X50By) z+w$Q(l>v`TE~RKi-H;MM!OX9#DCre8gT3R4fUeZ!5IYY7=QXmOxXe_kQL#G8MaRxI zD(Fx6O*fv`*Y;0WAr`3+psYe}sOsH@&}sMv6MY9-=c#nM!|YsEqHqY>Al6p?o=RQT z5%>`?5E&ONku@w8-Q?y@*T(WrX|)x$@J1qT9)gE>e~$LOauTQ%s|C(rfXBs*g2w*#+$ zJ*JBbmX^Cea8B}YRyhtTdB&Te^=fsr)B&sm-kc=u#2!{yHQ)C;L4~0>;xFX`;Ty94 zgR=M@h;!U|sAb&s8=a^g!=M|lpUhi@*cD&+Nn36d(+}iBXM}eZ){sfG#|ZJ<42j6y z^Awli@0R(Nm~E@|2mv7Gef1X8T@y$N9P}giD2#w;%_Rp5q?J5MA0UxgIWlgREXN#Yi9tiYCIGl)c66PD?puY0P z79Z38VW+0rN2r45ZF;JmK#25u_08#Hb2P8DLO!;d6+_{%9XvAZwNfmhm`CP^P1C^Z zH36=Z`1#<%zndXO)n4B#1ca!y@r*UryxiwuHBtj&n46tgD*Ay)*$3oE_%4k_X?-S))ToG3mOQVQY{wXu}CPpW^dUEG?e9!y!<=qe^z0s5PBf)WbMpNN2j4itN z^S&<){86sVV;EHN@JD?D+?`2B+*dh4&fF%fyAm?w@ORV@U>4_ z*pd>`$74H1@#O?7VZxD`*gmj5?rhVcj^K$D-;LwkYpQ%jkucQVRnhKuhUveM@M7Wfgdfs>-O~I%lO**tM@BV^Yt077 z`T8iiLLBbxf+My^t30xO@=C+^dVRRs`;by^l1X|LoXCi?+`DIk6f?6y29E@3A7SZU zPyHNT6)aFPyb1aDnFD3&t3FesPg@m?zSofJ$F}tc9A*4a*NIh^gE7)s4rf zLY@}BxFUhuE0ATS@#W@=tj_wrFR-U=Hl9k2U+alGL1Aw>;LC?oW@aK!2DFH!wO&?h zG*-AXVhG9)JW_EXYL?78!InZD1QH(w^f|@%v~@MM;}MXP&h?veN}J!D4CRWvHNWjn zsx>Boo!;W3j*6UCk6YgmES`8~dmlWcjm$+ZU$U6Er%6fp-+jVfK26NovkP2yk`5n{ z5&r3>SxDy)sY%(h2^#_XJcfI=M&$(lev^22E!O6Vi$-iOjDz7Oz9+`8i|GrmxraeK zkPqi5XuUb_yqJPIvEx2I49rQnGT~!$MFc0RfTJVpWe+Ad9o{33xGZ`}&I<;IKJK{8 z5^g~?;@8->pttG{_NlL}4Oi{geM`DZ@FfeEtmNlS_8DTww+V=MI%4;$Tp|I~sJpLr zaJFkz!@K9<87s6$;R2=n=lMdiQ87k9*9K%Vetevw+$nshX&d5{b{#V*B}nx4EHUVQul0np z%=JDR-`##YmUCYxo!SE;XVOUg7|7LRkygr+Z6e7XQG3gejtz4=_Y9Yb9`io)-lkb; z9b7`3Ufp5#-21JR^ui?*LB*5JiFtet85!uNk;q%8yZEZ>R5-`YkLP0elGB)S&-cR4 z*QUV`>5LEyeefKc9Hf)@{+Qzu&Hvpybz#S+&OVEeJSLr_%bshG$uA=+b|82+7rqEx{bb; zJxhIIyPKPByKuJd((f{*nD{*!tCC?Ou=TViH^7S!y$1Slvek``YF`e(b29w|_u`s+ zEH%7#*w$u#D2_uHB5_e)p>-)+R^ z(Z!q9pL7={hzLEd+A*<gD2K<)JV!3u87OtTEq%h2zSflk2~1c@#-o3_RVlW= z2hJetN@;_((YA{t4ZlQR0LQhml29Z)F&8E@!xEJizDu5zPgJm4 zF#6v69@rwQEUihV>iD%KnV&?Z=g2Zfb0&MrEsmyG29?$`sidEO z!IhfZ-kcnpj3+ug+2yNkN@VeLmAOwuQ8e7{=7z63q0%QGU&wvA{_*@+zyzt(%k$^2 z>Wpp&F{W!okEa5Nxa}-AvX<$Fg%%&kmg-p;ZVTqvRL$d!sENO+SpU;ul5(02#rW?y zFrz4i#-ER?4BO}f&FJH%e-i6|9ubPJz;2AAEdhhoeVNA1c zd9wOqr$jZBb?W$Tln}KrVyfaPQ^RY}ja}sUfWKzN1BMMvpy8{3E?Jp9Edtg{BTv$o zWfPm7}oYsp77pQ<`Paf&9SZoR|PB2xQMEqvnxX*nlvARSb*5z?`X<>ly7 zektFFsKLof|7SwzWx1pXv^?XhW#oMtn#xLqdp>zew$OpH>GW4S1Su;$`2p6wd>vke zLny$Dds5Su*Wc!l^eGnD%6$Jzqk5;XsOd?pUk&e#j$f*U9Rb?0ZQvtO?F|!*UZ8Dz zWY_WgV=?vR&f3OrgBA5rnRR$b*5`$e0_fr8P-Bkwi|7=zKwN4RRqH~up)pwZ5tutH zg@~gjZB)1~k#4`hgzpk-%SA)>1cwjjJzJM$l%*g(B%rE|5}Wh&1!@R@zhm|T)`t?H z(ZVonaaoputJK_MRl0$7oveV4`P7G#ne|71)U2IiPgUStrd%N0(jh%TF)x^^ z-XKHNxfJrI$;IrgGjBZ_9f-M&KDxGE0&9An3_Lk4S=m!s^SFAX$Rowr`SUTK)$I|R zH?kM~So$VqnTU-;I9c3wYNAs%!j>#Nt%D1z`(Oc+v!8>Y?cO5C2@;J)jxfaqg|9$j zI#iZnh=RAtZtB+3sw~ON4mccb~y{rZPss}OAQV0Hk4*^ z48b g|!BMw~+#f2ZsOZo~4Yx4i?v8Q}-09 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 myn-2MbjY_Wr(`h|R&Z!3`p^D;vSLH`FyKKh&h literal 0 HcmV?d00001 diff --git a/public/ui/featured.svg b/public/ui/featured.svg new file mode 100644 index 0000000..ee0cd4e --- /dev/null +++ b/public/ui/featured.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/ui/whitelisted.svg b/public/ui/whitelisted.svg new file mode 100644 index 0000000..9a6e589 --- /dev/null +++ b/public/ui/whitelisted.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/shared/utils.ts b/shared/utils.ts new file mode 100644 index 0000000..d6f74c6 --- /dev/null +++ b/shared/utils.ts @@ -0,0 +1,91 @@ +import Decimal from 'decimal.js'; + +export function validateTokensInput(input: string | number, decimal_point = 12) { + let inputVal = input; + + if (typeof inputVal === 'number') { + inputVal = inputVal.toString(); + } + + if (inputVal === '') { + return { + valid: false, + error: 'Invalid input', + }; + } + + inputVal = inputVal.replace(/[^0-9.,]/g, ''); + + const MAX_NUMBER = new Decimal(2).pow(64).minus(1); + + if (decimal_point < 0 || decimal_point > 18) { + return { + valid: false, + error: 'Invalid decimal point', + }; + } + + const dotInput = inputVal.replace(/,/g, ''); + + const decimalDevider = new Decimal(10).pow(decimal_point); + + const maxAllowedNumber = MAX_NUMBER.div(decimalDevider); + + const minAllowedNumber = new Decimal(1).div(decimalDevider); + + const rounded = (() => { + if (dotInput.replace('.', '').length > 20) { + const decimalParts = dotInput.split('.'); + + if (decimalParts.length === 2 && decimalParts[1].length > 1) { + const beforeDotLength = decimalParts[0].length; + const roundedInput = new Decimal(dotInput).toFixed( + Math.max(20 - beforeDotLength, 0), + ); + + if (roundedInput.replace(/./g, '').length <= 20) { + return roundedInput; + } + } + + return false; + } + return dotInput; + })(); + + const decimalsAmount = dotInput.split('.')[1]?.length || 0; + + if (decimalsAmount > decimal_point) { + return { + valid: false, + error: 'Invalid amount - too many decimal points', + }; + } + + if (rounded === false) { + return { + valid: false, + error: 'Invalid amount - number is too big or has too many decimal points', + }; + } + + const dotInputDecimal = new Decimal(rounded); + + if (dotInputDecimal.gt(maxAllowedNumber)) { + return { + valid: false, + error: 'Invalid amount - number is too big', + }; + } + + if (dotInputDecimal.lt(minAllowedNumber)) { + return { + valid: false, + error: 'Invalid amount - number is too small', + }; + } + + return { + valid: true, + }; +} diff --git a/src/assets/images/UI/arrow-outlined-right.svg b/src/assets/images/UI/arrow-outlined-right.svg new file mode 100644 index 0000000..a08849a --- /dev/null +++ b/src/assets/images/UI/arrow-outlined-right.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/assets/images/UI/arrow.svg b/src/assets/images/UI/arrow.svg new file mode 100644 index 0000000..c39ba4e --- /dev/null +++ b/src/assets/images/UI/arrow.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/arrow_blue_right.svg b/src/assets/images/UI/arrow_blue_right.svg new file mode 100644 index 0000000..cd315dc --- /dev/null +++ b/src/assets/images/UI/arrow_blue_right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/arrow_right.svg b/src/assets/images/UI/arrow_right.svg new file mode 100644 index 0000000..32b0632 --- /dev/null +++ b/src/assets/images/UI/arrow_right.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/arrow_white.svg b/src/assets/images/UI/arrow_white.svg new file mode 100644 index 0000000..20ae35f --- /dev/null +++ b/src/assets/images/UI/arrow_white.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/burger_cross.svg b/src/assets/images/UI/burger_cross.svg new file mode 100644 index 0000000..e4abc28 --- /dev/null +++ b/src/assets/images/UI/burger_cross.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/assets/images/UI/calendar_arrow.svg b/src/assets/images/UI/calendar_arrow.svg new file mode 100644 index 0000000..09686e3 --- /dev/null +++ b/src/assets/images/UI/calendar_arrow.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/callendar.svg b/src/assets/images/UI/callendar.svg new file mode 100644 index 0000000..03ffac6 --- /dev/null +++ b/src/assets/images/UI/callendar.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/assets/images/UI/change_icon.svg b/src/assets/images/UI/change_icon.svg new file mode 100644 index 0000000..7968df4 --- /dev/null +++ b/src/assets/images/UI/change_icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/chart.svg b/src/assets/images/UI/chart.svg new file mode 100644 index 0000000..00afc5a --- /dev/null +++ b/src/assets/images/UI/chart.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/clock_icon.svg b/src/assets/images/UI/clock_icon.svg new file mode 100644 index 0000000..bb34d27 --- /dev/null +++ b/src/assets/images/UI/clock_icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/assets/images/UI/connection.svg b/src/assets/images/UI/connection.svg new file mode 100644 index 0000000..54066a9 --- /dev/null +++ b/src/assets/images/UI/connection.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/UI/cross_icon.svg b/src/assets/images/UI/cross_icon.svg new file mode 100644 index 0000000..47d30d0 --- /dev/null +++ b/src/assets/images/UI/cross_icon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/assets/images/UI/cross_icon_small.svg b/src/assets/images/UI/cross_icon_small.svg new file mode 100644 index 0000000..9b366dd --- /dev/null +++ b/src/assets/images/UI/cross_icon_small.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/assets/images/UI/delete.svg b/src/assets/images/UI/delete.svg new file mode 100644 index 0000000..bf9ebdc --- /dev/null +++ b/src/assets/images/UI/delete.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/assets/images/UI/deposit_sent.svg b/src/assets/images/UI/deposit_sent.svg new file mode 100644 index 0000000..da92597 --- /dev/null +++ b/src/assets/images/UI/deposit_sent.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/dex_cross_icon.svg b/src/assets/images/UI/dex_cross_icon.svg new file mode 100644 index 0000000..a4cec44 --- /dev/null +++ b/src/assets/images/UI/dex_cross_icon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/assets/images/UI/down_icon.svg b/src/assets/images/UI/down_icon.svg new file mode 100644 index 0000000..ae0fbc6 --- /dev/null +++ b/src/assets/images/UI/down_icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/assets/images/UI/dropdown_arrow.svg b/src/assets/images/UI/dropdown_arrow.svg new file mode 100644 index 0000000..9fe557e --- /dev/null +++ b/src/assets/images/UI/dropdown_arrow.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/dropdown_arrow_small.svg b/src/assets/images/UI/dropdown_arrow_small.svg new file mode 100644 index 0000000..066213e --- /dev/null +++ b/src/assets/images/UI/dropdown_arrow_small.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/edit.svg b/src/assets/images/UI/edit.svg new file mode 100644 index 0000000..3c23b80 --- /dev/null +++ b/src/assets/images/UI/edit.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/assets/images/UI/error.svg b/src/assets/images/UI/error.svg new file mode 100644 index 0000000..4ab91b5 --- /dev/null +++ b/src/assets/images/UI/error.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/assets/images/UI/eye.svg b/src/assets/images/UI/eye.svg new file mode 100644 index 0000000..77b3f00 --- /dev/null +++ b/src/assets/images/UI/eye.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/assets/images/UI/eye_close.svg b/src/assets/images/UI/eye_close.svg new file mode 100644 index 0000000..66d76d9 --- /dev/null +++ b/src/assets/images/UI/eye_close.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/assets/images/UI/filter_icon.svg b/src/assets/images/UI/filter_icon.svg new file mode 100644 index 0000000..44c3964 --- /dev/null +++ b/src/assets/images/UI/filter_icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/assets/images/UI/funds_confirmed.svg b/src/assets/images/UI/funds_confirmed.svg new file mode 100644 index 0000000..9e3d2ee --- /dev/null +++ b/src/assets/images/UI/funds_confirmed.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/hamburger_icon.svg b/src/assets/images/UI/hamburger_icon.svg new file mode 100644 index 0000000..b5763e9 --- /dev/null +++ b/src/assets/images/UI/hamburger_icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/assets/images/UI/history_icon.svg b/src/assets/images/UI/history_icon.svg new file mode 100644 index 0000000..eef26d4 --- /dev/null +++ b/src/assets/images/UI/history_icon.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/assets/images/UI/info.svg b/src/assets/images/UI/info.svg new file mode 100644 index 0000000..987768f --- /dev/null +++ b/src/assets/images/UI/info.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/info_alert_icon.svg b/src/assets/images/UI/info_alert_icon.svg new file mode 100644 index 0000000..4af2865 --- /dev/null +++ b/src/assets/images/UI/info_alert_icon.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/assets/images/UI/info_blue.svg b/src/assets/images/UI/info_blue.svg new file mode 100644 index 0000000..dc7c1fc --- /dev/null +++ b/src/assets/images/UI/info_blue.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/info_outlined.svg b/src/assets/images/UI/info_outlined.svg new file mode 100644 index 0000000..2e6ffb4 --- /dev/null +++ b/src/assets/images/UI/info_outlined.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/assets/images/UI/info_small.svg b/src/assets/images/UI/info_small.svg new file mode 100644 index 0000000..17c7b4c --- /dev/null +++ b/src/assets/images/UI/info_small.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/assets/images/UI/lightning.png b/src/assets/images/UI/lightning.png new file mode 100644 index 0000000000000000000000000000000000000000..a9d6b14f9f304c7e21d4cf9871946580aebe52a8 GIT binary patch literal 1853 zcmV-D2g3M?P)@~0drDELIAGL9O(c600d`2O+f$vv5yPK|hj2bb>SVRE>KB?w!7PwgfF?7o!L7x-#O>I z=bX8~Rb0iDk5D!4LLXtn0D`Ka@!?|_aPx5&`hWp7fKdh=FGIl%xY9s1SU^=Es$?VL zK)**IA{!f%?iACRej`%xHR6DT{)U~&3wb8&3QP&#iDI-N4)m)5REJ8a%1n$I2Gh`w z_`{BcxDsH=hE`xUt(1rk-bA!2g^U`l7zsfCM8J{_VFn7v1HKf5{ie%(dPp6v1W+w1 zc@XV;kjVQnQJqSsm*$lqK}cE_iewuF*DQ*8J#v;Px;1iouP-5_nUy8|s=SuEt=6 zC7bYa_WUyT{H{Fqd@T_j;>`0bnXB@`jrHRmM1qmf2pA5jToUa0f=uAH4*>aIZZ)|_ zbNzzO^t2s|cTd@Y!HPh=T*-xsXloi#aBkG|w4bxjI9>vof&FXlxgUcOuId8KzfPTP z)(WBxOx`<_i64v_5S+&bN#xmL)aAH&LY71Jfd7%fu?U@ zrbwX2L%*Zxihi)Yg!-2uVbr!s^;wpym3G zm#eMD3?XqXyk{aXdN%*#h)$rxKqD7hzZ?2lxmtL|QTP$brsrW^bYv|^63E~dm19Lx z7mu((QmVOE6k+}Uap_Yf&hs8GSK67p!S)w&W*q%KUroEfsH1{cwL5aA*uy1}x7cF_ zgrid;f-+<0*7XpN0HFF~*Q_b2;vfulZS>Cs84#?Os+3bksnGdkTp=*_J^nE~#)ya6 z44mE&oovNd=8+P6(>dbdZX*;MVV)S^31N!NA&2-Q2<=gOap2gc`1Dvpv>95+C(Tk$ znC}XmZ@Z}gn9LtjVpQxg=N`rGG#mNY+3jvAHqOoKo;%nR9ZR@R+6lDtJtSagT^ntx zeVQopbl@`RaRdwxW+`nBY^Zs$zizXI6y z8@JgU4x5T#hOJHyiPzJgxjcEGhY_IlsNxU5Qg{$`@bzp!x|3hXx2qN(i!_rJF^vc* z#+_nsV0jQ<8*(q(Ru(gY343dRE%SjhdgMKUEOo^{Cq_J1IDLK-*=krzBj=HIrc^DT~ipWyqQB8*#M@*j6U z!;9JKCOAr6E2EzG8rEFX2ujo@<_R=}Op5h8TnM=YZ;KvVvwh(mH<~k-hC*&73ZN^}Pt19nl^BdNE!~LxJ2BJ=G zsn_NceVa-8((FIoH6zC$fkyW?yzlaG1U7KP2NJn449C=`FSm* zKZc1@c+sW<8(8yhKf0XSs%G8sWPWjTT${K_MdP>E4>RV;t+eG}FD>%>3lTBZB zW^Hq2t{q84+!3&(GbG$TU(U+T##r9_tp5~rs?F@uv^ndWa!W=`cl$Az;i*i2gDOy=M=2ovR%f;#|`a&W4ZwI2!y-;U`vqZ_1CL`zv9rd&aQ?y6yrGcI3XY@&@ zZ40u-IOO1B;SdgT`;G>M?Q#1nUHwkpLa!y{Dl5>g5x&nQnTDCC{73w9>Qwt{`hbwP z&}#|h4tJNzx<19!@t0&zo8)-W*Mb2=ud;=|B6~!N*}jig=&q2YmDpbmG-H6#^KF$f rsK#)0r7-n?4>UdFHS}oLAldjAU8?t5wl7W)00000NkvXXu0mjfjG}(L literal 0 HcmV?d00001 diff --git a/src/assets/images/UI/lock.svg b/src/assets/images/UI/lock.svg new file mode 100644 index 0000000..7c8e856 --- /dev/null +++ b/src/assets/images/UI/lock.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/logo_block.svg b/src/assets/images/UI/logo_block.svg new file mode 100644 index 0000000..45b5a1e --- /dev/null +++ b/src/assets/images/UI/logo_block.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/images/UI/logo_block_dark.svg b/src/assets/images/UI/logo_block_dark.svg new file mode 100644 index 0000000..5f129e8 --- /dev/null +++ b/src/assets/images/UI/logo_block_dark.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/images/UI/logout.svg b/src/assets/images/UI/logout.svg new file mode 100644 index 0000000..b9bb6b0 --- /dev/null +++ b/src/assets/images/UI/logout.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/assets/images/UI/message.svg b/src/assets/images/UI/message.svg new file mode 100644 index 0000000..8f12231 --- /dev/null +++ b/src/assets/images/UI/message.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/moon_icon.svg b/src/assets/images/UI/moon_icon.svg new file mode 100644 index 0000000..aada30f --- /dev/null +++ b/src/assets/images/UI/moon_icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/assets/images/UI/no_chats.svg b/src/assets/images/UI/no_chats.svg new file mode 100644 index 0000000..8b29bea --- /dev/null +++ b/src/assets/images/UI/no_chats.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/assets/images/UI/no_offers.svg b/src/assets/images/UI/no_offers.svg new file mode 100644 index 0000000..c069b26 --- /dev/null +++ b/src/assets/images/UI/no_offers.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/offer_canceled.svg b/src/assets/images/UI/offer_canceled.svg new file mode 100644 index 0000000..092719e --- /dev/null +++ b/src/assets/images/UI/offer_canceled.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/assets/images/UI/offers.svg b/src/assets/images/UI/offers.svg new file mode 100644 index 0000000..11d3fad --- /dev/null +++ b/src/assets/images/UI/offers.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/pagination_arrow.svg b/src/assets/images/UI/pagination_arrow.svg new file mode 100644 index 0000000..f7aa0b6 --- /dev/null +++ b/src/assets/images/UI/pagination_arrow.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/persons_icon.svg b/src/assets/images/UI/persons_icon.svg new file mode 100644 index 0000000..8aba82e --- /dev/null +++ b/src/assets/images/UI/persons_icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/assets/images/UI/persons_selected_icon.svg b/src/assets/images/UI/persons_selected_icon.svg new file mode 100644 index 0000000..504b35b --- /dev/null +++ b/src/assets/images/UI/persons_selected_icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/assets/images/UI/plus.svg b/src/assets/images/UI/plus.svg new file mode 100644 index 0000000..51e590b --- /dev/null +++ b/src/assets/images/UI/plus.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/refrash_small_icon.svg b/src/assets/images/UI/refrash_small_icon.svg new file mode 100644 index 0000000..dca5293 --- /dev/null +++ b/src/assets/images/UI/refrash_small_icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/assets/images/UI/refresh_icon.svg b/src/assets/images/UI/refresh_icon.svg new file mode 100644 index 0000000..90fcf00 --- /dev/null +++ b/src/assets/images/UI/refresh_icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/rocket.png b/src/assets/images/UI/rocket.png new file mode 100644 index 0000000000000000000000000000000000000000..846997bf517b82125c041347aa3c34d596ce9801 GIT binary patch literal 3054 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 + + + + + + + + + diff --git a/src/assets/images/UI/search_large.svg b/src/assets/images/UI/search_large.svg new file mode 100644 index 0000000..449fd07 --- /dev/null +++ b/src/assets/images/UI/search_large.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/assets/images/UI/send.svg b/src/assets/images/UI/send.svg new file mode 100644 index 0000000..3eaf0bb --- /dev/null +++ b/src/assets/images/UI/send.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/social/discord.svg b/src/assets/images/UI/social/discord.svg new file mode 100644 index 0000000..1997859 --- /dev/null +++ b/src/assets/images/UI/social/discord.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/social/telegram.svg b/src/assets/images/UI/social/telegram.svg new file mode 100644 index 0000000..72435ef --- /dev/null +++ b/src/assets/images/UI/social/telegram.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/social/twitter.svg b/src/assets/images/UI/social/twitter.svg new file mode 100644 index 0000000..961dad3 --- /dev/null +++ b/src/assets/images/UI/social/twitter.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/star_icon.svg b/src/assets/images/UI/star_icon.svg new file mode 100644 index 0000000..8d81ecb --- /dev/null +++ b/src/assets/images/UI/star_icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/star_selected_icon.svg b/src/assets/images/UI/star_selected_icon.svg new file mode 100644 index 0000000..05ae213 --- /dev/null +++ b/src/assets/images/UI/star_selected_icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/success.svg b/src/assets/images/UI/success.svg new file mode 100644 index 0000000..f3d7ca0 --- /dev/null +++ b/src/assets/images/UI/success.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/sun_icon.svg b/src/assets/images/UI/sun_icon.svg new file mode 100644 index 0000000..0beb52c --- /dev/null +++ b/src/assets/images/UI/sun_icon.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/assets/images/UI/sun_small.svg b/src/assets/images/UI/sun_small.svg new file mode 100644 index 0000000..633228f --- /dev/null +++ b/src/assets/images/UI/sun_small.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/assets/images/UI/swap_icon.svg b/src/assets/images/UI/swap_icon.svg new file mode 100644 index 0000000..3e09ae6 --- /dev/null +++ b/src/assets/images/UI/swap_icon.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/assets/images/UI/swap_selected_icon.svg b/src/assets/images/UI/swap_selected_icon.svg new file mode 100644 index 0000000..fdb4d08 --- /dev/null +++ b/src/assets/images/UI/swap_selected_icon.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/assets/images/UI/tick_icon.svg b/src/assets/images/UI/tick_icon.svg new file mode 100644 index 0000000..8a5d542 --- /dev/null +++ b/src/assets/images/UI/tick_icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/assets/images/UI/time_icon.svg b/src/assets/images/UI/time_icon.svg new file mode 100644 index 0000000..89b5188 --- /dev/null +++ b/src/assets/images/UI/time_icon.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/assets/images/UI/trade_arrow.svg b/src/assets/images/UI/trade_arrow.svg new file mode 100644 index 0000000..a5777a3 --- /dev/null +++ b/src/assets/images/UI/trade_arrow.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/assets/images/UI/trade_icon.svg b/src/assets/images/UI/trade_icon.svg new file mode 100644 index 0000000..b7d26b8 --- /dev/null +++ b/src/assets/images/UI/trade_icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/assets/images/UI/trade_selected_icon.svg b/src/assets/images/UI/trade_selected_icon.svg new file mode 100644 index 0000000..be48811 --- /dev/null +++ b/src/assets/images/UI/trade_selected_icon.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/assets/images/UI/tsds.svg b/src/assets/images/UI/tsds.svg new file mode 100644 index 0000000..2175fef --- /dev/null +++ b/src/assets/images/UI/tsds.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/assets/images/UI/up_icon.svg b/src/assets/images/UI/up_icon.svg new file mode 100644 index 0000000..a5fc371 --- /dev/null +++ b/src/assets/images/UI/up_icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/assets/images/UI/volume_icon.svg b/src/assets/images/UI/volume_icon.svg new file mode 100644 index 0000000..a199626 --- /dev/null +++ b/src/assets/images/UI/volume_icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/assets/images/UI/walletsettings_icon.svg b/src/assets/images/UI/walletsettings_icon.svg new file mode 100644 index 0000000..250c30a --- /dev/null +++ b/src/assets/images/UI/walletsettings_icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/assets/images/UI/wbtc.svg b/src/assets/images/UI/wbtc.svg new file mode 100644 index 0000000..bd5bf8a --- /dev/null +++ b/src/assets/images/UI/wbtc.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/assets/images/UI/weth.svg b/src/assets/images/UI/weth.svg new file mode 100644 index 0000000..c40e78e --- /dev/null +++ b/src/assets/images/UI/weth.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/assets/images/UI/zano.svg b/src/assets/images/UI/zano.svg new file mode 100644 index 0000000..bdeb771 --- /dev/null +++ b/src/assets/images/UI/zano.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/images/UI/zano_trade_logo_block.svg b/src/assets/images/UI/zano_trade_logo_block.svg new file mode 100644 index 0000000..9e94d1c --- /dev/null +++ b/src/assets/images/UI/zano_trade_logo_block.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/images/UI/zano_trade_logo_block_dark.svg b/src/assets/images/UI/zano_trade_logo_block_dark.svg new file mode 100644 index 0000000..247d723 --- /dev/null +++ b/src/assets/images/UI/zano_trade_logo_block_dark.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/images/UI/zano_white.svg b/src/assets/images/UI/zano_white.svg new file mode 100644 index 0000000..3f4ef3a --- /dev/null +++ b/src/assets/images/UI/zano_white.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/assets/images/temp/chart.svg b/src/assets/images/temp/chart.svg new file mode 100644 index 0000000..fb0f4bf --- /dev/null +++ b/src/assets/images/temp/chart.svg @@ -0,0 +1,279 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/images/temp/logo_block.svg b/src/assets/images/temp/logo_block.svg new file mode 100644 index 0000000..5d9392a --- /dev/null +++ b/src/assets/images/temp/logo_block.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/components/UI/Alert/Alert.module.scss b/src/components/UI/Alert/Alert.module.scss new file mode 100644 index 0000000..b709a3f --- /dev/null +++ b/src/components/UI/Alert/Alert.module.scss @@ -0,0 +1,73 @@ +.ui__alert { + width: 420px; + background: var(--alert-bg); + border-radius: 10px; + padding: 20px; + position: fixed; + top: 40px; + left: 50%; + transform: translate(-50%); + pointer-events: all; + display: flex; + justify-content: flex-start; + gap: 20px; + + .ui__alert__close { + cursor: pointer; + position: absolute; + right: 22px; + top: 22px; + display: flex; + + img { + width: 14px; + height: 14px; + opacity: 0.5; + } + } + + .ui__alert__data { + p { + color: var(--font-dimmed-color); + line-height: 150%; + } + } + + .ui__alert__success, + .ui__alert__error { + width: 64px; + min-width: 64px; + height: 64px; + background: #16d1d6; + border-radius: 10px; + display: flex; + justify-content: center; + align-items: center; + } + + .ui__alert__error { + background: #ff6767; + } + + .ui__alert__loader { + img { + height: 64px; + width: 64px; + } + } + + @media screen and (max-width: 500px) { + width: calc(100% - 40px); + gap: 15px; + + .ui__alert__data { + h3 { + font-size: 24px; + } + + p { + font-size: 18px; + } + } + } +} diff --git a/src/components/UI/Alert/Alert.tsx b/src/components/UI/Alert/Alert.tsx new file mode 100644 index 0000000..8a68c3a --- /dev/null +++ b/src/components/UI/Alert/Alert.tsx @@ -0,0 +1,89 @@ +import Popup from '@/components/UI/Popup/Popup'; +import successIcon from '@/assets/images/UI/success.svg'; +import smallCrossIcon from '@/assets/images/UI/cross_icon_small.svg'; +import errorIcon from '@/assets/images/UI/error.svg'; +import AlertProps from '@/interfaces/props/components/UI/Alert/AlertProps'; +import Preloader from '../Preloader/Preloader'; +import styles from './Alert.module.scss'; + +function Alert(props: AlertProps) { + const types = { + success: { + title: props.title || 'Success!', + subtitle: props.subtitle || 'Lorem ipsum dolor sit amet', + icon: ( +

+ ), + }, + error: { + title: props.title || 'Fail!', + subtitle: props.subtitle || 'Lorem ipsum dolor sit amet', + icon: ( +
+ error +
+ ), + }, + loading: { + title: props.title || 'Loading...', + subtitle: props.subtitle || 'Lorem ipsum dolor sit amet', + icon: ( +
+ +
+ ), + }, + custom: { + title: props.title || '', + subtitle: props.subtitle || '', + icon: props.customIcon || null, + content: props.customContent || null, + }, + none: null, + }; + + const currentType = types[props.type || 'none']; + + if (!currentType) return null; + + function PopupContent() { + if (props.type === 'custom' && props.customContent) { + return ( +
+ {props.close && ( +
+ close +
+ )} + {props.customContent} +
+ ); + } + + if (currentType) { + return ( +
+ {props.close && ( +
+ close +
+ )} + {currentType.icon} +
+

{currentType.title}

+ {currentType.subtitle &&

{currentType.subtitle}

} + {props.type === 'custom' && props.children} +
+
+ ); + } + + return <>; + } + + return ; +} + +export default Alert; diff --git a/src/components/UI/Button/Button.module.scss b/src/components/UI/Button/Button.module.scss new file mode 100644 index 0000000..8f77b28 --- /dev/null +++ b/src/components/UI/Button/Button.module.scss @@ -0,0 +1,33 @@ +.button { + padding: 16px 40px; + color: #ffffff; + font-weight: 500; + font-size: 18px; + border-radius: 10px; + cursor: pointer; + + display: flex; + align-items: center; + justify-content: center; + + &:disabled { + opacity: 0.5; + cursor: default !important; + pointer-events: none; + } +} + +.transparent { + background-color: #ffffff00 !important; + border: 2px solid #1f8feb; + border-radius: 10px; + color: var(--font-main-color); + + &:hover { + background-color: var(--button-bordered-hover) !important; + } +} + +.btn__no_border { + border: 0; +} diff --git a/src/components/UI/Button/Button.tsx b/src/components/UI/Button/Button.tsx new file mode 100644 index 0000000..095d5ff --- /dev/null +++ b/src/components/UI/Button/Button.tsx @@ -0,0 +1,19 @@ +import ButtonProps from '@/interfaces/props/components/UI/Button/ButtonProps'; +import styles from './Button.module.scss'; + +function Button(props: ButtonProps) { + return ( + + ); +} + +export default Button; diff --git a/src/components/UI/ConnectButton/ConnectButton.tsx b/src/components/UI/ConnectButton/ConnectButton.tsx new file mode 100644 index 0000000..706bcc7 --- /dev/null +++ b/src/components/UI/ConnectButton/ConnectButton.tsx @@ -0,0 +1,144 @@ +import { useContext, useState } from 'react'; +import { Store } from '@/store/store-reducer'; +import { updateWalletState } from '@/store/actions'; +import Alert from '@/components/UI/Alert/Alert'; +import useUpdateUser from '@/hook/useUpdateUser'; +import AlertType from '@/interfaces/common/AlertType'; +import ConnectButtonProps from '@/interfaces/props/components/UI/ConnectButton/ConnectButtonProps'; +import ZanoWindow from '@/interfaces/common/ZanoWindow'; +import { getSavedWalletCredentials, setWalletCredentials } from '@/utils/utils'; +import { uuid } from 'uuidv4'; +import Button from '../Button/Button'; + +function ConnectButton(props: ConnectButtonProps) { + const [alertState, setAlertState] = useState(null); + const [alertErrMessage, setAlertErrMessage] = useState(); + const { state, dispatch } = useContext(Store); + const logged = !!state.wallet?.connected; + + const fetchUser = useUpdateUser(); + + async function connect() { + if (alertState) return; + + try { + setAlertState('loading'); + await new Promise((resolve) => setTimeout(resolve, 1000)); + const walletData = ( + await (window as unknown as ZanoWindow).zano.request('GET_WALLET_DATA') + ).data; + + if (!walletData?.address) { + throw new Error('Companion is offline'); + } + + if (!walletData?.alias) { + throw new Error('Alias not found'); + } + + let nonce = ''; + let signature = ''; + let publicKey = ''; + + const existingWallet = getSavedWalletCredentials(); + + if (existingWallet) { + nonce = existingWallet.nonce; + signature = existingWallet.signature; + publicKey = existingWallet.publicKey; + } else { + const generatedNonce = uuid(); + const signResult = await (window as unknown as ZanoWindow).zano.request( + 'REQUEST_MESSAGE_SIGN', + { message: generatedNonce }, + null, + ); + + if (!signResult?.data?.result) { + throw new Error('Sign denied'); + } + + nonce = generatedNonce; + signature = signResult.data.result.sig; + publicKey = signResult.data.result.pkey; + } + + const result = await fetch('/api/auth', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify({ + data: { + alias: walletData.alias, + address: walletData.address, + signature, + publicKey, + message: nonce, + }, + }), + }).then((res) => res.json()); + + if (!result?.success) { + throw new Error('Server auth error'); + } + + if (!existingWallet) { + setWalletCredentials({ + publicKey, + signature, + nonce, + }); + } + + sessionStorage.setItem('token', result?.data); + + updateWalletState(dispatch, { ...walletData, connected: true }); + + await fetchUser(); + + await Notification.requestPermission(); + + setAlertState('success'); + setTimeout(() => setAlertState(null), 3000); + } catch (error) { + setAlertState('error'); + setAlertErrMessage((error as { message: string }).message); + setTimeout(() => setAlertState(null), 3000); + setWalletCredentials(undefined); + } + } + + let alertSubtitle: string; + + if (alertState === 'loading') { + alertSubtitle = 'Loading wallet data...'; + } else if (alertState === 'success') { + alertSubtitle = 'Wallet connected'; + } else { + alertSubtitle = alertErrMessage || 'Connection error'; + } + + return ( + <> + {!logged && ( + + )} + {alertState && ( + setAlertState(null)} + /> + )} + + ); +} + +export default ConnectButton; diff --git a/src/components/UI/ContentPreloader/ContentPreloader.module.scss b/src/components/UI/ContentPreloader/ContentPreloader.module.scss new file mode 100644 index 0000000..453ed49 --- /dev/null +++ b/src/components/UI/ContentPreloader/ContentPreloader.module.scss @@ -0,0 +1,17 @@ +.content__preloader__wrapper { + width: 100%; + display: flex; + justify-content: center; + align-items: center; + + > div { + display: flex; + flex-direction: column; + align-items: center; + gap: 20px; + } + + p { + color: var(--font-dimmed-color); + } +} diff --git a/src/components/UI/ContentPreloader/ContentPreloader.tsx b/src/components/UI/ContentPreloader/ContentPreloader.tsx new file mode 100644 index 0000000..95d129e --- /dev/null +++ b/src/components/UI/ContentPreloader/ContentPreloader.tsx @@ -0,0 +1,15 @@ +import Preloader from '@/components/UI/Preloader/Preloader'; +import styles from './ContentPreloader.module.scss'; + +function ContentPreloader(props: { className?: string }) { + return ( +
+
+ +

Loading...

+
+
+ ); +} + +export default ContentPreloader; diff --git a/src/components/UI/CurrencyDropdown/CurrencyDropdown.tsx b/src/components/UI/CurrencyDropdown/CurrencyDropdown.tsx new file mode 100644 index 0000000..f257675 --- /dev/null +++ b/src/components/UI/CurrencyDropdown/CurrencyDropdown.tsx @@ -0,0 +1,114 @@ +import { ReactComponent as DropdownArrowIcon } from '@/assets/images/UI/dropdown_arrow.svg'; +import { useContext, useEffect, useRef, useState } from 'react'; +import Image from 'next/image'; +import { nanoid } from 'nanoid'; +import { Store } from '@/store/store-reducer'; +import { separateArray } from '@/utils/utils'; +import useUpdateUser from '@/hook/useUpdateUser'; +import CurrencyDropdownProps from '@/interfaces/props/components/UI/CurrencyDropdown/CurrencyDropdownProps'; +import CurrencyRow from '@/interfaces/common/CurrencyRow'; +import Dropdown from '../Dropdown/Dropdown'; +import styles from './currencyDropdown.module.scss'; + +function CurrencyDropdown(props: CurrencyDropdownProps) { + const [dropdownOpened, setDropdownState] = useState(false); + const updateUser = useUpdateUser(); + + const { state } = useContext(Store); + const { value } = props; + const { setValue } = props; + + const popupRef = useRef(null); + + useEffect(() => { + if (!dropdownOpened) { + updateUser(); + } + }, [dropdownOpened]); + + useEffect(() => { + function handleClick(e: MouseEvent) { + if ( + !dropdownOpened || + (popupRef.current && popupRef.current.contains(e.target as Node)) + ) + return; + setDropdownState(false); + } + window.addEventListener('mousedown', handleClick); + return () => window.removeEventListener('mousedown', handleClick); + }, [dropdownOpened]); + + return ( +
+
setDropdownState(!dropdownOpened)} + > +
+ {value && value.code && value.name && ( + {value.name} + )} +

{value ? value.name : ''}

+
+ {/* arrow */} + +
+ + {dropdownOpened && ( +
+ {props.withAll && ( +
{ + setValue({ + id: '-1', + name: 'All', + code: 'all', + }); + setDropdownState(false); + }} + > + all +

All

+
+ )} + + {props.content?.map((e, i) => ( + { + setValue(e); + setDropdownState(false); + }} + body={ + !props.noStars + ? separateArray(e.data, (curr) => + (state?.user?.favourite_currencies || []).includes( + curr.id, + ), + ) + : e.data + } + /> + ))} +
+ )} +
+ ); +} + +export default CurrencyDropdown; diff --git a/src/components/UI/CurrencyDropdown/currencyDropdown.module.scss b/src/components/UI/CurrencyDropdown/currencyDropdown.module.scss new file mode 100644 index 0000000..a047ecd --- /dev/null +++ b/src/components/UI/CurrencyDropdown/currencyDropdown.module.scss @@ -0,0 +1,88 @@ +.currency__dropdown__wrapper { + position: relative; + border-radius: 10px; + + .currency__dropdown__header { + width: 254px; + height: 100%; + padding: 0 15px; + display: flex; + align-items: center; + justify-content: space-between; + border-radius: 10px; + background-color: var(--dropdown-bg-color); + transition: + border-radius 0s, + background-color 0.3s, + transform 0s; + cursor: pointer; + + &:hover { + background-color: var(--dropdown-bg-hover); + } + + &.opened { + border-radius: 10px 10px 0 0; + + .dropdown__arrow { + transform: rotateX(180deg); + } + } + + > div { + display: flex; + align-items: center; + gap: 6px; + + > img { + width: 100%; + height: 100%; + } + + > p { + font-weight: 500; + } + } + } + + .currency__dropdown__menu { + width: 100%; + position: absolute; + top: 100%; + left: 0; + border-radius: 0 0 10px 10px; + overflow: hidden; + z-index: 1; + + .currency__dropdown__all { + padding: 15px; + background-color: var(--dropdown-bg-color); + cursor: pointer; + display: flex; + gap: 6px; + align-items: center; + border-top: 1px solid var(--delimiter-color); + + img { + width: auto; + height: auto; + } + + > p { + font-weight: 500; + } + + &:hover { + background-color: var(--dropdown-bg-hover); + } + } + + > * { + border-bottom: 1px solid var(--delimiter-color); + + &:last-child { + border: 0; + } + } + } +} diff --git a/src/components/UI/CurvePairChart/CurvePairChart.module.scss b/src/components/UI/CurvePairChart/CurvePairChart.module.scss new file mode 100644 index 0000000..7db4eb9 --- /dev/null +++ b/src/components/UI/CurvePairChart/CurvePairChart.module.scss @@ -0,0 +1,18 @@ +.curve__chart__wrapper { + width: auto; + height: 50px; + position: relative; + + canvas { + width: 100%; + height: 100%; + } + + h5 { + position: absolute; + transform: translateY(-50%); + top: 50%; + white-space: nowrap; + color: var(--font-dimmed-color); + } +} diff --git a/src/components/UI/CurvePairChart/CurvePairChart.tsx b/src/components/UI/CurvePairChart/CurvePairChart.tsx new file mode 100644 index 0000000..42bd922 --- /dev/null +++ b/src/components/UI/CurvePairChart/CurvePairChart.tsx @@ -0,0 +1,97 @@ +import { useEffect, useRef } from 'react'; +import { useWindowWidth } from '@react-hook/window-size'; +import { canvasResize } from '@/utils/utils'; +import CurvePairChartProps from '@/interfaces/props/components/UI/CurvePairChart/CurvePairChartProps'; +import Point from '@/interfaces/common/Point'; +import styles from './CurvePairChart.module.scss'; + +function CurvePairChart(props: CurvePairChartProps) { + const canvasRef = useRef(null); + + const width = useWindowWidth(); + + const { data, isAscending } = props; + + function canvasDraw(canvas: HTMLCanvasElement, data: Point[] = []) { + canvasResize(canvas); + + const ctx = canvas.getContext('2d'); + + if (!ctx) return; + + ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height); + + const rect = ctx.canvas.getBoundingClientRect(); + + const canvasWidth = rect.width; + const canvasHeight = rect.height; + + function drawChart(data: Point[]) { + if (!ctx) return; + + const padding = 3; + const drawingWidth = canvasWidth - padding * 2; + const drawingHeight = canvasHeight - padding * 2; + + const maxValue = Math.max(...data.map((e) => e.y)); + const minValue = Math.min(...data.map((e) => e.y)); + + const maxX = Math.max(...data.map((e) => e.x)); + const minX = Math.min(...data.map((e) => e.x)); + + // const step = drawingWidth / (data.length - 1); + + const points = data + .sort((a, b) => a.x - b.x) + .map((e) => { + const x = padding + ((e.x - minX) / (maxX - minX)) * drawingWidth; + const y = + canvasHeight - + padding - + ((e.y - minValue) / (maxValue - minValue)) * drawingHeight; + + return { x, y }; + }); + + if (points.length < 2) return; + + ctx.strokeStyle = isAscending ? 'rgba(22, 209, 214, 1)' : 'rgba(255, 103, 103, 1)'; + ctx.moveTo(points[0].x, points[0].y); + + ctx.lineWidth = 4; + ctx.lineCap = 'round'; + + let i; + + for (i = 0; i < points.length - 2; i++) { + const xc = (points[i].x + points[i + 1].x) / 2; + const yc = (points[i].y + points[i + 1].y) / 2; + + ctx.quadraticCurveTo(points[i].x, points[i].y, xc, yc); + } + + ctx.quadraticCurveTo(points[i].x, points[i].y, points[i + 1].x, points[i + 1].y); + ctx.stroke(); + } + + drawChart(data); + } + + useEffect(() => { + const canvas = canvasRef.current; + if (!canvas) return; + canvasDraw(canvas, data); + }, [data, width]); + + return ( +
+ {data?.length !== undefined && data.length < (props.minLength || 2) ? ( +
[ Low volume ]
+ ) : ( + + )} +
+ ); +} + +export default CurvePairChart; diff --git a/src/components/UI/DateRangeSelector/DateRangeSelector.module.scss b/src/components/UI/DateRangeSelector/DateRangeSelector.module.scss new file mode 100644 index 0000000..33676f7 --- /dev/null +++ b/src/components/UI/DateRangeSelector/DateRangeSelector.module.scss @@ -0,0 +1,235 @@ +.selector__wrapper { + position: relative; + + &.disabled { + pointer-events: none; + opacity: 0.5; + } + + .selector__header { + width: 100%; + height: 100%; + padding: 0 15px; + display: flex; + justify-content: space-between; + align-items: center; + background: var(--dropdown-bg-color); + border-radius: 10px; + cursor: pointer; + + > p { + font-weight: 500; + } + + &:hover { + background-color: var(--dropdown-bg-hover); + } + } + + .selector__calendar { + width: 446px; + position: absolute; + top: calc(100% + 20px); + left: 50%; + transform: translateX(-50%); + background: var(--dropdown-bg-color); + border-radius: 10px; + z-index: 1; + display: flex; + flex-direction: column; + gap: 20px; + + padding: 35px 0 20px 0; + + .selector__calendar__title { + padding: 0 8.5%; + width: 100%; + display: flex; + justify-content: space-between; + align-items: center; + + > div { + display: flex; + gap: 12px; + + > button { + padding: 0; + width: 32px; + height: 32px; + border-radius: 50%; + background: var(--dimmed-btn-bg); + display: flex; + justify-content: center; + align-items: center; + cursor: pointer; + + &:last-child { + svg { + transform: rotate(180deg); + } + } + + &:hover { + background: var(--dimmed-btn-hover); + } + } + } + } + + .selector__calendar__body { + display: flex; + flex-direction: column; + gap: 20px; + + > div:first-child { + display: flex; + justify-content: space-between; + padding: 0 30px; + + > div { + width: 100%; + display: flex; + justify-content: center; + } + + p { + width: 44px; + text-align: center; + font-weight: 700; + color: var(--font-dimmed-color); + } + } + + .selector__calendar__dates { + display: flex; + flex-direction: column; + gap: 9px; + + > div { + width: 100%; + display: flex; + // justify-content: space-between; + + > div:first-child, + > div:last-child { + width: 30px; + min-width: 30px; + } + + .row__body { + width: 100%; + + > div { + width: 100%; + display: flex; + justify-content: center; + margin: 0 -1px; + } + } + + .selected, + .selected__starting, + .selected__ending { + background: #175faa; + + button { + color: #fff; + + &.faded { + color: rgba(255, 255, 255, 0.5); + } + + &:hover { + background-color: transparent; + } + } + } + + .selected__starting { + border-radius: 100px 0 0 100px; + } + + .selected__ending { + border-radius: 0 100px 100px 0; + } + + .selected__single { + > button { + background-color: #175faa; + + color: #fff; + + &.faded { + color: rgba(255, 255, 255, 0.5); + } + + &:hover { + background-color: #175faa; + } + } + } + + > div { + width: calc(100% + 2px); + display: flex; + justify-content: center; + } + + button { + padding: 0; + width: 44px; + height: 44px; + display: flex; + justify-content: center; + align-items: center; + border-radius: 50%; + background-color: transparent; + cursor: pointer; + color: var(--font-main-color); + + &.faded { + color: var(--font-faded-color); + } + + &:hover { + background: rgba(31, 143, 235, 0.2); + } + + > p { + font-weight: 500; + } + } + } + } + } + + @media screen and (max-width: 500px) { + width: 100%; + } + + @media screen and (max-width: 435px) { + .selector__calendar__title { + padding: 0 9.75%; + } + + .selector__calendar__body { + > div:first-child { + p { + font-size: 14px; + width: 32px; + } + } + + .selector__calendar__dates { + > div { + button { + width: 32px; + height: 32px; + font-size: 16px; + } + } + } + } + } + } +} diff --git a/src/components/UI/DateRangeSelector/DateRangeSelector.tsx b/src/components/UI/DateRangeSelector/DateRangeSelector.tsx new file mode 100644 index 0000000..d111d36 --- /dev/null +++ b/src/components/UI/DateRangeSelector/DateRangeSelector.tsx @@ -0,0 +1,269 @@ +import { ReactComponent as CalendarIcon } from '@/assets/images/UI/callendar.svg'; +import { ReactComponent as CalendarArrowIcon } from '@/assets/images/UI/calendar_arrow.svg'; +import { useRef, useState, useEffect, ReactNode } from 'react'; +import { nanoid } from 'nanoid'; +import { toStandardDateString } from '@/utils/utils'; +import DateRangeSelectorProps from '@/interfaces/props/components/UI/DateRangeSelector/DateRangeSelectorProps'; +import Button from '../Button/Button'; +import styles from './DateRangeSelector.module.scss'; + +function DateRangeSelector(props: DateRangeSelectorProps) { + const months = [ + 'January', + 'February', + 'March', + 'April', + 'May', + 'June', + 'July', + 'August', + 'September', + 'October', + 'November', + 'December', + ]; + + const weekdays = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']; + + const selectorRef = useRef(null); + + const [pageDate, setPageDate] = useState(new Date()); + + const [selectorShown, setSelectorState] = useState(false); + + const selectedDateState = props.value; + const setDateState = props.setValue || (() => undefined); + + const forwardButtonDisabled = !!( + pageDate.getFullYear() === new Date().getFullYear() && + pageDate.getMonth() === new Date().getMonth() + ); + + function rangeSelect(date: Date) { + if ( + (selectedDateState.first && selectedDateState.last) || + (!selectedDateState.first && !selectedDateState.last) || + (selectedDateState.first && date.getTime() < selectedDateState.first.getTime()) + ) { + // setFirstState(date); + // setLastState(null); + setDateState({ + first: date, + last: null, + }); + } else if (selectedDateState.first && date.getTime() > selectedDateState.first.getTime()) { + setDateState({ + first: selectedDateState.first, + last: date, + }); + } + } + + function getButtonClass(date: Date) { + let className = ''; + + if ( + selectedDateState.first && + !selectedDateState.last && + date.getTime() === selectedDateState.first.getTime() + ) { + className += `${styles.selected__single} `; + } + + if ( + selectedDateState.first && + selectedDateState.last && + date.getTime() === selectedDateState.first.getTime() + ) { + className += `${styles.selected__starting} `; + } + + if ( + selectedDateState.first && + selectedDateState.last && + date.getTime() === selectedDateState.last.getTime() + ) { + className += `${styles.selected__ending} `; + } + + if ( + selectedDateState.first && + selectedDateState.last && + date.getTime() > selectedDateState.first.getTime() && + date.getTime() < selectedDateState.last.getTime() + ) { + className += `${styles.selected} `; + } + + return className; + } + + const dateButtons = (() => { + const allButtons: ReactNode[] = []; + let buttonsRow: ReactNode[] = []; + let buttons: ReactNode[] = []; + let workingDate = new Date(pageDate); + workingDate.setDate(1); + + while (workingDate.getDay() !== 1) { + workingDate.setDate(workingDate.getDate() - 1); + } + + function pushButton(date: Date, notThisMonth: boolean) { + buttons.push( +
+ +
, + ); + + if (buttons.length === 1) { + buttonsRow.push( +
selectedDateState.first.getTime() && + date.getTime() <= selectedDateState.last.getTime() + ? styles.selected + : '' + } + >
, + ); + } + + if (buttons.length === 7) { + // allButtons.push(buttons); + // buttons = []; + buttonsRow.push( +
+ {buttons} +
, + ); + buttonsRow.push( +
= selectedDateState.first.getTime() && + date.getTime() < selectedDateState.last.getTime() + ? styles.selected + : '' + } + >
, + ); + allButtons.push(buttonsRow); + buttons = []; + buttonsRow = []; + } + + const result = new Date(date); + + result.setDate(date.getDate() + 1); + + return result; + } + + while (workingDate.getMonth() !== pageDate.getMonth()) { + workingDate = pushButton(workingDate, true); + } + + while (workingDate.getMonth() === pageDate.getMonth()) { + workingDate = pushButton(workingDate, false); + } + + while (workingDate.getDay() !== 1) { + workingDate = pushButton(workingDate, true); + } + + return allButtons; + })(); + + useEffect(() => { + function handleClick(e: MouseEvent) { + if ( + !selectorShown || + (selectorRef.current && selectorRef.current.contains(e.target as Node)) + ) + return; + setSelectorState(false); + setPageDate(selectedDateState.first || new Date()); + } + window.addEventListener('mousedown', handleClick); + return () => window.removeEventListener('mousedown', handleClick); + }, [selectorShown]); + + return ( +
+
{ + setSelectorState(!selectorShown); + setPageDate(selectedDateState.first || new Date()); + }} + > +

+ {/* 2023-01-12 - 2023-04-12 */} + {selectedDateState.first && selectedDateState.last + ? `${toStandardDateString(selectedDateState.first)} - ${toStandardDateString(selectedDateState.last)}` + : 'Select date'} +

+ +
+ {selectorShown && ( +
+
+
+ {months[pageDate.getMonth()]} {pageDate.getFullYear()} +
+
+ + +
+
+
+
+ {weekdays.map((e) => ( +
+

{e}

+
+ ))} +
+
+ {dateButtons.map((e) => ( +
{e}
+ ))} +
+
+
+ )} +
+ ); +} + +export default DateRangeSelector; diff --git a/src/components/UI/DepositTitle/DepositTitle.module.scss b/src/components/UI/DepositTitle/DepositTitle.module.scss new file mode 100644 index 0000000..01b546b --- /dev/null +++ b/src/components/UI/DepositTitle/DepositTitle.module.scss @@ -0,0 +1,5 @@ +.deposit__title { + display: flex; + align-items: center; + gap: 10px; +} diff --git a/src/components/UI/DepositTitle/DepositTitle.tsx b/src/components/UI/DepositTitle/DepositTitle.tsx new file mode 100644 index 0000000..550802c --- /dev/null +++ b/src/components/UI/DepositTitle/DepositTitle.tsx @@ -0,0 +1,14 @@ +import { ReactComponent as LockIcon } from '@/assets/images/UI/lock.svg'; +import styles from './DepositTitle.module.scss'; +import EmptyLink from '../EmptyLink/EmptyLink'; + +function DepositTitle(props: { className?: string }) { + return ( +
+ + Deposit +
+ ); +} + +export default DepositTitle; diff --git a/src/components/UI/Dropdown/Dropdown.module.scss b/src/components/UI/Dropdown/Dropdown.module.scss new file mode 100644 index 0000000..7e434dd --- /dev/null +++ b/src/components/UI/Dropdown/Dropdown.module.scss @@ -0,0 +1,145 @@ +.dropdown__wrapper { + position: relative; + width: 100%; + + p { + font-weight: 500; + } + + .dropdown__row { + padding: 16px 15px; + display: flex; + align-items: center; + + &.dropdown__content__row { + max-height: 54px; + } + + background-color: var(--dropdown-bg-color); + cursor: pointer; + + > div { + width: 100%; + display: flex; + justify-content: space-between; + align-items: center; + gap: 5px; + } + + &.row_header { + background-color: var(--row-header-bg); + height: 100%; + + &:hover { + background-color: var(--row-header-bg); + } + + &.opened { + .dropdown__arrow { + transform: rotateX(180deg); + } + } + } + + &.header__self_contained { + background-color: var(--dropdown-bg-color); + border-radius: 10px; + + &.opened { + border-radius: 10px 10px 0 0; + } + + &:hover { + background-color: var(--dropdown-bg-hover); + } + } + + .dropdown__item { + display: flex; + align-items: center; + + img { + width: 100%; + height: 100%; + margin-right: 6px; + } + } + + &:hover { + background-color: var(--dropdown-bg-hover); + } + } + + .dropdown__menu { + left: 0; + z-index: 1; + + &.self_contained { + width: 100%; + position: absolute; + overflow: hidden; + border-radius: 0 0 10px 10px; + } + + .dropdown__row { + border-top: 1px solid var(--delimiter-color); + + &.row__disabled { + cursor: default; + opacity: 0.5; + + &:hover { + background-color: #11316b; + } + } + + &:last-child { + border-bottom: 1px solid var(--delimiter-color); + } + + &.dropdown__search__row { + cursor: auto; + + &:hover { + background-color: var(--dropdown-bg-hover); + } + } + + .dropdown__search { + width: 100%; + position: relative; + + .dropdown__search_input { + width: 100%; + height: 54px; + padding-left: 45px; + } + + .dropdown__search_icon { + position: absolute; + transform: translate(0, -50%); + top: 50%; + left: 15px; + } + } + + .dropdown__star { + &:hover { + opacity: 0.5; + } + + svg.selected { + path { + fill-opacity: 1; + fill: #1f8feb; + } + } + } + } + + .dropdown__list { + overflow: overlay; + background: var(--dropdown-bg-color); + } + } +} diff --git a/src/components/UI/Dropdown/Dropdown.tsx b/src/components/UI/Dropdown/Dropdown.tsx new file mode 100644 index 0000000..2bfb4a6 --- /dev/null +++ b/src/components/UI/Dropdown/Dropdown.tsx @@ -0,0 +1,201 @@ +import { ReactComponent as DropdownArrowIcon } from '@/assets/images/UI/dropdown_arrow.svg'; +import { ReactComponent as SearchIcon } from '@/assets/images/UI/search_icon.svg'; +import { ReactComponent as StarIcon } from '@/assets/images/UI/star_icon.svg'; +import Image from 'next/image'; +import { useState, useEffect, useRef, useContext, MouseEvent } from 'react'; +import { Store } from '@/store/store-reducer'; +import { sendFavouriteCurrencies } from '@/utils/methods'; +import DropdownProps from '@/interfaces/props/components/UI/Dropdown/DropdownProps'; +import DropdownRow from '@/interfaces/common/DropdownRow'; +import DropdownRowProps from '@/interfaces/props/components/UI/Dropdown/DropdownRowProps'; +import { knownCurrencies } from '@/utils/utils'; +import Input from '../Input/Input'; +import styles from './Dropdown.module.scss'; + +function Dropdown(props: DropdownProps) { + const maxItems = props.maxItems || 3; + + const { icon } = props; + + const { state } = useContext(Store); + const { value } = props; + const { setValue } = props; + + const [isOpen, changeOpenState] = useState(props.defaultOpen); + + const [searchState, setSearchState] = useState(''); + + const popupRef = useRef(null); + + const [favouriteCurrencies, setFavouriteCurrencies] = useState( + state?.user?.favourite_currencies || [], + ); + + function searchInputFunc(e: React.ChangeEvent) { + if (e.target) { + setSearchState((e.target as HTMLInputElement).value); + } + } + + useEffect(() => { + function handleClick(e: globalThis.MouseEvent) { + if (!isOpen || (popupRef.current && popupRef.current.contains(e.target as Node))) + return; + changeOpenState(false); + } + + if (props.selfContained) { + window.addEventListener('mousedown', handleClick); + return () => window.removeEventListener('mousedown', handleClick); + } + }, [isOpen]); + + function getIcon(ticker: string) { + const code = knownCurrencies.includes(ticker) ? ticker : 'ct'; + return `/currencies/${code}.svg`; + } + + function DropdownRow(props: DropdownRowProps) { + return ( +
+
{props.children}
+
+ ); + } + + function CurrencyList() { + const items = props.body?.filter((e) => + e.name.toLowerCase().includes(searchState.toLowerCase()), + ); + + async function starClick(event: MouseEvent, e: DropdownRow) { + if (!e.code) return; + if (!favouriteCurrencies.includes(e.code)) { + setFavouriteCurrencies([...favouriteCurrencies, e.code]); + await sendFavouriteCurrencies([...favouriteCurrencies, e.code]); + } else { + setFavouriteCurrencies(favouriteCurrencies.filter((fav: string) => fav !== e.code)); + await sendFavouriteCurrencies( + favouriteCurrencies.filter((fav: string) => fav !== e.code), + ); + } + } + + return ( + <> + {items?.map((e) => ( + ) => { + const target = event.target as HTMLElement; + if (target && (target.tagName === 'svg' || target.tagName === 'path')) + return; + setValue(e); + changeOpenState(false); + }} + > +
+ {props.withImages && e.code && e.name && ( + {e.name} + )} +

{e.name}

+
+ + {state.user?.address && !props.selfContained && !props.noStars && ( +
starClick(event, e)} + > + +
+ )} +
+ ))} + + ); + } + + return ( +
+ changeOpenState(!isOpen)} + header={true} + selfContained={props.selfContained} + > +
+ {props.withImages && value?.code && ( + {value.name} + )} +

{value?.name}

+
+ {/* arrow */} + {icon ?? } +
+ {isOpen && ( +
+ {props.withSearch && ( + <> + {DropdownRow({ + search: true, + children: ( +
+ + +
+ ), + })} + + )} +
+ +
+
+ )} +
+ ); +} + +export default Dropdown; diff --git a/src/components/UI/EmptyLink/EmptyLink.module.scss b/src/components/UI/EmptyLink/EmptyLink.module.scss new file mode 100644 index 0000000..0b2b6ad --- /dev/null +++ b/src/components/UI/EmptyLink/EmptyLink.module.scss @@ -0,0 +1,10 @@ +.empty_link { + cursor: auto; + font-size: 18px; + font-weight: 700; + color: var(--font-dimmed-color); + + &:hover { + color: var(--font-dimmed-color); + } +} diff --git a/src/components/UI/EmptyLink/EmptyLink.tsx b/src/components/UI/EmptyLink/EmptyLink.tsx new file mode 100644 index 0000000..a3f1f28 --- /dev/null +++ b/src/components/UI/EmptyLink/EmptyLink.tsx @@ -0,0 +1,17 @@ +import EmptyLinkProps from '@/interfaces/props/components/UI/EmptyLink/EmptyLinkProps'; +import Link from 'next/link'; +import styles from './EmptyLink.module.scss'; + +function EmptyLink(props: EmptyLinkProps) { + return ( + e.preventDefault()} + className={`${styles.empty_link} ${props.className}`} + > + {props.children} + + ); +} + +export default EmptyLink; diff --git a/src/components/UI/Filters/Filters.module.scss b/src/components/UI/Filters/Filters.module.scss new file mode 100644 index 0000000..98e1271 --- /dev/null +++ b/src/components/UI/Filters/Filters.module.scss @@ -0,0 +1,327 @@ +.filters, +.filters__popup { + width: 100%; + display: flex; + gap: 40px; + + button, + input { + height: 100%; + } + + .filters__switch { + display: flex; + background-color: var(--switch-bg-color); + border-radius: 10px; + + &:hover { + background-color: var(--switch-bg-hover); + } + + button { + padding: 0 48px; + color: #ffffff; + + &:hover { + background-color: #1f8feb; + } + + &.btn_unselected { + background-color: transparent; + + color: var(--font-main-color); + + &:hover { + background-color: transparent; + } + } + } + } + + .filters__limit__select { + padding: 0 15px; + display: flex; + align-items: center; + background-color: #11316b; + border-radius: 10px; + cursor: pointer; + + > div { + width: 224px; + display: flex; + justify-content: space-between; + + > div { + display: flex; + align-items: center; + + img { + margin-right: 6px; + } + } + } + } + + .filters__for { + display: flex; + align-items: center; + + p { + color: rgba(255, 255, 255, 0.7); + } + } + + .filters__price__wrapper { + position: relative; + + > div { + > :first-child { + border-bottom-left-radius: 0; + border-top-left-radius: 0; + } + } + + > input { + width: 400px; + padding: 0 15px; + padding-right: 70%; + } + + .filters__price__dropdown { + height: 100%; + min-width: 165px; + position: absolute; + top: 0; + right: 0; + + border-left: 2px solid var(--delimiter-color); + border-radius: 0 10px 10px 0; + } + } +} + +.filters { + @media screen and (max-width: 1500px) { + flex-wrap: wrap; + gap: 20px 0; + } + + @media screen and (max-width: 1500px) { + flex-direction: column; + + // button, input { + // height: 48px; + // } + + > * { + width: 100% !important; + // height: 48px; + } + + .filters__dropdown { + // height: 48px; + + > :first-child { + width: 100% !important; + } + } + + .filters__price__wrapper { + width: 100%; + + > input { + width: 100%; + padding-right: 65%; + } + } + + .filters__for { + height: auto; + justify-content: center; + } + + .filters__switch { + button { + width: 50%; + } + } + + .filters__price__dropdown { + width: 60% !important; + + > :first-child { + width: 100% !important; + } + } + + .filters__buttons { + width: auto !important; + gap: 20px; + + > button:last-child { + min-width: 55px; + } + } + } + + @media screen and (max-width: 550px) { + > div:first-child { + > * { + height: 48px !important; + } + + flex-direction: column; + } + + > div:last-child { + > * { + height: 48px !important; + } + + flex-direction: column; + + .filters__update_button { + max-width: 48px; + min-width: 0; + } + } + } + + > div:first-child { + display: flex; + gap: 20px; + + > * { + height: 55px; + } + + > div:last-child { + width: 100%; + } + } + + > div:last-child { + display: flex; + width: 100%; + gap: 20px; + } + + .filters__buttons { + display: flex; + justify-content: space-between; + width: 100%; + height: 55px; + + .filters__search_button { + padding: 0 32px; + } + + .filters__update_button { + padding: 0 12px; + display: flex; + align-items: center; + background-color: var(--dimmed-btn-bg); + + img { + width: 100%; + height: auto; + } + + &:hover { + background-color: var(--dimmed-btn-hover); + } + } + } +} + +.filters__popup { + flex-direction: column; + gap: 20px; + + > * { + width: 100%; + } + + > div:first-child { + display: flex; + flex-direction: column; + gap: 30px; + + > * { + height: 55px; + } + + > div:last-child { + width: 100%; + } + } + + > div:last-child { + height: 55px; + + > * { + height: 55px; + } + } + + button { + width: 100%; + } + + .filters__dropdown { + > :first-child { + width: 100%; + } + } + + .filters__price__wrapper { + > input { + width: 100%; + padding-right: 55%; + } + + .filters__price__dropdown { + width: 50%; + + > :first-child { + width: 100%; + } + } + } + + .filters__for { + height: auto; + justify-content: center; + } + + .filters__switch { + background: #273666; + } + + @media screen and (max-width: 680px) { + button, + input { + height: 48px; + } + + > div:first-child { + > * { + height: 48px; + } + } + + > div:last-child { + > * { + height: 48px; + } + } + + .filters__price__dropdown { + height: 48px; + + > :first-child { + height: 48px; + } + } + } +} diff --git a/src/components/UI/Filters/Filters.tsx b/src/components/UI/Filters/Filters.tsx new file mode 100644 index 0000000..7ba4f37 --- /dev/null +++ b/src/components/UI/Filters/Filters.tsx @@ -0,0 +1,117 @@ +import Button from '@/components/UI/Button/Button'; +import { ReactComponent as RefreshIcon } from '@/assets/images/UI/refresh_icon.svg'; +import Input from '@/components/UI/Input/Input'; +import CurrencyDropdown from '@/components/UI/CurrencyDropdown/CurrencyDropdown'; +import FiltersProps from '@/interfaces/props/components/UI/Filters/FiltersProps'; +import CurrencyRow from '@/interfaces/common/CurrencyRow'; +import styles from './Filters.module.scss'; + +// filtersState = { +// buyState: true, +// price: 0, +// inputCurrency: { +// name: "FIRO", +// icon: firoIcon +// }, +// targetCurrency: { +// name: "FIRO", +// icon: firoIcon +// } +// } + +function Filters(props: FiltersProps) { + const filtersState = props.value; + const setFiltersState = props.setValue; + + const stateForBtns = props.stateForBtns !== undefined ? props.stateForBtns : filtersState; + const setStateForBtns = + props.setStateForBtns !== undefined ? props.setStateForBtns : setFiltersState; + + // const [inputDropdownState, setInputState] = useState(currenciesElements[0].data[0]); + // const [targetDropdownState, setTargetState] = useState(currenciesElements[0].data[0]); + + return ( +
+
+
+ + +
+ e.name === 'Crypto currencies')} + withAll={props.withSearch} + className={styles.filters__dropdown} + value={filtersState.inputCurrency} + setValue={(e: CurrencyRow) => + setFiltersState({ ...filtersState, inputCurrency: e }) + } + /> +
+
+

for

+
+
+
+ setFiltersState({ ...filtersState, price: e.target.value })} + /> + e.name === 'Fiat currencies')} + className={styles.filters__price__dropdown} + // header={{ title: "ZANO", image: zanoIcon }} + value={filtersState.targetCurrency} + setValue={(e) => setFiltersState({ ...filtersState, targetCurrency: e })} + /> +
+ {props.withSearch && ( +
+ + +
+ )} +
+
+ ); +} + +export default Filters; diff --git a/src/components/UI/HorizontalSelect/HorizontalSelect.module.scss b/src/components/UI/HorizontalSelect/HorizontalSelect.module.scss new file mode 100644 index 0000000..967b65c --- /dev/null +++ b/src/components/UI/HorizontalSelect/HorizontalSelect.module.scss @@ -0,0 +1,61 @@ +.horizontal_select { + display: flex; + gap: 40px; + overflow: auto; + padding-bottom: 3px; + + &.tab { + gap: 10px; + + > div { + a { + font-size: 16px; + font-weight: 500; + display: block; + padding: 12px 16px; + border-radius: 10px; + + &.selected { + background-color: #1f8feb1a; + + &::after { + display: none; + } + } + } + } + } + + > div { + position: relative; + + .profile__filters__notification { + position: absolute; + transform: translate(50%, -50%); + top: -5px; + right: -10px; + } + + a { + font-weight: 600; + position: relative; + white-space: nowrap; + transition: none; + + &.selected { + color: var(--font-main-color); + cursor: auto; + + &::after { + content: ''; + position: absolute; + top: 100%; + left: 0; + width: 100%; + height: 2px; + background-color: var(--font-main-color); + } + } + } + } +} diff --git a/src/components/UI/HorizontalSelect/HorizontalSelect.tsx b/src/components/UI/HorizontalSelect/HorizontalSelect.tsx new file mode 100644 index 0000000..c1d833f --- /dev/null +++ b/src/components/UI/HorizontalSelect/HorizontalSelect.tsx @@ -0,0 +1,42 @@ +import Link from 'next/link'; +import { nanoid } from 'nanoid'; +import HorizontalSelectProps from '@/interfaces/props/components/UI/HorizontalSelect/HorizontalSelectProps'; +import HorizontalSelectValue from '@/interfaces/common/HorizontalSelectValue'; +import NotificationIndicator from '../NotificationIndicator/NotificationIndicator'; +import styles from './HorizontalSelect.module.scss'; + +function HorizontalSelect(props: HorizontalSelectProps) { + const { value } = props; + const { setValue } = props; + const { className } = props; + + return ( +
+ {props.body.map((e) => ( +
+ { + event.preventDefault(); + setValue(e); + }} + className={value?.code === e?.code ? styles.selected : ''} + > + {e?.name || ''} + + + {props.withNotifications && ( +
+ +
+ )} +
+ ))} +
+ ); +} + +export default HorizontalSelect; diff --git a/src/components/UI/IconDropdown/IconDropdown.module.scss b/src/components/UI/IconDropdown/IconDropdown.module.scss new file mode 100644 index 0000000..a36463f --- /dev/null +++ b/src/components/UI/IconDropdown/IconDropdown.module.scss @@ -0,0 +1,58 @@ +.container { + position: relative; + display: inline-block; +} + +.trigger { + background: none; + border: none; + cursor: pointer; + padding: 0; + margin: 0; + display: flex; + align-items: center; + justify-content: center; + + &:focus { + outline: none; + } +} + +.dropdown { + position: absolute; + top: 100%; + margin-top: 8px; + border-radius: 8px; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); + z-index: 1000; + min-width: 175px; + overflow: hidden; + + &.left { + left: -142px; + } + + &.right { + right: 0; + } + + &.center { + left: 50%; + transform: translateX(-50%); + } +} + +.item { + padding: 10px 16px; + cursor: pointer; + transition: background-color 0.2s; + background-color: var(--dropdown-bg-color); + + font-size: 14px; + font-weight: 500; + + &.disabled { + opacity: 0.5; + cursor: not-allowed; + } +} diff --git a/src/components/UI/IconDropdown/IconDropdown.tsx b/src/components/UI/IconDropdown/IconDropdown.tsx new file mode 100644 index 0000000..114bd29 --- /dev/null +++ b/src/components/UI/IconDropdown/IconDropdown.tsx @@ -0,0 +1,67 @@ +import { ReactNode, useState, useRef, useEffect } from 'react'; +import styles from './IconDropdown.module.scss'; + +interface IconDropdownProps { + children: ReactNode; + items: { + content: ReactNode; + onClick?: () => void; + disabled?: boolean; + }[]; + position?: 'left' | 'right' | 'center'; + className?: string; + dropdownClassName?: string; +} + +export const IconDropdown = ({ + children, + items, + position = 'left', + className = '', + dropdownClassName = '', +}: IconDropdownProps) => { + const [isOpen, setIsOpen] = useState(false); + const dropdownRef = useRef(null); + + useEffect(() => { + const handleClickOutside = (event: MouseEvent) => { + if (dropdownRef.current && !dropdownRef.current.contains(event.target as Node)) { + setIsOpen(false); + } + }; + + document.addEventListener('mousedown', handleClickOutside); + return () => document.removeEventListener('mousedown', handleClickOutside); + }, []); + + return ( +
+
setIsOpen(!isOpen)} + aria-expanded={isOpen} + > + {children} +
+ + {isOpen && ( +
+ {items.map((item, index) => ( +
{ + if (!item.disabled) { + item.onClick?.(); + setIsOpen(false); + } + }} + > + {item.content} +
+ ))} +
+ )} +
+ ); +}; diff --git a/src/components/UI/Input/Input.module.scss b/src/components/UI/Input/Input.module.scss new file mode 100644 index 0000000..40f69fd --- /dev/null +++ b/src/components/UI/Input/Input.module.scss @@ -0,0 +1,30 @@ +.input { + &:disabled { + opacity: 0.5; + } +} + +.input__default { + padding: 0 15px; + background-color: var(--dropdown-bg-color); + border-radius: 10px; + + &::placeholder { + color: var(--font-dimmed-color); + } + + &:focus { + background-color: var(--dropdown-bg-hover); + } +} + +.input__bordered { + padding: 0 15px; + background-color: var(--bordered-input-bg); + border: 1px solid var(--window-border-color); + border-radius: 8px; + + &::placeholder { + color: var(--font-dimmed-color); + } +} diff --git a/src/components/UI/Input/Input.tsx b/src/components/UI/Input/Input.tsx new file mode 100644 index 0000000..e6a62d9 --- /dev/null +++ b/src/components/UI/Input/Input.tsx @@ -0,0 +1,33 @@ +import InputProps from '@/interfaces/props/components/UI/Input/InputProps'; +import styles from './Input.module.scss'; + +function Input(props: InputProps) { + let inputClass = styles.input__range; + + if (!props.type || props.type === 'text' || props.type === 'number') { + inputClass = props.bordered ? styles.input__bordered : styles.input__default; + } + + return ( + (e.target as HTMLInputElement).blur() : undefined) + } + value={props.value} + onKeyDown={props.onKeyDown} + disabled={props.disabled} + maxLength={props.maxLength} + style={props.style} + /> + ); +} + +export default Input; diff --git a/src/components/UI/NotificationIndicator/NotificationIndicator.module.scss b/src/components/UI/NotificationIndicator/NotificationIndicator.module.scss new file mode 100644 index 0000000..2efcf4e --- /dev/null +++ b/src/components/UI/NotificationIndicator/NotificationIndicator.module.scss @@ -0,0 +1,14 @@ +.notification_indicator { + padding: 5px; + background-color: #ff6767; + display: flex; + justify-content: center; + border-radius: 100px; + min-width: 25px; + + .notification_indicator__count { + font-size: 12px; + font-weight: 700; + color: #ffffff; + } +} diff --git a/src/components/UI/NotificationIndicator/NotificationIndicator.tsx b/src/components/UI/NotificationIndicator/NotificationIndicator.tsx new file mode 100644 index 0000000..2d632b3 --- /dev/null +++ b/src/components/UI/NotificationIndicator/NotificationIndicator.tsx @@ -0,0 +1,14 @@ +import styles from './NotificationIndicator.module.scss'; + +function NotificationIndicator(props: { count?: number; className?: string }) { + const { className } = props; + return props.count ? ( +
+ {props.count} +
+ ) : ( + <> + ); +} + +export default NotificationIndicator; diff --git a/src/components/UI/PairText/PairText.module.scss b/src/components/UI/PairText/PairText.module.scss new file mode 100644 index 0000000..282c742 --- /dev/null +++ b/src/components/UI/PairText/PairText.module.scss @@ -0,0 +1,13 @@ +.pair__text { + display: flex; + flex-direction: column; + gap: 12px; + + > div { + display: flex; + + > p:first-child { + color: var(--font-dimmed-color); + } + } +} diff --git a/src/components/UI/PairText/PairText.tsx b/src/components/UI/PairText/PairText.tsx new file mode 100644 index 0000000..5be4530 --- /dev/null +++ b/src/components/UI/PairText/PairText.tsx @@ -0,0 +1,19 @@ +import PairTextProps from '@/interfaces/props/components/UI/PairText/PairText'; +import styles from './PairText.module.scss'; + +function PairText(props: PairTextProps) { + return ( +
+
+

{props.first.key}:

+

{props.first.value}

+
+
+

{props.second.key}:

+

{props.second.value}

+
+
+ ); +} + +export default PairText; diff --git a/src/components/UI/Popup/Popup.module.scss b/src/components/UI/Popup/Popup.module.scss new file mode 100644 index 0000000..6842a22 --- /dev/null +++ b/src/components/UI/Popup/Popup.module.scss @@ -0,0 +1,41 @@ +.popup_background { + height: 100vh; + width: 100%; + position: fixed; + top: 0; + right: 0; + z-index: 100; +} + +.popup_blur { + background: rgba(0, 0, 0, 0.5); +} + +.popup_scroll { + overflow: auto; +} + +.popup_no_pointer { + pointer-events: none; +} + +// .popup__close { +// background-color: var(--ui-danger-color); +// position: fixed; +// right: -5px; +// top: -5px; +// height: 25px; +// width: 25px; +// border-radius: 50%; +// display: flex; +// justify-content: center; +// align-items: center; +// cursor: pointer; +// svg { +// height: 60%; +// fill: var(--icons-color); +// } +// &:hover { +// background-color: var(--ui-danger-hover); +// } +// } diff --git a/src/components/UI/Popup/Popup.tsx b/src/components/UI/Popup/Popup.tsx new file mode 100644 index 0000000..2a41ab0 --- /dev/null +++ b/src/components/UI/Popup/Popup.tsx @@ -0,0 +1,52 @@ +import * as ReactDOM from 'react-dom'; +import { useEffect, useState } from 'react'; +import PopupProps from '@/interfaces/props/components/UI/Popup/PopupProps'; +import styles from './Popup.module.scss'; + +export default function Popup(props: PopupProps) { + const [popupContainer, setPopupContainer] = useState(null); + + function getPopupElement() { + const PopupContent = props.Content; + return ; + } + + useEffect(() => { + if (!props.scroll) return; + document.body.style.overflow = 'hidden'; + return () => { + document.body.style.overflow = 'auto'; + }; + }); + + useEffect(() => { + if (!props.blur) return; + + function handleClick(e: MouseEvent) { + if (e.target === popupContainer) props.close(); + } + window.addEventListener('mousedown', handleClick); + return () => window.removeEventListener('mousedown', handleClick); + }); + + useEffect(() => { + const container = document.createElement('div'); + container.setAttribute('id', `popup${document.querySelectorAll('body > div').length}`); + container.classList.add(styles.popup_background); + if (props.blur) container.classList.add(styles.popup_blur); + if (props.scroll) container.classList.add(styles.popup_scroll); + if (props.noPointer) container.classList.add(styles.popup_no_pointer); + if (props.classList) { + for (const className of props.classList) { + container.classList.add(className); + } + } + setPopupContainer(container); + document.body.appendChild(container); + return () => { + document.body.removeChild(container); + }; + }, []); + + return popupContainer ? ReactDOM.createPortal(getPopupElement(), popupContainer) :
; +} diff --git a/src/components/UI/Preloader/Preloader.module.scss b/src/components/UI/Preloader/Preloader.module.scss new file mode 100644 index 0000000..760e841 --- /dev/null +++ b/src/components/UI/Preloader/Preloader.module.scss @@ -0,0 +1,56 @@ +.ui__preloader__content { + display: inline-block; + position: relative; + width: 64px; + height: 64px; +} +.ui__preloader__content div { + box-sizing: border-box; + display: block; + position: absolute; + width: 100%; + height: 100%; + border: 16px solid transparent; + border-radius: 50%; + animation: preloader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; + border-color: #1f8feb transparent transparent transparent; +} +.ui__preloader__content div:nth-child(1) { + animation-delay: -0.45s; +} +.ui__preloader__content div:nth-child(2) { + animation-delay: -0.3s; +} +.ui__preloader__content div:nth-child(3) { + animation-delay: -0.15s; +} +@keyframes preloader { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} + +.preloader { + width: 100%; + height: 100%; + background-color: #233467; + position: fixed; + top: 0; + left: 0; + z-index: 99999; +} + +.preloader .ui__preloader__content { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + width: 250px; + height: 250px; +} +.preloader .ui__preloader__content div { + border-width: 10px; +} diff --git a/src/components/UI/Preloader/Preloader.tsx b/src/components/UI/Preloader/Preloader.tsx new file mode 100644 index 0000000..cea5d9b --- /dev/null +++ b/src/components/UI/Preloader/Preloader.tsx @@ -0,0 +1,26 @@ +import PreloaderProps from '@/interfaces/props/components/UI/Preloader/PreloaderProps'; +import styles from './Preloader.module.scss'; + +function Preloader(props: PreloaderProps) { + function Loader() { + return ( +
+
+
+
+
+
+ ); + } + if (props.fullPage) { + return ( +
+ +
+ ); + } + + return ; +} + +export default Preloader; diff --git a/src/components/UI/ProfileWidget/ProfileWidget.module.scss b/src/components/UI/ProfileWidget/ProfileWidget.module.scss new file mode 100644 index 0000000..7fb353d --- /dev/null +++ b/src/components/UI/ProfileWidget/ProfileWidget.module.scss @@ -0,0 +1,56 @@ +.profile__widget { + display: flex; + align-items: center; + + .profile__widget__avatar { + width: 48px; + height: 48px; + margin-right: 15px; + display: flex; + align-items: center; + justify-content: center; + background-color: var(--profile-widget-avatar); + border-radius: 50% 50%; + + p { + font-weight: 500; + } + } + + .profile__widget__content { + height: 48px; + display: flex; + flex-direction: column; + justify-content: space-between; + + .profile__widget__title { + display: flex; + align-items: flex-end; + + :first-child { + font-weight: 500; + margin-right: 8px; + } + + .profile__widget__hash { + margin-bottom: 3px; + color: var(--font-dimmed-color); + font-size: 14px; + } + + &.widget__hashed { + :first-child { + font-size: 24px; + } + } + } + + .profile__widget__description { + p { + font-size: 14px; + color: var(--font-dimmed-color); + white-space: nowrap; + } + } + } +} diff --git a/src/components/UI/ProfileWidget/ProfileWidget.tsx b/src/components/UI/ProfileWidget/ProfileWidget.tsx new file mode 100644 index 0000000..783be86 --- /dev/null +++ b/src/components/UI/ProfileWidget/ProfileWidget.tsx @@ -0,0 +1,41 @@ +import { shortenAddress } from '@/utils/utils'; +import Link from 'next/link'; +import ProfileWidgetProps from '@/interfaces/props/components/UI/ProfileWidget/ProfileWidget'; +import styles from './ProfileWidget.module.scss'; + +function ProfileWidget(props: ProfileWidgetProps) { + return ( +
+
+

+ {props.offerData.alias ? props.offerData.alias[0] : 'n'} +

+
+
+
+ {props.withLink ? ( + @{props.offerData.alias || 'no alias'} + ) : ( +

@{props.offerData.alias || 'no alias'}

+ )} + {props.offerData?.hash && ( +

{props.offerData?.hash}

+ )} +
+
+

{shortenAddress(props.offerData.address, 6, 6)}

+
+
+
+ ); +} + +export default ProfileWidget; diff --git a/src/components/UI/RangeInput/RangeInput.module.scss b/src/components/UI/RangeInput/RangeInput.module.scss new file mode 100644 index 0000000..191d792 --- /dev/null +++ b/src/components/UI/RangeInput/RangeInput.module.scss @@ -0,0 +1,91 @@ +.input__range__wrapper { + position: relative; + display: flex; + + .input__range { + -webkit-appearance: none; + appearance: none; + width: 100%; + background: none; + outline: none; + border: none; + z-index: 5; + cursor: pointer; + } + + .input__range__tooltip { + position: absolute; + top: 30px; + transition: none; + transform: translateX(-50%); + } + + .range__slider { + height: 4px; + width: 100%; + position: absolute; + transform: translateY(-50%); + border-radius: 100px; + top: 50%; + z-index: 0; + + &.filled { + background-color: #1f8feb; + z-index: 1; + } + + &.unfilled { + background-color: var(--slider-bg-color); + } + } + + .markers { + width: calc(100% - 10px); + height: 10px; + position: absolute; + transform: translate(-50%, -50%); + top: 50%; + left: 50%; + + > div { + height: 10px; + width: 10px; + border-radius: 100px; + background-color: var(--slider-bg-color); + position: absolute; + top: 0; + transform: translateX(-50%); + z-index: 2; + transition: none; + + &.selected { + background-color: #1f8feb; + } + } + } + + .input__range::-webkit-slider-thumb { + -webkit-appearance: none; + height: 20px; + width: 20px; + border-radius: 50%; + background: #1f8feb; + cursor: ew-resize; + border: 2px solid var(--window-bg-color); + transition: background 0.3s ease-in-out; + } + + // .input__range::-webkit-slider-runnable-track::-webkit-slider-thumb { + // background-color: #fff; + // border: 2px solid #555; + // } + + // .input__range::-webkit-slider-runnable-track { + // -webkit-appearance: none; + // height: 20px; + // background-color: #1F8FEB; + // border: 1px solid #ffffff; + // box-shadow: none; + // background: transparent; + // } +} diff --git a/src/components/UI/RangeInput/RangeInput.tsx b/src/components/UI/RangeInput/RangeInput.tsx new file mode 100644 index 0000000..cc8f8a8 --- /dev/null +++ b/src/components/UI/RangeInput/RangeInput.tsx @@ -0,0 +1,71 @@ +import Tooltip from '@/components/UI/Tooltip/Tooltip'; +import RangeInputProps from '@/interfaces/props/components/UI/RangeInput/RangeInputProps'; +import { useState } from 'react'; +import styles from './RangeInput.module.scss'; + +function RangeInput(props: RangeInputProps) { + const [tooltipShown, setTooltipShown] = useState(false); + // const [inputValue, setInputValue] = useState("50"); + + const inputValue = props.value; + const { onInput } = props; + + const realValue = Math.max(Math.min(parseInt(inputValue, 10), 100), 0); + + const markersValues = [0, 25, 50, 75, 100]; + + return ( +
+ { + setTooltipShown(true); + }} + onMouseLeave={() => { + setTooltipShown(false); + }} + /> + + + {realValue}% + + +
+
+
+ {markersValues.map((e) => ( +
+ ))} +
+ + + {markersValues.map((e) => ( + +
+ ); +} + +export default RangeInput; diff --git a/src/components/UI/Switch/Switch.tsx b/src/components/UI/Switch/Switch.tsx new file mode 100644 index 0000000..82c9b5e --- /dev/null +++ b/src/components/UI/Switch/Switch.tsx @@ -0,0 +1,10 @@ +import { FC } from 'react'; +import { Switch as ANTDSwitch } from 'antd'; + +interface IProps { + checked: boolean; + onChange: (_checked: boolean) => void; + disabled?: boolean; +} + +export const Switch: FC = ({ ...rest }) => ; \ No newline at end of file diff --git a/src/components/UI/Tooltip/Tooltip.module.scss b/src/components/UI/Tooltip/Tooltip.module.scss new file mode 100644 index 0000000..31216a1 --- /dev/null +++ b/src/components/UI/Tooltip/Tooltip.module.scss @@ -0,0 +1,22 @@ +.tooltip { + padding: 13px 20px; + background: var(--switch-bg-color); + position: relative; + border-radius: 5px; + white-space: nowrap; + z-index: 3; + + p { + font-weight: 500; + } + + .tooltip__arrow { + width: 10px; + height: 10px; + position: absolute; + top: 0px; + left: 50%; + transform: translate(-50%, -50%) rotate(45deg); + background-color: var(--switch-bg-color); + } +} diff --git a/src/components/UI/Tooltip/Tooltip.tsx b/src/components/UI/Tooltip/Tooltip.tsx new file mode 100644 index 0000000..c8772f0 --- /dev/null +++ b/src/components/UI/Tooltip/Tooltip.tsx @@ -0,0 +1,15 @@ +import TooltipProps from '@/interfaces/props/components/UI/Tooltip/TooltipProps'; +import styles from './Tooltip.module.scss'; + +function Tooltip(props: TooltipProps) { + return props.shown ? ( +
+
+

{props.children}

+
+ ) : ( + <> + ); +} + +export default Tooltip; diff --git a/src/components/default/BackButton/BackButton.module.scss b/src/components/default/BackButton/BackButton.module.scss new file mode 100644 index 0000000..4c7d844 --- /dev/null +++ b/src/components/default/BackButton/BackButton.module.scss @@ -0,0 +1,4 @@ +.back_btn { + display: flex; + gap: 12px; +} diff --git a/src/components/default/BackButton/BackButton.tsx b/src/components/default/BackButton/BackButton.tsx new file mode 100644 index 0000000..c3b05d7 --- /dev/null +++ b/src/components/default/BackButton/BackButton.tsx @@ -0,0 +1,18 @@ +import { ReactComponent as ArrowWhiteIcon } from '@/assets/images/UI/arrow_white.svg'; +import Button from '@/components/UI/Button/Button'; +import { useRouter } from 'next/router'; +import styles from './BackButton.module.scss'; + +function BackButton() { + const router = useRouter(); + + return ( + + ); +} + +export default BackButton; diff --git a/src/components/default/CreateOfferPopup/CreateOfferPopup.module.scss b/src/components/default/CreateOfferPopup/CreateOfferPopup.module.scss new file mode 100644 index 0000000..d2a2573 --- /dev/null +++ b/src/components/default/CreateOfferPopup/CreateOfferPopup.module.scss @@ -0,0 +1,206 @@ +.create_offer__popup { + width: 640px; + display: flex; + flex-direction: column; + padding: 40px; + position: relative; + top: 10%; + left: 50%; + transform: translateX(-50%); + background-color: var(--window-bg-color); + border-radius: 10px; + + .create_offer__deposit { + display: flex; + flex-direction: column; + gap: 8px; + + h6 { + color: var(--font-dimmed-color); + } + } + + > div:first-child { + padding-bottom: 30px; + display: flex; + justify-content: space-between; + border-bottom: 1px solid var(--delimiter-color); + + img { + cursor: pointer; + } + } + + > div:nth-child(2) { + padding-top: 30px; + display: flex; + flex-direction: column; + gap: 30px; + + .create_offer__pay, + .create_offer__receive, + .create_offer__price { + display: flex; + flex-direction: column; + gap: 10px; + + h6 { + color: var(--font-dimmed-color); + } + + > :nth-child(2) { + width: 100%; + height: 54px; + + > :first-child { + width: 100%; + } + } + } + + .create_offer__filters { + h6 { + color: rgba(255, 255, 255, 0.7); + } + + display: flex; + flex-direction: column; + gap: 8px; + } + + .create_offer__comment { + display: flex; + flex-direction: column; + gap: 8px; + + textarea { + padding: 16px; + width: 100% !important; + height: 160px; + resize: none; + background-color: var(--bordered-input-bg); + border: 1px solid var(--window-border-color); + border-radius: 8px; + } + + textarea::placeholder { + color: var(--font-dimmed-color); + } + } + + .create_offer__buttons { + display: flex; + flex-direction: column; + gap: 10px; + + div { + display: flex; + gap: 20px; + + > * { + width: 100%; + } + + button:first-child { + background-color: #16d1d6; + + &:hover { + background-color: #45dade; + } + } + } + + p { + color: var(--font-dimmed-color); + font-size: 14px; + } + } + + .create_offer__parameters { + display: flex; + gap: 20px; + + > * { + width: 100%; + } + } + } + + @media screen and (max-width: 680px) { + width: 100%; + + .create_offer__buttons button { + padding-top: 13px; + padding-bottom: 13px; + } + } + + @media screen and (max-width: 520px) { + .create_offer__parameters { + flex-direction: column; + } + } + + @media screen and (max-width: 470px) { + padding: 40px 20px; + + .create_offer__buttons > div { + flex-direction: column; + } + } +} + +.windowed_inputs__wrapper { + padding: 2px; + border-radius: 10px; + + .windowed_inputs { + padding: 20px; + border-radius: 8px; + background-color: var(--window-bg-color); + display: flex; + flex-direction: column; + gap: 20px; + + .windowed_inputs__title { + display: flex; + gap: 10px; + } + + .windowed_inputs__pair { + display: flex; + flex-direction: column; + gap: 8px; + + > p { + font-weight: 700; + color: var(--font-dimmed-color); + } + + > div { + position: relative; + + input { + width: 100%; + padding: 15px; + padding-right: 75px; + } + + p { + position: absolute; + transform: translateY(-50%); + top: 50%; + right: 15px; + } + } + } + } + + &.blue { + background: radial-gradient(100% 188.88% at 0% 0%, #16d1d6 0%, #274cff 100%); + } + + &.grey { + background: var(--delimiter-color); + } +} diff --git a/src/components/default/CreateOfferPopup/CreateOfferPopup.tsx b/src/components/default/CreateOfferPopup/CreateOfferPopup.tsx new file mode 100644 index 0000000..44717db --- /dev/null +++ b/src/components/default/CreateOfferPopup/CreateOfferPopup.tsx @@ -0,0 +1,318 @@ +import crossIcon from '@/assets/images/UI/cross_icon.svg'; +import Input from '@/components/UI/Input/Input'; +import Button from '@/components/UI/Button/Button'; +import Alert from '@/components/UI/Alert/Alert'; +import { ChangeEvent, useContext, useEffect, useState } from 'react'; +import useUpdateUser from '@/hook/useUpdateUser'; +import { getFormattedCurrencies, updateOffer } from '@/utils/methods'; +import { Store } from '@/store/store-reducer'; +import triggerOffers from '@/store/triggers'; +import Dropdown from '@/components/UI/Dropdown/Dropdown'; +import CurrencyDropdown from '@/components/UI/CurrencyDropdown/CurrencyDropdown'; +import DepositTitle from '@/components/UI/DepositTitle/DepositTitle'; +import CreateOfferPopupProps from '@/interfaces/props/components/default/CreateOfferPopup/CreateOfferPopupProps'; +import CurrencyContentRow from '@/interfaces/common/CurrencyContentRow'; +import WindowedInputsProps, { + DepositState, + LimitsState, +} from '@/interfaces/props/components/default/CreateOfferPopup/WindowedInputsProps'; +import AlertType from '@/interfaces/common/AlertType'; +import CurrencyRow from '@/interfaces/common/CurrencyRow'; +import UpdateOfferData from '@/interfaces/fetch-data/update-offer/UpdateOfferData'; +import styles from './CreateOfferPopup.module.scss'; + +function CreateOfferPopup(props: CreateOfferPopupProps) { + const { offerData } = props; + + const { state, dispatch } = useContext(Store); + + const depositCurrencies = + state.config?.currencies.filter((e) => e?.type === 'deposit' || e?.code === 'zano') || []; + + const allowedDepositCurrencies = depositCurrencies.filter((e) => + (state.wallet?.assets || []).find((asset) => e.name === asset.ticker), + ); + + console.log(allowedDepositCurrencies); + + const [depositCurrency, setDepositCurrency] = useState( + offerData?.deposit_currency || allowedDepositCurrencies[0], + ); + + const [price, setPrice] = useState(offerData?.price.toString() || ''); + + const [firstCurrency, setFirstCurrency] = useState( + (offerData?.type === 'buy' ? offerData?.target_currency : offerData?.input_currency) || + null, + ); + const [secondCurrency, setSecondCurrency] = useState( + (offerData?.type === 'buy' ? offerData?.input_currency : offerData?.target_currency) || + null, + ); + + const [currenciesElements, setCurrencies] = useState([]); + + const [alertState, setAlertState] = useState(null); + + const [alertSubtitle, setAlertSubtitle] = useState(null); + + const fetchUser = useUpdateUser(); + + const [limits, setLimits] = useState({ + min: offerData?.min.toString() || '', + max: offerData?.max.toString() || '', + }); + + const [deposit, setDeposit] = useState({ + seller: offerData?.deposit_seller.toString() || '', + buyer: offerData?.deposit_buyer.toString() || '', + }); + + const [commentState, setCommentState] = useState(offerData?.comment || ''); + + useEffect(() => { + (async () => { + const allCurrencies = state.config?.currencies || []; + + const formattedCurrencies = getFormattedCurrencies(allCurrencies || []); + + setCurrencies(formattedCurrencies); + + if (!firstCurrency && !secondCurrency) { + setFirstCurrency(allCurrencies[0] ? allCurrencies[0] : null); + setSecondCurrency( + allCurrencies.filter((e) => e.type === 'fiat')[0] + ? allCurrencies.filter((e) => e.type === 'fiat')[0] + : null, + ); + } + })(); + }, [state.config?.currencies]); + + async function sendUpdateRequest() { + const limitsMin = parseFloat(limits.min); + const limitsMax = parseFloat(limits.max); + + const depositBuyer = parseFloat(deposit.buyer); + const depositSeller = parseFloat(deposit.seller); + + const offerPrice = parseFloat(price); + + const successedInput = + limits.min && limits.max && firstCurrency && secondCurrency && depositCurrency; + + const rangeCorrect = + limitsMin > 0 && + limitsMin < 1000000000 && + limitsMax > 0 && + limitsMax < 1000000000 && + depositBuyer > 0 && + depositBuyer < 1000000000 && + depositSeller > 0 && + depositSeller < 1000000000 && + parseFloat(price) > 0 && + parseFloat(price) < 10000000000 && + limitsMin < limitsMax && + (firstCurrency?.type === 'fiat') === (secondCurrency?.type === 'crypto'); + + if (!successedInput) { + setAlertState('error'); + setAlertSubtitle('Please, fill all fields'); + setTimeout(() => setAlertState(null), 3000); + return; + } + + if (!rangeCorrect) { + setAlertState('error'); + setAlertSubtitle('Please, set correct values'); + setTimeout(() => setAlertState(null), 3000); + return; + } + + const offerType = firstCurrency.type === 'fiat' ? 'buy' : 'sell'; + + const offerNewData: UpdateOfferData = { + number: offerData?.number || undefined, + price: offerPrice, + min: limitsMin, + max: limitsMax, + deposit_seller: depositSeller, + deposit_buyer: depositBuyer, + type: offerType, + comment: commentState || '', + input_currency_id: offerType === 'buy' ? secondCurrency.id : firstCurrency.id, + target_currency_id: offerType === 'buy' ? firstCurrency.id : secondCurrency.id, + deposit_currency_id: depositCurrency.id, + }; + + setAlertState('loading'); + setAlertSubtitle('Updating offer data'); + const result = await updateOffer(offerNewData); + if (!result.success) { + setAlertState('error'); + setAlertSubtitle('Server error occured.'); + setTimeout(() => setAlertState(null), 3000); + return; + } + setAlertState('success'); + + triggerOffers(dispatch); + + props.setPopupState(false); + await fetchUser(); + setTimeout(() => setAlertState(null), 3000); + // setAlertState(null); + } + + function WindowedInputs(props: WindowedInputsProps) { + function updateState(e: ChangeEvent, key: string) { + props.setValue({ + ...props.value, + [key]: e.target.value, + }); + } + + return ( +
+
+
+ {props.limits ?
Limits
: } +
+
+ {props.limits ? ( +

Min

+ ) : ( +

{firstCurrency?.type === 'crypto' ? 'You' : 'Seller'}

+ )} +
+ updateState(e, props.limits ? 'min' : 'seller')} + type="number" + // value={props.limits ? offerData.min || "" : offerData.deposit_seller || ""} + value={props.limits ? limits.min : deposit.seller} + /> +

{props.limits ? firstCurrency?.name : depositCurrency?.name}

+
+
+
+ {props.limits ? ( +

Max

+ ) : ( +

{secondCurrency?.type === 'crypto' ? 'You' : 'Buyer'}

+ )} +
+ updateState(e, props.limits ? 'max' : 'buyer')} + type="number" + value={props.limits ? limits.max || '' : deposit.buyer || ''} + /> +

{props.limits ? firstCurrency?.name : depositCurrency?.name}

+
+
+
+
+ ); + } + + return ( +
+
+
{props.edit ? 'Edit' : 'Create'} Offer
+ props.setPopupState(false)} src={crossIcon} alt="close" /> +
+
+ {/*
+
Offer type
+ +
*/} +
+
I pay
+ setFirstCurrency(e)} + /> +
+
+
I receive
+ setSecondCurrency(e)} + /> +
+
+
Price for 1 {firstCurrency?.name || ''}
+ setPrice(e.target.value)} + bordered + placeholder={`0 ${secondCurrency?.name}`} + /> +
+
+
Deposit currency
+ +
+
+ {WindowedInputs({ value: limits, setValue: setLimits, limits: true })} + {WindowedInputs({ value: deposit, setValue: setDeposit })} +
+
+
Comment
+ +
+
+
+ + +
+

+ Vivamus suscipit, nisi vel consequat condimentum, diam est volutpat nisi, + quis scelerisque dui odio non tellus. +

+
+
+ + {alertState && ( + setAlertState(null)} + /> + )} +
+ ); +} + +export default CreateOfferPopup; diff --git a/src/components/default/DetailedOfferPopup/DetailedOfferPopup.module.scss b/src/components/default/DetailedOfferPopup/DetailedOfferPopup.module.scss new file mode 100644 index 0000000..b13feaf --- /dev/null +++ b/src/components/default/DetailedOfferPopup/DetailedOfferPopup.module.scss @@ -0,0 +1,298 @@ +.popup__content { + width: 1020px; + padding: 40px; + background-color: #ffffff; + position: relative; + transform: translate(-50%, -50%); + top: 50%; + left: 50%; + background: var(--window-bg-color); + border-radius: 10px; + + @media screen and (max-height: 700px), (max-width: 930px) { + top: 15%; + transform: translate(-50%); + } + + > div { + display: flex; + + &:first-child { + justify-content: space-between; + padding-bottom: 30px; + border-bottom: 1px solid var(--delimiter-color); + + img { + cursor: pointer; + } + } + + &:last-child { + padding-top: 30px; + gap: 40px; + } + } + + .popup__content__info { + width: 100%; + + > * { + padding: 20px 0; + border-bottom: 1px solid var(--delimiter-color); + + &:first-child { + padding-top: 0; + } + + &:last-child { + padding-bottom: 0; + border: 0; + } + } + + .popup__description__row { + display: flex; + gap: 65px; + + .popup__description__pair { + display: flex; + gap: 20px; + + > :first-child { + color: var(--font-dimmed-color); + font-weight: 700; + } + + .popup__buy__price { + font-weight: 500; + color: #45dade; + } + + .popup__sell__price { + font-weight: 500; + color: #ff8585; + } + } + } + + .popup__description__terms { + display: flex; + flex-direction: column; + gap: 10px; + + h6 { + color: var(--font-dimmed-color); + } + + p { + line-height: 139%; + } + } + } + + .popup__content__form { + > * { + margin-bottom: 20px; + + &:last-child { + margin-bottom: 0; + } + } + + input { + width: 410px; + padding-top: 16px; + padding-bottom: 16px; + } + + .popup__deposit__wrapper { + margin-bottom: 30px; + padding: 2px; + background: radial-gradient(100% 188.88% at 0% 0%, #16d1d6 0%, #274cff 100%); + border-radius: 10px; + + .popup__deposit { + padding: 20px; + border-radius: 8px; + background-color: var(--window-bg-color); + display: flex; + flex-direction: column; + gap: 20px; + + .deposit__pair { + display: flex; + gap: 20px; + + :first-child { + color: var(--font-dimmed-color); + font-weight: 700; + } + } + + > :first-child { + display: flex; + gap: 10px; + + h6 { + font-weight: 700; + color: var(--font-dimmed-color); + } + } + + > :last-child { + display: flex; + justify-content: space-between; + gap: 20px; + } + } + } + + .popup__input__wrapper { + margin-bottom: 30px; + + > div { + position: relative; + + input { + padding-right: 120px; + + &.receive__input { + padding-right: 70px !important; + } + } + + > :last-child { + display: flex; + align-items: center; + gap: 10px; + + position: absolute; + top: 50%; + right: 13px; + transform: translate(0, -50%); + font-weight: 500; + + p { + font-weight: 500; + } + + button { + padding: 0; + width: 50px; + height: 30px; + border-radius: 5px; + background-color: transparent; + + &:hover { + background-color: transparent; + } + + &.selected { + background-color: #1f8feb; + + &:hover { + background-color: #1f8feb; + } + } + } + } + } + } + + p.popup__input_label { + color: var(--font-dimmed-color); + font-weight: 700; + margin-bottom: 8px; + } + + p.popup__form__description { + font-size: 14px; + color: var(--font-dimmed-color); + } + + .popup__button__wrapper { + margin-bottom: 10px; + display: flex; + justify-content: space-between; + flex-wrap: wrap; + + button.popup__button__cancel { + padding-left: 54px; + padding-right: 54px; + } + } + } + + @media screen and (max-width: 1100px) { + width: 100%; + } + + @media screen and (max-width: 1000px) { + .popup__description__row { + gap: 30px !important; + } + } + + @media screen and (max-width: 930px) { + > div:last-child { + flex-direction: column; + } + + .popup__content__form { + input { + width: 100%; + } + } + } + + @media screen and (max-width: 540px) { + padding-right: 20px; + padding-left: 20px; + .popup__button__wrapper { + flex-direction: column; + gap: 20px; + + button { + width: 100%; + padding-top: 13px; + padding-bottom: 13px; + } + } + + .popup__deposit { + > div:last-child { + flex-direction: column; + } + } + + .popup__description__row { + flex-direction: column; + gap: 20px !important; + } + + .popup__content__form { + input { + padding-top: 13px; + padding-bottom: 13px; + } + } + } +} + +button { + &.btn_buy { + background-color: rgba(22, 209, 214, 1); + + &:hover { + background-color: #45dade; + } + } + + &.btn_sell { + background-color: #ff6767; + + &:hover { + background-color: #ff8585; + } + } +} diff --git a/src/components/default/DetailedOfferPopup/DetailedOfferPopup.tsx b/src/components/default/DetailedOfferPopup/DetailedOfferPopup.tsx new file mode 100644 index 0000000..b052cb7 --- /dev/null +++ b/src/components/default/DetailedOfferPopup/DetailedOfferPopup.tsx @@ -0,0 +1,248 @@ +import { ChangeEvent, useContext, useState } from 'react'; +import crossIcon from '@/assets/images/UI/cross_icon.svg'; +import ProfileWidget from '@/components/UI/ProfileWidget/ProfileWidget'; +import Input from '@/components/UI/Input/Input'; +import Button from '@/components/UI/Button/Button'; +import { Store } from '@/store/store-reducer'; +import Alert from '@/components/UI/Alert/Alert'; +import { createChat } from '@/utils/methods'; +import DepositTitle from '@/components/UI/DepositTitle/DepositTitle'; +import { useRouter } from 'next/router'; +import AlertType from '@/interfaces/common/AlertType'; +import DetailedOfferPopupProps from '@/interfaces/props/components/default/DetailedOfferPopup/DetailedOfferPopupProps'; +import styles from './DetailedOfferPopup.module.scss'; + +function DetailedOfferPopup(props: DetailedOfferPopupProps) { + const [popupAlertState, setPopupAlertState] = useState(null); + const [popupAlertSubtitle, setPopupAlertSubtitle] = useState(null); + const [payInputState, setPayInputState] = useState(''); + const [receiveInputState, setReceiveInputState] = useState(''); + const { offerData } = props; + + const router = useRouter(); + + const { state } = useContext(Store); + + async function startChat() { + const successedInput = payInputState && receiveInputState; + + const rangeAcceptable = + parseFloat(offerData.type === 'buy' ? receiveInputState : payInputState) >= + offerData.min && + parseFloat(offerData.type === 'buy' ? receiveInputState : payInputState) <= + offerData.max && + parseFloat(receiveInputState) >= 0; + + if (!successedInput) { + setPopupAlertState('error'); + setPopupAlertSubtitle('Please, fill all fields'); + setTimeout(() => { + setPopupAlertState(null); + }, 3000); + return; + } + + if (!rangeAcceptable) { + setPopupAlertState('error'); + setPopupAlertSubtitle('Please, set correct values'); + setTimeout(() => { + setPopupAlertState(null); + }, 3000); + return; + } + + setPopupAlertState('loading'); + setPopupAlertSubtitle('Creating chat...'); + const result = await createChat(offerData.number, payInputState, receiveInputState); + if (!result.success) { + setPopupAlertState('error'); + setPopupAlertSubtitle('Error creating chat.'); + setTimeout(() => { + setPopupAlertState(null); + }, 3000); + return; + } + + router.push(`/p2p/process/${result.data}`); + } + + function calcInput(e: ChangeEvent) { + const value = + props.offerData.type === 'buy' + ? parseFloat(e.target.value) / offerData.price + : parseFloat(e.target.value) * offerData.price; + + setPayInputState(e.target.value); + setReceiveInputState(value.toFixed(9)); + } + + function caclTarget(e: ChangeEvent) { + const value = + props.offerData.type === 'buy' + ? parseFloat(e.target.value) * offerData.price + : parseFloat(e.target.value) / offerData.price; + + setReceiveInputState(e.target.value); + setPayInputState(value.toFixed(9)); + } + + function setAll() { + const maxInCurrency = offerData.max; + const maxInTarget = parseFloat((offerData.max * offerData.price).toFixed(9)); + + setPayInputState((props.offerData.type === 'buy' ? maxInTarget : maxInCurrency).toString()); + + setReceiveInputState( + (props.offerData.type === 'buy' ? maxInCurrency : maxInTarget).toString(), + ); + } + + const inputLimits = `${offerData.min * offerData.price} - ${offerData.max * offerData.price}`; + const outputPrice = `${offerData.min} - ${offerData.max}`; + + const firstInputPlaceholder = props.offerData.type === 'buy' ? inputLimits : outputPrice; + + const secondInputPlaceholder = props.offerData.type === 'buy' ? outputPrice : inputLimits; + + return ( +
+
+
Detailed Offer
+ props.setPopupState(false)} src={crossIcon} alt="close" /> +
+
+
+ +
+
+

Price

+

{`${offerData.price} ${offerData.target_currency?.name}`}

+
+
+ +
+
+

Min

+

+ {offerData.min} {offerData.input_currency?.name} +

+
+
+

Max

+

+ {offerData.max} {offerData.input_currency?.name} +

+
+
+
+ {offerData.comment &&
Comment
} +

{offerData.comment || ''}

+
+
+
+
+
+ +
+
+

You

+

+ {offerData.deposit_buyer}{' '} + {offerData.deposit_currency?.name || ''} +

+
+
+

Seller

+

+ {offerData.deposit_seller}{' '} + {offerData.deposit_currency?.name || ''} +

+
+
+
+
+
+

I pay

+
+ +
+

+ {props.offerData.type === 'buy' + ? offerData.target_currency?.name + : offerData.input_currency?.name} +

+ +
+
+
+
+

I receive

+
+ +

+ {props.offerData.type === 'buy' + ? offerData.input_currency?.name + : offerData.target_currency?.name} +

+
+
+
+ + + +
+

+ Vivamus suscipit, nisi vel consequat condimentum, diam est volutpat nisi, + quis scelerisque dui odio non tellus. +

+
+
+ + {popupAlertState && ( + setPopupAlertState(null)} + /> + )} +
+ ); +} + +export default DetailedOfferPopup; diff --git a/src/components/default/Footer/Footer.module.scss b/src/components/default/Footer/Footer.module.scss new file mode 100644 index 0000000..78fccc3 --- /dev/null +++ b/src/components/default/Footer/Footer.module.scss @@ -0,0 +1,41 @@ +.footer { + padding: 30px 35px 20px; + display: flex; + flex-direction: column; + align-items: center; + gap: 20px; + margin-top: auto; + + border-top: 1px solid var(--delimiter-color); + + .footer__copyright { + p { + color: var(--font-dimmed-color); + font-size: 16px; + text-align: center; + } + } + + .footer__refs { + width: 100%; + display: flex; + justify-content: center; + column-gap: 20px; + row-gap: 15px; + flex-wrap: wrap; + + > a { + font-size: 16px; + + &.footer__ref_selected { + color: var(--footer-selected-link); + pointer-events: none; + } + + &.footer__ref_disabled { + opacity: 0.5; + pointer-events: none; + } + } + } +} diff --git a/src/components/default/Footer/Footer.tsx b/src/components/default/Footer/Footer.tsx new file mode 100644 index 0000000..55099d8 --- /dev/null +++ b/src/components/default/Footer/Footer.tsx @@ -0,0 +1,73 @@ +import { classes } from '@/utils/utils'; +import Link from 'next/link'; +import styles from './Footer.module.scss'; + +type SelectedLink = 'home' | 'explorer' | 'trade' | 'auction' | 'messenger' | 'wrapped-zano'; + +const links: { + title: string; + type: SelectedLink; + link: string; + disabled?: boolean; +}[] = [ + { + title: 'Zano Website', + type: 'home', + link: 'https://zano.org/', + }, + { + title: 'Explorer', + type: 'explorer', + link: 'https://explorer.zano.org/', + }, + { + title: 'Trade', + type: 'trade', + link: 'https://trade.zano.org/', + }, + { + title: 'Auction', + type: 'auction', + link: 'https://wrapped.zano.org/', + }, + { + title: 'Messenger', + type: 'messenger', + link: 'https://zano.org/', + disabled: true, + }, + { + title: 'Wrapped Zano', + type: 'wrapped-zano', + link: 'https://wrapped.zano.org/', + }, +]; + +const selectedLink: SelectedLink = 'trade'; + +function Footer() { + return ( +
+
+ {links.map((e) => ( + + {e.title} + + ))} +
+
+

Copyright © {new Date().getFullYear()} ZANO.org

+
+
+ ); +} + +export default Footer; diff --git a/src/components/default/Header/Header.module.scss b/src/components/default/Header/Header.module.scss new file mode 100644 index 0000000..34181fa --- /dev/null +++ b/src/components/default/Header/Header.module.scss @@ -0,0 +1,382 @@ +.header { + height: 80px; + padding: 0 100px; + position: relative; + display: flex; + align-items: center; + justify-content: space-between; + border-bottom: 1px solid var(--delimiter-color); + background-color: var(--main-bg-color); + z-index: 1; + position: relative; + + .header__logo { + display: flex; + width: 202px; + height: 40px; + + > a { + display: flex; + } + } + + .header__desktop__navigation { + position: absolute; + transform: translateX(-50%); + left: 50%; + + @media screen and (max-width: 1760px) { + display: none; + } + } + + .header__menu { + display: flex; + flex-direction: column; + + .header__account__btn { + width: 54px; + height: 54px; + padding: 0; + display: flex; + justify-content: center; + align-items: center; + } + + .theme__btn__wrapper { + position: relative; + + .theme__tooltip { + position: absolute; + border-radius: 5px; + transform: translate(-50%, 100%); + bottom: -15px; + left: 50%; + } + + .theme__btn { + width: 54px; + min-width: 54px; + height: 54px; + padding: 0; + } + } + + .header__login { + width: 100%; + display: flex; + gap: 10px; + transition: none; + } + + .burger__tablet__btn { + display: none; + + @media screen and (max-width: 1760px) { + display: flex; + } + + @media screen and (max-width: 900px) { + display: none; + } + } + + .header__account { + display: flex; + align-items: center; + gap: 40px; + transition: none; + + .header__account__wrapper { + display: flex; + align-items: center; + + .header__button__wrapper { + position: relative; + + > .offers__tooltip { + padding: 13px 20px; + position: absolute; + background: #11316b; + border-radius: 5px; + white-space: nowrap; + transform: translate(-50%, 100%); + bottom: -15px; + left: 50%; + } + + .offers__notification__wrapper { + position: absolute; + transform: translate(50%, -50%); + top: 3px; + right: 3px; + } + } + } + + .header__account__panel { + display: flex; + gap: 10px; + } + + .header__account__info { + margin-right: 15px; + display: flex; + flex-direction: column; + align-items: flex-end; + gap: 5px; + + :first-child { + font-weight: 500; + } + + :last-child { + font-size: 14px; + color: var(--font-dimmed-color); + } + } + + .header__currency__wrapper { + position: relative; + + .header__currency__check { + height: 54px; + padding: 0 15px; + display: flex; + align-items: center; + gap: 35px; + justify-content: space-between; + background-color: var(--switch-bg-color); + border-radius: 10px; + + &.currency__check__opened { + background-color: var(--switch-bg-hover); + border-radius: 10px 10px 0 0; + } + + &.currency__check__openable { + &:hover { + background-color: var(--switch-bg-hover); + } + + cursor: pointer; + } + } + + .currency__check__menu, + .header__currency__check { + .currency__check__row { + display: flex; + align-items: center; + position: relative; + + .currency__check__tooltip { + position: absolute; + top: calc(100% + 10px); + left: 50px; + transform: translateX(-50%); + } + } + + svg { + cursor: pointer; + } + + .currency__check__icon { + height: 19px; + width: 19px; + margin-right: 6px; + display: flex; + justify-content: center; + } + + .currency__title { + display: flex; + gap: 5px; + + > span { + max-width: 100px; + overflow: hidden; + text-overflow: ellipsis; + } + } + } + + .currency__check__menu { + width: 100%; + padding: 16px; + position: absolute; + top: 100%; + left: 0; + background-color: #273666; + border-radius: 0 0 10px 10px; + display: flex; + flex-direction: column; + gap: 20px; + border-top: 1px solid rgba(255, 255, 255, 0.1); + } + } + } + + &.header__menu__mobile { + .header__account, + .header__login { + padding: 20px; + + @media screen and (min-width: 900px) { + display: none; + } + } + } + } + + .header__burger { + padding: 0; + width: 48px; + height: 48px; + display: none; + flex-direction: column; + justify-content: center; + align-items: center; + border: 2px solid #1f8feb; + border-radius: 10px; + cursor: pointer; + transition: none; + + > svg { + scale: 0.8; + } + + > div { + width: 24px; + height: 2px; + margin-bottom: 6px; + border-radius: 1px; + background-color: #ffffff; + + &:last-child { + margin: 0; + } + } + + &:hover { + background: rgba(255, 255, 255, 0.1); + } + } + + .header__account__mobile { + width: 100%; + display: flex; + position: absolute; + top: calc(100% + 1px); + left: 0; + background-color: var(--main-bg-color); + max-height: 200px; + overflow: hidden; + + > div { + width: 100%; + } + + button { + width: 100%; + padding-top: 13px; + padding-bottom: 13px; + } + + @media screen and (min-width: 900px) { + max-height: 340px; + } + } + + @media screen and (max-width: 1060px) { + padding-right: 20px; + padding-left: 20px; + } + + @media screen and (max-width: 900px) { + height: 94px; + + .header__menu { + .theme__btn__wrapper { + .theme__tooltip { + display: none; + } + } + } + + .header__login { + button { + height: 48px !important; + + &:first-child { + width: 48px !important; + min-width: 48px !important; + } + + img { + scale: 0.8; + } + } + } + + .header__logo { + img { + height: 40px; + width: auto; + } + } + + .header__burger { + display: flex; + } + + .header__menu { + width: 100%; + display: none; + justify-content: flex-end; + + &.header__menu__mobile { + display: flex; + } + } + + .header__menu { + .header__account { + width: 100%; + flex-direction: column-reverse; + align-items: flex-end; + gap: 20px; + + .header__currency__wrapper { + width: 100%; + } + } + + .header__account__btn { + width: 48px !important; + min-width: 48px !important; + height: 48px !important; + + img { + scale: 0.8333; + } + } + } + + .header__account__mobile { + max-height: 320px; + } + } +} + +.header__blur__block { + width: 100vw; + height: 100vh; + position: fixed; + top: 0; + left: 0; + background-color: #0000004c; + z-index: 1; + transform: all 0; +} diff --git a/src/components/default/Header/Header.tsx b/src/components/default/Header/Header.tsx new file mode 100644 index 0000000..9c865d8 --- /dev/null +++ b/src/components/default/Header/Header.tsx @@ -0,0 +1,373 @@ +import logoImg from '@/assets/images/UI/logo_block.svg'; +import logoImgWhite from '@/assets/images/UI/logo_block_dark.svg'; +import { ReactComponent as LogOutIcon } from '@/assets/images/UI/logout.svg'; +import { ReactComponent as BurgerIcon } from '@/assets/images/UI/hamburger_icon.svg'; +import { ReactComponent as BurgerCrossIcon } from '@/assets/images/UI/burger_cross.svg'; +import React, { useRef, useState, useEffect, useContext } from 'react'; +import { ReactComponent as EyeIcon } from '@/assets/images/UI/eye.svg'; +import { ReactComponent as EyeCloseIcon } from '@/assets/images/UI/eye_close.svg'; +import zanoIcon from '@/assets/images/UI/zano.svg'; +import bitcoinWhiteIcon from '@/assets/images/UI/wbtc.svg'; +import sunIcon from '@/assets/images/UI/sun_icon.svg'; +import moonIcon from '@/assets/images/UI/moon_icon.svg'; +import ethWhiteIcon from '@/assets/images/UI/weth.svg'; +import customWhiteIcon from '@/assets/images/UI/tsds.svg'; +import Link from 'next/link'; +import Tooltip from '@/components/UI/Tooltip/Tooltip'; +import Button from '@/components/UI/Button/Button'; + +import { useWindowWidth } from '@react-hook/window-size'; +import ConnectButton from '@/components/UI/ConnectButton/ConnectButton'; +import { notationToString, setWalletCredentials, shortenAddress } from '@/utils/utils'; +import useAdvancedTheme from '@/hook/useTheme'; + +import { Store } from '@/store/store-reducer'; +import { updateAutoClosedNotification, updateWalletState } from '@/store/actions'; +import CurrencyCheckRowProps from '@/interfaces/props/components/default/Header/CurrencyCheckRowProps'; +import Decimal from 'decimal.js'; +import socket from '@/utils/socket'; +import { OrderDataWithPair } from '@/interfaces/responses/orders/GetOrdersPageRes'; +import { useRouter } from 'next/router'; +import zanoImg from '@/assets/images/UI/zano.svg'; +import useUpdateUser from '@/hook/useUpdateUser'; +import NavBar from './NavBar/NavBar'; +import styles from './Header.module.scss'; + +function Header() { + const { theme, setTheme } = useAdvancedTheme(); + const router = useRouter(); + + const eyeRef = useRef(null); + + const { dispatch, state } = useContext(Store); + const loggedIn = !!state.wallet?.connected; + + const [menuOpened, setMenuState] = useState(false); + const [currencyCheckOpended, setCurrencyState] = useState(false); + const [balanceSeen, setBalanceState] = useState(true); + + const width = useWindowWidth(); + + useEffect(() => { + setMenuState(false); + }, [width]); + + function logout() { + sessionStorage.removeItem('token'); + setWalletCredentials(undefined); + updateWalletState(dispatch, null); + } + + const getIcon = (ticker: string) => { + switch (ticker) { + case 'WBTC': + return bitcoinWhiteIcon; + case 'WETH': + return ethWhiteIcon; + default: + return customWhiteIcon; + } + }; + + function BurgerButton(props: { className?: string }) { + return ( + + ); + } + + function Menu(props: { isMobile?: boolean } = {}) { + function CurrencyCheck() { + function Row({ icon, title, amount, balanceSeen }: CurrencyCheckRowProps) { + const [textHovered, setTextHovered] = useState(false); + + const displayedAmount = balanceSeen ? new Decimal(amount).toFixed() : '****'; + + const showTooltip = displayedAmount.length >= 7; + + return ( +
setTextHovered(true)} + onMouseLeave={() => setTextHovered(false)} + > +
+ {title} +
+

+ {displayedAmount} {title} +

+ {showTooltip && ( + + {displayedAmount} + + )} +
+ ); + } + + const assets = state.wallet?.connected ? state.wallet?.assets || [] : []; + + const openable = assets.length > 1; + + return ( +
+
{ + if (e.target === eyeRef.current || !openable) return; + setCurrencyState(!currencyCheckOpended); + }} + className={`${styles.header__currency__check} ${ + currencyCheckOpended ? styles.currency__check__opened : '' + } ${openable ? styles.currency__check__openable : ''}`} + > + e.ticker === 'ZANO')?.balance) || 0} + > + {/* setBalanceState(!balanceSeen)} + src={balanceSeen ? eyeCloseIcon : eyeIcon} alt="see" + style={!balanceSeen ? {opacity: "0.6"} : {}} + /> */} +
setBalanceState(!balanceSeen)} + style={!balanceSeen ? { opacity: '0.6' } : {}} + ref={eyeRef} + > + {balanceSeen ? ( + + ) : ( + + )} +
+
+ {currencyCheckOpended && ( +
+ {assets + ?.filter((e) => e.ticker !== 'ZANO') + .map((e) => ( + + ))} +
+ )} +
+ ); + } + + function ThemeButton(props: { className?: string }) { + const [tooltipShown, setTooltipState] = useState(false); + + return ( +
+ + + {theme === 'dark' ? 'Light' : 'Dark'} Theme + +
+ ); + } + + return ( +
+ <> + {loggedIn ? ( +
+ {CurrencyCheck()} +
+
+

+ {state.wallet?.connected && state.wallet.alias + ? `@${state.wallet.alias}` + : '@no alias'} +

+

+ {state.wallet?.connected + ? shortenAddress(state.wallet.address || '') + : '...'} +

+
+
+
+ +
+ + + + +
+
+
+ ) : ( +
+ + + {!props.isMobile && } +
+ )} + {props.isMobile && } + +
+ ); + } + + useEffect(() => { + const token = sessionStorage.getItem('token'); + + if (token) { + socket.emit('in-dex-notifications', { token }); + + return () => { + socket.emit('out-dex-notifications', { token }); + }; + } + }, [state.user?.address]); + + const [activeNotifications, setActiveNotifications] = useState( + new Map(), + ); + + const fetchUser = useUpdateUser(); + + useEffect(() => { + function onNotify({ orderData }: { orderData: OrderDataWithPair }) { + if (state.user) { + fetchUser(); + if (!!('Notification' in window) && Notification.permission === 'granted') { + const { pair } = orderData; + + const pairLink = `/dex/trading/${pair.id}#my_orders`; + + const notification = new Notification('Zano Trade - New offer', { + body: `You have new offer: ${orderData.type === 'buy' ? 'Buy' : 'Sell'} | ${ + pair.first_currency.name + }/${pair.second_currency.name} | Price: ${notationToString( + orderData.price, + )}`, + icon: zanoImg, + }); + + notification.onclick = () => { + router.push(pairLink); + }; + + setActiveNotifications((prevNotifications) => { + const newNotifications = new Map(prevNotifications); + console.log('Added notification with orderId:', orderData.id); + + newNotifications.set(parseInt(orderData.id, 10), { + Notification: notification, + orderData, + }); + return newNotifications; + }); + } + } + } + + function onCancel({ orderId }: { orderId: number }) { + fetchUser(); + setActiveNotifications((prevNotifications) => { + const newNotifications = new Map(prevNotifications); + const notification = newNotifications.get(orderId); + + if (notification) { + notification.Notification.close(); + newNotifications.delete(orderId); + console.log('Deleted notification with orderId:', orderId); + } + + return newNotifications; + }); + } + + if (state.closed_notifications.length > 0) { + for (const notificationID of state.closed_notifications) { + onCancel({ orderId: notificationID }); + } + + console.log('Closed notifications:', state.closed_notifications); + + updateAutoClosedNotification(dispatch, []); + } + + socket.on('order-notification', onNotify); + socket.on('order-notification-cancelation', onCancel); + + return () => { + socket.off('order-notification', onNotify); + socket.off('order-notification-cancelation', onCancel); + }; + }, [state.user, activeNotifications, state.closed_notifications]); + + const mobileHeaderStyle: React.CSSProperties = {}; + + if (!menuOpened) { + mobileHeaderStyle.maxHeight = '0'; + } else if (currencyCheckOpended) { + mobileHeaderStyle.overflow = 'inherit'; + } + + return ( + <> + {menuOpened &&
} +
+
+ + Zano P2P + +
+ +
+ +
+ {Menu()} + + +
+
+ +
+
+
+ + ); +} + +export default Header; diff --git a/src/components/default/Header/NavBar/NavBar.module.scss b/src/components/default/Header/NavBar/NavBar.module.scss new file mode 100644 index 0000000..87ef6fa --- /dev/null +++ b/src/components/default/Header/NavBar/NavBar.module.scss @@ -0,0 +1,76 @@ +.nav { + a { + display: flex; + align-items: center; + gap: 10px; + position: relative; + + &:hover { + opacity: 0.8; + } + + &.selected { + h6 { + color: var(--font-main-color); + } + + svg * { + fill: var(--font-main-color); + } + } + + &.disabled { + opacity: 0.5; + pointer-events: none; + + &:hover { + opacity: 0.5; + } + } + + h6 { + color: #1f8feb; + } + + svg path { + fill: #1f8feb; + } + + img { + height: 20px; + width: auto; + + @media screen and (max-width: 1600px) { + width: 32px; + height: auto; + } + + @media screen and (max-width: 900px) { + width: 20px; + height: auto; + } + } + } +} + +.nav__desktop { + display: flex; + gap: 40px; +} + +.nav__mobile { + padding: 20px; + display: flex; + flex-direction: column; + align-items: center; + gap: 20px; + + @media screen and (min-width: 900px) { + padding: 60px; + gap: 50px; + + h6 { + font-size: 32px; + } + } +} diff --git a/src/components/default/Header/NavBar/NavBar.tsx b/src/components/default/Header/NavBar/NavBar.tsx new file mode 100644 index 0000000..423dd16 --- /dev/null +++ b/src/components/default/Header/NavBar/NavBar.tsx @@ -0,0 +1,80 @@ +import { useRouter } from 'next/router'; +import Link from 'next/link'; + +import { ReactComponent as TradeIcon } from '@/assets/images/UI/trade_icon.svg'; +import { ReactComponent as SwapIcon } from '@/assets/images/UI/swap_icon.svg'; +import { ReactComponent as PersonsIcon } from '@/assets/images/UI/persons_icon.svg'; +import NavItemProps from '@/interfaces/props/components/default/Header/NavBar/NavItemProps'; +import NavBarProps from '@/interfaces/props/components/default/Header/NavBar/NavBarProps'; +import NotificationIndicator from '@/components/UI/NotificationIndicator/NotificationIndicator'; +import { useContext } from 'react'; +import { Store } from '@/store/store-reducer'; +import styles from './NavBar.module.scss'; + +function NavBar(props: NavBarProps) { + const router = useRouter(); + + const { state } = useContext(Store); + + const { wallet, user } = state; + + function NavItem(props: NavItemProps) { + const { routeKeyphrase } = props; + const { title } = props; + const { href } = props; + const { Img } = props; + const { disabled } = props; + const { notifications } = props; + // const ImgSelected = props.imgSelected; + + const selected = router.route.includes(routeKeyphrase); + let linkClass = ''; + + if (selected) { + linkClass = styles.selected; + } else if (disabled) { + linkClass = styles.disabled; + } + + return ( + + +
{title}
+ + + ); + } + + return ( + + ); +} + +export default NavBar; diff --git a/src/components/default/MainPageTitle/MainPageTitle.module.scss b/src/components/default/MainPageTitle/MainPageTitle.module.scss new file mode 100644 index 0000000..f6514db --- /dev/null +++ b/src/components/default/MainPageTitle/MainPageTitle.module.scss @@ -0,0 +1,80 @@ +.title__wrapper { + width: 100%; + margin-bottom: 40px; + display: flex; + flex-direction: column; + align-items: center; + border-radius: 30px; + text-align: center; + gap: 20px; + + > button { + padding-top: 0; + padding-bottom: 0; + height: 54px; + } + + > :first-child { + display: flex; + flex-direction: column; + gap: 10px; + + .desktop__description { + max-width: 850px; + font-size: 18px; + font-weight: 500; + color: var(--font-dimmed-color); + + @media (max-width: 768px) { + display: none; + } + } + } + + .mobile__description { + display: none; + font-size: 18px; + font-weight: 400; + color: var(--font-dimmed-color); + + @media (max-width: 768px) { + display: block; + } + + @media (max-width: 375px) { + display: block; + max-width: 280px; + margin: 0 auto; + } + } + + .learn_more__button { + display: flex; + flex-direction: row; + align-items: center; + gap: 5px; + user-select: none; + cursor: pointer; + + p { + font-size: 18px; + color: rgba(31, 143, 235, 1); + } + + svg:not(.stroked) * { + fill: transparent; + } + } + + .connect__button { + height: 54px; + } + + @media screen and (max-width: 550px) { + margin-bottom: 40px; + + .connect__button { + height: 48px; + } + } +} diff --git a/src/components/default/MainPageTitle/MainPageTitle.tsx b/src/components/default/MainPageTitle/MainPageTitle.tsx new file mode 100644 index 0000000..6886714 --- /dev/null +++ b/src/components/default/MainPageTitle/MainPageTitle.tsx @@ -0,0 +1,38 @@ +import { ReactComponent as ArrowRight } from '@/assets/images/UI/arrow_blue_right.svg'; +import { Store } from '@/store/store-reducer'; +import { useContext } from 'react'; +import MainPageTitleProps from '@/interfaces/props/components/default/MainPageTitle/MainPageTitleProps'; +import styles from './MainPageTitle.module.scss'; + +function MainPageTitle(props: MainPageTitleProps) { + const { state } = useContext(Store); + + return ( +
+
+

+ {props.blue} + {props.white} +

+ {props.description && ( +

{props.description}

+ )} + +

+ {props.mobileDescription ?? props.description} +

+
+ + {state.wallet?.connected && !!state.wallet?.address ? ( + props.children + ) : ( +
+

Learn more

+ +
+ )} +
+ ); +} + +export default MainPageTitle; diff --git a/src/components/default/Offers/Offers.js b/src/components/default/Offers/Offers.js new file mode 100644 index 0000000..2da1be7 --- /dev/null +++ b/src/components/default/Offers/Offers.js @@ -0,0 +1,612 @@ +import arrowIcon from '@/assets/images/UI/arrow.svg'; +import lockIcon from '@/assets/images/UI/lock.svg'; +import crossIcon from '@/assets/images/UI/cross_icon.svg'; +import deleteIcon from '@/assets/images/UI/delete.svg'; +import editIcon from '@/assets/images/UI/edit.svg'; +import noOffersIcon from '@/assets/images/UI/no_offers.svg'; +import noChatsIcon from '@/assets/images/UI/no_chats.svg'; +import Link from 'next/link'; +import Button from '@/components/UI/Button/Button'; +import Input from '@/components/UI/Input/Input'; +import Popup from '@/components/UI/Popup/Popup'; +import ProfileWidget from '@/components/UI/ProfileWidget/ProfileWidget'; +import { useContext, useState } from 'react'; +import { nanoid } from 'nanoid'; +import { toStandardDateString } from '@/utils/utils'; +import { createChat, deleteChat, deleteOffer } from '@/utils/methods'; +import useUpdateUser from '@/hook/useUpdateUser'; +import Alert from '@/components/UI/Alert/Alert'; +import Preloader from '@/components/UI/Preloader/Preloader'; +import { Store } from '@/store/store-reducer'; +import { useRouter } from 'next/router'; +import NotificationIndicator from '@/components/UI/NotificationIndicator/NotificationIndicator'; +import { updateUser } from '@/store/actions'; +import CreateOfferPopup from '../CreateOfferPopup/CreateOfferPopup'; +import rowStyles from './Row.module.scss'; +import styles from './Offers.module.scss'; + +function Offers(props) { + // const [priceDescending, setPriceState] = useState(false); + + const priceDescending = props.value; + const setPriceState = props.setValue; + + const router = useRouter(); + + const { state, dispatch } = useContext(Store); + + const fetchUser = useUpdateUser(); + + const [alertState, setAlertState] = useState(null); + + const [alertSubtitle, setAlertSubtitle] = useState(null); + + const { offers } = props; + + function PopupContent(props) { + const [popupAlertState, setPopupAlertState] = useState(null); + const [popupAlertSubtitle, setPopupAlertSubtitle] = useState(null); + const [payInputState, setPayInputState] = useState(''); + const [receiveInputState, setReceiveInputState] = useState(''); + const { offerData } = props; + + async function startChat() { + const successedInput = payInputState && receiveInputState; + + const rangeAcceptable = + parseFloat(offerData.type === 'buy' ? receiveInputState : payInputState) >= + parseFloat(offerData.min) && + parseFloat(offerData.type === 'buy' ? receiveInputState : payInputState) <= + parseFloat(offerData.max) && + parseFloat(receiveInputState) >= 0 && + parseFloat(receiveInputState) <= 1000000000; + + if (!successedInput) { + setPopupAlertState('error'); + setPopupAlertSubtitle('Please, fill all fields'); + setTimeout(() => { + setPopupAlertState(null); + }, 3000); + return; + } + + if (!rangeAcceptable) { + setPopupAlertState('error'); + setPopupAlertSubtitle('Please, set correct values'); + setTimeout(() => { + setPopupAlertState(null); + }, 3000); + return; + } + + setPopupAlertState('loading'); + setPopupAlertSubtitle('Creating chat...'); + const result = await createChat(offerData.number, payInputState, receiveInputState); + if (!result.success) { + setPopupAlertState('error'); + setPopupAlertSubtitle('Error creating chat.'); + setTimeout(() => { + setPopupAlertState(null); + }, 3000); + return; + } + + router.push(`/p2p/process/${result.data}`); + } + + function calcInput(e) { + const value = + props.offerData.type === 'buy' + ? e.target.value / offerData.price + : e.target.value * offerData.price; + + setPayInputState(e.target.value); + setReceiveInputState(parseFloat(value.toFixed(9))); + } + + function caclTarget(e) { + const value = + props.offerData.type === 'buy' + ? e.target.value * offerData.price + : e.target.value / offerData.price; + + setReceiveInputState(e.target.value); + setPayInputState(parseFloat(value.toFixed(9))); + } + + function setAll() { + const maxInCurrency = parseFloat(offerData.max); + const maxInTarget = parseFloat((offerData.max * offerData.price).toFixed(9)); + + setPayInputState(props.offerData.type === 'buy' ? maxInTarget : maxInCurrency); + + setReceiveInputState(props.offerData.type === 'buy' ? maxInCurrency : maxInTarget); + } + + const inputLimits = `${offerData.min * offerData.price} - ${offerData.max * offerData.price}`; + const outputPrice = `${offerData.min} - ${offerData.max}`; + + const firstInputPlaceholder = props.offerData.type === 'buy' ? inputLimits : outputPrice; + + const secondInputPlaceholder = props.offerData.type === 'buy' ? outputPrice : inputLimits; + + return ( +
+
+
Detailed Offer
+ props.setPopupState(false)} src={crossIcon} alt="close" /> +
+
+
+ +
+
+

Price

+

{`${offerData.price} ${offerData.target_currency?.name}`}

+
+
+ +
+
+

Min

+

+ {offerData.min} {offerData.input_currency?.name} +

+
+
+

Max

+

+ {offerData.max} {offerData.input_currency?.name} +

+
+
+
+ {offerData.comment &&
Comment
} +

{offerData.comment || ''}

+
+
+
+
+
+
+ lock +
Deposit
+
+
+
+

You

+

+ {offerData.deposit_buyer}{' '} + {offerData.deposit_currency?.name || ''} +

+
+
+

Seller

+

+ {offerData.deposit_seller}{' '} + {offerData.deposit_currency?.name || ''} +

+
+
+
+
+
+

I pay

+
+ e.target.blur()} + type="number" + value={payInputState} + onInput={calcInput} + bordered={true} + placeholder={firstInputPlaceholder} + /> +
+

+ {props.offerData.type === 'buy' + ? offerData.target_currency?.name + : offerData.input_currency?.name} +

+ +
+
+
+
+

I receive

+
+ e.target.blur()} + type="number" + onInput={caclTarget} + value={receiveInputState} + className={rowStyles.receive__input} + bordered={true} + placeholder={secondInputPlaceholder} + /> +

+ {props.offerData.type === 'buy' + ? offerData.input_currency?.name + : offerData.target_currency?.name} +

+
+
+
+ + + +
+

+ Vivamus suscipit, nisi vel consequat condimentum, diam est volutpat + nisi, quis scelerisque dui odio non tellus. +

+
+
+ + {popupAlertState && ( + setPopupAlertState(null)} + /> + )} +
+ ); + } + + function Row(props) { + const [popupShown, setPopupState] = useState(false); + + async function removeOffer() { + if (props.extended && !props.withEditor && props.offerData.offer_number) { + setAlertState('loading'); + setAlertSubtitle('Deleting chat...'); + const result = await deleteChat(props.offerData.id); + if (!result.success) { + setAlertState('error'); + setAlertSubtitle('Error deleting chat. Please try again later.'); + setTimeout(() => { + setAlertState(null); + }, 3000); + return; + } + setAlertState(null); + await fetchUser(); + return; + } + + setAlertState('loading'); + setAlertSubtitle('Deleting offer...'); + const result = await deleteOffer(props.offerData.number); + if (!result.success) { + setAlertState('error'); + setAlertSubtitle('Error deleting offer. Please try again later.'); + setTimeout(() => { + setAlertState(null); + }, 3000); + return; + } + setAlertState(null); + await fetchUser(); + } + + const withNotification = !(props.offerData?.view_list || []).includes(state.user?.id || ''); + + function viewRedirect() { + if (props.extended && !props.withEditor) { + if (state.user?.id) { + const newUser = JSON.parse(JSON.stringify({ ...state.user })); + const currentViewList = newUser.chats.find( + (e) => e.id === (props.offerData?.id || 0), + )?.view_list; + if (!currentViewList?.includes(state.user?.id)) + currentViewList.push(state.user?.id); + + updateUser(dispatch, newUser); + } + + router.push(`/p2p/process/${props.offerData?.id || ''}`); + } + } + + return ( + + {props.extended && ( + <> + +
+

{props.offerData.type === 'buy' ? 'Buy' : 'Sell'}

+
+ + +

+ {`${toStandardDateString(new Date(parseInt(props.offerData.timestamp, 10)))} `} +
+ {new Date( + parseInt(props.offerData.timestamp, 10), + ).toLocaleTimeString()} +

+ + + +
+

{props.offerData.type === 'buy' ? 'Buy' : 'Sell'}

+
+ +

+ {props.offerData.date} {props.offerData.time} +

+ + + )} + + {props.inUser ? ( +
+ {props.offerData.currency} +

{props.offerData.currency}

+
+ ) : ( + + )} + + +

Price

+

+ {props.offerData.price} {props.offerData.target_currency?.name} +

+ + +

Limit / Available

+
+
+

+ Min: +

+

+ {props.offerData.min} {props.offerData.input_currency?.name} +

+
+ +
+

+ Max: +

+

+ {props.offerData.max} {props.offerData.input_currency?.name} +

+
+
+ + +
+ lock + e.preventDefault()}> + Deposit + +
+
+
+

Seller:

+

+ {props.offerData.deposit_seller}{' '} + {props.offerData.deposit_currency?.name || ''} +

+
+ +
+

Buyer:

+

+ {props.offerData.deposit_buyer}{' '} + {props.offerData.deposit_currency?.name || ''} +

+
+
+ + + {!props.extended ? ( +
+ +
+ ) : ( +
+ {props.withEditor ? ( + + ) : ( +
+ + +
+ +
+
+ )} + {props.categoryState !== 'finished' && + props.categoryState !== 'active' && ( + + )} +
+ )} + + {popupShown && ( + setPopupState(false)} + scroll={true} + /> + )} + + + ); + } + + return ( +
+ + + + {props.extended && ( + <> + + + + )} + + + + + + + + + {offers.map((e) => ( + + ))} + +
+ e.preventDefault()}> + Type + + + e.preventDefault()}> + Date + + + e.preventDefault()}> + Makers + + +
setPriceState(!priceDescending)} + > + e.preventDefault()}> + Price + {!props.extended && + (priceDescending ? ' (Descending)' : ' (Ascending)')} + + {!props.extended && ( + arrow + )} +
+
+ e.preventDefault()}> + Limits + + +
+ lock + e.preventDefault()}> + Deposit + +
+
+ + {!offers.length && !props.preloaderState && ( +
+
+ {props.extended +

No {props.extended && !props.withEditor ? 'chats' : 'offers'}

+
+
+ )} + + {props.preloaderState && ( +
+
+ +

Loading...

+
+
+ )} + + setAlertState(null)} + /> +
+ ); +} + +export default Offers; diff --git a/src/components/default/Offers/Offers.module.scss b/src/components/default/Offers/Offers.module.scss new file mode 100644 index 0000000..cd4bda2 --- /dev/null +++ b/src/components/default/Offers/Offers.module.scss @@ -0,0 +1,137 @@ +.offers__table__extended { + table { + @media screen and (max-width: 1700px) { + .header__row__extended { + th:first-child { + max-width: 140px; + } + + th:nth-child(2) { + max-width: 160px; + } + + th:nth-child(3) { + max-width: 220px; + } + + th:nth-child(4) { + max-width: 160px; + } + + th:last-child { + max-width: 200px; + } + } + } + + thead > tr { + @media screen and (max-width: 1500px) { + display: none !important; + } + } + } +} + +.offers__table__wrapper { + width: 100%; + + table { + width: 100%; + + th { + text-align: left; + + > div { + position: relative; + display: flex; + align-items: center; + + img { + margin-right: 10px; + } + + &.table__header__price { + cursor: pointer; + + a { + cursor: pointer; + } + + img { + margin: 0; + position: absolute; + left: 175px; + } + } + } + + a { + cursor: auto; + font-weight: 700; + color: rgba(255, 255, 255, 0.7); + } + } + + thead > tr { + width: 100%; + padding: 40px 0; + display: flex; + border: 1px solid rgba(255, 255, 255, 0.1); + border-right: 0; + border-left: 0; + + @media screen and (max-width: 1450px) { + display: none; + } + } + + th { + width: 100%; + display: flex; + align-items: center; + } + + // tbody { + // @media screen and (max-width: 1450px) { + // display: grid; + // grid-template-columns: repeat(auto-fill, 340px); + // grid-gap: 40px; + // justify-content: space-between; + // } + + // @media screen and (max-width: 1345px) { + // grid-template-columns: repeat(auto-fill, 450px); + // } + + // @media screen and (max-width: 1170px) { + // grid-template-columns: repeat(1, 450px); + // justify-content: center; + // } + + // @media screen and (max-width: 650px) { + // display: flex; + // flex-direction: column; + // grid-gap: 0; + // } + // } + } +} + +.offers__no_offers { + width: 100%; + height: 500px; + display: flex; + justify-content: center; + align-items: center; + + > div { + display: flex; + flex-direction: column; + align-items: center; + gap: 20px; + } + + p { + color: rgba(255, 255, 255, 0.7); + } +} diff --git a/src/components/default/Offers/Row.module.scss b/src/components/default/Offers/Row.module.scss new file mode 100644 index 0000000..898c608 --- /dev/null +++ b/src/components/default/Offers/Row.module.scss @@ -0,0 +1,634 @@ +.table__row__extended { + @media screen and (max-width: 1700px) { + td:first-child { + max-width: 140px; + } + + td:nth-child(2) { + max-width: 160px; + } + + td:nth-child(4) { + max-width: 220px; + } + + td:nth-child(5) { + max-width: 160px; + } + + td:last-child { + max-width: 200px; + } + + .user_info__price { + span { + font-size: 18px; + } + } + + .column__text { + .column__text__title { + width: 65px; + + &.column__limits { + width: 50px; + } + } + } + } + + @media screen and (max-width: 1500px) { + &.table__row__extended { + > td { + max-width: none; + } + } + + .user_info__price { + span { + font-size: 24px; + } + } + + .column__text { + .column__text__title { + width: 80px; + + &.column__limits { + width: 65px; + } + } + } + } + + @media screen and (max-width: 1500px) { + // padding: 30px 40px !important; + // flex-direction: column; + // gap: 20px; + // border: 1px solid rgba(255, 255, 255, 0.1); + // border-radius: 10px; + + width: 100%; + position: relative; + flex-wrap: wrap; + justify-content: space-between; + gap: 20px; + + td { + width: auto !important; + flex-direction: column; + align-items: flex-start !important; + + &.top_element { + width: 100% !important; + } + + .row__label__mobile { + display: flex !important; + } + + &.extended__mobile { + display: flex !important; + } + + &.extended__hidden { + display: none !important; + } + + &.row__button__wrapper { + position: absolute; + top: 60px !important; + right: 0; + } + } + } +} + +.table__row { + padding: 40px 0; + display: flex; + border-bottom: 1px solid rgba(255, 255, 255, 0.1); + + td { + width: 100%; + display: flex; + align-items: center; + + .table__date { + text-align: center; + } + + .table__offer_type { + width: 82px; + height: 40px; + border-radius: 10px; + display: flex; + align-items: center; + justify-content: center; + + p { + font-weight: 700; + } + } + + .table__offer_type__buy { + border: 2px solid #16d1d6; + + p { + color: #16d1d6; + } + } + + .table__offer_type__sell { + border: 2px solid #ff6767; + + p { + color: #ff6767; + } + } + + &.extended__mobile { + display: none; + flex-direction: row; + align-items: center !important; + gap: 20px; + + > p { + font-size: 16px; + + br { + display: none; + } + } + } + + @media screen and (max-width: 1450px) { + &.extended__mobile { + display: flex; + } + + &.extended__hidden { + display: none; + } + } + + .row__label__mobile { + margin-bottom: 10px; + display: none; + font-weight: 700; + color: rgba(255, 255, 255, 0.7); + + &.row__deposit__label { + align-items: center; + + img { + margin-right: 10px; + } + + a { + cursor: auto; + font-weight: 700; + color: rgba(255, 255, 255, 0.7); + } + } + } + } + + @media screen and (max-width: 1450px) { + // padding: 30px 40px; + // flex-direction: column; + // gap: 20px; + // border: 1px solid rgba(255, 255, 255, 0.1); + // border-radius: 10px; + position: relative; + justify-content: space-between; + flex-wrap: wrap; + gap: 23px; + + td { + flex-direction: column; + align-items: flex-start; + + width: auto; + + .row__label__mobile { + display: flex; + } + + &.top_element { + width: 100%; + } + + &.row__button__wrapper { + position: absolute; + top: 37.5px; + right: 0; + } + } + } + + @media screen and (max-width: 650px) { + padding: 40px 0 !important; + border: 0; + border-radius: 0; + border-top: 1px solid rgba(255, 255, 255, 0.1); + + &:last-child { + border-bottom: 1px solid rgba(255, 255, 255, 0.1); + } + + td { + &.row__button__wrapper { + position: static; + } + + width: 100% !important; + + &.row__button__wrapper { + > div { + width: 100%; + + button { + width: 100%; + height: 48px; + + &.row__button__iconed { + width: 48px; + min-width: 48px; + } + } + } + } + } + } +} + +.row__button__wrapper { + display: flex; + justify-content: flex-end; + + > div { + display: flex; + gap: 20px; + + .row__button__view { + position: relative; + + .row__button__notification { + position: absolute; + transform: translate(50%, -50%); + top: 0; + right: 0; + } + } + + button { + padding: 0 40px; + height: 54px; + + &.row__button__iconed { + padding: 0; + height: 54px; + width: 54px; + background-color: rgba(255, 255, 255, 0.1); + + &:hover { + background-color: rgba(255, 255, 255, 0.3); + } + } + } + } +} + +button { + &.btn_buy { + background-color: rgba(22, 209, 214, 1); + + &:hover { + background-color: #45dade; + } + } + + &.btn_sell { + background-color: #ff6767; + + &:hover { + background-color: #ff8585; + } + } +} + +.user_info__price { + span { + font-size: 24px; + font-weight: 600; + } +} + +.column__text { + height: 56px; + display: flex; + flex-direction: column; + justify-content: space-between; + + > div { + display: flex; + + p { + white-space: nowrap; + } + + .column__text__title { + width: 80px; + color: rgba(255, 255, 255, 0.7); + + &.column__limits { + width: 65px; + } + } + } +} + +.row__currency { + display: flex; + align-items: center; + + img { + height: 24px; + width: auto; + margin-right: 8px; + } +} + +.popup__content { + width: 1020px; + padding: 40px; + background-color: #ffffff; + position: relative; + transform: translate(-50%, -50%); + top: 50%; + left: 50%; + background: #0f2055; + border-radius: 10px; + + @media screen and (max-height: 700px), (max-width: 930px) { + top: 15%; + transform: translate(-50%); + } + + > div { + display: flex; + + &:first-child { + justify-content: space-between; + padding-bottom: 30px; + border-bottom: 1px solid rgba(255, 255, 255, 0.1); + + img { + cursor: pointer; + } + } + + &:last-child { + padding-top: 30px; + gap: 40px; + } + } + + .popup__content__info { + width: 100%; + + > * { + padding: 20px 0; + border-bottom: 1px solid rgba(255, 255, 255, 0.1); + + &:first-child { + padding-top: 0; + } + + &:last-child { + padding-bottom: 0; + border: 0; + } + } + + .popup__description__row { + display: flex; + gap: 65px; + + .popup__description__pair { + display: flex; + gap: 20px; + + > :first-child { + color: rgba(255, 255, 255, 0.7); + font-weight: 700; + } + + .popup__buy__price { + color: #45dade; + } + + .popup__sell__price { + color: #ff8585; + } + } + } + + .popup__description__terms { + display: flex; + flex-direction: column; + gap: 10px; + + h6 { + color: rgba(255, 255, 255, 0.7); + } + + p { + line-height: 139%; + } + } + } + + .popup__content__form { + > * { + margin-bottom: 20px; + + &:last-child { + margin-bottom: 0; + } + } + + input { + width: 410px; + padding-top: 16px; + padding-bottom: 16px; + } + + .popup__deposit__wrapper { + margin-bottom: 30px; + padding: 2px; + background: radial-gradient(100% 188.88% at 0% 0%, #16d1d6 0%, #274cff 100%); + border-radius: 10px; + + .popup__deposit { + padding: 20px; + border-radius: 8px; + background-color: #0f2055; + display: flex; + flex-direction: column; + gap: 20px; + + .deposit__pair { + display: flex; + gap: 20px; + + :first-child { + color: rgba(255, 255, 255, 0.7); + } + } + + > :first-child { + display: flex; + gap: 10px; + + h6 { + font-weight: 700; + color: rgba(255, 255, 255, 0.7); + } + } + + > :last-child { + display: flex; + justify-content: space-between; + gap: 20px; + } + } + } + + .popup__input__wrapper { + margin-bottom: 30px; + + > div { + position: relative; + + input { + padding-right: 120px; + + &.receive__input { + padding-right: 70px !important; + } + } + + > :last-child { + display: flex; + align-items: center; + gap: 10px; + + position: absolute; + top: 50%; + right: 13px; + transform: translate(0, -50%); + + button { + padding: 0; + width: 50px; + height: 30px; + border-radius: 5px; + background-color: transparent; + + &:hover { + background-color: transparent; + } + + &.selected { + background-color: #1f8feb; + + &:hover { + background-color: #1f8feb; + } + } + } + } + } + } + + p.popup__input_label { + color: rgba(255, 255, 255, 0.7); + font-weight: 700; + margin-bottom: 8px; + } + + p.popup__form__description { + font-size: 14px; + color: rgba(255, 255, 255, 0.7); + } + + .popup__button__wrapper { + margin-bottom: 10px; + display: flex; + justify-content: space-between; + flex-wrap: wrap; + gap: 20px; + + button.popup__button__cancel { + padding-left: 54px; + padding-right: 54px; + } + } + } + + @media screen and (max-width: 1100px) { + width: 100%; + } + + @media screen and (max-width: 1000px) { + .popup__description__row { + gap: 30px !important; + } + } + + @media screen and (max-width: 930px) { + > div:last-child { + flex-direction: column; + } + + .popup__content__form { + input { + width: 100%; + } + } + } + + @media screen and (max-width: 540px) { + padding-right: 20px; + padding-left: 20px; + .popup__button__wrapper { + flex-direction: column; + + button { + width: 100%; + padding-top: 13px; + padding-bottom: 13px; + } + } + + .popup__deposit { + > div:last-child { + flex-direction: column; + } + } + + .popup__description__row { + flex-direction: column; + gap: 20px !important; + } + + .popup__content__form { + input { + padding-top: 13px; + padding-bottom: 13px; + } + } + } +} diff --git a/src/components/default/OrderNotification/OrderNotification.module.scss b/src/components/default/OrderNotification/OrderNotification.module.scss new file mode 100644 index 0000000..511d3d8 --- /dev/null +++ b/src/components/default/OrderNotification/OrderNotification.module.scss @@ -0,0 +1,124 @@ +.dex__order-notification { + padding: 20px; + width: 350px; + background-color: var(--dex-offer-notification); + border-radius: 15px; + border: 1px solid #ffffff33; + + &_title { + margin-bottom: 8px; + display: flex; + align-items: center; + justify-content: space-between; + + > button { + padding: 0; + height: 25px; + width: 25px; + display: flex; + justify-content: center; + align-items: center; + border-radius: 2px; + } + } + + &_pair { + display: flex; + align-items: center; + gap: 10px; + + > p { + font-size: 14px; + font-weight: 500; + + > span { + font-size: 14px; + font-weight: 500; + color: var(--font-dimmed-color); + } + } + + > div { + padding: 2px 8px; + border: 2px solid #16d1d6; + border-radius: 5px; + + > p { + color: #16d1d6; + font-size: 12px; + font-weight: 700; + } + + &.order-sell { + border-color: #ff6767; + + > p { + color: #ff6767; + } + } + } + } + + &_delimiter { + margin: 10px 0; + width: 100%; + height: 1px; + background-color: #ffffff1a; + } + + &_info { + padding: 5px 0; + width: 100%; + display: flex; + flex-direction: column; + gap: 15px; + + .dex__order-notification_info-item { + display: flex; + justify-content: space-between; + align-items: center; + + > p { + font-size: 16px; + } + + > :first-child { + font-weight: 700; + color: var(--font-dimmed-color); + } + + > :last-child { + min-width: 0; + text-align: left; + overflow: hidden; + text-overflow: ellipsis; + } + } + + .dex__order-notification_price-buy { + > :last-child { + color: #16d1d6; + } + } + + .dex__order-notification_price-sell { + > :last-child { + color: #ff6767; + } + } + } + + &_details { + padding-top: 5px; + display: flex; + justify-content: center; + + > a { + font-size: 16px; + } + } + + @media screen and (max-width: 400px) { + width: calc(100vw - 40px); + } +} diff --git a/src/components/default/OrderNotification/OrderNotification.tsx b/src/components/default/OrderNotification/OrderNotification.tsx new file mode 100644 index 0000000..d982049 --- /dev/null +++ b/src/components/default/OrderNotification/OrderNotification.tsx @@ -0,0 +1,79 @@ +import { OrderDataWithPair } from '@/interfaces/responses/orders/GetOrdersPageRes'; +import Button from '@/components/UI/Button/Button'; +import { ReactComponent as CrossIcon } from '@/assets/images/UI/dex_cross_icon.svg'; +import Image from 'next/image'; +import { notationToString, tradingKnownCurrencies } from '@/utils/utils'; +import Link from 'next/link'; +import { Dispatch, SetStateAction } from 'react'; +import styles from './OrderNotification.module.scss'; + +interface OrderNotificationProps { + order: OrderDataWithPair; + setNotificationOrders: Dispatch>; + index: number; +} + +export default function OrderNotification({ + order, + setNotificationOrders, + index, +}: OrderNotificationProps) { + const { pair } = order; + const { first_currency, second_currency } = order.pair; + const firstCurrencyTicker = first_currency.name; + const secondCurrencyTicker = second_currency.name; + const isBuy = order.type === 'buy'; + + function onCloseClick() { + setNotificationOrders((prev) => prev.filter((e, i) => i !== index)); + } + + const imgCode = tradingKnownCurrencies.includes(pair.first_currency?.code) + ? pair.first_currency?.code + : 'tsds'; + + const pairLink = `/dex/trading/${order.pair.id}#my_orders`; + + return ( +
+
+
New Offer!
+ +
+
+ currency +

+ {firstCurrencyTicker} + /{secondCurrencyTicker} +

+
+

{isBuy ? 'Buy' : 'Sell'}

+
+
+
+
+
+

Price

+

{notationToString(order.price)}

+
+
+
+
+ Details +
+
+ ); +} diff --git a/src/components/default/PageTitle/PageTitle.module.scss b/src/components/default/PageTitle/PageTitle.module.scss new file mode 100644 index 0000000..e560ed5 --- /dev/null +++ b/src/components/default/PageTitle/PageTitle.module.scss @@ -0,0 +1,24 @@ +.page_title { + width: 100%; + display: flex; + justify-content: space-between; + align-items: center; + gap: 30px; + + > div { + display: flex; + flex-direction: column; + gap: 10px; + } + + @media screen and (max-width: 600px) { + flex-direction: column-reverse; + align-items: normal; + gap: 40px; + + button { + padding-top: 13px; + padding-bottom: 13px; + } + } +} diff --git a/src/components/default/PageTitle/PageTitle.tsx b/src/components/default/PageTitle/PageTitle.tsx new file mode 100644 index 0000000..15d2064 --- /dev/null +++ b/src/components/default/PageTitle/PageTitle.tsx @@ -0,0 +1,14 @@ +import { ReactNode } from 'react'; +import styles from './PageTitle.module.scss'; +import BackButton from '../BackButton/BackButton'; + +function PageTitle(props: { children: ReactNode }) { + return ( +
+
{props.children}
+ +
+ ); +} + +export default PageTitle; diff --git a/src/hook/useTheme.ts b/src/hook/useTheme.ts new file mode 100644 index 0000000..de8afd5 --- /dev/null +++ b/src/hook/useTheme.ts @@ -0,0 +1,25 @@ +import { useTheme } from 'next-themes'; +import { useState, useEffect } from 'react'; + +function useAdvancedTheme() { + const { theme, setTheme } = useTheme(); + const [mounted, setMounted] = useState(false); + + useEffect(() => { + setMounted(true); + }, []); + + if (mounted) { + return { + setTheme, + theme, + }; + } + + return { + setTheme, + theme: 'dark', + }; +} + +export default useAdvancedTheme; diff --git a/src/hook/useUpdateUser.ts b/src/hook/useUpdateUser.ts new file mode 100644 index 0000000..7b7a59f --- /dev/null +++ b/src/hook/useUpdateUser.ts @@ -0,0 +1,24 @@ +import { useContext } from 'react'; +import { getUser } from '@/utils/methods'; +import { Store } from '@/store/store-reducer'; +import { updateUser as updateUserAction } from '@/store/actions'; +import sha256 from 'sha256'; + +function useUpdateUser() { + const { state, dispatch } = useContext(Store); + async function fetchUser() { + if (!sessionStorage.getItem('token')) return false; + return getUser().then((result) => { + if (!result.success) return false; + + if (sha256(JSON.stringify(state.user)) !== sha256(JSON.stringify(result.data))) { + updateUserAction(dispatch, result.data); + } + + return true; + }); + } + return fetchUser; +} + +export default useUpdateUser; diff --git a/src/interfaces/common/AlertType.ts b/src/interfaces/common/AlertType.ts new file mode 100644 index 0000000..468c6ca --- /dev/null +++ b/src/interfaces/common/AlertType.ts @@ -0,0 +1,3 @@ +type AlertType = 'success' | 'error' | 'loading' | 'custom' | null; + +export default AlertType; diff --git a/src/interfaces/common/ApplyTip.ts b/src/interfaces/common/ApplyTip.ts new file mode 100644 index 0000000..4ce6211 --- /dev/null +++ b/src/interfaces/common/ApplyTip.ts @@ -0,0 +1,18 @@ +import OfferType from './OfferType'; +import UserData from './UserData'; + +interface ApplyTip { + id: string; + left: number; + price: number; + user: UserData; + timestamp?: string; + type: OfferType; + total: number; + connected_order_id: string; + transaction: boolean; + hex_raw_proposal?: string; + isInstant: boolean; +} + +export default ApplyTip; diff --git a/src/interfaces/common/CandleRow.ts b/src/interfaces/common/CandleRow.ts new file mode 100644 index 0000000..3df63c7 --- /dev/null +++ b/src/interfaces/common/CandleRow.ts @@ -0,0 +1,11 @@ +interface CandleRow { + id?: string; + pair_id?: string; + timestamp: string; + shadow_top?: number; + shadow_bottom?: number; + body_first?: number; + body_second?: number; +} + +export default CandleRow; diff --git a/src/interfaces/common/ContextValue.ts b/src/interfaces/common/ContextValue.ts new file mode 100644 index 0000000..974cc8e --- /dev/null +++ b/src/interfaces/common/ContextValue.ts @@ -0,0 +1,87 @@ +import { Dispatch } from 'react'; +import { GetUserResData } from '../responses/user/GetUserRes'; +import { GetConfigResData } from '../responses/config/GetConfigRes'; + +export interface Asset { + name: string; + ticker: string; + assetId: string; + decimalPoint: number; + balance: string; + unlockedBalance: string; +} + +export interface Transfer { + amount: string; + assetId: string; + incoming: boolean; +} + +export interface Transaction { + isConfirmed: boolean; + txHash: string; + blobSize: number; + timestamp: number; + height: number; + paymentId: string; + comment: string; + fee: string; + isInitiator: boolean; + transfers: Transfer[]; +} + +interface WalletState { + address: string; + alias: string; + balance: string; + assets: Asset[]; + transactions: Transaction[]; + connected: boolean +} + +type UserState = GetUserResData | null; + +interface ContextState { + wallet: WalletState | null; + user: UserState; + config: GetConfigResData | null; + assetsRates: Map; + __triggers: { + offers: number; + }; + closed_notifications: number[]; +} + +type ContextAction = + | { + type: 'WALLET_UPDATED'; + payload: WalletState | null; + } + | { + type: 'USER_UPDATED'; + payload: UserState; + } + | { + type: 'CONFIG_UPDATED'; + payload: GetConfigResData | null; + } + | { + type: 'TRIGGER_OFFERS_UPDATE'; + } + | { + type: 'ASSETS_RATE_UPDATED'; + payload: Map; + } + | { + type: 'CLOSED_NOTIFICATIONS_UPDATED'; + payload: number[]; + }; + +interface ContextValue { + state: ContextState; + dispatch: Dispatch; +} + +export default ContextValue; + +export type { ContextState, ContextAction, WalletState, UserState }; diff --git a/src/interfaces/common/CurrencyContentRow.ts b/src/interfaces/common/CurrencyContentRow.ts new file mode 100644 index 0000000..f0192d9 --- /dev/null +++ b/src/interfaces/common/CurrencyContentRow.ts @@ -0,0 +1,8 @@ +import CurrencyRow from './CurrencyRow'; + +interface CurrencyContentRow { + name: string; + data: CurrencyRow[]; +} + +export default CurrencyContentRow; diff --git a/src/interfaces/common/CurrencyRow.ts b/src/interfaces/common/CurrencyRow.ts new file mode 100644 index 0000000..7b3acd6 --- /dev/null +++ b/src/interfaces/common/CurrencyRow.ts @@ -0,0 +1,24 @@ +import CurrencyType from './CurrencyType'; + +export interface Asset { + asset_id: string; + logo: string; + price_url: string; + ticker: string; + full_name: string; + total_max_supply: bigint; + current_supply: bigint; + decimal_point: number; + meta_info: string; +} + +interface CurrencyRow { + id: string; + name: string; + code: string; + type?: CurrencyType; + asset_id?: string | null; + asset_info?: Asset; +} + +export default CurrencyRow; diff --git a/src/interfaces/common/CurrencyType.ts b/src/interfaces/common/CurrencyType.ts new file mode 100644 index 0000000..de1b879 --- /dev/null +++ b/src/interfaces/common/CurrencyType.ts @@ -0,0 +1,3 @@ +type CurrencyType = 'fiat' | 'crypto' | 'deposit'; + +export default CurrencyType; diff --git a/src/interfaces/common/DateState.ts b/src/interfaces/common/DateState.ts new file mode 100644 index 0000000..c3d8d59 --- /dev/null +++ b/src/interfaces/common/DateState.ts @@ -0,0 +1,6 @@ +interface DateState { + first: Date | null; + last: Date | null; +} + +export default DateState; diff --git a/src/interfaces/common/DepositState.ts b/src/interfaces/common/DepositState.ts new file mode 100644 index 0000000..ede08d3 --- /dev/null +++ b/src/interfaces/common/DepositState.ts @@ -0,0 +1,3 @@ +type DepositState = 'default' | 'deposit' | 'confirmed' | 'canceled' | null; + +export default DepositState; diff --git a/src/interfaces/common/DropdownRow.ts b/src/interfaces/common/DropdownRow.ts new file mode 100644 index 0000000..6bf8614 --- /dev/null +++ b/src/interfaces/common/DropdownRow.ts @@ -0,0 +1,7 @@ +interface DropdownRow { + name: string; + code?: string; + disabled?: boolean; +} + +export default DropdownRow; diff --git a/src/interfaces/common/HorizontalSelectValue.ts b/src/interfaces/common/HorizontalSelectValue.ts new file mode 100644 index 0000000..629d2ca --- /dev/null +++ b/src/interfaces/common/HorizontalSelectValue.ts @@ -0,0 +1,7 @@ +interface HorizontalSelectValue { + name: string; + code: string; + notifications?: number; +} + +export default HorizontalSelectValue; diff --git a/src/interfaces/common/OfferType.ts b/src/interfaces/common/OfferType.ts new file mode 100644 index 0000000..306faa6 --- /dev/null +++ b/src/interfaces/common/OfferType.ts @@ -0,0 +1,3 @@ +type OfferType = 'buy' | 'sell'; + +export default OfferType; diff --git a/src/interfaces/common/OrderRow.ts b/src/interfaces/common/OrderRow.ts new file mode 100644 index 0000000..d13a0cd --- /dev/null +++ b/src/interfaces/common/OrderRow.ts @@ -0,0 +1,18 @@ +import OfferType from './OfferType'; + +interface OrderRow { + id: string; + type: OfferType; + timestamp: string; + side: string; + price: number; + amount: number; + total: number; + pair_id: string; + user_id: string; + status: string; + left: number; + isInstant: boolean; +} + +export default OrderRow; diff --git a/src/interfaces/common/PairData.ts b/src/interfaces/common/PairData.ts new file mode 100644 index 0000000..e6fb9c0 --- /dev/null +++ b/src/interfaces/common/PairData.ts @@ -0,0 +1,15 @@ +import CurrencyRow from './CurrencyRow'; + +interface PairData { + id: string; + first_currency: CurrencyRow; + second_currency: CurrencyRow; + rate?: number; + coefficient?: number; + high?: number; + low?: number; + volume: number; + featured: boolean; +} + +export default PairData; diff --git a/src/interfaces/common/Period.ts b/src/interfaces/common/Period.ts new file mode 100644 index 0000000..3aa1672 --- /dev/null +++ b/src/interfaces/common/Period.ts @@ -0,0 +1,3 @@ +type Period = '1h' | '1d' | '1w' | '1m'; + +export default Period; diff --git a/src/interfaces/common/Point.ts b/src/interfaces/common/Point.ts new file mode 100644 index 0000000..c0ce822 --- /dev/null +++ b/src/interfaces/common/Point.ts @@ -0,0 +1,6 @@ +interface Point { + x: number; + y: number; +} + +export default Point; diff --git a/src/interfaces/common/Side.ts b/src/interfaces/common/Side.ts new file mode 100644 index 0000000..754d5ac --- /dev/null +++ b/src/interfaces/common/Side.ts @@ -0,0 +1,3 @@ +type Side = 'limit' | 'market'; + +export default Side; diff --git a/src/interfaces/common/UserData.ts b/src/interfaces/common/UserData.ts new file mode 100644 index 0000000..17e97de --- /dev/null +++ b/src/interfaces/common/UserData.ts @@ -0,0 +1,8 @@ +interface UserData { + id?: undefined; + alias: string; + address: string; + favourite_currencies?: undefined; +} + +export default UserData; diff --git a/src/interfaces/common/UserRow.ts b/src/interfaces/common/UserRow.ts new file mode 100644 index 0000000..f3b32bd --- /dev/null +++ b/src/interfaces/common/UserRow.ts @@ -0,0 +1,8 @@ +interface UserRow { + id: string; + alias: string; + address: string; + favourite_currencies: string[]; +} + +export default UserRow; diff --git a/src/interfaces/common/WalletCredentials.ts b/src/interfaces/common/WalletCredentials.ts new file mode 100644 index 0000000..6840270 --- /dev/null +++ b/src/interfaces/common/WalletCredentials.ts @@ -0,0 +1,5 @@ +export default interface WalletCredentials { + nonce: string; + signature: string; + publicKey: string; +} diff --git a/src/interfaces/common/ZanoWindow.ts b/src/interfaces/common/ZanoWindow.ts new file mode 100644 index 0000000..0f367ba --- /dev/null +++ b/src/interfaces/common/ZanoWindow.ts @@ -0,0 +1,10 @@ +type GlobalWindow = Window & typeof globalThis; + +type ZanoWindow = Omit & { + zano: { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + request: (_str: string, _params?: any, _timeoutMs?: number | null) => Promise; + }; +}; + +export default ZanoWindow; diff --git a/src/interfaces/enum/pair.ts b/src/interfaces/enum/pair.ts new file mode 100644 index 0000000..3854f22 --- /dev/null +++ b/src/interfaces/enum/pair.ts @@ -0,0 +1,5 @@ +/* eslint-disable no-unused-vars */ +export enum PairSortOption { + VOLUME_LOW_TO_HIGH = 'VOLUME_LOW_TO_HIGH', + VOLUME_HIGH_TO_LOW = 'VOLUME_HIGH_TO_LOW', +} diff --git a/src/interfaces/fetch-data/apply-order/ApplyOrderData.ts b/src/interfaces/fetch-data/apply-order/ApplyOrderData.ts new file mode 100644 index 0000000..e28a6ea --- /dev/null +++ b/src/interfaces/fetch-data/apply-order/ApplyOrderData.ts @@ -0,0 +1,7 @@ +interface ApplyOrderData { + id: string; + connected_order_id: string; + hex_raw_proposal: string; +} + +export default ApplyOrderData; diff --git a/src/interfaces/fetch-data/create-order/CreateOrderData.ts b/src/interfaces/fetch-data/create-order/CreateOrderData.ts new file mode 100644 index 0000000..a355086 --- /dev/null +++ b/src/interfaces/fetch-data/create-order/CreateOrderData.ts @@ -0,0 +1,12 @@ +import OfferType from '@/interfaces/common/OfferType'; +import Side from '@/interfaces/common/Side'; + +interface CreateOrderData { + type: OfferType; + side: Side; + price: string; + amount: string; + pairId: string; +} + +export default CreateOrderData; diff --git a/src/interfaces/fetch-data/get-page/GetPageData.ts b/src/interfaces/fetch-data/get-page/GetPageData.ts new file mode 100644 index 0000000..ab9c9e0 --- /dev/null +++ b/src/interfaces/fetch-data/get-page/GetPageData.ts @@ -0,0 +1,12 @@ +import OfferType from '@/interfaces/common/OfferType'; + +interface GetPageData { + type: OfferType; + page: number; + input_currency_id?: string; + target_currency_id?: string; + price?: number; + priceDescending?: boolean; +} + +export default GetPageData; diff --git a/src/interfaces/fetch-data/update-offer/UpdateOfferData.ts b/src/interfaces/fetch-data/update-offer/UpdateOfferData.ts new file mode 100644 index 0000000..6a52c7e --- /dev/null +++ b/src/interfaces/fetch-data/update-offer/UpdateOfferData.ts @@ -0,0 +1,17 @@ +import OfferType from '@/interfaces/common/OfferType'; + +interface UpdateOfferData { + price: number; + min: number; + max: number; + deposit_seller: number; + deposit_buyer: number; + type: OfferType; + comment?: string; + input_currency_id: string; + target_currency_id: string; + deposit_currency_id: string; + number?: string; +} + +export default UpdateOfferData; diff --git a/src/interfaces/props/components/UI/Alert/AlertProps.ts b/src/interfaces/props/components/UI/Alert/AlertProps.ts new file mode 100644 index 0000000..0b66038 --- /dev/null +++ b/src/interfaces/props/components/UI/Alert/AlertProps.ts @@ -0,0 +1,14 @@ +import AlertType from '@/interfaces/common/AlertType'; +import { ReactNode } from 'react'; + +interface AlertProps { + type: AlertType; + title?: string; + subtitle?: string; + close: () => void; + customIcon?: ReactNode; + customContent?: ReactNode; + children?: ReactNode; +} + +export default AlertProps; diff --git a/src/interfaces/props/components/UI/Button/ButtonProps.ts b/src/interfaces/props/components/UI/Button/ButtonProps.ts new file mode 100644 index 0000000..b72515f --- /dev/null +++ b/src/interfaces/props/components/UI/Button/ButtonProps.ts @@ -0,0 +1,15 @@ +import { CSSProperties, ReactNode } from 'react'; + +interface ButtonProps { + children: ReactNode; + style?: CSSProperties; + onClick?: () => void; + transparent?: boolean; + onMouseEnter?: () => void; + onMouseLeave?: () => void; + disabled?: boolean; + className?: string; + noBorder?: boolean; +} + +export default ButtonProps; diff --git a/src/interfaces/props/components/UI/ConnectButton/ConnectButtonProps.ts b/src/interfaces/props/components/UI/ConnectButton/ConnectButtonProps.ts new file mode 100644 index 0000000..e353e20 --- /dev/null +++ b/src/interfaces/props/components/UI/ConnectButton/ConnectButtonProps.ts @@ -0,0 +1,7 @@ +interface ConnectButtonProps { + autoAuth?: boolean; + className?: string; + transparent?: boolean; +} + +export default ConnectButtonProps; diff --git a/src/interfaces/props/components/UI/CurrencyDropdown/CurrencyDropdownProps.ts b/src/interfaces/props/components/UI/CurrencyDropdown/CurrencyDropdownProps.ts new file mode 100644 index 0000000..5b6859c --- /dev/null +++ b/src/interfaces/props/components/UI/CurrencyDropdown/CurrencyDropdownProps.ts @@ -0,0 +1,13 @@ +import CurrencyContentRow from '@/interfaces/common/CurrencyContentRow'; +import CurrencyRow from '@/interfaces/common/CurrencyRow'; + +interface CurrencyDropdownProps { + value: CurrencyRow | null; + setValue: (_e: CurrencyRow) => void; + className?: string; + withAll?: boolean; + noStars?: boolean; + content: CurrencyContentRow[]; +} + +export default CurrencyDropdownProps; diff --git a/src/interfaces/props/components/UI/CurvePairChart/CurvePairChartProps.ts b/src/interfaces/props/components/UI/CurvePairChart/CurvePairChartProps.ts new file mode 100644 index 0000000..eb2150a --- /dev/null +++ b/src/interfaces/props/components/UI/CurvePairChart/CurvePairChartProps.ts @@ -0,0 +1,10 @@ +import Point from '@/interfaces/common/Point'; + +interface CurvePairChartProps { + data: Point[]; + isAscending: boolean; + className?: string; + minLength?: number; +} + +export default CurvePairChartProps; diff --git a/src/interfaces/props/components/UI/DateRangeSelector/DateRangeSelectorProps.ts b/src/interfaces/props/components/UI/DateRangeSelector/DateRangeSelectorProps.ts new file mode 100644 index 0000000..1fa6111 --- /dev/null +++ b/src/interfaces/props/components/UI/DateRangeSelector/DateRangeSelectorProps.ts @@ -0,0 +1,10 @@ +import DateState from '@/interfaces/common/DateState'; + +interface DateRangeSelectorProps { + value: DateState; + setValue: (_e: DateState) => void; + className?: string; + disabled?: boolean; +} + +export default DateRangeSelectorProps; diff --git a/src/interfaces/props/components/UI/Dropdown/DropdownProps.ts b/src/interfaces/props/components/UI/Dropdown/DropdownProps.ts new file mode 100644 index 0000000..47b31a0 --- /dev/null +++ b/src/interfaces/props/components/UI/Dropdown/DropdownProps.ts @@ -0,0 +1,18 @@ +import DropdownRow from '@/interfaces/common/DropdownRow'; +import { ReactElement } from 'react'; + +interface DropdownProps { + value: DropdownRow; + setValue: (_e: T) => void; + maxItems?: number; + defaultOpen?: boolean; + selfContained?: boolean; + body: T[]; + withImages?: boolean; + noStars?: boolean; + className?: string; + withSearch?: boolean; + icon?: ReactElement; +} + +export default DropdownProps; diff --git a/src/interfaces/props/components/UI/Dropdown/DropdownRowProps.ts b/src/interfaces/props/components/UI/Dropdown/DropdownRowProps.ts new file mode 100644 index 0000000..248981c --- /dev/null +++ b/src/interfaces/props/components/UI/Dropdown/DropdownRowProps.ts @@ -0,0 +1,13 @@ +import { MouseEventHandler, ReactNode } from 'react'; + +interface DropdownRowProps { + header?: boolean; + search?: boolean; + selfContained?: boolean; + className?: string; + disabled?: boolean; + children: ReactNode | undefined; + onClick?: MouseEventHandler; +} + +export default DropdownRowProps; diff --git a/src/interfaces/props/components/UI/EmptyLink/EmptyLinkProps.tsx b/src/interfaces/props/components/UI/EmptyLink/EmptyLinkProps.tsx new file mode 100644 index 0000000..768c24d --- /dev/null +++ b/src/interfaces/props/components/UI/EmptyLink/EmptyLinkProps.tsx @@ -0,0 +1,8 @@ +import { ReactNode } from 'react'; + +interface EmptyLinkProps { + children: ReactNode; + className?: string; +} + +export default EmptyLinkProps; diff --git a/src/interfaces/props/components/UI/Filters/FiltersProps.ts b/src/interfaces/props/components/UI/Filters/FiltersProps.ts new file mode 100644 index 0000000..4c5dd7d --- /dev/null +++ b/src/interfaces/props/components/UI/Filters/FiltersProps.ts @@ -0,0 +1,20 @@ +import CurrencyContentRow from '@/interfaces/common/CurrencyContentRow'; +import FiltersState from '@/interfaces/states/FiltersState'; +import { CSSProperties, Dispatch, SetStateAction } from 'react'; + +interface FiltersProps { + value: FiltersState; + setValue: Dispatch>; + stateForBtns: FiltersState; + setStateForBtns: (_e: FiltersState) => void; + inPopup?: boolean; + className?: string; + style?: CSSProperties; + noStars?: boolean; + withSearch?: boolean; + refreshClick: () => void; + searchClick: () => void; + currencies: CurrencyContentRow[]; +} + +export default FiltersProps; diff --git a/src/interfaces/props/components/UI/HorizontalSelect/HorizontalSelectProps.ts b/src/interfaces/props/components/UI/HorizontalSelect/HorizontalSelectProps.ts new file mode 100644 index 0000000..23ae30a --- /dev/null +++ b/src/interfaces/props/components/UI/HorizontalSelect/HorizontalSelectProps.ts @@ -0,0 +1,13 @@ +import HorizontalSelectValue from '@/interfaces/common/HorizontalSelectValue'; +import { Dispatch, SetStateAction } from 'react'; + +interface HorizontalSelectProps { + withNotifications?: boolean; + body: T[]; + value: T; + setValue: Dispatch>; + className?: string; + isTab?: boolean; +} + +export default HorizontalSelectProps; diff --git a/src/interfaces/props/components/UI/Input/InputProps.tsx b/src/interfaces/props/components/UI/Input/InputProps.tsx new file mode 100644 index 0000000..7014692 --- /dev/null +++ b/src/interfaces/props/components/UI/Input/InputProps.tsx @@ -0,0 +1,20 @@ +import { CSSProperties, ChangeEvent, KeyboardEventHandler, WheelEventHandler } from 'react'; + +interface InputProps { + className?: string; + type?: 'text' | 'number'; + min?: string; + max?: string; + placeholder?: string; + onInput?: (_e: ChangeEvent) => void; + onWheel?: WheelEventHandler; + value: string | number; + onKeyDown?: KeyboardEventHandler; + disabled?: boolean; + maxLength?: number; + bordered?: boolean; + readOnly?: boolean; + style?: CSSProperties; +} + +export default InputProps; diff --git a/src/interfaces/props/components/UI/PairText/PairText.tsx b/src/interfaces/props/components/UI/PairText/PairText.tsx new file mode 100644 index 0000000..6ee9d03 --- /dev/null +++ b/src/interfaces/props/components/UI/PairText/PairText.tsx @@ -0,0 +1,12 @@ +interface PairText { + key: string; + value: string; +} + +interface PairTextProps { + columnWidth: number; + first: PairText; + second: PairText; +} + +export default PairTextProps; diff --git a/src/interfaces/props/components/UI/Popup/PopupProps.ts b/src/interfaces/props/components/UI/Popup/PopupProps.ts new file mode 100644 index 0000000..712b1c0 --- /dev/null +++ b/src/interfaces/props/components/UI/Popup/PopupProps.ts @@ -0,0 +1,13 @@ +import { FC } from 'react'; + +interface PopupProps { + Content: FC<{ close: () => void } & T>; + settings: T; + close: () => void; + scroll?: boolean; + blur?: boolean; + noPointer?: boolean; + classList?: string[]; +} + +export default PopupProps; diff --git a/src/interfaces/props/components/UI/Preloader/PreloaderProps.tsx b/src/interfaces/props/components/UI/Preloader/PreloaderProps.tsx new file mode 100644 index 0000000..5819b4e --- /dev/null +++ b/src/interfaces/props/components/UI/Preloader/PreloaderProps.tsx @@ -0,0 +1,6 @@ +interface PreloaderProps { + className?: string; + fullPage?: boolean; +} + +export default PreloaderProps; diff --git a/src/interfaces/props/components/UI/ProfileWidget/ProfileWidget.ts b/src/interfaces/props/components/UI/ProfileWidget/ProfileWidget.ts new file mode 100644 index 0000000..7e82ad6 --- /dev/null +++ b/src/interfaces/props/components/UI/ProfileWidget/ProfileWidget.ts @@ -0,0 +1,10 @@ +interface ProfileWidgetProps { + withLink?: boolean; + offerData: { + alias: string; + address: string; + hash?: string; + }; +} + +export default ProfileWidgetProps; diff --git a/src/interfaces/props/components/UI/RangeInput/RangeInputProps.tsx b/src/interfaces/props/components/UI/RangeInput/RangeInputProps.tsx new file mode 100644 index 0000000..e57e4db --- /dev/null +++ b/src/interfaces/props/components/UI/RangeInput/RangeInputProps.tsx @@ -0,0 +1,12 @@ +import { ChangeEvent } from 'react'; + +interface RangeInputProps { + value: string; + onInput: (_e: ChangeEvent) => void; + min?: number; + max?: number; + disabled?: boolean; + className?: string; +} + +export default RangeInputProps; diff --git a/src/interfaces/props/components/UI/Tooltip/TooltipProps.ts b/src/interfaces/props/components/UI/Tooltip/TooltipProps.ts new file mode 100644 index 0000000..528e431 --- /dev/null +++ b/src/interfaces/props/components/UI/Tooltip/TooltipProps.ts @@ -0,0 +1,11 @@ +import { CSSProperties, ReactNode } from 'react'; + +interface TooltipProps { + shown?: boolean; + style?: CSSProperties; + className?: string; + arrowClass?: string; + children: ReactNode; +} + +export default TooltipProps; diff --git a/src/interfaces/props/components/default/CreateOfferPopup/CreateOfferPopupProps.ts b/src/interfaces/props/components/default/CreateOfferPopup/CreateOfferPopupProps.ts new file mode 100644 index 0000000..81a446d --- /dev/null +++ b/src/interfaces/props/components/default/CreateOfferPopup/CreateOfferPopupProps.ts @@ -0,0 +1,10 @@ +import OfferData from '@/interfaces/responses/offers/OfferData'; +import { Dispatch, SetStateAction } from 'react'; + +interface CreateOfferPopupProps { + edit?: boolean; + offerData?: OfferData; + setPopupState: Dispatch>; +} + +export default CreateOfferPopupProps; diff --git a/src/interfaces/props/components/default/CreateOfferPopup/WindowedInputsProps.ts b/src/interfaces/props/components/default/CreateOfferPopup/WindowedInputsProps.ts new file mode 100644 index 0000000..4f180a4 --- /dev/null +++ b/src/interfaces/props/components/default/CreateOfferPopup/WindowedInputsProps.ts @@ -0,0 +1,22 @@ +import { Dispatch, SetStateAction } from 'react'; + +interface LimitsState { + min: string; + max: string; +} + +interface DepositState { + seller: string; + buyer: string; +} + +type WindowedInputsProps = { + limits?: boolean; + value: LimitsState | DepositState; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + setValue: Dispatch>; +}; + +export default WindowedInputsProps; + +export { type LimitsState, type DepositState }; diff --git a/src/interfaces/props/components/default/DetailedOfferPopup/DetailedOfferPopupProps.ts b/src/interfaces/props/components/default/DetailedOfferPopup/DetailedOfferPopupProps.ts new file mode 100644 index 0000000..5a83a85 --- /dev/null +++ b/src/interfaces/props/components/default/DetailedOfferPopup/DetailedOfferPopupProps.ts @@ -0,0 +1,9 @@ +import OfferData from '@/interfaces/responses/offers/OfferData'; +import { Dispatch, SetStateAction } from 'react'; + +interface DetailedOfferPopupProps { + offerData: OfferData; + setPopupState: Dispatch>; +} + +export default DetailedOfferPopupProps; diff --git a/src/interfaces/props/components/default/Header/CurrencyCheckRowProps.ts b/src/interfaces/props/components/default/Header/CurrencyCheckRowProps.ts new file mode 100644 index 0000000..b9182ff --- /dev/null +++ b/src/interfaces/props/components/default/Header/CurrencyCheckRowProps.ts @@ -0,0 +1,8 @@ +interface CurrencyCheckRowProps { + icon: string; + title: string; + amount: number; + balanceSeen?: boolean; +} + +export default CurrencyCheckRowProps; diff --git a/src/interfaces/props/components/default/Header/NavBar/NavBarProps.ts b/src/interfaces/props/components/default/Header/NavBar/NavBarProps.ts new file mode 100644 index 0000000..10bebf8 --- /dev/null +++ b/src/interfaces/props/components/default/Header/NavBar/NavBarProps.ts @@ -0,0 +1,5 @@ +interface NavBarProps { + mobile?: boolean; +} + +export default NavBarProps; diff --git a/src/interfaces/props/components/default/Header/NavBar/NavItemProps.ts b/src/interfaces/props/components/default/Header/NavBar/NavItemProps.ts new file mode 100644 index 0000000..fd6e299 --- /dev/null +++ b/src/interfaces/props/components/default/Header/NavBar/NavItemProps.ts @@ -0,0 +1,12 @@ +import { ElementType } from 'react'; + +interface NavItemProps { + title: string; + routeKeyphrase: string; + href: string; + Img: ElementType; + disabled?: boolean; + notifications?: number; +} + +export default NavItemProps; diff --git a/src/interfaces/props/components/default/MainPageTitle/MainPageTitleProps.ts b/src/interfaces/props/components/default/MainPageTitle/MainPageTitleProps.ts new file mode 100644 index 0000000..1feb8fc --- /dev/null +++ b/src/interfaces/props/components/default/MainPageTitle/MainPageTitleProps.ts @@ -0,0 +1,11 @@ +import { ReactNode } from 'react'; + +interface MainPageTitleProps { + blue: string; + white: string; + description: string; + mobileDescription?: string; + children: ReactNode; +} + +export default MainPageTitleProps; diff --git a/src/interfaces/props/pages/dex/orders/OrdersTable/OrdersTableProps.ts b/src/interfaces/props/pages/dex/orders/OrdersTable/OrdersTableProps.ts new file mode 100644 index 0000000..203e7d7 --- /dev/null +++ b/src/interfaces/props/pages/dex/orders/OrdersTable/OrdersTableProps.ts @@ -0,0 +1,13 @@ +import AlertType from '@/interfaces/common/AlertType'; +import { UserOrderData } from '@/interfaces/responses/orders/GetUserOrdersRes'; +import { Dispatch, SetStateAction } from 'react'; + +interface OrdersTableProps { + value: UserOrderData[]; + category: string; + setAlertState: Dispatch>; + setAlertSubtitle: Dispatch>; + setOrders: Dispatch>; +} + +export default OrdersTableProps; diff --git a/src/interfaces/props/pages/dex/orders/PairValue.ts b/src/interfaces/props/pages/dex/orders/PairValue.ts new file mode 100644 index 0000000..0793947 --- /dev/null +++ b/src/interfaces/props/pages/dex/orders/PairValue.ts @@ -0,0 +1,8 @@ +import DropdownRow from '@/interfaces/common/DropdownRow'; + +interface PairValue extends DropdownRow { + code: string; + name: string; +} + +export default PairValue; diff --git a/src/interfaces/props/pages/dex/trading/CandleChartProps/CandleChartProps.ts b/src/interfaces/props/pages/dex/trading/CandleChartProps/CandleChartProps.ts new file mode 100644 index 0000000..167f518 --- /dev/null +++ b/src/interfaces/props/pages/dex/trading/CandleChartProps/CandleChartProps.ts @@ -0,0 +1,9 @@ +import CandleRow from '@/interfaces/common/CandleRow'; +import Period from '@/interfaces/common/Period'; + +interface CandleChartProps { + candles: CandleRow[]; + period: Period; +} + +export default CandleChartProps; diff --git a/src/interfaces/props/pages/dex/trading/InputPanelItem/InputPanelItemProps.ts b/src/interfaces/props/pages/dex/trading/InputPanelItem/InputPanelItemProps.ts new file mode 100644 index 0000000..b6b3695 --- /dev/null +++ b/src/interfaces/props/pages/dex/trading/InputPanelItem/InputPanelItemProps.ts @@ -0,0 +1,28 @@ +import AlertType from '@/interfaces/common/AlertType'; +import SelectValue from '@/interfaces/states/pages/dex/trading/InputPanelItem/SelectValue'; +import { Dispatch, SetStateAction } from 'react'; + +interface InputPanelItemProps { + priceState: string; + amountState: string; + totalState: string; + buySellValues: SelectValue[]; + buySellState: SelectValue; + setBuySellState: Dispatch>; + setPriceFunction: (_value: string) => void; + setAmountFunction: (_value: string) => void; + setAlertState: Dispatch>; + setAlertSubtitle: Dispatch>; + setRangeInputValue: Dispatch>; + rangeInputValue: string; + firstCurrencyName: string; + secondCurrencyName: string; + balance: number | undefined; + amountValid: boolean; + priceValid: boolean; + totalValid: boolean; + totalUsd: string | undefined; + scrollToOrderList: () => void; +} + +export default InputPanelItemProps; diff --git a/src/interfaces/props/pages/dex/trading/InputPanelItem/LabeledInputProps.ts b/src/interfaces/props/pages/dex/trading/InputPanelItem/LabeledInputProps.ts new file mode 100644 index 0000000..e506c47 --- /dev/null +++ b/src/interfaces/props/pages/dex/trading/InputPanelItem/LabeledInputProps.ts @@ -0,0 +1,12 @@ +interface LabeledInputProps { + label: string; + value: string; + setValue: (_value: string) => void; + placeholder: string; + currency: string; + usd?: string; + readonly?: boolean; + invalid?: boolean; +} + +export default LabeledInputProps; diff --git a/src/interfaces/props/pages/dex/trading/StatItemProps.ts b/src/interfaces/props/pages/dex/trading/StatItemProps.ts new file mode 100644 index 0000000..cf99aeb --- /dev/null +++ b/src/interfaces/props/pages/dex/trading/StatItemProps.ts @@ -0,0 +1,10 @@ +import { FC } from 'react'; + +interface StatItemProps { + Img: FC; + title: string; + value: string; + coefficient?: number; +} + +export default StatItemProps; diff --git a/src/interfaces/props/pages/p2p/HomeProps.ts b/src/interfaces/props/pages/p2p/HomeProps.ts new file mode 100644 index 0000000..ee0d442 --- /dev/null +++ b/src/interfaces/props/pages/p2p/HomeProps.ts @@ -0,0 +1,7 @@ +import { Stats } from '../../../responses/offers/GetStatsRes'; + +interface HomeProps { + stats: Stats; +} + +export default HomeProps; diff --git a/src/interfaces/props/pages/p2p/components/HomeTable/HomeTableProps.ts b/src/interfaces/props/pages/p2p/components/HomeTable/HomeTableProps.ts new file mode 100644 index 0000000..2d73496 --- /dev/null +++ b/src/interfaces/props/pages/p2p/components/HomeTable/HomeTableProps.ts @@ -0,0 +1,11 @@ +import { Dispatch, SetStateAction } from 'react'; +import OfferData from '../../../../../responses/offers/OfferData'; + +interface HomeTableProps { + preloaderState: boolean; + priceDescending: boolean; + setPriceState: Dispatch>; + offers: OfferData[]; +} + +export default HomeTableProps; diff --git a/src/interfaces/props/pages/p2p/components/Marketplace/MarketplaceProps.ts b/src/interfaces/props/pages/p2p/components/Marketplace/MarketplaceProps.ts new file mode 100644 index 0000000..edd82be --- /dev/null +++ b/src/interfaces/props/pages/p2p/components/Marketplace/MarketplaceProps.ts @@ -0,0 +1,9 @@ +import { Dispatch, SetStateAction } from 'react'; +import OfferData from '../../../../../responses/offers/OfferData'; + +interface MarketplaceProps { + value: OfferData[]; + setValue: Dispatch>; +} + +export default MarketplaceProps; diff --git a/src/interfaces/props/pages/p2p/components/Pagination/PaginationProps.ts b/src/interfaces/props/pages/p2p/components/Pagination/PaginationProps.ts new file mode 100644 index 0000000..4008ea6 --- /dev/null +++ b/src/interfaces/props/pages/p2p/components/Pagination/PaginationProps.ts @@ -0,0 +1,9 @@ +import { Dispatch, SetStateAction } from 'react'; + +interface PaginationProps { + totalPages: number; + value: number; + setValue: Dispatch>; +} + +export default PaginationProps; diff --git a/src/interfaces/props/pages/p2p/process/components/Messenger/MessageProps.ts b/src/interfaces/props/pages/p2p/process/components/Messenger/MessageProps.ts new file mode 100644 index 0000000..fe52cac --- /dev/null +++ b/src/interfaces/props/pages/p2p/process/components/Messenger/MessageProps.ts @@ -0,0 +1,16 @@ +import { Message } from '@/interfaces/responses/chats/GetChatRes'; + +interface MessageProps { + isSender: boolean; + success: boolean; + fail: boolean; + // messageInfo: { + // type: "img" | "text"; + // text?: string; + // url?: string; + // timestamp: string; + // } + messageInfo: Message; +} + +export default MessageProps; diff --git a/src/interfaces/props/pages/p2p/process/components/Messenger/MessengerProps.ts b/src/interfaces/props/pages/p2p/process/components/Messenger/MessengerProps.ts new file mode 100644 index 0000000..ef74554 --- /dev/null +++ b/src/interfaces/props/pages/p2p/process/components/Messenger/MessengerProps.ts @@ -0,0 +1,16 @@ +import { Message } from '@/interfaces/responses/chats/GetChatRes'; +import { Dispatch, SetStateAction } from 'react'; + +interface MessengerProps { + alias: string; + address: string; + isOwner: boolean; + finishState: 'confirmed' | 'canceled' | null; + chatId: string; + value: Message[]; + setValue: Dispatch>; + maxChunks: number; + scrollTrigger: boolean; +} + +export default MessengerProps; diff --git a/src/interfaces/props/pages/p2p/profile/ProfileTable/ProfileTableProps.ts b/src/interfaces/props/pages/p2p/profile/ProfileTable/ProfileTableProps.ts new file mode 100644 index 0000000..58c8e7b --- /dev/null +++ b/src/interfaces/props/pages/p2p/profile/ProfileTable/ProfileTableProps.ts @@ -0,0 +1,10 @@ +import { CategoriesCode } from '@/interfaces/states/pages/p2p/profile/CategoriesState'; +import OffersStateElement from '@/interfaces/states/pages/p2p/profile/OffersState'; + +interface ProfileTableProps { + categoryState: CategoriesCode; + offers: OffersStateElement[]; + preloaderState?: boolean; +} + +export default ProfileTableProps; diff --git a/src/interfaces/props/pages/swap/SwapItemProps.ts b/src/interfaces/props/pages/swap/SwapItemProps.ts new file mode 100644 index 0000000..4e83af1 --- /dev/null +++ b/src/interfaces/props/pages/swap/SwapItemProps.ts @@ -0,0 +1,10 @@ +interface SwapItemProps { + item: { + name: string; + code: string; + rate: string; + coefficient: number; + }; +} + +export default SwapItemProps; diff --git a/src/interfaces/responses/ErrorRes.ts b/src/interfaces/responses/ErrorRes.ts new file mode 100644 index 0000000..4cc3b04 --- /dev/null +++ b/src/interfaces/responses/ErrorRes.ts @@ -0,0 +1,6 @@ +interface ErrorRes { + success: false; + data: string; +} + +export default ErrorRes; diff --git a/src/interfaces/responses/candles/GetCandlesRes.ts b/src/interfaces/responses/candles/GetCandlesRes.ts new file mode 100644 index 0000000..940193d --- /dev/null +++ b/src/interfaces/responses/candles/GetCandlesRes.ts @@ -0,0 +1,8 @@ +import CandleRow from '@/interfaces/common/CandleRow'; + +interface GetCandlesRes { + success: true; + data: CandleRow[]; +} + +export default GetCandlesRes; diff --git a/src/interfaces/responses/chats/GetAllChatsRes.ts b/src/interfaces/responses/chats/GetAllChatsRes.ts new file mode 100644 index 0000000..7c381bc --- /dev/null +++ b/src/interfaces/responses/chats/GetAllChatsRes.ts @@ -0,0 +1,8 @@ +import { UserChatData } from '../user/GetUserRes'; + +interface GetAllChatsRes { + success: true; + data: UserChatData[]; +} + +export default GetAllChatsRes; diff --git a/src/interfaces/responses/chats/GetChatChunkRes.ts b/src/interfaces/responses/chats/GetChatChunkRes.ts new file mode 100644 index 0000000..17ee462 --- /dev/null +++ b/src/interfaces/responses/chats/GetChatChunkRes.ts @@ -0,0 +1,8 @@ +import { Message } from './GetChatRes'; + +interface GetChatChunkRes { + success: true; + data: Message[]; +} + +export default GetChatChunkRes; diff --git a/src/interfaces/responses/chats/GetChatRes.ts b/src/interfaces/responses/chats/GetChatRes.ts new file mode 100644 index 0000000..b5e099b --- /dev/null +++ b/src/interfaces/responses/chats/GetChatRes.ts @@ -0,0 +1,58 @@ +import CurrencyRow from '@/interfaces/common/CurrencyRow'; +import DepositState from '@/interfaces/common/DepositState'; +import OfferType from '@/interfaces/common/OfferType'; +import UserData from '@/interfaces/common/UserData'; + +interface Message { + id: string; + type?: 'img'; + url?: string; + text?: string; + timestamp: string; + fromOwner?: boolean; + success: boolean; + fail: boolean; + system?: boolean; +} + +interface ChatData { + id: string; + user_id: string; + price: number; + min: number; + max: number; + deposit_seller: number; + deposit_buyer: number; + type: OfferType; + input_currency: CurrencyRow; + target_currency: CurrencyRow; + comment: string | null; + number: string; + offer_status: string; + deposit_currency: CurrencyRow; + timestamp: string; + creator_data: UserData; + buyer_data: UserData; + + offer_number: string; + buyer_id: string; + // chat_history: Message[]; + chunk_count: number; + status: string; + pay: number; + receive: number; + owner_deposit: DepositState; + opponent_deposit: DepositState; + view_list: string[]; + + favourite_currencies?: undefined; +} + +interface GetChatRes { + success: true; + data: ChatData; +} + +export default GetChatRes; + +export type { ChatData, Message }; diff --git a/src/interfaces/responses/config/GetConfigRes.ts b/src/interfaces/responses/config/GetConfigRes.ts new file mode 100644 index 0000000..ef35587 --- /dev/null +++ b/src/interfaces/responses/config/GetConfigRes.ts @@ -0,0 +1,16 @@ +import CurrencyRow from '@/interfaces/common/CurrencyRow'; + +interface GetConfigResData { + currencies: CurrencyRow[]; +} + +interface GetConfigRes { + success: true; + data: { + currencies: CurrencyRow[]; + }; +} + +export default GetConfigRes; + +export type { GetConfigResData }; diff --git a/src/interfaces/responses/dex/GetPairRes.ts b/src/interfaces/responses/dex/GetPairRes.ts new file mode 100644 index 0000000..7329816 --- /dev/null +++ b/src/interfaces/responses/dex/GetPairRes.ts @@ -0,0 +1,8 @@ +import PairData from '@/interfaces/common/PairData'; + +interface GetPairRes { + success: true; + data: PairData; +} + +export default GetPairRes; diff --git a/src/interfaces/responses/dex/GetPairsPageRes.ts b/src/interfaces/responses/dex/GetPairsPageRes.ts new file mode 100644 index 0000000..e2f24db --- /dev/null +++ b/src/interfaces/responses/dex/GetPairsPageRes.ts @@ -0,0 +1,8 @@ +import PairData from '@/interfaces/common/PairData'; + +interface GetPairsPageRes { + success: true; + data: PairData[]; +} + +export default GetPairsPageRes; diff --git a/src/interfaces/responses/dex/GetPairsPagesAmountRes.ts b/src/interfaces/responses/dex/GetPairsPagesAmountRes.ts new file mode 100644 index 0000000..a906f2c --- /dev/null +++ b/src/interfaces/responses/dex/GetPairsPagesAmountRes.ts @@ -0,0 +1,4 @@ +export default interface GetPairsPagesAmountRes { + success: true; + data: number; +} diff --git a/src/interfaces/responses/offers/GetPageRes.ts b/src/interfaces/responses/offers/GetPageRes.ts new file mode 100644 index 0000000..b7dc6c9 --- /dev/null +++ b/src/interfaces/responses/offers/GetPageRes.ts @@ -0,0 +1,11 @@ +import OfferData from './OfferData'; + +interface GetPageRes { + success: true; + data: { + pages: number; + offers: OfferData[]; + }; +} + +export default GetPageRes; diff --git a/src/interfaces/responses/offers/GetStatsRes.ts b/src/interfaces/responses/offers/GetStatsRes.ts new file mode 100644 index 0000000..cf6ca0d --- /dev/null +++ b/src/interfaces/responses/offers/GetStatsRes.ts @@ -0,0 +1,15 @@ +interface Stats { + opened: number; + volume_24: number; + volume_7: number; + volume_30: number; +} + +interface GetStatsRes { + success: true; + data: Stats; +} + +export default GetStatsRes; + +export { type Stats }; diff --git a/src/interfaces/responses/offers/OfferData.ts b/src/interfaces/responses/offers/OfferData.ts new file mode 100644 index 0000000..2664961 --- /dev/null +++ b/src/interfaces/responses/offers/OfferData.ts @@ -0,0 +1,23 @@ +import CurrencyRow from '@/interfaces/common/CurrencyRow'; +import OfferType from '@/interfaces/common/OfferType'; + +interface OfferData { + id: string; + alias: string; + address: string; + price: number; + min: number; + max: number; + deposit_seller: number; + deposit_buyer: number; + type: OfferType; + input_currency: CurrencyRow; + target_currency: CurrencyRow; + comment: string | null; + number: string; + offer_status: string; + deposit_currency: CurrencyRow; + timestamp: string; +} + +export default OfferData; diff --git a/src/interfaces/responses/orders/GetChartOrdersRes.ts b/src/interfaces/responses/orders/GetChartOrdersRes.ts new file mode 100644 index 0000000..6153fc6 --- /dev/null +++ b/src/interfaces/responses/orders/GetChartOrdersRes.ts @@ -0,0 +1,8 @@ +import OrderRow from '@/interfaces/common/OrderRow'; + +interface GetChartOrdersRes { + success: true; + data: OrderRow[]; +} + +export default GetChartOrdersRes; diff --git a/src/interfaces/responses/orders/GetOrdersPageRes.ts b/src/interfaces/responses/orders/GetOrdersPageRes.ts new file mode 100644 index 0000000..0dded44 --- /dev/null +++ b/src/interfaces/responses/orders/GetOrdersPageRes.ts @@ -0,0 +1,20 @@ +import PairData from '@/interfaces/common/PairData'; +import UserData from '@/interfaces/common/UserData'; +import OrderRow from '@/interfaces/common/OrderRow'; + +interface PageOrderData extends OrderRow { + user: UserData; +} + +interface OrderDataWithPair extends OrderRow { + pair: PairData; +} + +interface GetOrdersPageRes { + success: true; + data: PageOrderData[]; +} + +export default GetOrdersPageRes; + +export type { PageOrderData, OrderDataWithPair }; diff --git a/src/interfaces/responses/orders/GetPairStatsRes.ts b/src/interfaces/responses/orders/GetPairStatsRes.ts new file mode 100644 index 0000000..6291f4d --- /dev/null +++ b/src/interfaces/responses/orders/GetPairStatsRes.ts @@ -0,0 +1,16 @@ +interface PairStats { + rate: number; + coefficient: number; + high: number; + low: number; + volume: number; +} + +interface GetPairStatsRes { + success: true; + data: PairStats; +} + +export default GetPairStatsRes; + +export type { PairStats }; diff --git a/src/interfaces/responses/orders/GetUserOrdersPageRes.ts b/src/interfaces/responses/orders/GetUserOrdersPageRes.ts new file mode 100644 index 0000000..732a67a --- /dev/null +++ b/src/interfaces/responses/orders/GetUserOrdersPageRes.ts @@ -0,0 +1,12 @@ +import ApplyTip from '@/interfaces/common/ApplyTip'; +import OrderRow from '@/interfaces/common/OrderRow'; + +interface GetUserOrdersPageRes { + success: true; + data: { + orders: OrderRow[]; + applyTips: ApplyTip[]; + }; +} + +export default GetUserOrdersPageRes; diff --git a/src/interfaces/responses/orders/GetUserOrdersRes.ts b/src/interfaces/responses/orders/GetUserOrdersRes.ts new file mode 100644 index 0000000..4ac61ac --- /dev/null +++ b/src/interfaces/responses/orders/GetUserOrdersRes.ts @@ -0,0 +1,27 @@ +import CurrencyRow from '@/interfaces/common/CurrencyRow'; +import OfferType from '@/interfaces/common/OfferType'; + +interface UserOrderData { + id: string; + type: OfferType; + timestamp: string; + side: string; + price: number; + amount: number; + total: number; + pair_id: string; + user_id: string; + status: string; + left: number; + first_currency: CurrencyRow; + second_currency: CurrencyRow; +} + +interface GetUserOrdersRes { + success: true; + data: UserOrderData[]; +} + +export default GetUserOrdersRes; + +export type { UserOrderData }; diff --git a/src/interfaces/responses/user/GetUserRes.ts b/src/interfaces/responses/user/GetUserRes.ts new file mode 100644 index 0000000..42c7cdb --- /dev/null +++ b/src/interfaces/responses/user/GetUserRes.ts @@ -0,0 +1,51 @@ +import UserRow from '@/interfaces/common/UserRow'; +import UserData from '@/interfaces/common/UserData'; +import CurrencyRow from '@/interfaces/common/CurrencyRow'; +import DepositState from '@/interfaces/common/DepositState'; +import OfferType from '@/interfaces/common/OfferType'; +import OfferData from '../offers/OfferData'; + +interface UserChatData { + id: string; + offer_number: string; + status: string; + pay: number; + receive: number; + owner_deposit: DepositState; + opponent_deposit: DepositState; + view_list: string[]; + creator_data: UserData; + buyer_data: UserData; + chat_history?: undefined; + favourite_currencies?: undefined; + user_id?: undefined; + buyer_id?: undefined; + input_currency: CurrencyRow; + target_currency: CurrencyRow; + deposit_currency: CurrencyRow; + price: number; + min: number; + max: number; + deposit_seller: number; + deposit_buyer: number; + type: OfferType; + comment: string | null; + number: string; + offer_status: string; + timestamp: string; +} + +type GetUserResData = UserRow & { + offers: OfferData[]; + chats: UserChatData[]; + exchange_notifications: number; +}; + +interface GetUserRes { + success: true; + data: GetUserResData; +} + +export default GetUserRes; + +export type { UserChatData, GetUserResData }; diff --git a/src/interfaces/states/FiltersState.ts b/src/interfaces/states/FiltersState.ts new file mode 100644 index 0000000..36e34f7 --- /dev/null +++ b/src/interfaces/states/FiltersState.ts @@ -0,0 +1,10 @@ +import CurrencyRow from '../common/CurrencyRow'; + +interface FiltersState { + buyState: boolean; + price: string; + inputCurrency: CurrencyRow | null; + targetCurrency: CurrencyRow | null; +} + +export default FiltersState; diff --git a/src/interfaces/states/pages/dex/trading/CandleChart/CandlesData.ts b/src/interfaces/states/pages/dex/trading/CandleChart/CandlesData.ts new file mode 100644 index 0000000..8185eb9 --- /dev/null +++ b/src/interfaces/states/pages/dex/trading/CandleChart/CandlesData.ts @@ -0,0 +1,11 @@ +interface CandlesData { + start: number; + body: { + blockFirst?: number; + blockSecond?: number; + lineFirst?: number; + lineSecond?: number; + }[]; +} + +export default CandlesData; diff --git a/src/interfaces/states/pages/dex/trading/InputPanelItem/PeriodState.ts b/src/interfaces/states/pages/dex/trading/InputPanelItem/PeriodState.ts new file mode 100644 index 0000000..0c75576 --- /dev/null +++ b/src/interfaces/states/pages/dex/trading/InputPanelItem/PeriodState.ts @@ -0,0 +1,8 @@ +import Period from '@/interfaces/common/Period'; + +interface PeriodState { + name: string; + code: Period; +} + +export default PeriodState; diff --git a/src/interfaces/states/pages/dex/trading/InputPanelItem/SelectValue.ts b/src/interfaces/states/pages/dex/trading/InputPanelItem/SelectValue.ts new file mode 100644 index 0000000..1e6cec0 --- /dev/null +++ b/src/interfaces/states/pages/dex/trading/InputPanelItem/SelectValue.ts @@ -0,0 +1,5 @@ +type SelectValue = { + name: string; + code: string; +}; +export default SelectValue; diff --git a/src/interfaces/states/pages/p2p/profile/CategoriesState.ts b/src/interfaces/states/pages/p2p/profile/CategoriesState.ts new file mode 100644 index 0000000..cdb9cec --- /dev/null +++ b/src/interfaces/states/pages/p2p/profile/CategoriesState.ts @@ -0,0 +1,13 @@ +import HorizontalSelectValue from '@/interfaces/common/HorizontalSelectValue'; + +type CategoriesCode = 'my-offers' | 'chats' | 'active' | 'finished'; + +interface CategoriesState extends HorizontalSelectValue { + notifications: number; + name: 'My offers' | 'Chats' | 'Active' | 'Finished'; + code: CategoriesCode; +} + +export default CategoriesState; + +export { type CategoriesCode }; diff --git a/src/interfaces/states/pages/p2p/profile/FiltersState.ts b/src/interfaces/states/pages/p2p/profile/FiltersState.ts new file mode 100644 index 0000000..3d5132b --- /dev/null +++ b/src/interfaces/states/pages/p2p/profile/FiltersState.ts @@ -0,0 +1,12 @@ +import DateState from '@/interfaces/common/DateState'; + +type BuySell = 'Buy & Sell' | 'Buy' | 'Sell'; + +interface FiltersState { + buySell: BuySell; + date: DateState; +} + +export default FiltersState; + +export type { BuySell }; diff --git a/src/interfaces/states/pages/p2p/profile/OffersState.ts b/src/interfaces/states/pages/p2p/profile/OffersState.ts new file mode 100644 index 0000000..35b0899 --- /dev/null +++ b/src/interfaces/states/pages/p2p/profile/OffersState.ts @@ -0,0 +1,6 @@ +import OfferData from '@/interfaces/responses/offers/OfferData'; +import { UserChatData } from '@/interfaces/responses/user/GetUserRes'; + +type OffersStateElement = OfferData | (UserChatData & { alias: string; address: string }); + +export default OffersStateElement; diff --git a/src/interfaces/wallet/IonicSwap.ts b/src/interfaces/wallet/IonicSwap.ts new file mode 100644 index 0000000..83c2bc1 --- /dev/null +++ b/src/interfaces/wallet/IonicSwap.ts @@ -0,0 +1,9 @@ +interface IonicSwap { + destinationAssetID: string; + destinationAssetAmount: string; + currentAssetID: string; + currentAssetAmount: string; + destinationAddress: string; +} + +export default IonicSwap; diff --git a/src/pages/404.tsx b/src/pages/404.tsx new file mode 100644 index 0000000..ccb728f --- /dev/null +++ b/src/pages/404.tsx @@ -0,0 +1,11 @@ +import styles from '../styles/404.module.scss'; + +function NotFound() { + return ( +
+

404 | Not found

+
+ ); +} + +export default NotFound; diff --git a/src/pages/NotificationPopups.tsx b/src/pages/NotificationPopups.tsx new file mode 100644 index 0000000..72f0c0a --- /dev/null +++ b/src/pages/NotificationPopups.tsx @@ -0,0 +1,75 @@ +import { OrderDataWithPair } from '@/interfaces/responses/orders/GetOrdersPageRes'; +import { Store } from '@/store/store-reducer'; +import socket from '@/utils/socket'; +import { useContext, useEffect, useState } from 'react'; +import styles from '@/styles/NotificationPopups.module.scss'; +import OrderNotification from '@/components/default/OrderNotification/OrderNotification'; +import { nanoid } from 'nanoid'; +import { updateAutoClosedNotification } from '@/store/actions'; + +export default function NotificationPopups() { + const { state, dispatch } = useContext(Store); + + const [notificationOrders, setNotificationOrders] = useState([]); + + useEffect(() => { + const token = sessionStorage.getItem('token'); + + if (token) { + socket.emit('in-dex-notifications', { token }); + + return () => { + socket.emit('out-dex-notifications', { token }); + }; + } + }, [state.user?.address]); + + useEffect(() => { + function onNotify({ orderData }: { orderData: OrderDataWithPair }) { + setNotificationOrders((prev) => [orderData, ...prev].slice(0, 2)); + } + + function onCancel(data: { orderId: number }) { + console.log('cancel', data.orderId, notificationOrders); + + setNotificationOrders((prev) => { + console.log(prev, data.orderId); + + return prev.filter((e) => parseInt(e.id, 10) !== data.orderId); + }); + } + + socket.on('order-notification', onNotify); + socket.on('order-notification-cancelation', onCancel); + + if (state.closed_notifications.length > 0) { + for (const notificationID of state.closed_notifications) { + onCancel({ orderId: notificationID }); + } + + console.log('Closed notifications:', state.closed_notifications); + + updateAutoClosedNotification(dispatch, []); + } + + return () => { + socket.off('order-notification', onNotify); + socket.off('order-notification-cancelation', onCancel); + }; + }, [dispatch, state.user, notificationOrders, state.closed_notifications]); + + return ( + <> +
+ {notificationOrders.map((e, i) => ( + + ))} +
+ + ); +} diff --git a/src/pages/PageHandler.tsx b/src/pages/PageHandler.tsx new file mode 100644 index 0000000..f463dce --- /dev/null +++ b/src/pages/PageHandler.tsx @@ -0,0 +1,91 @@ +import { useContext, useEffect } from 'react'; +import useUpdateUser from '@/hook/useUpdateUser'; +import { Store } from '@/store/store-reducer'; +import { updateAssetsRate, updateConfig } from '@/store/actions'; +import { useRouter } from 'next/router'; +import socket from '@/utils/socket'; +import { GetConfigResData } from '@/interfaces/responses/config/GetConfigRes'; +import { getZanoPrice } from '@/utils/methods'; +import { ZANO_ASSET_ID } from '@/utils/utils'; + +function PageHandler(props: { config: GetConfigResData }) { + const { state, dispatch } = useContext(Store); + const fetchUser = useUpdateUser(); + const router = useRouter(); + + useEffect(() => { + async function authUser() { + if (state.user?.address) return; + + const user = await fetchUser(); + if (user) return; + + if ( + ['/profile', '/process'].includes(`/${router.route.split('/')[2]}`) && + !state.wallet?.connected + ) { + router.push('/p2p'); + } + } + + authUser(); + }, [state.wallet?.connected, router.route]); + + useEffect(() => { + console.log(state); + if (state.user?.id) { + socket.emit('in-account', { + id: state.user?.id, + }); + + socket.on('refresh-request', () => { + fetchUser(); + }); + } + + return () => { + socket.off('refresh-request'); + }; + }, [state.user?.id]); + + useEffect(() => { + if (Object.keys(state.config || {}).length === 0) { + updateConfig(dispatch, props.config); + } + }, []); + + useEffect(() => { + async function fetchAssetsRate() { + let result; + + try { + result = await getZanoPrice(); + } catch { + return; + } + + const zanoUsd = result?.data?.usd; + + if (!result?.success || typeof zanoUsd !== 'number') return; + + const assetsRates = new Map(); + assetsRates.set(ZANO_ASSET_ID, zanoUsd); + + updateAssetsRate(dispatch, assetsRates); + } + + fetchAssetsRate(); + + const intervalId = setInterval(async () => { + await fetchAssetsRate(); + }, 20e3); + + return () => { + clearInterval(intervalId); + }; + }, [dispatch]); + + return <>; +} + +export default PageHandler; diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx new file mode 100644 index 0000000..4f00b40 --- /dev/null +++ b/src/pages/_app.tsx @@ -0,0 +1,85 @@ +import '@/styles/globals.scss'; +import '@/styles/themes/light.scss'; +import Head from 'next/head'; +import { StoreProvider } from '@/store/store-reducer'; +import NextApp, { AppContext, AppProps } from 'next/app'; +import { ThemeProvider } from 'next-themes'; +import GetConfigRes, { GetConfigResData } from '@/interfaces/responses/config/GetConfigRes'; +import inter from '@/utils/font'; +import PageHandler from './PageHandler'; +import NotificationPopups from './NotificationPopups'; + +function App(data: AppProps & { config?: GetConfigResData }) { + const { Component, pageProps } = data; + return ( + <> + + + Zano Trade + + + + + + + + + + + + + + + + + + + + + + + + + ); +} + +App.getInitialProps = async (context: AppContext) => { + try { + const pageProps = await NextApp.getInitialProps(context); + if (!context.ctx.req) return pageProps; + + const { host } = context.ctx.req.headers; + const configData = (await fetch(`http://${host}/api/config`).then((res) => + res.json(), + )) as GetConfigRes; + + return { + ...pageProps, + config: configData.data, + }; + } catch (error) { + console.log( + `Unable to fetch config data from http://${context?.ctx?.req?.headers?.host}/api/config`, + ); + console.log(error); + + return NextApp.getInitialProps(context); + } +}; + +export default App; diff --git a/src/pages/_document.js b/src/pages/_document.js new file mode 100644 index 0000000..7620299 --- /dev/null +++ b/src/pages/_document.js @@ -0,0 +1,15 @@ +import { Html, Head, Main, NextScript } from 'next/document'; + +function Document() { + return ( + + + +
+ + + + ); +} + +export default Document; diff --git a/src/pages/admin/Admins.tsx b/src/pages/admin/Admins.tsx new file mode 100644 index 0000000..86e784e --- /dev/null +++ b/src/pages/admin/Admins.tsx @@ -0,0 +1,80 @@ +import React from 'react'; +import { Table, Button, Form, Input, FormInstance } from 'antd'; +import { ColumnsType } from 'antd/es/table'; +import styles from './styles.module.scss'; + +interface Admin { + alias: string; + isOwner: boolean; + key: number; +} + +interface AdminsProps { + admins: Admin[]; + removeAdmin: (_key: number) => void; + addAdmin: (_values: { alias: string }) => void; + form: FormInstance; +} + +const Admins: React.FC = ({ admins, removeAdmin, addAdmin, form }) => { + const columns: ColumnsType = [ + { + title: 'Alias', + dataIndex: 'alias', + key: 'alias', + }, + { + title: 'Is Owner', + dataIndex: 'isOwner', + key: 'isOwner', + render: (text) => (text ? 'Owner' : 'Admin'), + }, + { + title: 'Action', + key: 'action', + render: (_, record) => ( + + ), + }, + ]; + + return ( +
+

Admins

+
+
+ + + + + + +
+
+ + + + ); +}; + +export default Admins; diff --git a/src/pages/admin/FeaturedPairs.tsx b/src/pages/admin/FeaturedPairs.tsx new file mode 100644 index 0000000..ed27624 --- /dev/null +++ b/src/pages/admin/FeaturedPairs.tsx @@ -0,0 +1,77 @@ +import React from 'react'; +import { Table, Button, Input, Form, FormInstance } from 'antd'; +import { ColumnsType } from 'antd/es/table'; +import styles from './styles.module.scss'; + +interface FeaturedPair { + name: string; + key: number; +} + +interface FeaturedPairsProps { + featuredPairs: FeaturedPair[]; + form: FormInstance; + addFeaturedPair: (_values: { asset_id: string }) => void; + removeFeaturedPair: (_key: number) => void; +} + +const FeaturedPairs: React.FC = ({ + featuredPairs, + form, + addFeaturedPair, + removeFeaturedPair, +}) => { + const columns: ColumnsType = [ + { + title: 'Name', + dataIndex: 'name', + key: 'name', + }, + { + title: 'Action', + key: 'action', + render: (_, record) => ( + + ), + }, + ]; + + return ( +
+

Featured pairs

+
+
+ + + + + + + +
+ +
+ + ); +}; + +export default FeaturedPairs; diff --git a/src/pages/admin/PairStats.tsx b/src/pages/admin/PairStats.tsx new file mode 100644 index 0000000..0690f82 --- /dev/null +++ b/src/pages/admin/PairStats.tsx @@ -0,0 +1,101 @@ +import React from 'react'; +import { Button, Input, Spin, Typography, Checkbox } from 'antd'; +import DateRangeSelector from '@/components/UI/DateRangeSelector/DateRangeSelector'; +import styles from './styles.module.scss'; + +interface DateState { + first: Date | null; + last: Date | null; +} + +interface PairStatsProps { + loading: boolean; + volumeStats: number | null; + selectedAddress: string; + setSelectedAddress: React.Dispatch>; + selectedPairID: string; + setSelectedPairID: React.Dispatch>; + allDates: boolean; + setAllDates: React.Dispatch>; + dateRange: DateState; + setDateRange: React.Dispatch>; + fetchVolumeStats: () => void; +} + +const PairStats: React.FC = ({ + loading, + volumeStats, + selectedAddress, + setSelectedAddress, + selectedPairID, + setSelectedPairID, + allDates, + setAllDates, + dateRange, + setDateRange, + fetchVolumeStats, +}) => ( +
+
+ setSelectedAddress(e.target.value)} + /> + setSelectedPairID(e.target.value)} + /> +
+ +
+
+ +
+ + + +
+ + {volumeStats !== null && ( + + {JSON.stringify(volumeStats, null, 2)} + + )} +
+); + +export default PairStats; diff --git a/src/pages/admin/index.tsx b/src/pages/admin/index.tsx new file mode 100644 index 0000000..1d4c4e8 --- /dev/null +++ b/src/pages/admin/index.tsx @@ -0,0 +1,352 @@ +import { useContext, useEffect, useState } from 'react'; +import { Form, message, Spin } from 'antd'; +import axios from 'axios'; +import Header from '@/components/default/Header/Header'; +import PageTitle from '@/components/default/PageTitle/PageTitle'; + +import ConnectButton from '@/components/UI/ConnectButton/ConnectButton'; +import { Store } from '@/store/store-reducer'; +import styles from './styles.module.scss'; +import PairStats from './PairStats'; +import FeaturedPairs from './FeaturedPairs'; +import Admins from './Admins'; + +interface FeaturedPair { + name: string; + key: number; +} + +interface Admin { + alias: string; + isOwner: boolean; + key: number; +} + +interface DateState { + first: Date | null; + last: Date | null; +} + +interface CurrencyType { + name: string; +} + +interface PairType { + id: string | number; + first_currency: CurrencyType; +} + +const AdminPanel: React.FC = () => { + const [accessAllowed, setAccessAllowed] = useState(null); + const { state } = useContext(Store); + + const [form] = Form.useForm(); + const [adminForm] = Form.useForm(); + const [featuredPairs, setFeaturedPairs] = useState([]); + const [admins, setAdmins] = useState([]); + const [selectedAddress, setSelectedAddress] = useState(''); + const [selectedPairID, setSelectedPairID] = useState(''); + const [dateRange, setDateRange] = useState({ first: null, last: null }); + const [loading, setLoading] = useState(false); + const [volumeStats, setVolumeStats] = useState(null); + const [allDates, setAllDates] = useState(false); + + const fetchFeaturedPairs = async () => { + try { + const response = await axios.post('/api/admin/get-featured', { + token: sessionStorage.getItem('token'), + }); + if (response.data.success) { + setFeaturedPairs( + response.data.data.map((pair: PairType) => ({ + name: pair.first_currency.name, + key: pair.id, + })), + ); + } else { + message.error('Error fetching featured pairs'); + } + } catch (error) { + message.error('Error fetching featured pairs'); + } + }; + + const fetchAdmins = async () => { + try { + const response = await axios.post('/api/admin/get-admins', { + token: sessionStorage.getItem('token'), + }); + if (response.data.success) { + const fetchedAdmins = response.data.data; + setAdmins( + fetchedAdmins.map((admin: {alias: string, isOwner: boolean, id: string}) => ({ + alias: admin.alias, + isOwner: admin.isOwner, + key: admin.id, + })), + ); + } else { + message.error({ + content: 'Failed to fetch admins', + className: styles.message, + }); + } + } catch (error) { + message.error({ + content: 'Error fetching admins', + className: styles.message, + }); + } + }; + + // Add featured pair to the backend + const addFeaturedPair = async (values: { asset_id: string }) => { + try { + const response = await axios.post('/api/admin/add-featured', { + asset_id: values.asset_id, + token: sessionStorage.getItem('token'), + }); + + if (response.data.success) { + fetchFeaturedPairs(); + message.success({ + content: 'Pair added to featured', + className: styles.message, + }); + form.resetFields(); + } else { + message.error({ + content: response.data.message, + className: styles.message, + }); + } + } catch (error) { + message.error('Error adding featured pair'); + } + }; + + // Remove featured pair from the backend + const removeFeaturedPair = async (key: number) => { + try { + const pairToRemove = featuredPairs.find((pair) => pair.key === key); + if (pairToRemove) { + const response = await axios.post('/api/admin/delete-featured', { + token: sessionStorage.getItem('token'), + id: pairToRemove.key, + }); + + if (response.data.success) { + fetchFeaturedPairs(); + message.success({ + content: 'Pair removed from featured', + className: styles.message, + }); + } else { + message.error({ + content: response.data.message, + className: styles.message, + }); + } + } + } catch (error) { + message.error('Error removing featured pair'); + } + }; + + useEffect(() => { + if (!accessAllowed) { + return; + } + + fetchAdmins(); + fetchFeaturedPairs(); + }, [accessAllowed]); + + // Add Admin function + const addAdmin = async (values: { alias: string }) => { + try { + if (admins.some((admin) => admin.alias === values.alias)) { + return message.error({ + content: 'Admin already exists', + className: styles.message, + }); + } + + const { data } = await axios.post('/api/admin/add-admin', { + alias: values.alias, + token: sessionStorage.getItem('token'), + }); + + message[data.success ? 'success' : 'error']({ + content: data.success ? 'Admin added successfully' : data.message, + className: styles.message, + }); + + if (data.success) { + fetchAdmins(); + } + // eslint-disable-next-line @typescript-eslint/no-explicit-any + } catch (error: any) { + message.error({ + content: + error.response?.status === 401 + ? 'Unauthorized: Please log in.' + : 'Error adding admin', + className: styles.message, + }); + console.log(error); + } finally { + adminForm.resetFields(); + } + }; + + // Remove Admin function + const removeAdmin = async (key: number) => { + const adminToRemove = admins.find((admin) => admin.key === key); + if (adminToRemove && adminToRemove.isOwner) { + return; + } + + try { + const response = await axios.post('/api/admin/delete-admin', { + token: sessionStorage.getItem('token'), + id: key, + }); + + if (response.data.success) { + await fetchAdmins(); + message.success({ + content: 'Admin deleted successfully', + className: styles.message, + }); + } else { + message.error({ + content: response.data.message, + className: styles.message, + }); + } + } catch (error) { + message.error({ + content: 'Error deleting admin', + className: styles.message, + }); + } + }; + + const fetchVolumeStats = async () => { + if ( + !selectedAddress || + !selectedPairID || + (allDates ? false : !dateRange.first || !dateRange.last) + ) { + message.error({ + content: 'Please fill in all fields to fetch volume stats', + className: styles.message, + }); + return; + } + + setLoading(true); + try { + const response = await axios.post('/api/dex/volume-stats', { + address: selectedAddress, + pairID: selectedPairID, + from: allDates ? 0 : dateRange?.first?.getTime(), + to: allDates ? 999999999999999 : dateRange?.last?.getTime(), + }); + + setVolumeStats(response.data); + + message.success({ + content: 'Volume stats fetched successfully!', + className: styles.message, + }); + } catch (error) { + console.error(error); + message.error({ + content: 'Failed to fetch volume stats. Please try again', + className: styles.message, + }); + } finally { + setLoading(false); + } + }; + + useEffect(() => { + if (!state?.wallet?.alias) { + return; + } + + axios + .post('/api/admin/check-admin', { + token: sessionStorage.getItem('token'), + }) + .then(async (res) => { + await new Promise((resolve) => setTimeout(resolve, 500)); + setAccessAllowed(res?.data?.success); + }) + .catch((err) => { + console.error(err); + setAccessAllowed(false); + }); + }, [state?.wallet?.alias]); + + if (!state?.wallet?.alias) { + return ( +
+ +
+ ); + } + + if (!accessAllowed) { + return ( + <> +
+
+ + + ); + } + + return ( + <> +
+
+
+ +

Admin panel

+
+ + + + +
+
+ + ); +}; + +export default AdminPanel; diff --git a/src/pages/admin/styles.module.scss b/src/pages/admin/styles.module.scss new file mode 100644 index 0000000..c068c90 --- /dev/null +++ b/src/pages/admin/styles.module.scss @@ -0,0 +1,136 @@ +.admin__connect { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); +} + +.admin { + padding: 40px; + + display: flex; + flex-direction: column; + align-items: center; + + > div { + width: 1400px; + } + + &__subtitle { + margin-top: 40px; + font-size: 32px; + font-weight: 600; + } + + &__form { + margin-top: 20px; + display: flex; + align-items: center; + justify-content: space-between; + + &_input { + width: 500px; + height: 50px; + background: var(--dropdown-bg-color) !important; + color: var(--font-main-color); + border-color: transparent; + + &::placeholder { + color: var(--font-dimmed-color); + } + + &:focus { + background-color: var(--dropdown-bg-color); + } + } + + &_btn { + height: 50px; + width: 200px; + + span { + color: #fff; + } + } + } + + &__table { + margin-top: 20px; + + * { + border-color: var(--admin-table-border-color) !important; + } + + tbody div { + color: var(--font-main-color) !important; + } + + th, + td { + background-color: var(--dropdown-bg-color) !important; + color: var(--font-main-color) !important; + } + + &_btn { + span { + color: #ffffff; + } + } + } + + &__volume { + margin-top: 20px; + + input { + font-size: 16px; + } + + &_form { + margin: 20px 0; + display: flex; + align-items: center; + justify-content: space-between; + gap: 20px; + } + + &_input { + width: 100%; + } + + &_range { + width: 100%; + + &__date { + height: 50px !important; + } + } + + &_btns { + display: flex; + align-items: center; + justify-content: space-between; + + .allDates { + cursor: pointer; + } + } + } +} + +.message { + > div { + background: var(--window-bg-color) !important; + } +} + +.modal { + button span { + color: #000000 !important; + } + + button:last-child { + span { + color: #ffffff !important; + } + } +} diff --git a/src/pages/dex/DexHeader/DexHeader.tsx b/src/pages/dex/DexHeader/DexHeader.tsx new file mode 100644 index 0000000..d996307 --- /dev/null +++ b/src/pages/dex/DexHeader/DexHeader.tsx @@ -0,0 +1,181 @@ +import React, { Dispatch, SetStateAction, useCallback, useState } from 'react'; +import styles from '@/styles/Dex.module.scss'; +import { ReactComponent as SearchLogo } from '@/assets/images/UI/search_icon.svg'; +import { ReactComponent as RefreshIcon } from '@/assets/images/UI/refrash_small_icon.svg'; +import { ReactComponent as InfoSmallIcon } from '@/assets/images/UI/info_outlined.svg'; +import { ReactComponent as DropdownArrowIcon } from '@/assets/images/UI/dropdown_arrow_small.svg'; +import { ReactComponent as FilterIcon } from '@/assets/images/UI/filter_icon.svg'; +import Input from '@/components/UI/Input/Input'; +import { Switch } from '@/components/UI/Switch/Switch'; +import { IconDropdown } from '@/components/UI/IconDropdown/IconDropdown'; +import Dropdown from '@/components/UI/Dropdown/Dropdown'; +import { getPairsPagesAmount } from '@/utils/methods'; +import PairData from '@/interfaces/common/PairData'; +import { PairSortOption } from '@/interfaces/enum/pair'; + +interface IProps { + pairInputState: string; + whitelistedOnly: boolean; + setWhitelistedOnly: Dispatch>; + setPairInputState: Dispatch>; + setLoadedState: Dispatch>; + setPairs: Dispatch>; + setShouldUpdatePairSearch: Dispatch>; + setCurrentPage: Dispatch>; + sortOption: PairSortOption; + setSortOption: Dispatch>; + fetchPairs(): Promise; +} + +const SORT_OPTION = { + VOLUME: { + LOW_TO_HIGH: 'Volume: Low to High', + HIGH_TO_LOW: 'Volume: High to Low', + }, +}; + +const sortOptions = [ + { name: SORT_OPTION.VOLUME.LOW_TO_HIGH, value: PairSortOption.VOLUME_LOW_TO_HIGH }, + { name: SORT_OPTION.VOLUME.HIGH_TO_LOW, value: PairSortOption.VOLUME_HIGH_TO_LOW }, +]; + +function DexHeader({ + pairInputState, + whitelistedOnly, + setWhitelistedOnly, + setCurrentPage, + setShouldUpdatePairSearch, + setPairInputState, + setPairs, + setLoadedState, + setSortOption, + sortOption, + fetchPairs, +}: IProps) { + const [isRefetching, setIsRefetching] = useState(false); + + const updatePairsSearch = useCallback((_pairInputState: string, _whitelistedOnly: boolean) => { + setLoadedState(false); + setPairs([]); + setCurrentPage(1); + setShouldUpdatePairSearch(true); + }, []); + + const handleClickRefetch = async () => { + setIsRefetching(true); + + try { + setCurrentPage(1); + await fetchPairs(); + await getPairsPagesAmount(pairInputState, whitelistedOnly); + } catch (e) { + console.error('Refetch failed:', e); + } finally { + setIsRefetching(false); + setLoadedState(true); + } + }; + + const handleClickSwitch = () => { + const currentState = localStorage.getItem('all_pairs'); + + if (currentState === 'false') { + localStorage.setItem('all_pairs', `true`); + } + + if (currentState === 'true' || !currentState) { + localStorage.setItem('all_pairs', `false`); + } + + setWhitelistedOnly(!whitelistedOnly); + updatePairsSearch(pairInputState, !whitelistedOnly); + }; + + const handleSortChange = (option: PairSortOption) => { + setSortOption(option); + handleClickRefetch(); + }; + + return ( +
+
+
+
+
+ + { + const newInput = e.target.value; + setPairInputState(newInput); + updatePairsSearch(newInput, whitelistedOnly); + }} + /> +
+
+ +
+ +

All pairs

+ +
+
+ +
+ ({ + name: option.name, + value: option.value, + }))} + value={{ + name: sortOptions.find((o) => o.value === sortOption)?.name || '', + }} + setValue={(val) => handleSortChange(val.value as PairSortOption)} + icon={} + className={styles.sort_dropdown} + selfContained + /> + + +
+ + handleSortChange(PairSortOption.VOLUME_LOW_TO_HIGH), + }, + { + content: SORT_OPTION.VOLUME.HIGH_TO_LOW, + onClick: () => handleSortChange(PairSortOption.VOLUME_HIGH_TO_LOW), + }, + ]} + > +
+ +
+
+
+ +
+
+ +

All pairs

+ +
+
+
+ ); +} + +export default DexHeader; diff --git a/src/pages/dex/index.tsx b/src/pages/dex/index.tsx new file mode 100644 index 0000000..bd54072 --- /dev/null +++ b/src/pages/dex/index.tsx @@ -0,0 +1,165 @@ +import styles from '@/styles/Dex.module.scss'; +import Footer from '@/components/default/Footer/Footer'; +import Header from '@/components/default/Header/Header'; +import { ReactComponent as HistoryIcon } from '@/assets/images/UI/history_icon.svg'; +import { useEffect, useRef, useState } from 'react'; +import Button from '@/components/UI/Button/Button'; +import Link from 'next/link'; +import { nanoid } from 'nanoid'; +import MainPageTitle from '@/components/default/MainPageTitle/MainPageTitle'; +import { getPairsPage, getPairsPagesAmount } from '@/utils/methods'; +import ContentPreloader from '@/components/UI/ContentPreloader/ContentPreloader'; +import PairData from '@/interfaces/common/PairData'; +import { useInView } from 'react-intersection-observer'; +import Preloader from '@/components/UI/Preloader/Preloader'; +import { PairSortOption } from '@/interfaces/enum/pair'; +import PairsTable from './pairs/PairsTable/PairsTable'; +import DexHeader from './DexHeader/DexHeader'; +import PairsList from './pairs/PairsList/PairsList'; + +function Dex() { + const fetchIdRef = useRef(nanoid()); + const bottomInView = useRef(false); + + const [pairInputState, setPairInputState] = useState(''); + const [pairs, setPairs] = useState([]); + const [allLoaded, setLoadedState] = useState(false); + const [pagesAmount, setPagesAmount] = useState(); + const [pageLoading, setPageLoading] = useState(false); + const [currentPage, setCurrentPage] = useState(1); + const [whitelistedOnly, setWhitelistedOnly] = useState(true); + const [shouldUpdatePairSearch, setShouldUpdatePairSearch] = useState(true); + const [sortOption, setSortOption] = useState(PairSortOption.VOLUME_HIGH_TO_LOW); + + const { ref: inViewRef, inView } = useInView({ + threshold: 0, + }); + + useEffect(() => { + if (typeof window !== undefined) { + const currentState = localStorage.getItem('all_pairs') ?? ''; + + if (currentState === '' || currentState === 'true') { + setWhitelistedOnly(true); + return; + } + + if (currentState === 'false') { + setWhitelistedOnly(false); + } + } + }, []); + + useEffect(() => { + if (!shouldUpdatePairSearch) return; + getPairsPagesAmount(pairInputState, whitelistedOnly) + .then((result) => { + if (!result.success) throw new Error('Error fetch pages amount'); + setPagesAmount(result.data); + }) + .catch((e) => { + console.error(e); + setPagesAmount((prev) => prev && 1); + }); + }, [pairInputState, whitelistedOnly, shouldUpdatePairSearch]); + + async function fetchPairs() { + const initial = currentPage === 1; + + if (initial) { + setLoadedState(false); + setPageLoading(false); + } else { + setPageLoading(true); + setLoadedState(true); + } + + const newFetchId = nanoid(); + fetchIdRef.current = newFetchId; + const result = await getPairsPage(currentPage, pairInputState, whitelistedOnly, sortOption); + + const fetchId = fetchIdRef.current; + if (fetchId !== newFetchId) return; + if (!result.success) return; + + if (initial) { + setPairs(result.data); + } else { + setPairs((prev) => [ + ...prev, + ...result.data.filter((e) => !prev.some((prevEl) => prevEl.id === e.id)), + ]); + } + + if (initial) { + setLoadedState(true); + } else { + setPageLoading(false); + } + + if (bottomInView.current && pagesAmount && currentPage < pagesAmount) { + setCurrentPage((prev) => prev + 1); + } + } + + useEffect(() => { + fetchPairs(); + }, [currentPage, pairInputState, whitelistedOnly, pagesAmount, sortOption]); + + useEffect(() => { + if (inView && allLoaded && !pageLoading && pagesAmount && currentPage < pagesAmount) { + setCurrentPage((prev) => prev + 1); + } + }, [inView, allLoaded, pageLoading, pagesAmount, currentPage]); + + return ( + <> +
+
+ + + + + + +
+ + {allLoaded ? ( + <> + + + + ) : ( + + )} +
{pageLoading && }
+
+
+
+ + ); +} + +export default Dex; diff --git a/src/pages/dex/orders/OrdersTable/OrdersTable.module.scss b/src/pages/dex/orders/OrdersTable/OrdersTable.module.scss new file mode 100644 index 0000000..63b1ac4 --- /dev/null +++ b/src/pages/dex/orders/OrdersTable/OrdersTable.module.scss @@ -0,0 +1,247 @@ +.table { + display: flex; + flex-direction: column; + + > thead { + width: 100%; + + > tr { + width: 100%; + padding: 10px 20px; + display: flex; + background-color: var(--table-thead-bg); + border-top-left-radius: 10px; + border-top-right-radius: 10px; + + > th { + width: 100%; + text-align: start; + + @media screen and (max-width: 1600px) { + &:first-child { + max-width: 140px; + } + + &:nth-child(4) { + max-width: 120px; + } + } + + a { + font-weight: 700; + font-size: 14px; + color: var(--table-th-color); + } + } + } + } + + > tbody { + width: 100%; + + > tr { + width: 100%; + padding: 20px; + display: flex; + gap: 20px; + border-bottom: 1px solid var(--delimiter-color); + background-color: var(--table-tbody-bg); + + &:last-child { + border-bottom: none; + border-bottom-left-radius: 10px; + border-bottom-right-radius: 10px; + } + + > td { + min-width: 0; + width: 100%; + display: flex; + align-items: center; + position: relative; + margin-left: -20px; + + &:first-child { + margin-left: 0; + } + + .table__tooltip { + position: absolute; + top: calc(100% + 5px); + left: 50%; + transform: translateX(-50%); + } + + > p { + width: 100%; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + + .price { + display: block; + margin-top: 6px; + opacity: 70%; + font-weight: 400; + font-size: 14px; + } + } + + @media screen and (max-width: 1600px) { + &:first-child { + max-width: 140px; + } + + &:nth-child(4) { + max-width: 120px; + } + } + + .type__marker { + width: 58px; + height: 30px; + border: 2px solid white; + border-radius: 50px; + display: flex; + align-items: center; + justify-content: center; + + h6 { + font-size: 14px; + font-weight: 400; + } + + &.marker__buy { + border-color: #16d1d6; + + h6 { + color: #16d1d6; + } + } + + &.marker__sell { + border-color: #ff6767; + + h6 { + color: #ff6767; + } + } + } + + .delete__button { + height: 54px; + width: 54px; + padding: 0; + background: var(--dimmed-btn-bg); + + &:hover { + background: var(--dimmed-btn-hover); + } + } + + .table__header__mobile { + display: none; + } + + &.table__delete { + justify-content: flex-end; + } + } + } + } + + @media screen and (max-width: 1500px) { + > thead { + display: none; + + td { + max-width: none !important; + } + } + + > tbody { + > tr { + display: flex; + flex-wrap: wrap; + justify-content: space-between; + gap: 20px; + position: relative; + + &:first-child { + border-top-left-radius: 10px; + border-top-right-radius: 10px; + } + + > td { + margin-left: 0; + width: auto; + flex-direction: column; + align-items: flex-start; + max-width: none !important; + gap: 15px; + + .table__header__mobile { + display: block; + color: var(--font-dimmed-color); + font-weight: 700; + } + + &:first-child { + width: 100%; + } + + &:nth-child(2) { + width: auto; + position: absolute; + left: 140px; + + p { + text-align: center; + } + + @media screen and (max-width: 400px) { + left: 120px; + } + + @media screen and (max-width: 350px) { + left: 100px; + } + } + + &.table__delete { + width: auto; + position: absolute; + right: 20px; + + button { + height: 40px !important; + width: 40px !important; + + img { + scale: 0.8; + } + } + } + + h6 { + color: var(--font-dimmed-color); + } + } + } + } + } +} + +.orders__table__message { + width: 100%; + height: 500px; + display: flex; + flex-direction: column; + gap: 20px; + justify-content: center; + align-items: center; + + p { + color: var(--font-dimmed-color); + } +} diff --git a/src/pages/dex/orders/OrdersTable/OrdersTable.tsx b/src/pages/dex/orders/OrdersTable/OrdersTable.tsx new file mode 100644 index 0000000..4406de9 --- /dev/null +++ b/src/pages/dex/orders/OrdersTable/OrdersTable.tsx @@ -0,0 +1,209 @@ +import { nanoid } from 'nanoid'; +import Button from '@/components/UI/Button/Button'; +import { ReactComponent as DeleteIcon } from '@/assets/images/UI/delete.svg'; +import { ReactComponent as NoOffersIcon } from '@/assets/images/UI/no_offers.svg'; +import EmptyLink from '@/components/UI/EmptyLink/EmptyLink'; +import { notationToString, toStandardDateString } from '@/utils/utils'; +import { cancelOrder, getUserOrders, } from '@/utils/methods'; +import OrdersTableProps from '@/interfaces/props/pages/dex/orders/OrdersTable/OrdersTableProps'; +import { UserOrderData } from '@/interfaces/responses/orders/GetUserOrdersRes'; +import Decimal from 'decimal.js'; +import Tooltip from '@/components/UI/Tooltip/Tooltip'; +import { useState } from 'react'; +import styles from './OrdersTable.module.scss'; + +function OrdersTable(props: OrdersTableProps) { + const orders = props.value || []; + + const { setAlertState, setAlertSubtitle, setOrders, category } = props; + + const isActive = category === 'active-orders'; + + function Row(props: { orderData: UserOrderData }) { + const { orderData } = props; + + const firstCurrencyName = orderData?.first_currency?.name || ''; + const secondCurrencyName = orderData?.second_currency?.name || ''; + + const timestampDate = new Date(parseInt(orderData.timestamp, 10)); + + async function deleteOrder() { + setAlertState('loading'); + setAlertSubtitle('Canceling order...'); + const result = await cancelOrder(orderData.id); + + if (result.success) { + setAlertState('success'); + setAlertSubtitle('Order canceled'); + } else { + setAlertState('error'); + setAlertSubtitle('Error canceling order'); + } + + setTimeout(() => { + setAlertState(null); + setAlertSubtitle(''); + }, 2000); + + const { success, data } = await getUserOrders(); + + if (success) { + setOrders(data); + } + } + + const amount = ( + isActive + ? new Decimal(orderData.amount) + : new Decimal(orderData.amount).minus(orderData.left) + ).toString(); + const total = ( + isActive + ? new Decimal(orderData.total) + : new Decimal(orderData.amount).minus(orderData.left).mul(orderData.price) + ).toString(); + + function CurrencyTableData({ + header, + value, + currency, + price, + }: { + header: string; + value: string; + currency: string; + price: string; + }) { + const [textHovered, setTextHovered] = useState(false); + + const displayText = `${value} ${currency}`; + + const needTooltip = displayText.length > 15; + + return ( +
+ ); + } + + return ( + + + + + + + + + + {isActive && ( + + )} + + ); + } + + return ( +
+
+ {header} +

setTextHovered(true)} + onMouseLeave={() => setTextHovered(false)} + > + {displayText} + + ~ ${price} +

+ {needTooltip && ( + + {displayText} + + )} +
+
+
{orderData.type === 'buy' ? 'Buy' : 'Sell'}
+
+
+

+ {toStandardDateString(timestampDate)} +
+ {timestampDate.toLocaleTimeString('eu-EU')} +

+
+ Pair +

+ {firstCurrencyName}/{secondCurrencyName} +

+
+ Side +

{orderData.side === 'limit' ? 'Limit' : 'Market'}

+
+ +
+ + + + + + + + + + {isActive && } + + + + {orders.map((e) => ( + + ))} + +
+ Type + + Date + + Pairs + + Side + + Price + + Amount + + Total +
+ + {!orders.length && ( +
+ +

No orders

+
+ )} +
+ ); +} + +export default OrdersTable; diff --git a/src/pages/dex/orders/index.tsx b/src/pages/dex/orders/index.tsx new file mode 100644 index 0000000..915842a --- /dev/null +++ b/src/pages/dex/orders/index.tsx @@ -0,0 +1,269 @@ +import styles from '@/styles/Orders.module.scss'; +import Header from '@/components/default/Header/Header'; +import Footer from '@/components/default/Footer/Footer'; +import PageTitle from '@/components/default/PageTitle/PageTitle'; +import HorizontalSelect from '@/components/UI/HorizontalSelect/HorizontalSelect'; +import { useEffect, useState } from 'react'; +import Dropdown from '@/components/UI/Dropdown/Dropdown'; +import DateRangeSelector from '@/components/UI/DateRangeSelector/DateRangeSelector'; +import Button from '@/components/UI/Button/Button'; +import { cancelOrder, getUserOrders } from '@/utils/methods'; +import Alert from '@/components/UI/Alert/Alert'; +import AlertType from '@/interfaces/common/AlertType'; +import { UserOrderData } from '@/interfaces/responses/orders/GetUserOrdersRes'; +import PairValue from '@/interfaces/props/pages/dex/orders/PairValue'; +import DateState from '@/interfaces/common/DateState'; +import useUpdateUser from '@/hook/useUpdateUser'; +import OrdersTable from './OrdersTable/OrdersTable'; + +function Orders() { + const fetchUser = useUpdateUser(); + + const ordersCategories = [ + { + name: 'Active orders', + code: 'active-orders', + }, + { + name: 'Finished', + code: 'history', + }, + ]; + + const buySellValues = [ + { + name: 'Buy & Sell', + }, + { + name: 'Buy', + }, + { + name: 'Sell', + }, + ]; + + const [pairsValues, setPairsValues] = useState([{ name: 'All pairs', code: '' }]); + + const [pairDropdownValue, setPairDropdownState] = useState(pairsValues[0]); + + const [buyDropdownValue, setBuyDropdownState] = useState(buySellValues[0]); + + const [categoryState, setCategoryState] = useState(ordersCategories[0]); + + const [alertState, setAlertState] = useState(null); + + const [alertSubtitle, setAlertSubtitle] = useState(''); + + const [dateRange, setDateRange] = useState({ + first: null, + last: null, + }); + + const [orders, setOrders] = useState([]); + + useEffect(() => { + async function getOrders() { + setAlertState('loading'); + setAlertSubtitle('Loading orders data...'); + + const result = await getUserOrders(); + + if (!result.success) { + setAlertState('error'); + setAlertSubtitle('Error loading orders data'); + await new Promise((resolve) => setTimeout(resolve, 2000)); + setAlertState(null); + setAlertSubtitle(''); + return; + } + + fetchUser(); + + setOrders(result.data); + + function getPairsFromOrders(orders: UserOrderData[]) { + const pairs = [ + { + code: '', + name: 'All pairs', + }, + ]; + + for (let i = 0; i < orders.length; i++) { + const pair = { + name: `${orders[i].first_currency.name}/${orders[i].second_currency.name}`, + code: orders[i].pair_id, + }; + + if (!pairs.find((e) => e.code === pair.code)) pairs.push(pair); + } + + return pairs; + } + + const pairs = getPairsFromOrders(result.data); + + setPairsValues(pairs); + setPairDropdownState(pairs[0]); + + setAlertState(null); + setAlertSubtitle(''); + + const { success, data } = await getUserOrders(); + + if (success) { + setOrders(data); + } + } + + getOrders(); + }, []); + + function buySellFilter(e: UserOrderData) { + if (buyDropdownValue.name === 'Buy & Sell') return true; + + if (buyDropdownValue.name === 'Buy') return e.type === 'buy'; + + if (buyDropdownValue.name === 'Sell') return e.type === 'sell'; + } + + function pairFilter(e: UserOrderData) { + if (!pairDropdownValue) return true; + + return !pairDropdownValue.code || e.pair_id === pairDropdownValue.code; + } + + function dateFilter(e: UserOrderData) { + if (!dateRange.first || !dateRange.last) return true; + const firstDate = new Date(dateRange.first); + const lastDate = new Date(dateRange.last); + + const timestamp = parseInt(e.timestamp, 10); + + firstDate.setHours(0, 0, 0, 0); + lastDate.setHours(24, 0, 0, 0); + + if (!dateRange.first && !dateRange.last) return true; + + if (dateRange.first && !dateRange.last) return timestamp >= firstDate.getTime(); + + if (!dateRange.first && dateRange.last) return timestamp <= lastDate.getTime(); + + return timestamp >= firstDate.getTime() && timestamp <= lastDate.getTime(); + } + + function categoryFilter(e: UserOrderData) { + if (categoryState.code === 'active-orders') { + return e.status === 'active'; + } + return e.status === 'finished'; + } + + const activeOrders = orders.filter((e) => e.status === 'active'); + + async function cancelAllOrders() { + setAlertState('loading'); + setAlertSubtitle('Canceling all orders...'); + + const results = await Promise.allSettled( + activeOrders.map(async (e) => { + await cancelOrder(e.id); + }), + ); + + if (results.some((e) => e.status === 'rejected')) { + setAlertState('error'); + setAlertSubtitle('Some of the orders were not canceled'); + } else { + setAlertState('success'); + setAlertSubtitle('All orders canceled'); + } + + setTimeout(() => { + setAlertState(null); + setAlertSubtitle(''); + }, 2000); + + const { success, data } = await getUserOrders(); + + if (success) { + setOrders(data); + } + } + + return ( + <> +
+
+ +
+

My Trade Orders

+

Check all the offers you have

+
+
+
+
+ + +
+
+ { + setPairDropdownState(e); + }} + body={pairsValues} + /> + { + setBuyDropdownState(e); + }} + body={buySellValues} + /> + +
+ + +
+
+ + +
+ {alertState && ( + setAlertState(null)} + /> + )} +
+
+ + ); +} + +export default Orders; diff --git a/src/pages/dex/pairs/PairsCard/PairsCard.module.scss b/src/pages/dex/pairs/PairsCard/PairsCard.module.scss new file mode 100644 index 0000000..a9cefff --- /dev/null +++ b/src/pages/dex/pairs/PairsCard/PairsCard.module.scss @@ -0,0 +1,131 @@ +.card { + display: flex; + flex-direction: column; + + .card__header { + padding: 10px 12px; + display: flex; + flex-direction: row; + gap: 8px; + + border-top-left-radius: 10px; + border-top-right-radius: 10px; + background-color: var(--table-header-bg); + + .currency_name { + display: flex; + align-items: center; + flex-direction: row; + + font-size: 16px; + font-weight: 500; + + span:nth-child(3) { + color: var(--table-header-font-color); + } + } + + > img { + width: 18px; + height: 18px; + background: var(--icon-bg-color); + border-radius: 50%; + } + } + + .card__body { + padding: 10px 12px; + background-color: var(--table-bg-color); + border-bottom-left-radius: 10px; + border-bottom-right-radius: 10px; + + .card__body_wrapper { + display: flex; + flex-direction: row; + gap: 24px; + justify-content: space-between; + } + + .card__body_row { + display: flex; + flex-direction: row; + justify-content: space-between; + gap: 47px; + } + + .card__body_column { + display: flex; + flex-direction: column; + gap: 4px; + + p { + font-size: 12px; + font-weight: 700; + opacity: 0.8; + } + + .card__body_column_content { + display: flex; + flex-direction: column; + gap: 3px; + + .card__body_column_price { + span:nth-child(1) { + font-size: 14px; + font-weight: 400; + color: var(--font-main-color); + } + + span:nth-child(2) { + font-size: 14px; + font-weight: 500; + } + } + + span:nth-child(1) { + font-size: 14px; + font-weight: 400; + color: var(--font-main-color); + } + + span:nth-child(2) { + font-size: 12px; + font-weight: 400; + color: var(--table-header-font-color); + } + } + } + } + + .card__button_wrapper { + display: flex; + align-items: end; + + .card__button { + border-radius: 8px; + background-color: transparent; + transition: background 0.2s; + cursor: pointer; + border: 2px solid rgba(31, 143, 235, 1); + height: 24px; + width: 24px; + display: flex; + align-items: center; + justify-content: center; + + svg:not(.stroked) * { + fill: transparent; + } + + svg { + path { + stroke: var(--font-main-color); + } + } + + &:hover { + background-color: var(--table-button-bg-hover); + } + } + } +} diff --git a/src/pages/dex/pairs/PairsCard/PairsCard.tsx b/src/pages/dex/pairs/PairsCard/PairsCard.tsx new file mode 100644 index 0000000..b226470 --- /dev/null +++ b/src/pages/dex/pairs/PairsCard/PairsCard.tsx @@ -0,0 +1,108 @@ +import { useContext } from 'react'; +import Image from 'next/image'; +import { useRouter } from 'next/router'; +import { ReactComponent as ArrowRight } from '@/assets/images/UI/arrow_right.svg'; +import { Store } from '@/store/store-reducer'; +import PairData from '@/interfaces/common/PairData'; +import { notationToString, roundTo, tradingKnownCurrencies } from '@/utils/utils'; +import styles from './PairsCard.module.scss'; + +interface IProps { + pair: PairData; +} + +export default function PairsCard({ pair }: IProps) { + const router = useRouter(); + const { state } = useContext(Store); + + const firstCurrency = pair.first_currency; + const secondCurrency = pair.second_currency; + + const isFeatured = pair.featured; + + const code = tradingKnownCurrencies.includes(firstCurrency?.code) + ? secondCurrency?.code + : 'tsds'; + + const secondAssetUsdPrice = state.assetsRates.get(secondCurrency.asset_id || '') ?? 0; + + const price = Number(roundTo(notationToString(pair.rate ?? 0))); + const currentPriceUSD = secondAssetUsdPrice ? price : 0; + const priceUSD = currentPriceUSD + ? String(`$${(secondAssetUsdPrice * price).toFixed(2)}`) + : String(`$${(secondAssetUsdPrice * price).toFixed(0)}`); + + const coefficient = pair?.coefficient || 0; + const coefficientOutput = + parseFloat(coefficient?.toFixed(2) || '0') === -100 + ? -99.99 + : parseFloat(coefficient?.toFixed(2) || '0'); + + const volume = Number(roundTo(notationToString(pair.volume ?? 0))); + const currentVolumeUSD = secondAssetUsdPrice ? volume : 0; + const volumeUSD = currentVolumeUSD + ? String(`$${(secondAssetUsdPrice * volume).toFixed(2)}`) + : String(`$${(secondAssetUsdPrice * volume).toFixed(0)}`); + + const handleClick = () => { + router.push(`/dex/trading/${pair.id}`); + }; + + return ( +
+
+ currency +
+ {firstCurrency.name} + / + {secondCurrency.name} +
+ {isFeatured && ( + featured + )} +
+
+
+
+
+

+ {`Price ${secondCurrency.name ? `(${secondCurrency.name})` : ''}`}{' '} +

+
+
+ {price} + = 0 ? '#16D1D6' : '#FF6767' }} + > + {' '} + {coefficient >= 0 ? '+' : ''} + {coefficientOutput}% + +
+ {priceUSD} +
+
+
+

24h Volume

+
+ {volume} + {volumeUSD} +
+
+
+ +
+ +
+
+
+
+ ); +} diff --git a/src/pages/dex/pairs/PairsList/PairsList.module.scss b/src/pages/dex/pairs/PairsList/PairsList.module.scss new file mode 100644 index 0000000..917f0b1 --- /dev/null +++ b/src/pages/dex/pairs/PairsList/PairsList.module.scss @@ -0,0 +1,10 @@ +.list { + display: none; + flex-direction: column; + gap: 15px; + width: 100%; + + @media screen and (max-width: 865px) { + display: flex; + } +} diff --git a/src/pages/dex/pairs/PairsList/PairsList.tsx b/src/pages/dex/pairs/PairsList/PairsList.tsx new file mode 100644 index 0000000..917f4fc --- /dev/null +++ b/src/pages/dex/pairs/PairsList/PairsList.tsx @@ -0,0 +1,18 @@ +import React from 'react'; +import PairData from '@/interfaces/common/PairData'; +import styles from './PairsList.module.scss'; +import PairsCard from '../PairsCard/PairsCard'; + +interface IProps { + data: PairData[]; +} + +export default function PairsList({ data }: IProps) { + return ( +
+ {data.map((pair) => ( + + ))} +
+ ); +} diff --git a/src/pages/dex/pairs/PairsTable/PairsTable.module.scss b/src/pages/dex/pairs/PairsTable/PairsTable.module.scss new file mode 100644 index 0000000..cc53eb1 --- /dev/null +++ b/src/pages/dex/pairs/PairsTable/PairsTable.module.scss @@ -0,0 +1,142 @@ +$table-radius: 10px; + +.table { + width: 100%; + font-size: 14px; + color: white; + border-spacing: 0 1px; + + thead { + background-color: var(--table-header-bg); + } + + @media screen and (max-width: 865px) { + display: none; + } +} + +.header_row { + color: var(--table-header-font-color); + text-align: left; + opacity: 0.8; + user-select: none; + + th { + font-size: 14px; + + &:first-child { + border-top-left-radius: $table-radius; + } + + &:last-child { + border-top-right-radius: $table-radius; + } + } +} + +.header_column_row { + display: flex; + align-items: center; + gap: 8px; + + font-size: 14px; + + svg { + g { + path { + fill-opacity: 0.9; + } + } + } +} + +.header_cell { + padding: 10px 20px; + height: 40px; + border: none; + min-height: 40px; +} + +.body_row { + background-color: var(--table-bg-color); + border-top-right-radius: $table-radius; +} + +.body_cell { + padding: 15px 20px; + border-bottom: 1px solid var(--delimiter-color); +} + +.coefficient_cell { + font-size: 16px; + font-weight: 500; +} + +.pair_cell { + display: flex; + align-items: center; + gap: 8px; + + .currency_name { + display: flex; + align-items: center; + + font-size: 16px; + font-weight: 500; + + max-width: 150px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + display: inline-block; + + span:nth-child(3) { + color: var(--table-header-font-color); + } + } + + > img { + width: 18px; + height: 18px; + background: var(--icon-bg-color); + border-radius: 50%; + } +} + +.price_cell { + display: flex; + flex-direction: column; + gap: '3px'; + + .text { + font-size: 16px; + font-weight: 400; + color: var(--font-main-color); + } + + .sub_text { + font-size: 12px; + font-weight: 400; + color: var(--table-header-font-color); + } +} + +.button_cell { + display: flex; + justify-content: flex-end; + + .trade_button { + background-color: transparent; + color: var(--font-main-color); + padding: 10px 40px; + border-radius: 10px; + transition: background 0.2s; + cursor: pointer; + border: 2px solid rgba(31, 143, 235, 1); + user-select: none; + + &:hover { + background-color: var(--table-button-bg-hover); + } + } +} diff --git a/src/pages/dex/pairs/PairsTable/PairsTable.tsx b/src/pages/dex/pairs/PairsTable/PairsTable.tsx new file mode 100644 index 0000000..7e13a10 --- /dev/null +++ b/src/pages/dex/pairs/PairsTable/PairsTable.tsx @@ -0,0 +1,226 @@ +import { memo, useContext, useMemo } from 'react'; +import { ColumnDef, flexRender, getCoreRowModel, useReactTable } from '@tanstack/react-table'; +import { useRouter } from 'next/router'; +import Image from 'next/image'; +import { ReactComponent as ClockIcon } from '@/assets/images/UI/clock_icon.svg'; +import { Store } from '@/store/store-reducer'; +import PairData from '@/interfaces/common/PairData'; +import { ContextState } from '@/interfaces/common/ContextValue'; +import { tradingKnownCurrencies, roundTo, notationToString } from '@/utils/utils'; +import styles from './PairsTable.module.scss'; + +type Currency = { + code: string; + name: string; + whitelisted?: boolean; + featured?: boolean; +}; + +type Row = { + id: string; + pair: { + base: Currency; + quote: Currency; + }; + price: number; + priceUSD: string; + change: number; + volume: number; + volumeUSD: string; + featured: boolean; + code: string; +}; + +function transformPairsToRows(pairs: PairData[], state: ContextState): Row[] { + return pairs.map((pair) => { + const secondAssetUsdPrice = state.assetsRates.get(pair.second_currency.asset_id || '') ?? 0; + + const price = Number(roundTo(notationToString(pair.rate ?? 0))); + const currentPriceUSD = secondAssetUsdPrice ? price : 0; + const priceUSD = currentPriceUSD + ? String(`$${(secondAssetUsdPrice * price).toFixed(2)}`) + : String(`$${(secondAssetUsdPrice * price).toFixed(0)}`); + + const volume = Number(roundTo(notationToString(pair.volume ?? 0))); + const currentVolumeUSD = secondAssetUsdPrice ? volume : 0; + const volumeUSD = currentVolumeUSD + ? String(`$${(secondAssetUsdPrice * volume).toFixed(2)}`) + : String(`$${(secondAssetUsdPrice * volume).toFixed(0)}`); + + return { + id: pair.id, + pair: { + base: pair.first_currency, + quote: pair.second_currency, + }, + price, + priceUSD, + change: pair?.coefficient || 0, + volume, + volumeUSD, + featured: pair.featured, + code: tradingKnownCurrencies.includes(pair.first_currency?.code) + ? pair.first_currency?.code + : 'tsds', + }; + }); +} + +interface IProps { + data: PairData[]; +} + +function PairsTable({ data }: IProps) { + const router = useRouter(); + const { state } = useContext(Store); + + const columns = useMemo[]>( + () => [ + { + accessorKey: 'pair', + header: 'Trading Pair', + cell: ({ row }) => { + const { + pair: { base, quote }, + code, + featured, + } = row.original; + return ( +
+ currency +
+ {base.name} + / + {quote.name} +
+ + {featured && ( + featured + )} +
+ ); + }, + }, + { + accessorKey: 'price', + header: ({ table }) => { + const row = table.options.data[0] as Row; + const name = row?.pair.quote.name; + + return `Price ${name ? `(${name})` : ''}`; + }, + cell: ({ row }) => ( +
+
+ {roundTo(notationToString(row.original.price))} +
+
{row.original.priceUSD}
+
+ ), + }, + { + accessorKey: 'change', + header: () => ( +
+ + 24h Change +
+ ), + cell: ({ row }) => { + const coefficient = row.original.change; + const coefficientOutput = + parseFloat(coefficient?.toFixed(2) || '0') === -100 + ? -99.99 + : parseFloat(coefficient?.toFixed(2) || '0'); + + return ( + = 0 ? '#16D1D6' : '#FF6767' }} + > + {coefficient >= 0 ? '+' : ''} + {coefficientOutput}% + + ); + }, + }, + { + accessorKey: 'volume', + header: () => ( +
+ + 24h Volume +
+ ), + cell: ({ row }) => ( +
+
+ {roundTo(notationToString(row.original?.volume ?? 0), 8)} +
+
{row.original.volumeUSD}
+
+ ), + }, + { + id: 'action', + header: '', + cell: ({ row }) => ( +
+ +
+ ), + }, + ], + [], + ); + + const table = useReactTable({ + data: transformPairsToRows(data, state), + columns, + getCoreRowModel: getCoreRowModel(), + }); + + return ( + + + {table.getHeaderGroups().map((headerGroup) => ( + + {headerGroup.headers.map((header) => ( + + ))} + + ))} + + + {table.getRowModel().rows.map((row) => ( + + {row.getVisibleCells().map((cell) => ( + + ))} + + ))} + +
+ {flexRender(header.column.columnDef.header, header.getContext())} +
+ {flexRender(cell.column.columnDef.cell, cell.getContext())} +
+ ); +} + +export default memo(PairsTable); diff --git a/src/pages/dex/trading/CandleChart/CandleChart.module.scss b/src/pages/dex/trading/CandleChart/CandleChart.module.scss new file mode 100644 index 0000000..447d07f --- /dev/null +++ b/src/pages/dex/trading/CandleChart/CandleChart.module.scss @@ -0,0 +1,32 @@ +.candle__chart__wrapper { + position: relative; + width: auto; + height: auto; + height: 100%; + + height: 515px; + + > canvas { + width: 100%; + height: 100%; + cursor: crosshair; + } + + h1 { + font-size: 72px; + color: var(--font-dimmed-color); + white-space: nowrap; + position: absolute; + transform: translate(-50%, -50%); + top: 50%; + left: 50%; + + @media screen and (max-width: 600px) { + font-size: 48px; + } + + @media screen and (max-width: 400px) { + font-size: 36px; + } + } +} diff --git a/src/pages/dex/trading/CandleChart/CandleChart.tsx b/src/pages/dex/trading/CandleChart/CandleChart.tsx new file mode 100644 index 0000000..9a261ec --- /dev/null +++ b/src/pages/dex/trading/CandleChart/CandleChart.tsx @@ -0,0 +1,235 @@ +import { useEffect, useState, useRef, useMemo } from 'react'; +import useAdvancedTheme from '@/hook/useTheme'; +import CandleChartProps from '@/interfaces/props/pages/dex/trading/CandleChartProps/CandleChartProps'; +import ReactECharts from 'echarts-for-react'; +import Decimal from 'decimal.js'; +import * as echarts from 'echarts'; +import CandleRow from '@/interfaces/common/CandleRow'; +import testCandles from './testCandles.json'; +import styles from './CandleChart.module.scss'; + +const TESTING_MODE = false; + +function CandleChart(props: CandleChartProps) { + type ResultCandle = [number, number, number, number, number]; + + const { theme } = useAdvancedTheme(); + const chartRef = useRef(null); + const upColor = '#16D1D6cc'; + const upBorderColor = '#16D1D6cc'; + const downColor = '#ff6767cc'; + const downBorderColor = '#ff6767cc'; + + const [candles, setCandles] = useState([]); + const [isLoaded, setIsLoaded] = useState(false); + + function timestampToString(timestamp: string) { + const targetPattern = + new Date(parseInt(timestamp, 10)).toDateString() === new Date().toDateString() + ? 'hh:mm:ss' + : 'hh:mm:ss\ndd-MM-yyyy'; + + return echarts.format.formatTime(targetPattern, parseInt(timestamp, 10)); + } + + function prepareCandles() { + const candles = (TESTING_MODE ? (testCandles as CandleRow[]) : props.candles) + .map((candle) => { + const result = [ + parseInt(candle.timestamp, 10), + candle.shadow_top || 0, + candle.shadow_bottom || 0, + candle.body_first || 0, + candle.body_second || 0, + ]; + + return result as ResultCandle; + }) + .filter((e) => e[0]) + .map((e) => { + const decimals = e.map((el, i) => ({ + value: i !== 0 ? new Decimal(el) : undefined, + index: i, + })); + + for (const decimal of decimals) { + if (decimal.value !== undefined) { + if (decimal.value.lessThan(0.00001)) { + e[decimal.index] = 0; + } + } + } + + return e; + }); + + return candles; + } + + useEffect(() => { + const newCandles = prepareCandles(); + + setCandles(newCandles); + setIsLoaded(true); + }, [props.candles]); + + const option = useMemo(() => { + function splitData(rawData: ResultCandle[]) { + const categoryData = []; + const values = []; + for (let i = 0; i < rawData.length; i++) { + categoryData.push(rawData[i][0]); + values.push(rawData[i].slice(1)); + } + return { + categoryData, + values, + }; + } + + const data0 = splitData(candles); + + const now = new Date().getTime(); + const zoomStartTime = (() => { + const date = +new Date(); + const hr1 = 60 * 60 * 1000; + + const hoursDecrement = 24 * hr1; + const daysDecrement = 7 * 24 * hr1; + const weeksDecrement = 4 * 7 * 24 * hr1; + const monthsDecrement = 52 * 7 * 24 * hr1; + + switch (props.period) { + case '1h': + return date - hoursDecrement; + case '1d': + return date - daysDecrement; + case '1w': + return date - weeksDecrement; + case '1m': + return date - monthsDecrement; + default: + return date - hr1; + } + })(); + + const closestDateToStart = data0.categoryData.reduce((acc, curr) => { + const currDiff = Math.abs(curr - zoomStartTime); + const accDiff = Math.abs(acc - zoomStartTime); + + return currDiff < accDiff ? curr : acc; + }, now); + + const lastDate = data0.categoryData[data0.categoryData.length - 1]; + + const closestDateIndex = data0.categoryData.indexOf(closestDateToStart); + const lastDateIndex = data0.categoryData.indexOf(lastDate); + + return { + grid: { + top: '5%', + left: '10%', + right: '5%', + bottom: '10%', + }, + + xAxis: { + type: 'category', + data: data0.categoryData, + boundaryGap: true, + axisLine: { onZero: false }, + splitLine: { + show: true, + lineStyle: { + color: theme === 'light' ? '#e3e3e8' : '#1f1f4a', + }, + }, + min: 'dataMin', + max: 'dataMax', + axisPointer: { + show: true, + type: 'line', + label: { + formatter: (params: {value: string}) => timestampToString(params.value), + backgroundColor: '#4A90E2', + color: '#ffffff', + }, + }, + axisLabel: { + formatter: timestampToString, + }, + }, + yAxis: { + scale: true, + splitArea: { show: false }, + min: 0, + max: (value: {max: string}) => new Decimal(value.max).mul(1.1).toNumber(), + axisPointer: { + show: true, + type: 'line', + label: { + show: true, + backgroundColor: '#4A90E2', + color: '#ffffff', + }, + }, + splitLine: { + show: true, + lineStyle: { + color: theme === 'light' ? '#e3e3e8' : '#1f1f4a', + }, + }, + }, + dataZoom: [ + { + type: 'inside', + startValue: closestDateIndex, + endValue: lastDateIndex, + }, + ], + series: [ + { + name: 'Candle Chart', + type: 'candlestick', + data: data0.values, + itemStyle: { + color: upColor, + color0: downColor, + borderColor: upBorderColor, + borderColor0: downBorderColor, + }, + barWidth: '75%', + dimensions: ['date', 'highest', 'lowest', 'open', 'close'], + encode: { + x: 'date', + y: ['open', 'close', 'highest', 'lowest'], + }, + large: true, + largeThreshold: 2000000, + }, + ], + }; + }, [candles, theme]); + + return ( +
+ + + {!candles?.length && isLoaded &&

[ Low volume ]

} +
+ ); +} + +export default CandleChart; diff --git a/src/pages/dex/trading/CandleChart/testCandles.json b/src/pages/dex/trading/CandleChart/testCandles.json new file mode 100644 index 0000000..ae80c3e --- /dev/null +++ b/src/pages/dex/trading/CandleChart/testCandles.json @@ -0,0 +1,618 @@ +[ + { + "timestamp": "1358960400000", + "shadow_top": 2320.26, + "shadow_bottom": 2320.26, + "body_first": 2287.3, + "body_second": 2362.94 + }, + { + "timestamp": "1359046800000", + "shadow_top": 2300, + "shadow_bottom": 2291.3, + "body_first": 2288.26, + "body_second": 2308.38 + }, + { + "timestamp": "1359306000000", + "shadow_top": 2295.35, + "shadow_bottom": 2346.5, + "body_first": 2295.35, + "body_second": 2346.92 + }, + { + "timestamp": "1359392400000", + "shadow_top": 2347.22, + "shadow_bottom": 2358.98, + "body_first": 2337.35, + "body_second": 2363.8 + }, + { + "timestamp": "1359478800000", + "shadow_top": 2360.75, + "shadow_bottom": 2382.48, + "body_first": 2347.89, + "body_second": 2383.76 + }, + { + "timestamp": "1359565200000", + "shadow_top": 2383.43, + "shadow_bottom": 2385.42, + "body_first": 2371.23, + "body_second": 2391.82 + }, + { + "timestamp": "1359651600000", + "shadow_top": 2377.41, + "shadow_bottom": 2419.02, + "body_first": 2369.57, + "body_second": 2421.15 + }, + { + "timestamp": "1359910800000", + "shadow_top": 2425.92, + "shadow_bottom": 2428.15, + "body_first": 2417.58, + "body_second": 2440.38 + }, + { + "timestamp": "1359997200000", + "shadow_top": 2411, + "shadow_bottom": 2433.13, + "body_first": 2403.3, + "body_second": 2437.42 + }, + { + "timestamp": "1360083600000", + "shadow_top": 2432.68, + "shadow_bottom": 2434.48, + "body_first": 2427.7, + "body_second": 2441.73 + }, + { + "timestamp": "1360170000000", + "shadow_top": 2430.69, + "shadow_bottom": 2418.53, + "body_first": 2394.22, + "body_second": 2433.89 + }, + { + "timestamp": "1360256400000", + "shadow_top": 2416.62, + "shadow_bottom": 2432.4, + "body_first": 2414.4, + "body_second": 2443.03 + }, + { + "timestamp": "1361120400000", + "shadow_top": 2441.91, + "shadow_bottom": 2421.56, + "body_first": 2415.43, + "body_second": 2444.8 + }, + { + "timestamp": "1361206800000", + "shadow_top": 2420.26, + "shadow_bottom": 2382.91, + "body_first": 2373.53, + "body_second": 2427.07 + }, + { + "timestamp": "1361293200000", + "shadow_top": 2383.49, + "shadow_bottom": 2397.18, + "body_first": 2370.61, + "body_second": 2397.94 + }, + { + "timestamp": "1361379600000", + "shadow_top": 2378.82, + "shadow_bottom": 2325.95, + "body_first": 2309.17, + "body_second": 2378.82 + }, + { + "timestamp": "1361466000000", + "shadow_top": 2322.94, + "shadow_bottom": 2314.16, + "body_first": 2308.76, + "body_second": 2330.88 + }, + { + "timestamp": "1361725200000", + "shadow_top": 2320.62, + "shadow_bottom": 2325.82, + "body_first": 2315.01, + "body_second": 2338.78 + }, + { + "timestamp": "1361811600000", + "shadow_top": 2313.74, + "shadow_bottom": 2293.34, + "body_first": 2289.89, + "body_second": 2340.71 + }, + { + "timestamp": "1361898000000", + "shadow_top": 2297.77, + "shadow_bottom": 2313.22, + "body_first": 2292.03, + "body_second": 2324.63 + }, + { + "timestamp": "1361984400000", + "shadow_top": 2322.32, + "shadow_bottom": 2365.59, + "body_first": 2308.92, + "body_second": 2366.16 + }, + { + "timestamp": "1362070800000", + "shadow_top": 2364.54, + "shadow_bottom": 2359.51, + "body_first": 2330.86, + "body_second": 2369.65 + }, + { + "timestamp": "1362330000000", + "shadow_top": 2332.08, + "shadow_bottom": 2273.4, + "body_first": 2259.25, + "body_second": 2333.54 + }, + { + "timestamp": "1362416400000", + "shadow_top": 2274.81, + "shadow_bottom": 2326.31, + "body_first": 2270.1, + "body_second": 2328.14 + }, + { + "timestamp": "1362502800000", + "shadow_top": 2333.61, + "shadow_bottom": 2347.18, + "body_first": 2321.6, + "body_second": 2351.44 + }, + { + "timestamp": "1362589200000", + "shadow_top": 2340.44, + "shadow_bottom": 2324.29, + "body_first": 2304.27, + "body_second": 2352.02 + }, + { + "timestamp": "1362675600000", + "shadow_top": 2326.42, + "shadow_bottom": 2318.61, + "body_first": 2314.59, + "body_second": 2333.67 + }, + { + "timestamp": "1362934800000", + "shadow_top": 2314.68, + "shadow_bottom": 2310.59, + "body_first": 2296.58, + "body_second": 2320.96 + }, + { + "timestamp": "1363021200000", + "shadow_top": 2309.16, + "shadow_bottom": 2286.6, + "body_first": 2264.83, + "body_second": 2333.29 + }, + { + "timestamp": "1363107600000", + "shadow_top": 2282.17, + "shadow_bottom": 2263.97, + "body_first": 2253.25, + "body_second": 2286.33 + }, + { + "timestamp": "1363194000000", + "shadow_top": 2255.77, + "shadow_bottom": 2270.28, + "body_first": 2253.31, + "body_second": 2276.22 + }, + { + "timestamp": "1363280400000", + "shadow_top": 2269.31, + "shadow_bottom": 2278.4, + "body_first": 2250, + "body_second": 2312.08 + }, + { + "timestamp": "1363539600000", + "shadow_top": 2267.29, + "shadow_bottom": 2240.02, + "body_first": 2239.21, + "body_second": 2276.05 + }, + { + "timestamp": "1363626000000", + "shadow_top": 2244.26, + "shadow_bottom": 2257.43, + "body_first": 2232.02, + "body_second": 2261.31 + }, + { + "timestamp": "1363712400000", + "shadow_top": 2257.74, + "shadow_bottom": 2317.37, + "body_first": 2257.42, + "body_second": 2317.86 + }, + { + "timestamp": "1363798800000", + "shadow_top": 2318.21, + "shadow_bottom": 2324.24, + "body_first": 2311.6, + "body_second": 2330.81 + }, + { + "timestamp": "1363885200000", + "shadow_top": 2321.4, + "shadow_bottom": 2328.28, + "body_first": 2314.97, + "body_second": 2332 + }, + { + "timestamp": "1364144400000", + "shadow_top": 2334.74, + "shadow_bottom": 2326.72, + "body_first": 2319.91, + "body_second": 2344.89 + }, + { + "timestamp": "1364230800000", + "shadow_top": 2318.58, + "shadow_bottom": 2297.67, + "body_first": 2281.12, + "body_second": 2319.99 + }, + { + "timestamp": "1364317200000", + "shadow_top": 2299.38, + "shadow_bottom": 2301.26, + "body_first": 2289, + "body_second": 2323.48 + }, + { + "timestamp": "1364403600000", + "shadow_top": 2273.55, + "shadow_bottom": 2236.3, + "body_first": 2232.91, + "body_second": 2273.55 + }, + { + "timestamp": "1364490000000", + "shadow_top": 2238.49, + "shadow_bottom": 2236.62, + "body_first": 2228.81, + "body_second": 2246.87 + }, + { + "timestamp": "1364749200000", + "shadow_top": 2229.46, + "shadow_bottom": 2234.4, + "body_first": 2227.31, + "body_second": 2243.95 + }, + { + "timestamp": "1364835600000", + "shadow_top": 2234.9, + "shadow_bottom": 2227.74, + "body_first": 2220.44, + "body_second": 2253.42 + }, + { + "timestamp": "1364922000000", + "shadow_top": 2232.69, + "shadow_bottom": 2225.29, + "body_first": 2217.25, + "body_second": 2241.34 + }, + { + "timestamp": "1365354000000", + "shadow_top": 2196.24, + "shadow_bottom": 2211.59, + "body_first": 2180.67, + "body_second": 2212.59 + }, + { + "timestamp": "1365440400000", + "shadow_top": 2215.47, + "shadow_bottom": 2225.77, + "body_first": 2215.47, + "body_second": 2234.73 + }, + { + "timestamp": "1365526800000", + "shadow_top": 2224.93, + "shadow_bottom": 2226.13, + "body_first": 2212.56, + "body_second": 2233.04 + }, + { + "timestamp": "1365613200000", + "shadow_top": 2236.98, + "shadow_bottom": 2219.55, + "body_first": 2217.26, + "body_second": 2242.48 + }, + { + "timestamp": "1365699600000", + "shadow_top": 2218.09, + "shadow_bottom": 2206.78, + "body_first": 2204.44, + "body_second": 2226.26 + }, + { + "timestamp": "1365958800000", + "shadow_top": 2199.91, + "shadow_bottom": 2181.94, + "body_first": 2177.39, + "body_second": 2204.99 + }, + { + "timestamp": "1366045200000", + "shadow_top": 2169.63, + "shadow_bottom": 2194.85, + "body_first": 2165.78, + "body_second": 2196.43 + }, + { + "timestamp": "1366131600000", + "shadow_top": 2195.03, + "shadow_bottom": 2193.8, + "body_first": 2178.47, + "body_second": 2197.51 + }, + { + "timestamp": "1366218000000", + "shadow_top": 2181.82, + "shadow_bottom": 2197.6, + "body_first": 2175.44, + "body_second": 2206.03 + }, + { + "timestamp": "1366304400000", + "shadow_top": 2201.12, + "shadow_bottom": 2244.64, + "body_first": 2200.58, + "body_second": 2250.11 + }, + { + "timestamp": "1366563600000", + "shadow_top": 2236.4, + "shadow_bottom": 2242.17, + "body_first": 2232.26, + "body_second": 2245.12 + }, + { + "timestamp": "1366650000000", + "shadow_top": 2242.62, + "shadow_bottom": 2184.54, + "body_first": 2182.81, + "body_second": 2242.62 + }, + { + "timestamp": "1366736400000", + "shadow_top": 2187.35, + "shadow_bottom": 2218.32, + "body_first": 2184.11, + "body_second": 2226.12 + }, + { + "timestamp": "1366822800000", + "shadow_top": 2213.19, + "shadow_bottom": 2199.31, + "body_first": 2191.85, + "body_second": 2224.63 + }, + { + "timestamp": "1366909200000", + "shadow_top": 2203.89, + "shadow_bottom": 2177.91, + "body_first": 2173.86, + "body_second": 2210.58 + }, + { + "timestamp": "1367427600000", + "shadow_top": 2170.78, + "shadow_bottom": 2174.12, + "body_first": 2161.14, + "body_second": 2179.65 + }, + { + "timestamp": "1367514000000", + "shadow_top": 2179.05, + "shadow_bottom": 2205.5, + "body_first": 2179.05, + "body_second": 2222.81 + }, + { + "timestamp": "1367773200000", + "shadow_top": 2212.5, + "shadow_bottom": 2231.17, + "body_first": 2212.5, + "body_second": 2236.07 + }, + { + "timestamp": "1367859600000", + "shadow_top": 2227.86, + "shadow_bottom": 2235.57, + "body_first": 2219.44, + "body_second": 2240.26 + }, + { + "timestamp": "1367946000000", + "shadow_top": 2242.39, + "shadow_bottom": 2246.3, + "body_first": 2235.42, + "body_second": 2255.21 + }, + { + "timestamp": "1368032400000", + "shadow_top": 2246.96, + "shadow_bottom": 2232.97, + "body_first": 2221.38, + "body_second": 2247.86 + }, + { + "timestamp": "1368118800000", + "shadow_top": 2228.82, + "shadow_bottom": 2246.83, + "body_first": 2225.81, + "body_second": 2247.67 + }, + { + "timestamp": "1368378000000", + "shadow_top": 2247.68, + "shadow_bottom": 2241.92, + "body_first": 2231.36, + "body_second": 2250.85 + }, + { + "timestamp": "1368464400000", + "shadow_top": 2238.9, + "shadow_bottom": 2217.01, + "body_first": 2205.87, + "body_second": 2239.93 + }, + { + "timestamp": "1368550800000", + "shadow_top": 2217.09, + "shadow_bottom": 2224.8, + "body_first": 2213.58, + "body_second": 2225.19 + }, + { + "timestamp": "1368637200000", + "shadow_top": 2221.34, + "shadow_bottom": 2251.81, + "body_first": 2210.77, + "body_second": 2252.87 + }, + { + "timestamp": "1368723600000", + "shadow_top": 2249.81, + "shadow_bottom": 2282.87, + "body_first": 2248.41, + "body_second": 2288.09 + }, + { + "timestamp": "1368982800000", + "shadow_top": 2286.33, + "shadow_bottom": 2299.99, + "body_first": 2281.9, + "body_second": 2309.39 + }, + { + "timestamp": "1369069200000", + "shadow_top": 2297.11, + "shadow_bottom": 2305.11, + "body_first": 2290.12, + "body_second": 2305.3 + }, + { + "timestamp": "1369155600000", + "shadow_top": 2303.75, + "shadow_bottom": 2302.4, + "body_first": 2292.43, + "body_second": 2314.18 + }, + { + "timestamp": "1369242000000", + "shadow_top": 2293.81, + "shadow_bottom": 2275.67, + "body_first": 2274.1, + "body_second": 2304.95 + }, + { + "timestamp": "1369328400000", + "shadow_top": 2281.45, + "shadow_bottom": 2288.53, + "body_first": 2270.25, + "body_second": 2292.59 + }, + { + "timestamp": "1369587600000", + "shadow_top": 2286.66, + "shadow_bottom": 2293.08, + "body_first": 2283.94, + "body_second": 2301.7 + }, + { + "timestamp": "1369674000000", + "shadow_top": 2293.4, + "shadow_bottom": 2321.32, + "body_first": 2281.47, + "body_second": 2322.1 + }, + { + "timestamp": "1369760400000", + "shadow_top": 2323.54, + "shadow_bottom": 2324.02, + "body_first": 2321.17, + "body_second": 2334.33 + }, + { + "timestamp": "1369846800000", + "shadow_top": 2316.25, + "shadow_bottom": 2317.75, + "body_first": 2310.49, + "body_second": 2325.72 + }, + { + "timestamp": "1369933200000", + "shadow_top": 2320.74, + "shadow_bottom": 2300.59, + "body_first": 2299.37, + "body_second": 2325.53 + }, + { + "timestamp": "1370192400000", + "shadow_top": 2300.21, + "shadow_bottom": 2299.25, + "body_first": 2294.11, + "body_second": 2313.43 + }, + { + "timestamp": "1370278800000", + "shadow_top": 2297.1, + "shadow_bottom": 2272.42, + "body_first": 2264.76, + "body_second": 2297.1 + }, + { + "timestamp": "1370365200000", + "shadow_top": 2270.71, + "shadow_bottom": 2270.93, + "body_first": 2260.87, + "body_second": 2276.86 + }, + { + "timestamp": "1370451600000", + "shadow_top": 2264.43, + "shadow_bottom": 2242.11, + "body_first": 2240.07, + "body_second": 2266.69 + }, + { + "timestamp": "1370538000000", + "shadow_top": 2242.26, + "shadow_bottom": 2210.9, + "body_first": 2205.07, + "body_second": 2250.63 + }, + { + "timestamp": "1371056400000", + "shadow_top": 2790.1, + "shadow_bottom": 2148.35, + "body_first": 2126.22, + "body_second": 100.1 + } +] diff --git a/src/pages/dex/trading/InputPanelItem/InputPanelItem.module.scss b/src/pages/dex/trading/InputPanelItem/InputPanelItem.module.scss new file mode 100644 index 0000000..ce93156 --- /dev/null +++ b/src/pages/dex/trading/InputPanelItem/InputPanelItem.module.scss @@ -0,0 +1,218 @@ +.input_panel__item { + width: 100%; + + > div:first-child { + display: flex; + justify-content: space-between; + padding-bottom: 20px; + border-bottom: 1px solid rgba(255, 255, 255, 0.1); + margin-bottom: 20px; + } + + > div:last-child { + display: flex; + flex-direction: column; + gap: 20px; + + > .buy_btn { + background-color: #16d1d6; + + &:hover { + background-color: #45dade; + } + } + + > .sell_btn { + background-color: #ff6767; + + &:hover { + background-color: #ff8585; + } + } + + .input_panel__range { + margin-top: 10px; + } + + .input_panel__expiration { + display: flex; + justify-content: space-between; + gap: 20px; + + h6 { + white-space: nowrap; + } + + .expiration__dropdown { + width: 100%; + } + + > div:first-child { + display: flex; + align-items: center; + gap: 6px; + } + + @media screen and (max-width: 1500px) { + flex-wrap: wrap; + } + + @media screen and (max-width: 1000px) { + flex-wrap: nowrap; + } + + @media screen and (max-width: 530px) { + flex-wrap: wrap; + } + } + + .labeled_input { + display: flex; + flex-direction: column; + gap: 8px; + + h6 { + color: var(--font-dimmed-color); + } + + > div { + width: 100%; + position: relative; + background-color: var(--bordered-input-bg); + border: 1px solid var(--window-border-color); + border-radius: 8px; + display: flex; + overflow: hidden; + + input { + width: 100%; + padding: 16px 15px; + background-color: transparent; + border: none; + } + + .labeled_input__value { + padding-right: 15px; + display: flex; + align-items: center; + + > p { + color: var(--font-dimmed-color); + } + } + + .labeled_input__currency { + min-width: 82px; + max-width: 150px; + padding: 0 15px; + background-color: var(--dex-input-currency); + display: flex; + align-items: center; + justify-content: center; + + > p { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + } + } + } + + &.labeled_input__invalid > div { + border-color: #ff6767; + } + + @media screen and (max-width: 430px) { + > div { + input, + .labeled_input__value > p, + .labeled_input__currency > p { + font-size: 13px; + } + + input { + padding: 19px 15px; + } + + .labeled_input__currency { + min-width: 70px; + } + } + } + } + + .input_panel__fees { + display: flex; + justify-content: space-between; + + p { + color: var(--font-dimmed-color); + } + } + } +} + +.buy-sell-switch { + padding: 3px; + height: 30px; + display: flex; + align-items: center; + border-radius: 100px; + border: 1px solid var(--dex-buy-sell-border); + + .buy-sell-switch__item { + width: 50px; + height: 100%; + background-color: transparent; + cursor: pointer; + font-size: 14px; + font-weight: 600; + border-radius: 100px; + + &.item_selected-buy { + background-color: #16d1d6; + color: #ffffff; + } + + &.item_selected-sell { + background-color: #ff6767; + color: #ffffff; + } + } +} + +.apply__alert { + display: flex; + gap: 20px; + align-items: center; + + &__content { + display: flex; + flex-direction: column; + gap: 10px; + } + + &__button { + max-width: 125px; + background-color: var(--alert-btn-bg); + color: #1f8feb; + padding: 7px 32px; + font-size: 12px; + font-weight: 500; + + &:hover { + background-color: var(--alert-btn-hover); + } + } + + h2 { + font-size: 16px; + font-weight: 600; + } + + p { + font-size: 14px; + opacity: 0.7; + margin-bottom: 5px; + } +} \ No newline at end of file diff --git a/src/pages/dex/trading/InputPanelItem/InputPanelItem.tsx b/src/pages/dex/trading/InputPanelItem/InputPanelItem.tsx new file mode 100644 index 0000000..9314e0c --- /dev/null +++ b/src/pages/dex/trading/InputPanelItem/InputPanelItem.tsx @@ -0,0 +1,272 @@ +import { Store } from '@/store/store-reducer'; +import { createOrder } from '@/utils/methods'; +import { ChangeEvent, useContext, useRef, useState } from 'react'; +import Input from '@/components/UI/Input/Input'; +import RangeInput from '@/components/UI/RangeInput/RangeInput'; +import ConnectButton from '@/components/UI/ConnectButton/ConnectButton'; +import Button from '@/components/UI/Button/Button'; +import { useRouter } from 'next/router'; +import { classes, formatDollarValue } from '@/utils/utils'; +import InputPanelItemProps from '@/interfaces/props/pages/dex/trading/InputPanelItem/InputPanelItemProps'; +import LabeledInputProps from '@/interfaces/props/pages/dex/trading/InputPanelItem/LabeledInputProps'; +import CreateOrderData from '@/interfaces/fetch-data/create-order/CreateOrderData'; +import Decimal from 'decimal.js'; +import HorizontalSelectProps from '@/interfaces/props/components/UI/HorizontalSelect/HorizontalSelectProps'; +import SelectValue from '@/interfaces/states/pages/dex/trading/InputPanelItem/SelectValue'; +import { nanoid } from 'nanoid'; +import Alert from '@/components/UI/Alert/Alert'; +import infoIcon from '@/assets/images/UI/info_alert_icon.svg'; +import Image from 'next/image'; +import styles from './InputPanelItem.module.scss'; + +function DexBuySellSwitch({ body, value, setValue }: HorizontalSelectProps) { + return ( +
+ {body.map((e) => { + let itemClass = styles['buy-sell-switch__item']; + + if (value.code === e.code) { + itemClass += + e.code === 'buy' + ? ` ${styles['item_selected-buy']}` + : ` ${styles['item_selected-sell']}`; + } + + return ( + + ); + })} +
+ ); +} + +function InputPanelItem(props: InputPanelItemProps) { + const { state } = useContext(Store); + + const router = useRouter(); + + const { + priceState = '', + amountState = '', + totalState = '', + buySellValues, + buySellState = buySellValues[0], + setBuySellState, + setPriceFunction, + setAmountFunction, + setAlertState, + setAlertSubtitle, + setRangeInputValue, + rangeInputValue = '50', + firstCurrencyName = '', + secondCurrencyName = '', + balance = 0, + amountValid, + priceValid, + totalValid, + totalUsd, + scrollToOrderList, + } = props; + + const [creatingState, setCreatingState] = useState(false); + + const [hasImmediateMatch, setHasImmediateMatch] = useState(false); + + function LabeledInput(props: LabeledInputProps) { + const labelRef = useRef(null); + const { + label = '', + placeholder = '', + currency = '', + value, + readonly, + usd, + setValue, + invalid, + } = props; + + const handleInput = (e: React.FormEvent) => { + if (!readonly && setValue) { + setValue(e.currentTarget.value); + } + }; + + return ( +
+
{label}
+
+ + {usd && ( +
+

~${formatDollarValue(usd)}

+
+ )} +
+

{currency}

+
+
+
+ ); + } + + const isBuy = buySellState?.code === 'buy'; + + async function postOrder() { + const price = new Decimal(priceState); + const amount = new Decimal(amountState); + + const isFull = + price.greaterThan(0) && + price.lessThan(1000000000) && + amount.greaterThan(0) && + amount.lessThan(1000000000); + + if (!isFull) return; + + const orderData: CreateOrderData = { + type: isBuy ? 'buy' : 'sell', + side: 'limit', + price: price.toString(), + amount: amount.toString(), + pairId: typeof router.query.id === 'string' ? router.query.id : '', + }; + + setCreatingState(true); + const result = await createOrder(orderData); + setCreatingState(false); + + if (result.success) { + if (result.data?.immediateMatch) { + setHasImmediateMatch(true); + } + } else { + setAlertState('error'); + if (result.data === 'Same order') { + setAlertSubtitle('Order already exists'); + } else { + setAlertSubtitle('Failed to create order'); + } + + setTimeout(() => { + setAlertState(null); + setAlertSubtitle(''); + }, 3000); + } + } + + function onRangeInput(e: ChangeEvent) { + setRangeInputValue(e.target.value); + if (balance) { + const rangeValue = new Decimal(e.target.value || '0'); + const balanceDecimal = new Decimal(balance || '0'); + const calculatedAmount = balanceDecimal.mul(rangeValue.div(100)).toString(); + setAmountFunction(calculatedAmount || ''); + } + } + + let buttonText; + + if (creatingState) { + buttonText = 'Creating...'; + } else if (isBuy) { + buttonText = 'Buy'; + } else { + buttonText = 'Sell'; + } + + return ( +
+ {hasImmediateMatch && ( + + success +
+

Apply the order

+

You have to apply the order

+ +
+
+ } + close={() => setHasImmediateMatch(false)} + /> + )} + +
+
New order
+ +
+ +
+ {LabeledInput({ + value: priceState, + setValue: setPriceFunction, + currency: secondCurrencyName, + placeholder: '0.00', + label: 'Price', + invalid: !!priceState && !priceValid, + })} + {LabeledInput({ + value: amountState, + setValue: setAmountFunction, + currency: firstCurrencyName, + placeholder: '0.00', + label: 'Amount', + invalid: !!amountState && !amountValid, + })} + + {LabeledInput({ + value: totalState, + setValue: () => undefined, + currency: secondCurrencyName, + placeholder: '0.00', + label: 'Total', + readonly: true, + invalid: !!totalState && !totalValid, + usd: totalUsd, + })} + {state.wallet?.connected ? ( + + ) : ( + + )} +
+

+ Fee: 0.01 Zano +

+
+
+
+ ); +} + +export default InputPanelItem; diff --git a/src/pages/dex/trading/OrdersBuySellSwitch/OrdersBuySellSwitch.module.scss b/src/pages/dex/trading/OrdersBuySellSwitch/OrdersBuySellSwitch.module.scss new file mode 100644 index 0000000..aac0fd1 --- /dev/null +++ b/src/pages/dex/trading/OrdersBuySellSwitch/OrdersBuySellSwitch.module.scss @@ -0,0 +1,31 @@ +.orders-buy-sell-switch { + display: flex; + align-items: center; + gap: 8px; + background-color: transparent !important; + cursor: pointer; + + &:hover { + opacity: 0.7; + } + + > p { + font-size: 16px; + font-weight: 600; + color: #16d1d6; + } + + > svg > * { + fill: transparent; + } + + &.orders-buy-sell-switch_sell { + > p { + color: #ff6767; + } + + > svg > * { + stroke: #ff6767; + } + } +} diff --git a/src/pages/dex/trading/OrdersBuySellSwitch/OrdersBuySellSwitch.tsx b/src/pages/dex/trading/OrdersBuySellSwitch/OrdersBuySellSwitch.tsx new file mode 100644 index 0000000..fbe8d93 --- /dev/null +++ b/src/pages/dex/trading/OrdersBuySellSwitch/OrdersBuySellSwitch.tsx @@ -0,0 +1,33 @@ +import HorizontalSelectProps from '@/interfaces/props/components/UI/HorizontalSelect/HorizontalSelectProps'; +import { ReactComponent as ArrowIcon } from '@/assets/images/UI/trade_arrow.svg'; +import SelectValue from '@/interfaces/states/pages/dex/trading/InputPanelItem/SelectValue'; +import { classes } from '@/utils/utils'; +import styles from './OrdersBuySellSwitch.module.scss'; + +export default function OrdersBuySellSwitch({ + body, + value, + setValue, + className, +}: HorizontalSelectProps) { + const defaultValue = body[0]; + + const buyValue = body.find((e) => e.code === 'buy'); + const sellValue = body.find((e) => e.code === 'sell'); + + const isBuy = value.code === 'buy'; + + return ( + + ); +} diff --git a/src/pages/dex/trading/TimeLeft/TimeLeft.tsx b/src/pages/dex/trading/TimeLeft/TimeLeft.tsx new file mode 100644 index 0000000..da7dbf5 --- /dev/null +++ b/src/pages/dex/trading/TimeLeft/TimeLeft.tsx @@ -0,0 +1,22 @@ +import { localeTimeLeft } from '@/utils/utils'; +import { useEffect, useState } from 'react'; + +function TimeLeft(props: { timestamp: string }) { + const [now, setNow] = useState(null); + + useEffect(() => { + setNow(Date.now()); + + const id = setInterval(() => { + setNow(Date.now()); + }, 1000); + + return () => { + clearInterval(id); + }; + }, []); + + return

{localeTimeLeft(now, parseInt(props.timestamp, 10))}

; +} + +export default TimeLeft; diff --git a/src/pages/dex/trading/[id].tsx b/src/pages/dex/trading/[id].tsx new file mode 100644 index 0000000..facc6e1 --- /dev/null +++ b/src/pages/dex/trading/[id].tsx @@ -0,0 +1,1411 @@ +import styles from '@/styles/Trading.module.scss'; +import Footer from '@/components/default/Footer/Footer'; +import Header from '@/components/default/Header/Header'; +import PageTitle from '@/components/default/PageTitle/PageTitle'; +import { ReactComponent as ClockIcon } from '@/assets/images/UI/clock_icon.svg'; +import { ReactComponent as UpIcon } from '@/assets/images/UI/up_icon.svg'; +import { ReactComponent as DownIcon } from '@/assets/images/UI/down_icon.svg'; +import { ReactComponent as VolumeIcon } from '@/assets/images/UI/volume_icon.svg'; +import { ReactComponent as NoOffersIcon } from '@/assets/images/UI/no_offers.svg'; +import { ReactComponent as ArrowRight } from '@/assets/images/UI/arrow-outlined-right.svg'; +import Dropdown from '@/components/UI/Dropdown/Dropdown'; +import HorizontalSelect from '@/components/UI/HorizontalSelect/HorizontalSelect'; +import { useContext, useEffect, useRef, useState } from 'react'; +import { Store } from '@/store/store-reducer'; +import { useRouter } from 'next/router'; +import { + applyOrder, + cancelOrder, + getOrdersPage, + confirmTransaction, + getPair, + getPairStats, + getUserOrdersPage, + getCandles, +} from '@/utils/methods'; +import ContentPreloader from '@/components/UI/ContentPreloader/ContentPreloader'; +import Link from 'next/link'; +import { nanoid } from 'nanoid'; +import { + cutAddress, + formatDollarValue, + isPositiveFloatStr, + notationToString, + roundTo, + shortenAddress, + tradingKnownCurrencies, +} from '@/utils/utils'; +import Alert from '@/components/UI/Alert/Alert'; +import socket from '@/utils/socket'; +import SelectValue from '@/interfaces/states/pages/dex/trading/InputPanelItem/SelectValue'; +import AlertType from '@/interfaces/common/AlertType'; +import PeriodState from '@/interfaces/states/pages/dex/trading/InputPanelItem/PeriodState'; +import OrderRow from '@/interfaces/common/OrderRow'; +import ApplyTip from '@/interfaces/common/ApplyTip'; +import { PageOrderData } from '@/interfaces/responses/orders/GetOrdersPageRes'; +import { PairStats } from '@/interfaces/responses/orders/GetPairStatsRes'; +import PairData from '@/interfaces/common/PairData'; +import CandleRow from '@/interfaces/common/CandleRow'; +import StatItemProps from '@/interfaces/props/pages/dex/trading/StatItemProps'; +import { confirmIonicSwap, ionicSwap } from '@/utils/wallet'; +import Decimal from 'decimal.js'; +import Tooltip from '@/components/UI/Tooltip/Tooltip'; +import { updateAutoClosedNotification } from '@/store/actions'; +import useUpdateUser from '@/hook/useUpdateUser'; +import LightningImg from '@/assets/images/UI/lightning.png'; +import RocketImg from '@/assets/images/UI/rocket.png'; +import { ReactComponent as ConnectionIcon } from '@/assets/images/UI/connection.svg'; +import Image from 'next/image'; +import CandleChart from './CandleChart/CandleChart'; +import OrdersBuySellSwitch from './OrdersBuySellSwitch/OrdersBuySellSwitch'; +import InputPanelItem from './InputPanelItem/InputPanelItem'; +import { validateTokensInput } from '../../../../shared/utils'; + +function BadgeStatus({ type = 'instant' }: { type?: 'instant' | 'high' }) { + return ( +
+ badge image + {type === 'instant' ? 'instant' : 'high volume'} +
+ ); +} + +function Trading() { + const router = useRouter(); + const fetchUser = useUpdateUser(); + + const [ordersHistory, setOrdersHistory] = useState([]); + + const orderFormRef = useRef(null); + const orderListRef = useRef(null); + + const pairId = typeof router.query.id === 'string' ? router.query.id : ''; + + const periods: PeriodState[] = [ + { + name: '1H', + code: '1h', + }, + { + name: '1D', + code: '1d', + }, + { + name: '1W', + code: '1w', + }, + { + name: '1M', + code: '1m', + }, + ]; + + const buySellValues: SelectValue[] = [ + { + name: 'Buy', + code: 'buy', + }, + { + name: 'Sell', + code: 'sell', + }, + ]; + + const { state, dispatch } = useContext(Store); + + const [userOrders, setUserOrders] = useState([]); + + const [periodsState, setPeriodsState] = useState(periods[0]); + + const [pairData, setPairData] = useState(null); + + const [candles, setCandles] = useState([]); + + const [candlesLoaded, setCandlesLoaded] = useState(false); + + const [ordersLoading, setOrdersLoading] = useState(true); + + const [myOrdersLoading, setMyOrdersLoading] = useState(true); + + const [ordersBuySell, setOrdersBuySell] = useState(buySellValues[0]); + + const [pairStats, setPairStats] = useState(null); + + const [applyTips, setApplyTips] = useState([]); + + const [alertState, setAlertState] = useState(null); + + const [alertSubtitle, setAlertSubtitle] = useState(''); + + const [matrixAddresses, setMatrixAddresses] = useState([]); + + async function updateOrders() { + setOrdersLoading(true); + const result = await getOrdersPage(pairId); + if (!result.success) return; + setOrdersHistory(result?.data || []); + setOrdersLoading(false); + } + + async function socketUpdateOrders() { + const result = await getUserOrdersPage(pairId); + + if (result.success) { + setUserOrders(result?.data?.orders || []); + setApplyTips(result?.data?.applyTips || []); + } + } + + useEffect(() => { + socket.emit('in-trading', { id: router.query.id }); + + return () => { + socket.emit('out-trading', { id: router.query.id }); + }; + }, []); + + useEffect(() => { + socket.on('new-order', async (data) => { + setOrdersHistory([data.orderData, ...ordersHistory]); + await socketUpdateOrders(); + }); + + socket.on('delete-order', async () => { + await updateOrders(); + await socketUpdateOrders(); + }); + + return () => { + socket.off('new-order'); + socket.off('delete-order'); + }; + }, [ordersHistory]); + + useEffect(() => { + function onUpdateStats({ pairStats }: { pairStats: PairStats }) { + setPairStats(pairStats); + } + + socket.on('update-pair-stats', onUpdateStats); + + return () => { + socket.off('update-pair-stats', onUpdateStats); + }; + }, []); + + useEffect(() => { + socket.on('update-orders', async () => { + await socketUpdateOrders(); + }); + + return () => { + socket.off('update-orders'); + }; + }, []); + + // Detect registered addresses + const hasConnection = (address: string) => + matrixAddresses.some( + (item: { address: string; registered: boolean }) => + item.address === address && item.registered, + ); + + const filteredOrdersHistory = ordersHistory + ?.filter((e) => e.type === ordersBuySell.code) + ?.filter((e) => e.user.address !== state.wallet?.address) + ?.sort((a, b) => { + if (ordersBuySell.code === 'buy') { + return parseFloat(b.price.toString()) - parseFloat(a.price.toString()); + } + return parseFloat(a.price.toString()) - parseFloat(b.price.toString()); + }); + + // Get registered addresses from matrix + useEffect(() => { + const fetchConnections = async () => { + const filteredAddresses = ordersHistory?.map((e) => e?.user?.address); + if (!filteredAddresses.length) return; + const response = await fetch('https://messenger.zano.org/api/get-addresses', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify({ + addresses: filteredAddresses, + }), + }); + + const data = await response.json(); + setMatrixAddresses(data.addresses); + }; + + fetchConnections(); + }, [ordersHistory]); + + const firstCurrencyName = pairData?.first_currency?.name || ''; + const secondCurrencyName = pairData?.second_currency?.name || ''; + + const firstAssetId = pairData ? pairData.first_currency?.asset_id : undefined; + const secondAssetId = pairData ? pairData.second_currency?.asset_id : undefined; + const firstAssetLink = firstAssetId + ? `https://explorer.zano.org/assets?asset_id=${encodeURIComponent(firstAssetId)}` + : undefined; + const secondAssetLink = secondAssetId + ? `https://explorer.zano.org/assets?asset_id=${encodeURIComponent(secondAssetId)}` + : undefined; + + const secondAssetUsdPrice = state.assetsRates.get(secondAssetId || ''); + + useEffect(() => { + async function fetchPairStats() { + const result = await getPairStats(pairId); + if (!result.success) return; + setPairStats(result.data); + } + + fetchPairStats(); + }, []); + + useEffect(() => { + async function fetchCandles() { + setCandlesLoaded(false); + setCandles([]); + const result = await getCandles(pairId, periodsState.code); + if (result.success) { + setCandles(result.data); + } else { + setCandles([]); + } + setCandlesLoaded(true); + } + + fetchCandles(); + }, [periodsState]); + + useEffect(() => { + async function getPairData() { + const result = await getPair(pairId); + if (!result.success) { + router.push('/404'); + return; + } + setPairData(result.data); + } + + getPairData(); + }, []); + + async function updateUserOrders() { + setMyOrdersLoading(true); + const result = await getUserOrdersPage(pairId); + console.log('result getuserorderspage', result); + await fetchUser(); + + if (!result.success) return; + setUserOrders(result?.data?.orders || []); + setApplyTips(result?.data?.applyTips || []); + setMyOrdersLoading(false); + } + + const loggedIn = !!state.wallet?.connected; + + useEffect(() => { + if (!loggedIn) return; + setUserOrders([]); + updateUserOrders(); + }, [state.wallet?.connected && state.wallet?.address]); + + useEffect(() => { + updateOrders(); + }, []); + + // useEffect(() => { + // socket.on + // }, []); + + const [priceState, setPriceState] = useState(''); + const [amountState, setAmountState] = useState(''); + const [totalState, setTotalState] = useState(''); + + const [totalUsd, setTotalUsd] = useState(undefined); + + const [priceValid, setPriceValid] = useState(false); + const [amountValid, setAmountValid] = useState(false); + const [totalValid, setTotalValid] = useState(false); + + const [buySellState, setBuySellState] = useState(buySellValues[0]); + + const [rangeInputValue, setRangeInputValue] = useState('50'); + + useEffect(() => { + let totalDecimal: Decimal | undefined; + + try { + totalDecimal = new Decimal(totalState); + } catch (err) { + console.log(err); + } + + const zanoPrice = state.assetsRates.get(pairData?.second_currency?.asset_id || ''); + + setTotalUsd(zanoPrice && totalDecimal ? totalDecimal.mul(zanoPrice).toFixed(2) : undefined); + }, [totalState, state.assetsRates, pairData?.second_currency?.asset_id]); + + function setPriceFunction(inputValue: string) { + if (inputValue !== '' && !isPositiveFloatStr(inputValue)) { + return; + } + + try { + const value = new Decimal(inputValue || NaN); + + if (value.toString().replace('.', '').length > 18) { + console.log('TOO MANY DECIMALS'); + return; + } + } catch (error) { + console.log(error); + } + + setPriceState(inputValue); + + if (!inputValue) { + setTotalState(''); + setTotalValid(false); + setPriceValid(false); + return; + } + + const valueDecimal = new Decimal(inputValue || NaN); + const amountDecimal = new Decimal(amountState || NaN); + + const secondCurrencyDP = pairData?.second_currency.asset_info?.decimal_point || 12; + + const validationResult = validateTokensInput(inputValue, secondCurrencyDP); + + if (!validationResult.valid) { + setTotalState(''); + setTotalValid(false); + setPriceValid(false); + return; + } + + setPriceValid(true); + + if (!valueDecimal.isNaN() && !amountDecimal.isNaN() && amountState !== '') { + const total = valueDecimal.mul(amountDecimal).toFixed(); + setTotalState(total); + + const totalValidationResult = validateTokensInput(total, secondCurrencyDP); + + setTotalValid(totalValidationResult.valid); + } else { + setTotalState(''); + setTotalValid(false); + } + } + + const assets = state.wallet?.connected ? state.wallet?.assets || [] : []; + + const balance = assets.find((e) => e.ticker === firstCurrencyName)?.balance; + + function setAmountFunction(inputValue: string) { + if (inputValue !== '' && !isPositiveFloatStr(inputValue)) { + return; + } + + try { + const value = new Decimal(inputValue || NaN); + + if (value.toString().replace('.', '').length > 18) { + console.log('TOO MANY DECIMALS'); + return; + } + } catch (error) { + console.log(error); + } + + setAmountState(inputValue); + + if (!inputValue) { + setTotalState(''); + setTotalValid(false); + setAmountValid(false); + return; + } + + const value = new Decimal(inputValue || NaN); + const price = new Decimal(priceState || NaN); + + const validationResult = validateTokensInput( + inputValue, + pairData?.first_currency.asset_info?.decimal_point || 12, + ); + console.log(validationResult); + + if (!validationResult.valid) { + setTotalState(''); + setTotalValid(false); + setAmountValid(false); + return; + } + + setAmountValid(true); + + if (balance) setRangeInputValue(value.div(balance).mul(100).toFixed()); + + if (!price.isNaN() && !value.isNaN() && priceState !== '') { + const total = value.mul(price).toFixed(); + setTotalState(total); + + const totalValidationResult = validateTokensInput( + total, + pairData?.second_currency.asset_info?.decimal_point || 12, + ); + + setTotalValid(totalValidationResult.valid); + } else { + setTotalState(''); + setTotalValid(false); + } + } + + function setCorrespondingOrder(price: number, amount: number) { + const priceDecimal = new Decimal(price || 0); + const amountDecimal = new Decimal(amount || 0); + const totalDecimal = priceDecimal.mul(amountDecimal); + + setPriceFunction(notationToString(priceDecimal.toString()) || ''); + setAmountFunction(notationToString(amountDecimal.toString()) || ''); + setTotalState(notationToString(totalDecimal.toString()) || ''); + + if (balance) { + const balanceDecimal = new Decimal(balance); + + const percentageDecimal = amountDecimal.div(balanceDecimal).mul(100); + setRangeInputValue(percentageDecimal.toFixed() || ''); + } + + const total = priceDecimal.mul(amountDecimal).toFixed(); + + const totalValidationResult = validateTokensInput( + total, + pairData?.second_currency.asset_info?.decimal_point || 12, + ); + + setTotalValid(totalValidationResult.valid); + } + + function StatItem(props: StatItemProps) { + const { Img } = props; + + return ( +
+
+ +

{props.title}

+
+
+

{props.value}

+ {props.coefficient !== undefined && ( +

= 0 + ? styles.coefficient__green + : styles.coefficient__red + } + > + {props.coefficient >= 0 ? '+' : ''} + {props.coefficient?.toFixed(2)}% +

+ )} +
+
+ ); + } + + function takeOrderClick( + event: React.MouseEvent, + e: PageOrderData, + ) { + event.preventDefault(); + setCorrespondingOrder(e.price, e.amount); + setBuySellState( + buySellValues.find((e) => e.code !== ordersBuySell.code) || buySellValues[0], + ); + + if (!orderFormRef.current) return; + + orderFormRef.current.scrollIntoView({ behavior: 'smooth' }); + } + + //* * FOR USAGE IN THIS PAGE TABLES ONLY */ + function OrderRowTooltipCell({ + style, + children, + sideText, + sideTextColor, + }: { + style?: React.CSSProperties; + children: string; + sideText?: string; + sideTextColor?: string; + }) { + const [showTooltip, setShowTooltip] = useState(false); + + const tooltipText = `${children}${sideText ? ` ~${sideText}` : ''}`; + + const isLongContent = tooltipText.length > 14; + + return ( + +

setShowTooltip(true)} + onMouseLeave={() => setShowTooltip(false)} + > + {children} + {sideText && ( + + {sideText} + + )} +

+ {isLongContent && ( + + {tooltipText} + + )} + + ); + } + + function MatrixConnectionBadge({ + userAdress, + userAlias, + }: { + userAdress?: string; + userAlias?: string; + }) { + const [connectionTooltip, setConnectionTooltip] = useState(false); + return userAdress && hasConnection(userAdress) ? ( + <> +
setConnectionTooltip(true)} + onMouseLeave={() => setConnectionTooltip(false)} + style={{ marginTop: '4px', cursor: 'pointer', position: 'relative' }} + > + + + + Matrix connection + + + ) : ( + <> + ); + } + + function OrdersRow(props: { orderData: PageOrderData; percentage: number }) { + const e = props?.orderData || {}; + const percentage = props?.percentage; + + const totalDecimal = new Decimal(e.left).mul(new Decimal(e.price)); + const totalValue = secondAssetUsdPrice + ? totalDecimal.mul(secondAssetUsdPrice).toFixed(2) + : undefined; + + const [showTooltip, setShowTooltip] = useState(false); + + let sideText: string; + + if (!secondAssetUsdPrice) { + sideText = 'undefined'; + } else { + const value = secondAssetUsdPrice * e.price; + sideText = e.price < 0.9 ? `$${value.toFixed(5)}` : `$${value.toFixed(2)}`; + } + + return ( + + +

setShowTooltip(true)} + onMouseLeave={() => setShowTooltip(false)} + > + @{cutAddress(e.user?.alias || 'no alias', 12)} + +

+ {e.isInstant && } + {/* High volume */} + {/* */} + + {e.user?.alias.length > 12 && ( + + {e.user?.alias} + + )} + + + {notationToString(e.price)} + + {notationToString(e.amount)} + {notationToString(e.left)} + + {notationToString(totalDecimal.toString())} + + {/*

{localeTimeLeft(now, parseInt(e.expiration_timestamp, 10))}

*/} + + takeOrderClick(event, e)} + style={{ + display: 'flex', + justifyContent: 'center', + alignItems: 'center', + width: '18px', + height: '18px', + }} + > + + + +
+ + + ); + } + + function MyOrdersRow(props: { orderData: OrderRow }) { + const e = props?.orderData || {}; + const [cancellingState, setCancellingState] = useState(false); + + const totalDecimal = new Decimal(e.left).mul(new Decimal(e.price)); + const totalValue = secondAssetUsdPrice + ? totalDecimal.mul(secondAssetUsdPrice).toFixed(2) + : undefined; + + const [showTooltip, setShowTooltip] = useState(false); + + async function cancelClick(event: React.MouseEvent) { + event.preventDefault(); + + setCancellingState(true); + const result = await cancelOrder(e.id); + + setCancellingState(false); + + if (!result.success) { + setAlertState('error'); + setAlertSubtitle('Error while cancelling order'); + setTimeout(() => { + setAlertState(null); + setAlertSubtitle(''); + }, 3000); + return; + } + + await updateOrders(); + await updateUserOrders(); + await fetchUser(); + } + + return ( + + +

setShowTooltip(true)} + onMouseLeave={() => setShowTooltip(false)} + > + @ + {cutAddress( + state.wallet?.connected && state.wallet?.alias + ? state.wallet.alias + : 'no alias', + 12, + )} + +

+ {e.isInstant && } + {(state.wallet?.connected && state.wallet?.alias ? state.wallet?.alias : '') + ?.length > 12 && ( + + {state.wallet?.connected && state.wallet?.alias} + + )} + {/* High volume */} + {/* */} + + + {notationToString(e.price)} + + {notationToString(e.amount)} + {notationToString(e.left)} + + {notationToString(totalDecimal.toString())} + + {/* {localeTimeLeft(now, parseInt(e.expiration_timestamp, 10))} */} + +

+ {applyTips?.filter((tip) => tip.connected_order_id === e.id)?.length || 0} +

+ + + + {cancellingState ? 'Process' : 'Cancel'} + + + + ); + } + + function MyOrdersApplyRow(props: { orderData: ApplyTip }) { + const e = props?.orderData || {}; + + const [applyingState, setApplyingState] = useState(false); + + const connectedOrder = userOrders.find((order) => order.id === e.connected_order_id); + + const totalDecimal = new Decimal(e.left).mul(new Decimal(e.price)); + const totalValue = secondAssetUsdPrice + ? totalDecimal.mul(secondAssetUsdPrice).toFixed(2) + : undefined; + + const [showTooltip, setShowTooltip] = useState(false); + + async function applyClick(event: React.MouseEvent) { + event.preventDefault(); + + if (e.id) { + updateAutoClosedNotification(dispatch, [ + ...state.closed_notifications, + parseInt(e.id, 10), + ]); + } + + function alertErr(subtitle: string) { + setAlertState('error'); + setAlertSubtitle(subtitle); + setTimeout(() => { + setAlertState(null); + setAlertSubtitle(''); + }, 3000); + } + + setApplyingState(true); + interface SwapOperationResult { + success: boolean; + message?: string; + errorCode?: number; + data?: unknown; + } + + let result: SwapOperationResult | null = null; + + await (async () => { + if (e.transaction) { + if (!e.hex_raw_proposal) { + alertErr('Invalid transaction data received'); + return; + } + + console.log(e.hex_raw_proposal); + + const confirmSwapResult = await confirmIonicSwap(e.hex_raw_proposal); + + console.log(confirmSwapResult); + + if (confirmSwapResult.data?.error?.code === -7) { + alertErr('Insufficient funds'); + return; + } + if (!confirmSwapResult.data?.result) { + alertErr('Companion responded with an error'); + return; + } + + result = await confirmTransaction(e.id); + } else { + const firstCurrencyId = pairData?.first_currency.asset_id; + const secondCurrencyId = pairData?.second_currency.asset_id; + + console.log(firstCurrencyId, secondCurrencyId); + + if (!(firstCurrencyId && secondCurrencyId)) { + alertErr('Invalid transaction data received'); + return; + } + + if (!connectedOrder) return; + + const leftDecimal = new Decimal(e.left); + const priceDecimal = new Decimal(e.price); + + const params = { + destinationAssetID: e.type === 'buy' ? secondCurrencyId : firstCurrencyId, + destinationAssetAmount: notationToString( + e.type === 'buy' + ? leftDecimal.mul(priceDecimal).toString() + : leftDecimal.toString(), + ), + currentAssetID: e.type === 'buy' ? firstCurrencyId : secondCurrencyId, + currentAssetAmount: notationToString( + e.type === 'buy' + ? leftDecimal.toString() + : leftDecimal.mul(priceDecimal).toString(), + ), + + destinationAddress: e.user.address, + }; + + console.log(params); + + const createSwapResult = await ionicSwap(params); + + console.log(createSwapResult); + + const hex = createSwapResult?.data?.result?.hex_raw_proposal; + + if (createSwapResult?.data?.error?.code === -7) { + alertErr('Insufficient funds'); + return; + } + if (!hex) { + alertErr('Companion responded with an error'); + return; + } + + result = await applyOrder({ + ...e, + hex_raw_proposal: hex, + }); + } + })(); + + setApplyingState(false); + + if (!result) { + return; + } + + if (!(result as { success: boolean }).success) { + alertErr('Server responded with an error'); + return; + } + + await updateOrders(); + await updateUserOrders(); + await fetchUser(); + } + + return ( + + +

setShowTooltip(true)} + onMouseLeave={() => setShowTooltip(false)} + > + @{cutAddress(e.user.alias, 12) || 'no alias'} + +

+ {(e.isInstant || e.transaction) && } + + {e.user?.alias.length > 12 && ( + + {e.user?.alias} + + )} + {/* High volume */} + {/* */} + + + + {notationToString(e.price)} + + {notationToString(e.left)} + + + {notationToString(totalDecimal.toString())} + + {/* {localeTimeLeft(now, parseInt(e.expiration_timestamp, 10))} */} + + + + {applyingState ? 'Process' : 'Apply'} + + + + ); + } + + const imgCode = + pairData && tradingKnownCurrencies.includes(pairData.first_currency?.code) + ? pairData.first_currency?.code + : 'tsds'; + + const coefficient = pairStats?.coefficient || 0; + const coefficientOutput = + parseFloat(coefficient?.toFixed(2) || '0') === -100 + ? -99.99 + : parseFloat(coefficient?.toFixed(2) || '0'); + + const ordersIsBuy = ordersBuySell.code === 'buy'; + const shownOrdersAmount = filteredOrdersHistory.filter( + (e) => (e.type === 'buy') === ordersIsBuy, + ).length; + + const ordersSummaryFunds = filteredOrdersHistory + .reduce( + (acc, e) => acc.add(new Decimal(e.left).mul(new Decimal(e.price)).toNumber()), + new Decimal(0), + ) + .toDP(5) + .toFixed(); + + const pairRateUsd = + pairStats?.rate !== undefined && secondAssetUsdPrice !== undefined + ? new Decimal(pairStats.rate) + .mul(secondAssetUsdPrice) + .toFixed(pairStats.rate < 0.1 ? 6 : 2) + : undefined; + + const scrollToOrderList = () => { + if (!orderListRef.current) return; + + orderListRef.current.scrollIntoView({ behavior: 'smooth' }); + }; + + return ( + <> +
+
+
+ +
+
+
+ currency +
+
+

+ {!( + pairData && + pairData.first_currency?.name && + pairData.second_currency?.name + ) ? ( + '...' + ) : ( + <> + {firstCurrencyName} + /{secondCurrencyName} + + )} +

+
+

+ {notationToString(pairStats?.rate || 0)}{' '} + {secondCurrencyName} +

+ {pairRateUsd && ( + <> +
+

+ ${pairRateUsd} +

+ + )} +
+
+
+ {pairData && firstAssetLink && secondAssetLink && ( +
+

+ {firstCurrencyName}:{' '} + + {shortenAddress(firstAssetId || '')} + +

+

+ {secondCurrencyName}:{' '} + + {shortenAddress(secondAssetId || '')} + +

+
+ )} +
+ +
+ + + + +
+
+ +
+
+ {InputPanelItem({ + priceState, + amountState, + totalState, + buySellValues, + buySellState, + setBuySellState, + setPriceFunction, + setAmountFunction, + setAlertState, + setAlertSubtitle, + setRangeInputValue, + rangeInputValue, + firstCurrencyName, + secondCurrencyName, + balance: Number(balance), + priceValid, + amountValid, + totalValid, + totalUsd, + scrollToOrderList, + })} +
+
+
+ + undefined} + /> +
+ + {candlesLoaded ? ( + + ) : ( + + )} +
+
+ +
+
+
+
+
+
+ {ordersBuySell.code === 'buy' ? 'Buy' : 'Sell'} Orders + {/* {firstCurrencyName && secondCurrencyName ? " - " + firstCurrencyName + "/" + secondCurrencyName : ""} */} +
+
+

+ {firstCurrencyName && secondCurrencyName + ? `${firstCurrencyName}/${secondCurrencyName}` + : ''} +

+
+ +
+
+

+ {shownOrdersAmount}{' '} + {shownOrdersAmount === 1 ? 'order' : 'orders'} +

+
+
+

+ {ordersSummaryFunds} {secondCurrencyName} +

+
+
+
+ {/* */} + +
+ +
+ + + + + + + + + + + + {!ordersLoading && !!filteredOrdersHistory.length && ( + + {filteredOrdersHistory?.map((e) => { + const maxValue = Math.max( + ...filteredOrdersHistory.map((order) => + parseFloat(String(order.left)), + ), + ); + const percentage = ( + (parseFloat(String(e.left)) / maxValue) * + 100 + ).toFixed(2); + + return ( + + ); + })} + + )} +
Alias + Price
({secondCurrencyName}) +
+ Amount
({firstCurrencyName}) +
+ Remaining
({firstCurrencyName}) +
+ {' '} + Total
({secondCurrencyName}) +
+ + {!filteredOrdersHistory.length && !ordersLoading && ( +
+ +
No orders
+
+ )} + {ordersLoading && ( + + )} +
+
+
+
+
My Orders
+ +
+

+ {applyTips?.length || 0} Offer + {(applyTips?.length || 0) === 1 ? '' : 's'} +

+
+
+ +
+ + + + + + + + + + + + +
Alias + Price
({secondCurrencyName}) +
+ Amount
({firstCurrencyName}) +
+ Remaining
({firstCurrencyName}) +
+ Total
({secondCurrencyName}) +
Offers
+ {!myOrdersLoading && loggedIn && !!userOrders.length && ( +
+ + + {userOrders.map((e) => ( + + ))} + +
+ {!!applyTips.length && ( + + + {applyTips.map((e) => ( + + ))} + +
+ )} +
+ )} + + {myOrdersLoading && loggedIn && ( + + )} + + {!loggedIn && ( +
+ +
Connect wallet to see your orders
+
+ )} + + {loggedIn && !userOrders.length && !myOrdersLoading && ( +
+ +
No orders
+
+ )} +
+
+
+ + {alertState && ( + setAlertState(null)} + /> + )} +
+